* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Merriweather Sans', sans-serif;
}
.animation-container {
    overflow-x: hidden;
}

/* global classes */
.fs-18 {
    font-size: 18px;
    line-height: 26px;
}
.fs-20 {
    font-size: 20px;
    line-height: 28px;
}
.dark-text {
    color: #212932;
}
.section-title {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 12px;
}
.title-border {
    width: 80px;
    height: 4px !important;
    background-color: #9da993;
    border-radius: 4px;
    opacity: 1;
    margin-bottom: 30px;
}

.section {
    padding: 70px 0;
}

.btn-green {
    background-color: #9da993;
    padding: 10px 46px;
    border-radius: 30px;
    color: #ffffff;
    transition: all .3s ease;
}
.btn-green:hover {
    background-color: #7f8a75;
    color: #ffffff;
}

/* header */
.header {
    position: fixed;
    width: 100%;
    z-index: 2;
    border-bottom: 1px solid #d9d9d9;
}
.header .btn-green {
    width: fit-content;
}

/* main */
.main-section {
    width: 100%;
    padding-top: 130px;
    /* height: 100vh; */
}
.main-title {
    font-size: 67px;
    line-height: 80px;
    font-weight: 600;
}


.mobile-img {
    display: none;
}
.timeline {
    background-image: url('timelinee.svg');
    background-position-x: 133%;
    background-position-y: -120px;
    background-repeat: no-repeat;
    height: 500px;
    position: relative;
}
.timeline-text {
    width: 238px;
    position: absolute;
    background-color: #ffffff;
}
.timeline-text.text-1 {
    left: 13.6%;
} 
.timeline-text.text-2 {
    bottom: 17%;
    left: 26.5%;
}
.timeline-text.text-3 {
    left: 42%;
    top: -2%;
} 
.timeline-text.text-4 {
    bottom: 14%;
    left: 56.5%;
}
.timeline-text.text-5 {
    left: 70%;
    top: -1%;
}
/* benefits */
.benefit-title {
    font-size: 20px;
}
.popover__wrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
}
.popover__content {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: -70px;
    top: -93px;
    background-color: #ffffff;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    padding: 10px;
    width: 380px;
    font-size: 12px;
}
.popover__wrapper:hover .popover__content {
    z-index: 10;
    opacity: 1;
    visibility: visible;
    transform: translate(0, -20px);
    transition: all 0.5s cubic-bezier(0.75, -0.02, 0.2, 0.97);
}
.popover__message {
    text-align: center;
}

/* how it works */
.steps {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}
.steps li:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    border-top: 1px solid #ddd;
    top: 30px;
    left: 0;
    z-index: -1;
}
.steps li {
    width: 260px;
    position: relative;
}
.steps li .number {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 50%;
    background-color: #fff;
    margin: auto;
    font-size: 22px;
    font-weight: 500;
} 
.steps li .caption {
    margin-top: 20px;
    padding: 0 13px;
    text-align: center;
    color: #7b8b99;
}
.section-how-it-works .text {
    margin-top: 36px;
}
.section-how-it-works .popover__content {
    left: -150px;
}

/* faq */
.section-features {
    background-color: #e3e8e9;
    padding: 70px 0;
}
.accordion-item {
    width: 420px;
    border-bottom: 0;
    margin-bottom: 15px;
    border-radius: 12px !important;
}
.accordion-flush .accordion-item .accordion-button {
    padding: 1rem;
}
.accordion-body {
    padding: 0 1.25rem 1.5rem;
    font-weight: 300 !important;
    color: #7b8b99;
}
.accordion-button {
    border-radius: 12px !important;
}
.accordion-button:focus {
    border-color: unset;
    box-shadow: unset;
}
.accordion-button:not(.collapsed) {
    color: unset;
    background-color: unset; 
    box-shadow: unset;
}
.accordion-button::after {
    content: " + ";
    width: unset;
    height: unset;
    font-size: 30px;
    font-weight: 300;
    background-image: unset;
}
.accordion-button:not(.collapsed)::after {
    content: " - ";
    background-image: unset;
    transform: unset;
}

/* section join */
.section-join input {
    border: 1px solid #9da993;
    border-radius: 12px;
    outline: 0;
}
/* footer */
.footer {
    border-top: 1px solid #d9d9d9;
}
.footer-menu li a {
    margin-right: 20px;
    color: black;
}
.footer-text {
    text-align: end;
}


/* media queries */
@media (max-width: 1400px) {
    .main-img {
        width: 520px;
        height: 520px;
    }
    .main-title {
        font-size: 60px;
        line-height: 72px;
    }
    .accordion-item {
        width: 450px;
    }
    .timeline {
        background-position-x: -160%;
    }
    .timeline-text.text-1 {
        left: 6.6%;
    }
    .timeline-text.text-2 {
        left: 22.5%;
    }
    .timeline-text.text-3 {
        left: 39.5%;
    }
    .timeline-text.text-4 {
        left: 56.5%;
    }
    .timeline-text.text-5 {
        left: 72%;
    }
}

@media (max-width: 1200px) {
    .main-section .row {
        overflow-y: hidden;
        overflow-x: hidden;
    }
    .timeline {
        background-position-x: 0;
    }
    .timeline-text {
        font-size: 16px !important;
    }
    .timeline-text.text-1 {
        left: -0.6%;
    }
    .timeline-text.text-2 {
        left: 17.5%;
    }
    .timeline-text.text-3 {
        left: 38.5%;
        top: 3%;
    }
    .timeline-text.text-4 {
        left: 59.5%;
    }
    .timeline-text.text-5 {
        left: 78%;
    }
    .main-title {
        font-size: 50px;
        line-height: 64px;
    }
    .main-img {
        width: 440px;
        height: 440px;
    }
    .popover__content {
        left: -120px;
    }
    .accordion-flush {
        flex-direction: column;
    }
    .accordion-item {
        width: 100%;
    }
    .footer-center {
        justify-content: center !important;
    }
    .footer-menu {
        margin-top: 14px;
    }
    .footer-menu li a {
        margin-right: 12px;
    }
    .footer-logo {
        margin: 10px 0;
    }
    
}

@media (max-width: 992px) {
    .main-section {
        margin-bottom: 30px;
    }
    .main-img {
        background-size: contain;
        background-repeat: no-repeat;
        margin: 0 auto;
    }
    .section {
        padding: 25px 0;
    }
    .section-title {
        font-size: 28px;
    }
    .text-center-tablet {
        text-align: center;
    }
    .flex-column-reverse-tablet {
        flex-direction: column-reverse;
    }
    .mb-30-tablet {
        margin-bottom: 30px;
    }
    .section-features {
        padding: 50px 0;
        margin-top: 25px;
    }

    .mobile-img {
        display: block;
    }
    .timeline {
        background-image: unset;
        display: flex;
        height: unset;
    }
    .timeline-text {
        position: unset;
        text-align: left !important;
        max-width: 516px;
        width: 100%;
        margin-left: 24px;
        margin-top: 12px;
        margin-bottom: 0;
        /* height: 100px; */
    }
    .timeline-text.text-1 {
        margin-bottom: 122px;
    }
    .timeline-text.text-2 {
        margin-bottom: 124px;
    }
    .timeline-text.text-3{
        margin-bottom: 116px;
    }
    .timeline-text.text-4 {
        margin-bottom: 112px;
    }
}

@media (max-width: 768px) {
    .main-section {
        height: unset;
        padding-top: 200px !important;
    }
    .header .btn-green {
        margin-top: 20px;
    }
    .header-column {
        flex-direction: column;
    }
    .main-title {
        font-size: 40px;
        line-height: 52px;
    }
    .fs-18 {
        font-size: 16px;
        line-height: 20px;
    }
    .section-how-it-works .text {
        margin-top: -20px;
    }
    .steps {
        flex-direction: column;
    }
    .steps li {
        max-width: 500px;
        width: 100%;
        height: 130px;
    }
    .steps li .number {
        margin: unset;
    }
    .steps li .caption {
        margin-left: 55px;
        margin-top: -42px;
        text-align: left;
    }
    .steps li:after {
        content: "";
        width: 1px;
        height: 100px;
        border-right: 1px solid #ddd;
        top: 60px;
        left: 29px;
    }
    .steps li:last-child::after {
        content: none;
    }
    .pricing-card:first-child {
        margin-bottom: 30px;
    }
    .timeline-text {
        max-width: unset;
        width: 430px;
    }
    .timeline-text.text-1 {
        margin-top: 10px;
        margin-bottom: 128px;
    }
    .timeline-text.text-3,
    .timeline-text.text-4 {
        margin-bottom: 126px;
    }
}

@media (max-width: 576px) {
    .timeline-text {
        width: 266px;
        margin-left: 12px;
    }
    .timeline-text.text-1 {
        margin-top: 6px;
        margin-bottom: 112px;
    }
    .timeline-text.text-2 {
        margin-bottom: 112px;
    }
    .timeline-text.text-3 {
        margin-bottom: 106px;
    }
    .timeline-text.text-4 {
        margin-bottom: 105px;
    }

}

@media (max-width: 490px) {
    .main-img {
        max-width: 440px;
        width: 100%;
    }

}

@media (max-width: 480px) {
    .header .right-column {
        flex-direction: column;
    }
    .header .btn-green {
        margin-left: 0;
    }
    .main-img {
        display: flex;
        justify-content: center;
    }
    .flex-column-mobile {
        flex-direction: column;
        padding: 12px 0;
    }
    .section-title {
        font-size: 26px;
    }
    .benefit-title {
        font-size: 18px;
    }
    .popover__content {
        top: -83px;
        width: 300px;
        margin-left: 40px;
    }
    .footer-right {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 385px) {
    .footer-menu {
        flex-direction: column;
        align-items: center;
    }
}