* {
    box-sizing: border-box;
    scroll-behavior: smooth;
    transition: all 0.5s ease-in-out;
}

:root {
    --main-color: #FAD000;
    --padding: 100px;
    --font-size-hug: 55px;
    --font-size-title: 42px;
    --font-size-medium: 30px;
    --font-size-small: 18px;
    --font-size-main: 26px;
    --bg-color-second: #F0F2F4;
    --padding-block-25: 25px;
}

html,
body {
    height: 100%;
    width: 100%;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

a {
    text-decoration: none;
    color: #000;
}

li {
    list-style-type: none;
}

img {
    width: 100%;
}

/* general classes */
.container {
    /* max-width: 1600px; */
    margin-inline: auto;
    overflow: hidden;
}

.flex-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.flex-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.font-26-bold {
    font-size: var(--font-size-main);
    font-weight: 500;
}

.title {
    font-size: var(--font-size-title);
    font-weight: 500;
    text-align: center;
}

/* header section classes start */
.header {
    width: 100%;
}

.first-line-header {
    padding-inline: var(--padding);
    margin-block: 15px;
}

.first-line-header .logo {
    font-size: var(--font-size-hug);
    width: 30%;
    font-weight: bold;
}

.first-line-header .menu {
    width: 25%;
}

.icon-menu-responsive {
    display: none;
}

.second-line-header {
    background-color: var(--main-color);
    padding-inline: var(--padding);
    padding-block: var(--padding-block-25);
}

.socia-media {
    justify-content: end;
}

.whatsapp {
    margin-inline-end: 25px;
}

/* header section end */
/* first section start */
.first-section {
    width: 100%;
    padding: var(--padding);
    justify-content: center;
}

.main-title {
    justify-content: center;
    width: 100%;
    font-weight: 600;
    font-size: var(--font-size-hug);
}

.main-title h4 {
    margin-top: 0;
    text-align: center;
}

.first-section div:nth-child(2) {
    padding-block: var(--padding-block-25);
    width: 100%;
}

.first-section div:last-child {
    text-align: center;
    margin-inline: auto;
    font-size: var(--font-size-medium);
    padding-block: var(--padding-block-25);
    width: 90%;
}

/* first section end */
/* about section start */
.about-section {
    padding: var(--padding);
    background-color: var(--bg-color-second);
}

.wind-left-mobile,
.wind-right-mobile {
    display: none;
}

.top-about-section {
    justify-content: center;
}

.top-about-section div:nth-child(2) {
    align-items: center;
    text-align: center;
}

.top-about-section div:nth-child(2) div:nth-child(2) {
    padding-block: var(--padding-block-25);
}

.bottom-about-section {
    align-items: start;
    margin-top: 15px;
}

.bottom-about-section>div {
    width: 30%;
}

.bottom-about-section>div .list-num {
    font-size: var(--font-size-hug);
}

.bottom-about-section>div .question {
    margin-top: 30px;
    margin-bottom: 15px;
}

.bottom-about-section>div p {
    font-weight: 300;
    font-size: var(--font-size-main);
}

.bottom-about-section>div:nth-child(2) {
    margin-inline: 25px;
}

/* about section end */
/* services section start */
.services-section {
    padding: var(--padding);
}

.services-section>div {
    align-items: center;
    justify-content: space-between;
    flex: 1;
    height: 300px;
}

.services-section .service-icon {
    width: 200px;
    height: 200px;

}

.service-img-desktop {
    display: block;
}

.service-title {
    font-weight: 700;
    font-size: var(--font-size-medium);
    text-align: center;
}
/* services section end */
/* our trademark start */
.our-trademark {
    padding: var(--padding);
    background-color: var(--bg-color-second);
}

.our-trademark>div:nth-child(2) {
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
}

.our-trademark>div:nth-child(2)>div {
    margin-top: 80px;
    flex-wrap: wrap;
    width: 30%;
}

.our-trademark>div:nth-child(2)>div .trademark-img {
    width: 90%;
    margin-inline: auto;
    position: relative;
    z-index: +1;
}

.our-trademark>div:nth-child(2)>div .trademark-img::before {
    content: "";
    width: 100%;
    height: 75%;
    position: absolute;
    top: -40px;
    background-color: #fff;
    z-index: -1;
}

.our-trademark .trademark-text {
    max-width: 90%;
    margin-inline: auto;
    justify-content: start;
}

.our-trademark .trademark-text>div:nth-child(1) {
    font-size: var(--font-size-medium);
}

.our-trademark .trademark-text>p {
    font-size: var(--font-size-small);
    line-height: 26px;
}

/* our trademark end */
/* achieved section start */
.achieved-section {
    padding-block: var(--padding);
    align-items: center;
    width: 100%;
}

.achieved-section>div:nth-child(2) {
    margin-top: 80px;
    width: 100%;
}

.achieved-img {
    width: 45%;
}

.achieved-text {
    width: 45%;
    padding-inline-end: 50px;
}

.achieved-text>div:first-child {
    font-size: var(--font-size-medium);
    font-weight: 500;
}

.achieved-text>div:nth-child(2) {
    justify-content: space-between;
    margin-top: 20px;
}

.achieved-text>div:nth-child(2)>div {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.achieved-text>div:nth-child(2) .achieved-icon {
    margin-inline-end: 25px;
    width: 15%;
}

.achieved-text>div:nth-child(2)>div>div:nth-child(2) {
    font-size: var(--font-size-medium);
}

.achieved-text>div:nth-child(2)>div>div:nth-child(2) span {
    font-weight: 900;
}

/* achieved section end */
/* download section start */
.download-section {
    padding: var(--padding);
    justify-content: space-between;
}

.download-section>div:nth-child(2) {
    justify-content: space-between;
}

.download-imgs {
    width: 45%;
}

.download-imgs>div>img {
    width: 100%;
}

.download-imgs>div:first-child {
    transform: translate(40%);
    z-index: -1;
}

.download-button {
    width: 40%;
}

.download-title {
    margin-bottom: 25px;
}

.download-button>div:last-child {
    width: 90%;
}

/* download section end */
/* steps process section start */
.steps-process-section {
    align-items: center;
    background-color: var(--bg-color-second);
    padding: var(--padding);
    width: 100%;
}

.steps-process-section>div:nth-child(2) {
    justify-content: center;
    /* height: 600px; */
    margin-top: 40px;
}

.grid1 {
    display: grid;
    gap: 1%;
    grid-template-rows: repeat(1, 1fr);
    grid-template-columns: repeat(2, 1fr);
}

.steps {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    gap: 2%;
    grid-template-columns: repeat(2, 1fr);
    grid-column: 1/2;
}

.onestep {
    background-color: #fff;
    padding: 25px;
    margin-inline: 1%;
    display: flex;
    flex-direction: column;
}

.steps .onestep:nth-child(3),
.steps .onestep:nth-child(4) {
    margin-bottom: 0px;
}

.onestep .stepNum {
    font-size: 80px;
    opacity: 0.3;
}

.onestep .stepText {
    font-size: var(--font-size-main);
    overflow: hidden;
    flex: 1;
    display: flex;
    align-items: start;
}

.Metre {
    background-color: #fff;
    /* width: 40%; */
    /* height: 100%; */
    /* margin: 5px; */
    padding: 25px;
    align-items: center;
    text-align: center;
}

.Metre h3 {
    font-size: var(--font-size-title);
}

.Metre>div:nth-child(2) {
    font-size: var(--font-size-medium);
}

.Metre form {
    width: 100%;
}

.Metre input {
    width: 100%;
    height: 50px;
    border-radius: 5px;
    background-color: var(--bg-color-second);
    margin-block: 25px;
}

.Metre a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-size: var(--font-size-main);
    padding-block: var(--padding-block-25);
    /* border-color: var(--main-color); */
    cursor: pointer;
    border: 1px solid var(--main-color);
    border-radius: 15px;
}

.Metre a img {
    width: 60px;
    margin-inline-start: 15px;
}

.steps-process-section>div:last-child {
    margin-top: 40px;
    padding: 20px 50px;
    border: 10px;
    font-size: var(--font-size-main);
    /* border-color: #000; */
    border: 1px solid #000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 16.28px;
    background-color: #E5E5E5;
}

/* steps process section end */
/* accordion section start */
.accordion-section {
    padding: var(--padding);
}

.accordion-section .accordion-item:nth-child(1) {
    border-top-right-radius: 23px;
    border-top-left-radius: 23px;
}

.accordion-item {
    padding: 40px;
    width: 90%;
    background-color: #FAF6FF;
    margin-inline: auto;
    transition: all .5s;
}

.accordion-item.active {
    background-color: #019EC973;
}

.accordion-header {
    cursor: pointer;
}

.accordion-header>div:first-child {
    padding: 10px;
    display: flex;
    font-size: var(--font-size-medium);
    font-weight: 700;
}

.accordion-header .accordion-num {
    margin-right: 25px;
    color: var(--main-color);
}

.accordion-content {
    transition: all .5s;
    max-height: 0px;
    display: none;
    opacity: 0;
    padding-inline: 25px;
}

.accordion-content.active {
    display: block;
    opacity: 1;
    max-height: 1000px;
}

.accordion-content p {
    margin: 0;
    font-size: var(--font-size-small);
}

.plus {
    min-width: 50px;
    display: block;
}

.plus.active {
    display: none;
}

.xmark {
    min-width: 50px;
    display: none;
}

.xmark.active {
    min-width: 50px;
    display: block;
}

/* accordion section end */
/* contact us section start */
.contactus-section {
    padding: var(--padding);
    background-color: #0B8ED5;
    color: #fff;
}

.contactus-section>div {
    display: flex;
    justify-content: space-between;
}

.contactus-section>div>div:first-child {
    width: 40%;
}

.contactus-section>div>div:first-child>div:first-child {
    text-align: start;
}

.contactus-section>div>div:first-child>div:nth-child(2) {
    padding-block: var(--padding-block-25);
}

.contactus-section>div>div:first-child>div:not(:first-child) {
    font-size: var(--font-size-medium);

}

.contactus-section>div>div:last-child {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

/* .contactus-section>div>div:last-child */
.contactus-section>div>div:last-child .number,
.contactus-section>div>div:last-child .email {
    font-size: var(--font-size-medium);
}

.socialMediaContact {
    display: flex;
    justify-content: space-around;
    margin-top: 25px;
}

.socialMediaContact img {
    margin-inline: 10px;
}

/* contact us section end */



/* responsive design 1250px --> 992px */
@media screen and (max-width: 1250px) {
    :root {
        --font-size-main: 20px;
        --font-size-hug: 48px;
        --font-size-title: 35px;
        --font-size-medium: 24px;
    }

    .first-line-header .menu {
        width: 35%;
    }

    .service-title {
        margin-top: 0px;
    }

    .achieved-text>div:first-child {
        margin-inline-end: 15px;
    }

    .Metre a img {
        width: 40px;
    }

    .onestep .stepNum {
        font-size: 60px;
    }
}

/* responsive design 992px --> 767px */

@media screen and (max-width: 992px) {
    :root {
        --padding: 50px;
        --font-size-hug: 38px;
        --font-size-title: 26px;
        --font-size-medium: 20px;
    }

    .first-line-header .menu {
        width: 50%;
    }

    .services-section>div {
        height: 250px;
    }

    .services-section .service-icon {
        width: 150px;
        height: 150px;
    }

    .our-trademark>div:nth-child(2)>div {
        flex-wrap: wrap;
    }

    .achieved-text>div:nth-child(2) {
        margin-top: 10px;
    }

    .achieved-text>div:nth-child(2)>div {
        margin-top: 15px;
    }

    .socialMediaContact img {
        width: 50px;
    }

}

/* responsive design 767px --> 480px */

@media screen and (max-width: 767px) {
    :root {
        --padding: 25px;
        --font-size-main: 18px;
        --font-size-hug: 30px;
        --font-size-title: 30px;
        --font-size-medium: 25px;
    }

    .first-line-header .menu {
        width: 60%;
    }

    .wind-left,
    .wind-right {
        display: none;
    }

    .wind-left-mobile,
    .wind-right-mobile {
        display: flex;
        width: 30%;
    }

    .bottom-about-section {
        flex-direction: column;
        margin-top: 15px;
    }

    .bottom-about-section>div {
        width: 100%;
    }

    .bottom-about-section>div:nth-child(2) {
        margin-inline: 0px;
    }

    .services-section {
        flex-direction: column;
    }

    .services-section>div {
        width: auto;
        justify-content: space-around;
        min-height: 300px;
    }

    .our-trademark>div:nth-child(2) {
        flex-direction: column;
    }

    .our-trademark .trademark-text {
        text-align: center;
    }

    .our-trademark>div:nth-child(2)>div {
        width: 100%;
        margin-top: 50px;
    }

    .our-trademark>div:nth-child(2)>div .trademark-img::before {
        display: none;
        top: 0;
    }

    .our-trademark>div:nth-child(2)>div .trademark-img {
        width: 50%;
    }

    .achieved-section>div:nth-child(2) {
        flex-direction: column;
        width: 100%;
    }

    .achieved-img {
        width: 100%;
    }

    .achieved-text {
        width: 90%;
        padding-inline-end: 0px;
    }

    .achieved-text>div:nth-child(2) {
        margin-top: 10px;
    }

    .achieved-text>div:nth-child(2)>div {
        margin-top: 15px;
    }

    .socialMediaContact img {
        max-width: 50px;
    }

    .achieved-text>div:nth-child(2) .achieved-icon {
        width: 15%;
    }

    .download-section>div:nth-child(2) {
        flex-direction: column;
        margin-top: 15px;
    }

    .download-imgs {
        width: 100%;
    }

    .download-imgs>div:first-child {
        transform: translate(25%);
    }

    .download-imgs>div:last-child {
        transform: translate(-25%);
    }

    .download-button {
        width: 70%;
    }

    .download-button>div:first-child {
        text-align: center;
    }

    .grid1 {
        display: grid;
        gap: 1%;
        grid-template-rows: repeat(2, 1fr);
        grid-template-columns: repeat(1, 1fr);
    }

    .steps {
        display: grid;
        grid-template-rows: repeat(2, 1fr);
        gap: 2%;
        grid-template-columns: repeat(2, 1fr);
        grid-row: 1/2;
    }

    .steps .onestep:nth-child(3),
    .steps .onestep:nth-child(4),
    .onestep {
        margin-bottom: 10px;
    }

    .Metre {
        margin: 0;
    }

    .accordion-header>div:first-child {
        flex-direction: column;
    }

    .accordion-header .accordion-num {
        margin-bottom: 10px;
    }

    .contactus-section>div {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .contactus-section>div>div:first-child {
        align-items: center;
        text-align: center;
        width: 90%;
    }

    .contactus-section>div>div:last-child {
        width: 90%;
        margin-top: 15px;
    }

    .contactus-section>div>div:last-child {
        text-align: center;
        align-items: center;
    }

    .contactus-section>div>div:last-child>div:first-child {
        width: 100%;
        text-align: center;
    }

    .contactus-section>div>div:first-child>div:nth-child(2) {
        width: 100%;
    }
}

/* responsive design 480px */

@media screen and (max-width: 480px) {
    :root {
        --padding: 20px;
        --font-size-main: 18px;
        --font-size-hug: 30px;
        --font-size-title: 30px;
        --font-size-medium: 20px;
    }

    .icon-menu-responsive {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 35px;
        height: 15px;
        z-index: +1000;
    }

    .icon-menu-responsive span {
        width: 24px;
        height: 4px;
        background-color: #000;
        transition: all .4s;
    }

    .icon-menu-responsive span:nth-child(2) {
        margin-block: 4px;
    }

    .icon-menu-responsive.active span:nth-child(2) {
        display: none;
    }

    .icon-menu-responsive.active span:nth-child(1) {
        transform: rotate(-45deg);
        margin-top: 3px;
    }

    .icon-menu-responsive.active span:nth-child(3) {
        transform: rotate(45deg);
        margin-bottom: 10px;
    }

    .first-line-header {
        position: relative;
    }

    .first-line-header .menu {
        position: absolute;
        top: 100%;
        width: 100%;
        right: 0;
        max-height: 0;
        z-index: 100000000;
        transition: max-height 1s;
        color: #000;
        display: flex;
        opacity: 0;
        flex-direction: column;
        padding-left: 0;
        overflow: hidden;
    }

    .first-line-header .menu.active {
        max-height: 1000px;
        background-color: var(--main-color);
        opacity: 1;
    }

    .first-line-header .menu.active li a {
        transition: all .2s;
    }

    .first-line-header .menu.active li a:hover {
        color: #fff;
    }

    .first-line-header .menu li:nth-child(2) {
        margin-block: 20px;

    }

    .service-title {
        margin-top: 20px;
    }



    .our-trademark>div:nth-child(2)>div .trademark-img {
        width: 90%;
    }

    .Metre {
        background-color: var(--bg-color-second);
    }

    .steps-process-section>div:last-child {
        margin-top: 15px;
    }

    .grid1 {
        grid-template-rows: repeat(3, 1fr);
    }

    .steps {
        display: grid;
        grid-template-rows: repeat(4, 1fr);
        gap: 1%;
        grid-template-columns: repeat(1, 1fr);
        grid-row: 1/3;
    }

    .accordion-section {
        padding: 10px;
    }

    .accordion-header>div:first-child {
        font-size: 18px;
    }

    .accordion-item {
        padding: 10px;
    }

    .accordion-header .accordion-num {
        font-size: 25px;
    }

    .contactus-section>div>div:first-child,
    .contactus-section>div>div:first-child>div:first-child,
    .contactus-section>div>div:last-child>div:first-child {
        text-align: center;
    }
}
