@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    overflow-x: hidden;
}
*::-webkit-scrollbar{
    display: none;
}
    body{
        font-family: 'Lato', sans-serif;
        width: 100%;
    }
    nav{
        width: 100%;
        height: 75px;
        background-color: white;
        position: fixed;
        z-index: 2;
        padding: 16px 30px;
        align-items: center;
        box-shadow: 0px 7px 16px rgba(0, 0, 0, 0.065);
    }
    .checkbtn{
        float: right;
        font-size: 26px;
        display: none;
    }
    #check{
        display: none;
    }
    nav .logo{
        float: left;
        color: #03A63C;
        font-size: 30px;
        font-weight: 700px;
    }
    nav .links{
        float: right;
        display: flex;
    }
    nav .links ul{
        display: flex;
        line-height: 34px;
    }
    nav .links ul li{
        padding: 0 20px;
    }

    .links ul li a{
    color: #141414;
    transition: ease-out 0.3s;
    font-family: 'Segoe UI'
}
.links ul li a:hover{
    color: #03A63C;
}    
nav .btn{
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* justify-content: space-evenly; */
    margin-left: 150px;
    /* padding: 0 20px; */
} 
.btn a .btn1{
    cursor: pointer;
    background: transparent;
    width: 140px;
    height: 40px;
    border-radius: 30px;
    border: 1px solid #03A63C;
    color: black;
    padding: 0 20px;
    transition: ease-out 0.3s;
}
.btn a .btn1:hover{
    background: #03A63C;
    color: white;
} 
.btn a .btn2{
    cursor: pointer;
    background: #03A63C;
    width: 140px;
    height: 40px;
    border-radius: 30px;
    border: none;
    color: white;
    margin-left: 15px;
    transition: ease-in 0.3s;
}
.btn a .btn2:hover{
    background: transparent;
    border: 1px solid #03A63C;
    color: black;
}

/* .container{
    
} */
.main2{
    background-image: url(/image/image\ 12.png);
    background-size: cover;
    width: 100%;
    background-position: center;
    height: 100vh;
    padding-left: 100px;
    padding-right: 100px;
    padding-top: 100px;
}
.main2 .Sub-main1{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.Sub-main1 img{
    width: 300px;
    margin-top: 20px;
    animation: slidefromtop 1s ease-in;
}
@keyframes slidefromtop {
    0% {
        transform: translateY(-100%);
      }
    
      100% {
        transform: translateX(0);
      }
}
.sub-main2{
    display: block;
    justify-content: center;
    text-align: center;
    animation: slidefrombottom 1s ease-out;
}
@keyframes slidefrombottom{
    0% {
        transform: translateY(100%);
      }
    
      100% {
        transform: translateX(0);
      }
}
.sub-main2 h1{
    color: white;
    font-size: 54px;
    margin-top: -0px;
}
.sub-main2 p{
    color: white;
    font-size: 20px;
}
    .sub-btn2  {
        margin-top: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 3em;
    }
.sub-btn2 .btn3{
    cursor: pointer;
    background: #03A63C;
    width: 140px;
    height: 40px;
    border-radius: 30px;
    border: none;
    color: white;
    transition: 0.7s;
    padding: 0 ;
}
.sub-btn2 .btn3:hover{
    background: transparent;
    border: 2px solid #03A63C;
    color: white;
}
.sub-btn2 .btn4{
    /* margin-left: 50px; */
    cursor: pointer;
    color: white;
    background-color: transparent;
    transition: 0.9s;
    border-bottom: 1px solid transparent;
}
.sub-btn2 .btn4:hover{
    width: 100%;
    border-bottom: 3px solid #03A63C;
}

.main3{
    /* width: 100%; */
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding-left: 110px;
    padding-right: 110px;
    /* position: relative; */
}
.main3 img{
    width: 200px;
}
.main4{
    background: #E8FEEF;
    height: 510px;
    align-items: center;
    text-align: center;
    padding-top: 70px;
    padding-left: 110px;
    padding-right: 110px;
}
.main4 h1{
    font-family: 'Calisto MT';
    font-style: normal;
    font-weight: 600;
    font-size: 40px;
    /* line-height: 59px; */
    color: #141414;
    text-align: center;
    margin-bottom: 30px;
}
.main4 h1 span{
    border-bottom: 3px solid #F28705;
}

.sub-main4{
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.why-choose{
    display: block;
}
.sub-main4 img{
    width: 250px;
    height: 200px;
}
.main5{
    width: 100%;
    background: #FFFFFF;
    margin-top: 68px;
    margin-bottom: 68px;
    padding-left: 100px;
    padding-right: 100px;
    align-items: center;
}
.main5 .sub-main5{
    text-align: center;
    margin-bottom: 70px;   
}
.sub-main5 h1{
    font-family: 'Calisto MT';
    font-style: normal;
    font-weight: 600;
    font-size: 40px;
    color: #141414;
    margin-bottom: 20px;
}
.sub-main5 h1 span{
    border-bottom: 3px solid #F28705;
}
.sub-main5 p{
    font-family: 'Lato';
    font-style: normal;
    font-size: 20px;
    color: #141414;
    text-align: center;
}
.box{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}
.sub-box{
    display: block;
    width: 100%;
    height: 420px;
    background-color: #FFFFFF;
    box-shadow: 0px 7px 16px rgba(0, 0, 0, 0.055);
    border-radius: 20px;
    padding-top: 80px;
    padding-left: 10px;
    padding-right: 10px;
    transition: 1s;
}
.sub-box:hover{
    transform: scale(0.91);
    box-shadow: 0px 7px 16px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}
.sub-box img{
    width: 130px;
    padding: 20px;
    background-color: #F28705;
    border-radius: 50%;
}
.sub-box h1{
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    text-align: center;
    color: #141414;
    padding-left: 70px;
    padding-right: 70px;
    margin-bottom: 15px;
}

.sub-box p{
    font-family: 'Lato';
    font-style: normal;
    font-size: 20px;
    line-height: 140%;
    text-align: center;
    color: #141414;
}
.main6{
    width: 100%;
    background: #F2F2F2;
    align-items: center;
    padding-top: 69px;
    padding-bottom: 69px;
}
.main6 .syd-png{
    width: 120px;
    background: #03A63C;
    opacity: 0.2;
    border-radius: 100%;
    padding: 30px;
    display: flex;
    margin-left: 70px;
    margin-bottom: -40px;
}
.main6 .sub-main6{
    display: block;
    text-align: center;
}
.sub-main6 h1{
    font-family: 'Calisto MT';
    font-style: normal;
    font-weight: 600;
    font-size: 45px;
    line-height: 59px;
    color: #121212;
    margin-bottom: 10px;
}
.sub-main6 h1 span{
    border-bottom: 3px solid #F28705;
}
.sub-main6 p{
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    /* line-height: 140%; */
    /* text-align: center; */
    color: #121212;
    margin-bottom: 24px;
}
.card-box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 280px;
}
.card-box .card{
    cursor: pointer;
    background-color: white;
    width: 228.61px;
    height: 304.62px;
    background: #FFFFFF;
    box-shadow: -8.47242px 5.08345px 25.4173px rgba(0, 0, 0, 0.1);
    border-radius: 8.47242px;
}
.card-box .card:hover{
    box-shadow: -8.47242px 5.08345px 25.4173px rgba(0, 0, 0, 0.2);
    transform: scale(1.004);
}
.card img{
    width: 228.61px;
    margin-bottom: -30px;
}
.card .img-2{
    width: 50px;
    margin-bottom: 2px;
    /* margin-left: 26px; */
    padding: 10px;
    background-color: #F28705;
    border-radius: 50%;
}

.card p{
    padding-left: 14px;
    padding-right: 14px;
    margin-bottom: 12px;
    font-size: 12px;
    columns: #121212;
}
.card h5{
    padding-left: 14px;
    font-size: 14px;
    color: #03A63C;
}
.card h5:hover{
    color: #078332;
}
.card h6{
    padding-left: 14px;
    font-size: 12px;
    color: #787878;
}
.main6 .button-green{
    width: 100px;
    display: flex;
    margin: 40px auto 0;
}

/* Subscribe to Newsletter part */
#main7{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 150px;
    margin-bottom: 30px;
}
#main7 img{
    margin-top: 40px;
    width: 356px;
    height: 320px;
}
.sub-main7{
    margin-top: -30px;
    display: block;
}
.sub-main7 h1{
    font-family: 'Calisto MT';
    font-style: normal;
    font-weight: 600;
    font-size: 40px;
    line-height: 59px;
    color: #141414;
}
.sub-main7 p{
    font-family: 'Lato';
    font-style: normal;
    font-size: 18px;
    /* line-height: 140%;     */
    color: #121212;
}
.sub-main7 h4{
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 140%;
    color: #121212;
    margin-top: 40px;
    margin-bottom: 10px;
}
.form-table{
    display: flex;
    justify-content: space-between;
}
.form-table input{
    width: 364px;
    padding: 16px;
    background: #F2F2F2;
    border: 1px solid #8C8C8C;
    border-radius: 6px;
}
.form-table a button{
    cursor: pointer;
    background: #03A63C;
    width: 168px;
    height: 50px;
    border-radius: 30px;
    border: none;
    color: white;
    font-size: 16px;
    /* margin-left: 15px; */
}


/* footer */
footer{
    width: 100%;
    height: 300px;
    background-color: #03A63C;
}
.sub-footer{
    width: 90%;
    background-color: #3FE278;
    border-radius: 0px 0px 110px 0px;
    padding: 37px 100px;
}
.flex{
    display: flex;
    justify-content: space-between;
}
.flex h1{
    font-family: 'Inter';
}
.flex-2{
    display: flex;
    gap: 5em;
}
.block{
    display: block;
}
.block h2{
    font-family: 'Calisto MT';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    padding-bottom: 24px;
}
.block a p{
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #141414;
    padding-bottom: 6px;
}
.media{
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #141414;
}
.media p{
    font-family: 'Segoe UI';
    font-size: 16px;
    color: #141414;
}
.media p span{
    font-weight: 700;
}
.media-icons{
    display: flex;
    gap: 1.5em;
}
.media-icons a i{
    color: #121212;
}


/* MOBILE LAYOUT */

@media screen and (max-width: 1180px) {
    nav .btn{
        margin-left: 0px;
    }
    .main2{
        height: 100vh;
        padding-left: 80px;
        padding-right: 80px;
        padding-top: 80px;
        padding-bottom: 50px;
    }
    .main3{
        padding-left: 50px;
        padding-right: 50px;
    }
    .main3 img{
        width: 150px;
    }
    .main4{
        padding-left: 80px;
        padding-right: 80px;
        height: 410px;

    }
    .sub-main4 img{
        width: 190px;
        height: 150px;
    }
    .main5{
        margin-top: 58px;
        margin-bottom: 58px;
        padding-left: 80px;
        padding-right: 80px;
        align-items: center;
    }
    .box{
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: center;
    }
    .sub-box h1{
        padding-left: 30px;
        padding-right: 30px;
    }
    
    .sub-box p{
        font-family: 'Lato';
        font-style: normal;
        font-size: 18px;
        line-height: 140%;
    }
    .main6{
        width: 100%;
        background: #F2F2F2;
        align-items: center;
        padding: 50px 80px;
        /* background-color: red; */
    }
    .main6 .syd-png{
        width: 100px;
        background: #03A63C;
        opacity: 0.2;
        border-radius: 100%;
        padding: 25px;
        display: flex;
        margin-left: 25px;
    }
    .card-box{
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 80px;
    }
    .main6 .button-green{
        width: 80px;
        display: flex;
        margin: 40px auto 0;
    }
    #main7{
        padding: 0 100px;
        margin-bottom: 30px;
    }
    #main7 img{
        /* margin-top: 40px; */
        width: 326px;
        height: 300px;
    }
    .form-table input{
        width: 334px;
        padding: 14px;
        background: #F2F2F2;
        border: 1px solid #8C8C8C;
        border-radius: 6px;
    }
    .form-table a button{
        width: 148px;
        height: 50px;
        font-size: 16px;
    }
            /* footer */
.sub-footer{
    border-radius: 0px 0px 90px 0px;
    padding: 37px 60px;
}

.flex-2{
    display: flex;
    gap: 4em;
}
}
@media screen and (max-width: 1000px) {
    nav .btn{
        margin-left: 0px;
    }
    .main2{
        height: 100vh;
        padding-left: 70px;
        padding-right: 70px;
        padding-top: 80px;
        padding-bottom: 50px;
    }
    .main3{
        padding-left: 50px;
        padding-right: 50px;
    }
    .main3 img{
        width: 150px;
    }
    .main4{
        padding-left: 70px;
        padding-right: 70px;
        height: 410px;

    }
    .sub-main4 img{
        width: 190px;
        height: 150px;
    }
    .main5{
        margin-top: 58px;
        margin-bottom: 58px;
        padding-left: 50px;
        padding-right: 50px;
        align-items: center;
    }
    .box{
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: center;
    }
    .sub-box h1{
        padding-left: 30px;
        padding-right: 30px;
    }
    
    .sub-box p{
        font-size: 16px;
        line-height: 140%;
    }
    .main6{
        width: 100%;
        background: #F2F2F2;
        align-items: center;
        padding: 50px 50px;
        /* background-color: red; */
    }
    .main6 .syd-png{
        width: 100px;
        background: #03A63C;
        opacity: 0.2;
        border-radius: 100%;
        padding: 25px;
        display: flex;
        margin-left: 25px;
    }
    .card-box{
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 50px;
    }
    .main6 .button-green{
        width: 80px;
        display: flex;
        margin: 40px auto 0;
    }
    #main7{
        padding: 0 50px;
        margin-bottom: 30px;
    }
    #main7 img{
        /* margin-top: 40px; */
        width: 326px;
        height: 300px;
    }
    .form-table input{
        width: 334px;
        padding: 14px;
        background: #F2F2F2;
        border: 1px solid #8C8C8C;
        border-radius: 6px;
    }
    .form-table a button{
        width: 148px;
        height: 50px;
        font-size: 16px;
    }
        /* footer */
.sub-footer{
    border-radius: 0px 0px 90px 0px;
    padding: 37px 60px;
}

.flex-2{
    display: flex;
    gap: 3em;
}
}
@media screen and (max-width: 915px) {
    nav .btn{
        margin-left: 0px;
    }
    .main2{
        height: 100vh;
        padding-left: 50px;
        padding-right: 50px;
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .main3{
        padding-left: 30px;
        padding-right: 30px;
    }
    .main3 img{
        width: 150px;
    }
    .main4{
        padding-left: 50px;
        padding-right: 50px;
        height: 410px;

    }
    .sub-main4 img{
        width: 150px;
        height: 130px;
    }
    .main5{
        margin-top: 58px;
        margin-bottom: 58px;
        padding-left: 50px;
        padding-right: 50px;
        align-items: center;
    }
    .box{
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: center;
    }
    .sub-box h1{
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .sub-box p{
        font-size: 16px;
        line-height: 140%;
    }
    .main6{
        width: 100%;
        background: #F2F2F2;
        align-items: center;
        padding: 50px 30px;
        /* background-color: red; */
    }
    .main6 .syd-png{
        width: 80px;
        background: #03A63C;
        opacity: 0.2;
        border-radius: 100%;
        padding: 22px;
        display: flex;
        margin-left: 25px;
    }
    .card-box{
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 30px;
    }
    .main6 .button-green{
        width: 80px;
        display: flex;
        margin: 40px auto 0;
    }
    #main7{
        padding: 0 50px;
        margin-bottom: 30px;
    }
    #main7 img{
        /* margin-top: 40px; */
        width: 326px;
        height: 300px;
    }
    .form-table input{
        width: 334px;
        padding: 14px;
        background: #F2F2F2;
        border: 1px solid #8C8C8C;
        border-radius: 6px;
    }
    .form-table a button{
        width: 138px;
        height: 40px;
        font-size: 16px;
    }
    /* footer */
.sub-footer{
    border-radius: 0px 0px 90px 0px;
    padding: 37px 50px;
}

.flex-2{
    display: flex;
    gap: 3em;
}
}

@media only screen and (max-width: 800px) {
    body{
        width: 100%;
    }
    nav{
       width: 100%;
       padding: 40 40px;
    }
    .checkbtn{
        display: block;
    }
     .links{
        flex-direction: column;
        width: 100%;
        height: 100vh;
        background-color: white;
        right: -100%;
        position: fixed;
        top: 72px;
        text-align: center;
        align-items: center;
        transition: 0.5s ease-out;
    }

    nav .links ul{
        display: block;
        line-height: 56px;
    }  
nav .btn{
   padding: 10px 0;
   margin: 0px;
   width: 100%;
} 
    #check:checked ~ .links{
        right: 0;
    }

    .main2 {
        padding: 0 50px;
        display: block;
    }
    .Sub-main1{
        display: flex;
        justify-content: space-evenly;
    }
    .Sub-main1 img{
        /* padding: 30px; */
        width: 140px;
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .sub-main2{
        text-align: center;
        display: block;
        /* width: 100%; */
    }
    .sub-main2 h1{
        font-family: 'Calisto MT';
        font-style: normal;
        font-weight: 400;
        font-size: 30px;
        /* text-align: center; */
        color: #FFFFFF;
        margin-bottom: 10px;
    }
    .sub-main2 p{
        font-family: 'Calisto MT';
        font-size: 12px;
        text-align: center;
        color: #FFFFFF;
    }
    .sub-main2 .sub-btn2{
        display: flex;
        justify-content: space-around;
        align-items: center;
        /* padding: 50px; */
        /* width: 100%; */
    }

    .main3{
        display: flex;
        flex-wrap: wrap;
        padding: 0 50px;
        /* width: 100%; */
    }
    .main3 img{
        width: calc(650px / 4 - 10px);
    }

    .main4{
        display: block;
        width: 100%;
        height: 900px;
        padding: 20px 50px;
    }
    .main4 h1{
        font-size: 30px;
    }
    .sub-main4{
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }
    .why-choose {
        width: 100%;
    }
    .why-choose img {
        width: calc(500px / 2 - 50px);
        /* width: 300px;
        height: 250px; */
    }
    .why-choose h2 {
        font-size: 28px;
    }

    .main5{
        display: block;
        align-items: center;
        width: 100%;
        height: 1580px;
        padding: 10px 50px;
    }
    .main5 .sub-main5{
        /* width: 100%; */
        align-items: center;
        text-align: center;
    }
    .sub-main5 h1{
        font-size: 30px;
    }
    .sub-main5 p{
        font-size: 18px;
    }
    .main5 .box{
        /* padding: 0 50px; */
        flex-direction: column;
        align-items: center;
        /* width: 100%; */
    }
    .box .sub-box{
        margin: 20px 0;
    }

    .main6{
        align-items: center;
        padding: -100% 50px;
        /* width: 100%; */
    }
    .main6 .sub-main6{
        flex-direction: column;
        align-items: center;
    }
    .sub-main6 h1{
        font-size: 30px;
        margin-bottom: 40px;
    }

    .sub-main6 p{
        margin-top: -40px;
        font-size: 15px;
        /* width: 100%; */
        text-align: center;
    }
    .card-box{
        flex-direction: column;
        /* margin-top: 50px; */
        align-items: center;
    }
    .card-box .card{
        /* margin-left: 10px; */
        margin-bottom: 20px;
    }

    #main7{
        /* display: flex; */
        flex-direction: column-reverse;
        align-items: center;
        padding: 30px 50px;
        /* height: 600px; */
        /* width: 100%; */
    }
    #main7 img{
        width: 278px;
        height: 278px;
        margin: 50px 0;
    }
    #main7 .sub-main7{
        /* padding: 20px; */
        
    }
    .sub-main7 h1{
        font-family: 'Calisto MT';
        font-style: normal;
        font-weight: 700;
        font-size: 30px;
    }
    .sub-main7 p{
        font-family: 'Lato';
        font-style: normal;
        font-size: 16px;
        width: 350px;
        /* margin-left: 50px; */
    }
    .sub-main7 h4{
        /* text-align: left; */
        /* margin-left: 50px; */
    }
    .form-table{
        display: flex;
        justify-content: space-between;
        align-items: center;
        /* width: 100%; */
    }
    .form-table input{
        width: 224px;
        padding: 10px;
    }
    .form-table a button{
        cursor: pointer;
        background: #03A63C;
        width: 100px;
        height: 40px;
        font-size: 12px;
    }

    /* footer section */
    footer{
        width: 100%;
        height: 650px;
    }
    .sub-footer{
        width: 90%;
        /* height: 420px; */
        background-color: #3FE278;
        border-radius: 0px 0px 110px 0px;
        padding: 37px 50px;
    }
    .flex{
        flex-direction: column;
        align-items: center;
    }
    .flex h1{
        margin-bottom: 20px;
    }
    .flex-2{
        flex-direction: column;
        gap: 1em;
        text-align: center;
    }
    .block h2{
        font-family: 'Calisto MT';
        font-style: normal;
        font-weight: 700;
        font-size: 24px;
        padding-bottom: 10px;
    }
    .block a p{
        font-size: 14px;
        padding-bottom: 8px;
    }
    .media{
        padding-top: 24px;
        flex-direction: column;
        align-items: center;
        border-top: 1px solid #141414;
    }
    .media p{
        font-family: 'Segoe UI';
        font-size: 16px;
        color: #141414;
    }
    .media-icons{
        display: flex;
        gap: 2em;
    }
    .media-icons a i{
        padding-top: 14px;
    }
    
}

@media only screen and (max-width: 375px) {
    body{
        width: 100%;
    }
    nav{
       width: 100%;
       padding: 40 40px;
       z-index: 2;
    }
    .checkbtn{
        display: block;
    }
     .links{
        flex-direction: column;
        width: 100%;
        height: 100vh;
        background-color: white;
        right: -100%;
        position: fixed;
        top: 72px;
        text-align: center;
        align-items: center;
        transition: 0.5s ease-out;
    }

    nav .links ul{
        display: block;
        line-height: 56px;
    }  
nav .btn{
   padding: 10px 0;
   margin: 0px;
   width: 100%;
} 
    #check:checked ~ .links{
        right: 0;
    }
    .main2{
        background-size: cover;
        width: 100%;
        /* height: 90vh; */
        padding: 80px 30px 20px;
    }
    .Sub-main1{
        display: flex;
        justify-content: space-between;
    }
    .Sub-main1 img{
        /* padding: 18px; */
        width: 120px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .sub-main2{
        text-align: center;
        display: block;
        /* width: 100%; */
    }
    .sub-main2 h1{
        font-family: 'Calisto MT';
        font-style: normal;
        font-weight: 400;
        font-size: 28px;
        /* text-align: center; */
        color: #FFFFFF;
        margin-bottom: 10px;
    }
    .sub-main2 p{
        font-family: 'Calisto MT';
        font-size: 12px;
        text-align: center;
        color: #FFFFFF;
    }
    .sub-main2 .sub-btn2{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .sub-btn2  {
        margin-top: 40px;
    }
.sub-btn2 .btn3{
    width: 80px;
    height: 30px;
    border-radius: 30px;
}

.sub-btn2 .btn4{
    /* margin-left: 50px; */
    cursor: pointer;
    color: white;
    border: none;
    background: transparent;
}
    .main3{
        display: flex;
        flex-wrap: wrap;
        /* width: 100%; */
    }
    .main3 img{
        width: calc(400px / 3 - 24px);
    }

    .main4{
        height: 1100px;
        padding: 20px 20px;
    }
    .main4 h1{
        font-size: 30px;
    }
    .sub-main4{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .why-choose {
        width: 100%;
    }
    .why-choose img {
        width: 250px;
        height: 200px;
    }
    .why-choose h2 {
        font-size: 24px;
    }

    .main5{
        display: block;
        align-items: center;
        width: 100%;
        height: 1600px;
        padding: 20px 20px;
    }
    .main5 .sub-main5{
        width: 100%;
        align-items: center;
        text-align: center;
    }
    .sub-main5 h1{
        font-size: 30px;
    }
    .sub-main5 p{
        font-size: 18px;
    }
    .main5 .box{
        display: block;
        align-items: center;
        width: 100%;
    }
    .box .sub-box{
        margin: 20px 0;
    }
    .box .sub-box h1{
        font-size: 20px;
    }

    .main6{
        align-items: center;
        padding: 10px 20px;
    }
    .main6 .syd-png{
        width: 60px;
        padding: 15px;
        margin-left: 10px;
        margin-bottom: -6px;
    }
    .main6 .sub-main6{
        display: block;
        align-items: center;
    }
    .sub-main6 h1{
        font-size: 20px;
        margin-bottom: 30px;
    }

    .sub-main6 p{
        font-size: 14px;
        /* text-align: center; */
    }
    .card-box{
        flex-direction: column;
        margin-top: 50px;
        align-items: center;
        padding: 0 50px;
    }
    .card-box .card{
        margin-bottom: 20px;
    }

    #main7{
        flex-direction: column-reverse;
        align-items: center;
        padding: 30px 20px;
        text-align: center;
    }
    #main7 img{
        width: 228px;
        height: 228px;
    }
    .sub-main7 h1{
        font-family: 'Calisto MT';
        font-weight: 700;
        font-size: 24px;
        /* line-height: 150px; */
    }
    .sub-main7 p{
        font-family: 'Lato';
        font-style: normal;
        font-size: 14px;
        /* width: 80%; */
    }
    .sub-main7 h4{
        /* text-align: left; */
        /* margin-left: 50px; */
    }
    .form-table{
        display: block;
        justify-content: space-between;
        align-items: center;
        margin: 20px 0;
        padding: 0px 30px;
    }
    .form-table input{
        width: 100%;
        padding: 10px;
    }
    .form-table a button{
        cursor: pointer;
        background: #03A63C;
        width: 100%;
        height: 40px;
        font-size: 14px;
        margin-top: 20px;
    }

 /* footer section */
 footer{
    width: 100%;
    height: 650px;
}
.sub-footer{
    width: 90%;
    /* height: 420px; */
    background-color: #3FE278;
    border-radius: 0px 0px 90px 0px;
    padding: 37px 20px;
}
.flex{
    flex-direction: column;
    align-items: center;
}
.flex h1{
    margin-bottom: 20px;
}
.flex-2{
    flex-direction: column;
    gap: 1em;
    text-align: center;
}
.block h2{
    font-weight: 700;
    font-size: 24px;
    padding-bottom: 10px;
}
.block a p{
    font-size: 14px;
    padding-bottom: 8px;
}
.media{
    padding-top: 24px;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid #141414;
}
.media p{
    font-family: 'Segoe UI';
    font-size: 16px;
    color: #141414;
}
.media-icons{
    display: flex;
    gap: 2em;
}
.media-icons a i{
    padding-top: 14px;
}
}