main {
    padding-top: var(--base-padding);
    background-color: #f7f7f7;
}

.mainContainer {
    min-height: 100dvh;
}

.hero .main-container {
    /* min-height: 100dvh; */
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    /* align-items: stretch; */
}

.hero .main-container .left-container {
    height: max-content;
    display: flex;
    /* align-items: stretch; */
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
}

.headline {
    text-align: center;
    /* padding: 2rem 0; */
    /* min-height: 20vh; */
    /* color: var(--primary-font-color); */
}

.headline h1 {
    font-size: var(--fs-900);
    color: var(--primary-font-color);
    font-family: 'Yantramanav', sans-serif;
}

.headline span {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    font-size: var(--fs-400);
    font-weight: var(--fw-normal);
    /* text-align:; */
}

.mainDescription {
    color: var(--primary-font-color);
    font-size: var(--fs-300);
    font-family: Arial, Helvetica, sans-serif;
    font-style: italic;
}

.heroNavigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.right-container {
    width: 100%;
}

.hero .main-container .right-container img {
    /* object-fit: contain; */
    width: 100%;
}





.whyChooseUs {
    padding: 7rem 0;
    /* width: 100%; */
    background-color: var(--primary-bg-color);
}

.whyChooseUs .heading {
    /* width: 100%; */
    text-align: center;
    font-family: 'Arimo';
    font-weight: var(--fw-bold);
    font-size: var(--fs-600);
    color: var(--primary-font-color);
    margin-bottom: 2rem;
}

.whyChooseUs .reasons {
    display: grid;
    grid-template-areas:
        'div div'
        'div div';
    /* grid-template-columns: repeat(auto-fill, minmax(50px, 400px)); */
    gap: 1rem;
    /* color: rgb(148, 44, 44); */
}

.whyChooseUs .reasons div {
    /* border: 5px solid var(--secondary-bg-color); */
    /* border-radius: 1rem; */
    padding: .8rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.whyChooseUs .reasons div svg {
    height: 2.5rem;
    width: 2.5rem;
}

.whyChooseUs .reasons div .reasonHeading {
    font-weight: var(--fw-semi-bold);
    font-size: var(--fs-500);
    /* text-align: center; */
}

.reason1 .reasonHeading {
    color: #0a64bc;
}

.reason2 .reasonHeading {
    color: green;
}

.reason3 .reasonHeading {
    color: orange;
}

.reason4 .reasonHeading {
    color: rgb(148, 44, 44);
}


.secondaryFooter {
    /* flex-direction: column; */
    padding: 2rem 1rem;
    background-color: var(--primary-bg-color);
    /* padding-top: 2rem; */
}

.secondaryFooter .main-container {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 1rem;
    align-items: center;
    text-align: center;
    color: var(--primary-font-color);
}

.secondaryFooter .main-container .flex-container {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    /* justify-content: center; */
}

.secondaryFooter .main-container .flex-container h3 {
    font-size: var(--fs-600);
    font-family: "Yantramanav";
}

.secondaryFooter .main-container .flex-container button {
    /* background-color: var(--accent-bg-color); */
    font-size: var(--fs-550);
}

.secondaryFooter .main-container p {
    font-family: "Yantramanav";
    font-weight: var(--fw-light);
    font-style: italic;
}

@media(min-width:480px) {
    .whyChooseUs .reasons {
        gap: 1.3rem;
    }

    .whyChooseUs .reasons div svg {
        height: 2.5rem;
        width: 2.5rem;
    }

}

@media(min-width: 700px) {
    .whyChooseUs .reasons {
        gap: 1.5rem;
    }

    .whyChooseUs .reasons div svg {
        height: 2.7rem;
        width: 2.7rem;
    }
}

@media(min-width:990px) {
    .secondaryFooter .main-container .flex-container {
        flex-direction: initial;
        justify-content: space-between;
    }
}

@media(min-width: 1024px) {

    .hero .main-container {
        flex-direction: unset;
        justify-content: space-between;
        gap: 2rem;
    }

    .hero .main-container .left-container {
        /* align-items: stretch; */
        max-width: 50%;
        min-width: 40%;
        text-align: right;
        gap: 2rem;
    }

    .hero .main-container .left-container .headline {
        text-align: right;
        line-height: 1;
    }

    .hero .main-container .left-container .headline span {
        justify-content: flex-end;
    }

    .hero .main-container .left-container .mainDescription {
        text-align: right;
    }

    .hero .main-container .left-container .heroNavigation {
        justify-content: flex-end;
        gap: 1.3rem;
    }

    .hero .main-container .right-container {
        min-width: 50%;
        max-width: 60%;
    }

    .whyChooseUs .reasons {
        gap: 2rem;
    }

    .whyChooseUs .reasons div {
        min-height: 10rem;
    }

    .whyChooseUs .reasons div svg {
        height: 2.8rem;
        width: 2.8rem;
    }
}

@media(min-width:1200px) {
    .whyChooseUs .reasons {
        /* gap: 2rem; */
        grid-template-areas:
            'div div div div';
        gap: 1rem;
        /* align-items: center; */
    }

    .whyChooseUs .reasons div {
        /* min-height: 10rem; */
        min-height: 15rem;
        max-width: auto;
        /* align-self: center; */
        margin-inline: auto;
    }

    .whyChooseUs .reasons div svg {
        height: 3rem;
        width: 23rem;
    }
}

@media(min-width:1440px) {
    .whyChooseUs .reasons div svg {
        height: 3.5rem;
        width: 3.5rem;
    }

}

















































































.process {
    padding: 7rem 0;
}

.process .main-container .heading {
    text-align: center;
    font-family: 'Arimo';
    font-weight: var(--fw-bold);
    font-size: var(--fs-600);
    color: var(--primary-font-color);
    margin-bottom: 2rem;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 100px auto;
    z-index: 1;
}

.timelineContainer {
    padding: 10px 50px;
    position: relative;
    width: 50%;
    opacity: 0;
}

.timeline-active {
    animation: movedown 0.8s linear forwards;
}

@keyframes movedown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* .timelineContainer:nth-child(1){
    animation-delay: 0s;
} */
.timelineContainer:nth-child(2) {
    animation-delay: 0.8s;
}

.timelineContainer:nth-child(3) {
    animation-delay: 1.6s;
}

.timelineContainer:nth-child(4) {
    animation-delay: 2.4s;
}

.timelineContainer:nth-child(5) {
    animation-delay: 3.2s;
}



.textBox {
    padding: 20px 30px;
    background-color: var(--accent-bg-color);
    position: relative;
    border-radius: 6px;
    font-size: 15px;
    color: var(--primary-font-color);
}

.textBox h3 {
    font-family: "Arimo";
    margin-bottom: 0.5rem;
}

.textBox p {
    color: black;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.leftTimelineContainer {
    left: 0;
}

.rightTimelineContainer {
    /* position: relative; */
    left: 50%;
}

.rightTimelineContainer img {
    left: -20px;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 100%;
    background-color: black;
    top: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 5px;
    z-index: -1;
    animation: moveline 4s linear forwards;
}

@keyframes moveline {
    0% {
        height: 0;
    }

    100% {
        height: 100%;
    }
}


.timelineContainer img {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    right: -20px;
    top: 32px;
    z-index: 3;
}




.leftContainerArrow {
    height: 0;
    width: 0;
    position: absolute;
    top: 28px;
    z-index: 2;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid var(--accent-bg-color);
    right: -15px;
}

.rightContainerArrow {
    height: 0;
    width: 0;
    position: absolute;
    top: 28px;
    z-index: 2;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid var(--accent-bg-color);
    left: -15px;
}

@media(max-width: 900px) {
    .timeline {
        margin: 2rem auto;
    }

    .timeline::after {
        left: 12.5px;
    }

    .leftTimelineContainer {
        width: 100%;
        /* left: -10px; */
        padding-right: 0;
        /* padding-left: -20px; */
    }

    .rightTimelineContainer {
        width: 100%;
        left: 0;
        padding-right: 0;
    }

    .textBox h3 {
        font-size: var(--fs-500);
    }

    .textBox p {
        /* padding: 10px 10px; */
        font-size: var(--fs-300);
    }

    .leftContainerArrow {
        border-left: none;
        border-right: 15px solid var(--accent-bg-color);
        left: -15px;
    }

    .leftTimelineContainer img {
        left: -7.5px;
    }

    .rightTimelineContainer img {
        left: -7.5px;
    }
}