html {
    color-scheme: light only;
    scroll-behavior: smooth;
}

body {
    margin: 0px;
    background-color: #fff;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    [data-aos] {
        transition: none !important;
        transform: none !important;
        animation: none !important;
    }
}

/* Scroll progress bar */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: linear-gradient(90deg, #01af96, #202cad);
    z-index: 10001;
    transition: width 0.12s ease-out;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #01af96;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
    z-index: 9998;
    border: none;
    cursor: pointer;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #143634;
    transform: translateY(-5px);
}

* {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden !important;
}


a {
    text-decoration: none !important;
    font-family: "Poppins", sans-serif;
}

h1 {
    font-family: "Poppins", sans-serif;
}

h2 {
    font-family: "Poppins", sans-serif;
}

h3 {
    font-family: "Poppins", sans-serif;
}

h4 {
    font-family: "Poppins", sans-serif;
}

h5 {
    font-family: "Poppins", sans-serif;
}

h6 {
    font-family: "Poppins", sans-serif;
}

p {
    font-family: "Poppins", sans-serif;
}

/* tag font end */


/* header start */

.navbar-custom {


    /* position: relative; */

    /* position: fixed; */
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease-in-out;
    /* background: transparent; */
    background-color: #01af96;
    /* border-bottom: 1px solid #bdbcbc; */
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;

    transition: top 0.3s, background-color 0.3s;

}

.navbar-brand img {
    width: 85px;
}

.nav-link,
.navbar-brand,
.dropdown-item {
    color: white !important;
}

.dropdown-item:hover {
    background-color: transparent !important;
}

.offcanvas-end {
    background-color: #ffffff;
}

.sticky-scroll {
    background-color: #01af96;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* .offcanvas-body{
   
    display: flex !important;
    justify-content:center !important;
} */


.navbar-nav {
    display: flex;
    justify-content: center;
    width: 100%;

}

.navbar-nav a {
    color: #ffffff !important;
    margin-left: 20px;
    margin-right: 20px;
    font-size: 16px;
    font-weight: 400;

    /* transition: color 0.3s ease;
    position: relative; */

    /* text-align: center !important; */
}


/* .navbar-nav a::after {
  content: "";
  position: absolute;
  bottom: -5px; 
  left: 0;
  width: 0;
  height: 2px;
  background-color: #e0aaff;
  transition: width 0.3s ease;
} */

.navbar-nav a:hover {
    /* color: #10002b !important; */
    color: #202cad !important;
}

.navbar-nav .dropdown-menu {
    min-width: 260px;
    padding: 8px;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(3, 38, 61, 0.16);
}

.navbar-nav .dropdown-menu .dropdown-item {
    margin: 0;
    padding: 10px 12px;
    border-radius: 8px;
    color: #03263d !important;
    font-size: 14px;
    white-space: normal;
}

.navbar-nav .dropdown-menu .dropdown-item:hover,
.navbar-nav .dropdown-menu .dropdown-item:focus {
    background: #eaf6f5 !important;
    color: #01af96 !important;
}



.navbar-nav .active a {
    /* color: #10002b !important; */
    color: #202cad !important;
}




.navbar-toggler span {
    color: #ffffff !important;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;

}






.header-btn {
    display: flex;
    justify-content: end;
}

.header-btn a {
    background-color: #202cad;

    padding: 10px 17px 10px 17px;
    color: #ffffff;
    border-radius: 50px;
    text-align: end !important;
    font-size: 15px;
    font-weight: 400;


}


.header-btn a:hover {
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
}







@media(max-width:992px) {
    .offcanvas-body {
        display: flex !important;
        justify-content: left !important;
    }

    .navbar-nav .dropdown-menu {
        position: static;
        width: 100%;
        margin: 0 0 8px;
        box-shadow: none;
        background: #f7fbfb;
    }

    .header-btn {
        display: none;
    }



    .navbar-nav .active {
        background-color: transparent !important;

    }

    .navbar-nav a {
        color: #000000 !important;
    }

    .navbar-nav .active a {
        color: #000000 !important;
    }


}


@media(max-width:370px) {
    .head-top-cta a {
        font-size: 13px;
    }
}


/* .navbar-toggler-icon{
    background-color: #000000 !important;
    color: #00ff37 !important;
} */

/* header end */





/* footer start */


.footer-section {
    position: relative;
    overflow: hidden;
    padding: 50px 0 25px;
    background: linear-gradient(135deg, #013d36 0%, #016c5f 55%, #01af96 100%);
}

.footer-overlay {
    position: absolute;
    inset: 0;
    background: url("../image/banner.jpg");
    background-position: center;
    opacity: .05;
}

.footer-widget {
    position: relative;
}

.footer-logo {
    width: 120px;
    margin-bottom: 25px;
}

.footer-about {
    color: rgba(255, 255, 255, .82);
    line-height: 30px;
    /* margin: 25px 0; */
    font-size: 15px;
}

.footer-widget h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 600;
    position: relative;
}

.footer-widget h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 45px;
    height: 3px;
    background: #fff;
}

.footer-widget ul {
    padding: 0;
    margin: 0;
}

.footer-widget ul li {
    list-style: none;
    margin-bottom: 16px;
}

.footer-widget ul li a {
    color: rgba(255, 255, 255, .82);
    text-decoration: none;
    transition: .3s;
}

.footer-widget ul li a:hover {
    color: #fff;
    padding-left: 8px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.footer-social a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: .35s;
}

.footer-social a:hover {
    background: #fff;
    color: #01af96;
    transform: translateY(-5px);
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: rgba(255, 255, 255, .82);
    line-height: 28px;
}

.contact-list li i {
    color: #fff;
    font-size: 18px;
    margin-top: 4px;
    width: 20px;
}

.contact-list li a {
    color: rgba(255, 255, 255, .82);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, .75);
    margin: 0;
}

.footer-bottom a {
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
}

.footer-bottom span {
    color: rgba(255, 255, 255, .35);
    margin: 0 10px;
}

/* Tablet */

@media(max-width:991px) {

    .footer-widget {
        margin-bottom: 35px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

}

/* Mobile */

@media(max-width:576px) {

    .footer-section {
        padding: 50px 0 20px;
    }

    .footer-logo {
        width: 100px;
    }

    .footer-widget h3 {
        font-size: 22px;
    }

    .footer-about {
        font-size: 14px;
        line-height: 28px;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .footer-bottom {
        margin-top: 35px;
    }

}

/* footer end */






/*home banner */

/* .home-banner-section{
    background: #f3fefc;
} */

.hero-banner{
    position: relative;

    width: calc(100% - 190px);
    max-width: 1650px;

    margin: 30px auto;

    min-height: 620px;

    display: flex;
    align-items: center;

    overflow: hidden;

    border-radius: 25px;

    background:
    linear-gradient(rgba(1,175,150,.80), rgba(1,175,150,.80)),
    url("../image/banner-2.jpg");

    background-size: cover;
    background-position:  center;
    background-repeat: no-repeat;

    /* box-shadow: 0 25px 80px rgba(0,0,0,.18); */
}

.hero-banner .container{
    position:relative;
    z-index:2;
}


.hero-content{

    max-width:900px;

    margin:auto;

    text-align:center;

    color:#ffffff;

}

.hero-subtitle{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 24px;

    background:#ffffff;

    color:#01af96;

    border-radius:50px;

    font-size:15px;

    font-weight:400;

    margin-bottom:25px;

}

.hero-content h1{

    font-size:55px;

    line-height:1.2;

    color:#ffffff;

    margin-bottom:20px;

    font-weight:500;

    font-family:"Prosto One",sans-serif;

}

.hero-content h3{

    color:#ffffff;

    font-size:22px;

    margin-bottom:22px;

    font-style:italic;

    font-weight:400;

}

.hero-content p{

    max-width:760px;

    margin:0 auto 40px;

    color:rgba(255,255,255,.95);

    font-size:16px;

    line-height:1.9;

}


.hero-btn-group{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:18px;

    flex-wrap:wrap;

}

/* Primary */

.hero-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    min-width:220px;

    height:58px;

    padding:0 30px;

    border-radius:60px;

    background:#202cad;

    color:#ffffff;

    text-decoration:none;

    font-size:16px;

    font-weight:400;

    transition:.35s;

}

.hero-btn:hover{

    background:#ffffff;

    color:#202cad;

    transform:translateY(-4px);

}

.hero-btn i{

    width:36px;

    height:36px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#ffffff;

    color:#202cad;

    transition:.35s;

}

.hero-btn:hover i{

    background:#202cad;

    color:#ffffff;

}

/* Secondary */

.hero-btn-outline{

    /* background:transparent; */
    background:#ffffff;

    /* border:2px solid #ffffff; */

    color:#202cad;

}

.hero-btn-outline:hover{

    background:#202cad;

    color:#ffffff;

}

.hero-btn-outline i{

    background:#202cad;

    color:#ffffff;

}

.hero-btn-outline:hover i{

    background:#ffffff;

    color:#202cad;

}


/* .hero-banner::before{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    top:-120px;

    right:-120px;

}

.hero-banner::after{

    content:"";

    position:absolute;

    width:240px;

    height:240px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    left:-90px;

    bottom:-90px;

} */


@media(max-width:1200px){

.hero-content h1{

    font-size:52px;

}

}

@media(max-width:991px){

.hero-banner{

    width:calc(100% - 24px);

    margin:12px;

    border-radius:24px;

    min-height:90vh;

}

.hero-content{

    max-width:100%;

}

.hero-content h1{

    font-size:42px;

}

.hero-content h3{

    font-size:20px;

}

.hero-content p{

    font-size:16px;

}

}

@media(max-width:767px){

.hero-banner{

    min-height:85vh;

}

.hero-content h1{

    font-size:34px;

}

.hero-content h3{

    font-size:18px;

}

.hero-content p{

    font-size:15px;

    line-height:1.8;

}

.hero-btn{

    min-width:190px;

    height:54px;

    font-size:15px;

}

}

@media(max-width:575px){

.hero-banner{

    width:calc(100% - 16px);

    margin:8px;

    border-radius:18px;

    min-height:90vh;

}

.hero-subtitle{

    font-size:12px;

    padding:8px 18px;

}

.hero-content h1{

    font-size:30px;

}

.hero-content h3{

    font-size:16px;

}

.hero-content p{

    font-size:15px;

    margin-bottom:28px;

}

.hero-btn-group{

    flex-wrap:nowrap;

    gap:10px;

}

.hero-btn{

    flex:1;

    min-width:0;

    height:48px;

    padding:0 12px;

    font-size:13px;

}

.hero-btn i{

    width:28px;

    height:28px;

    font-size:12px;

}

}

/* banner end */








/* floating btn */

.floating-buttons {
    position: fixed;
    left: 20px;
    bottom: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.floating-buttons a {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 26px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: floatBtnIn 0.6s ease both;
}

.floating-buttons a:nth-child(2) {
    animation-delay: 0.15s;
}

.floating-buttons a::before {
    content: "";
    position: absolute;
    inset: -6px;
    border: 2px solid currentColor;
    border-radius: 50%;
    animation: pulse 2.2s infinite;
    pointer-events: none;
}

.floating-buttons a:hover {
    transform: translateY(-6px) scale(1.08);
}

.floating-buttons a .float-btn-label {
    position: absolute;
    left: 72px;
    top: 50%;
    transform: translateY(-50%) translateX(-8px);
    background: #143634;
    color: #fff;
    padding: 7px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    pointer-events: none;
}

.floating-buttons a .float-btn-label::after {
    content: "";
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right-color: #143634;
}

.floating-buttons a:hover .float-btn-label {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.call-btn {
    background-color: #01af96;
    color: #01af96;
    box-shadow: 0 8px 20px rgba(1, 175, 150, 0.5);
}

.call-btn i {
    color: #fff;
}

.whatsapp-btn {
    background-color: #25D366;
    color: #25D366;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn i {
    color: #fff;
}

@keyframes floatBtnIn {
    0% {
        opacity: 0;
        transform: scale(0.4) translateY(20px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@media (max-width: 767px) {
    .floating-buttons a {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }

    .floating-buttons a .float-btn-label {
        display: none;
    }
}

/* end */



/* about */

.about-section {
    padding: 50px 0;
    background: #f3fefc;
}

.about-img-wrapper {
    position: relative;
    padding-right: 50px;
}

.about-img {
    width: 100%;
    border-radius: 30px;
    object-fit: cover;
    /* box-shadow:0 20px 60px rgba(0,0,0,.08); */
    transition: .4s;
}

.about-img:hover {
    transform: scale(1.03);
}

.about-exp-box {
    position: absolute;
    bottom: 35px;
    right: 0;
    width: 190px;
    background: #202cad;
    color: #fff;
    text-align: center;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(1, 175, 150, .25);
}

.about-exp-box h3 {
    margin: 0;
    font-size: 42px;
    font-weight: 700;
}

.about-exp-box span {
    display: block;
    font-size: 15px;
    margin-top: 6px;
}

.about-subtitle {
    display: inline-block;
    padding: 8px 20px;
    background: #e8fbf8;
    color: #01af96;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .5px;
    margin-bottom: 20px;
}

.about-title {
    font-family: "Prosto One", sans-serif;
    font-size: 40px;
    line-height: 1.3;
    color: #143634;
    margin-bottom: 25px;
}

.about-text {
    color: #6b6b6b;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 18px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border: 1px solid #edf2f2;
    border-radius: 12px;
    transition: .3s;
    background: #fff;
}

.about-feature:hover {
    border-color: #01af96;
    transform: translateY(-4px);
}

.about-feature i {
    color: #01af96;
    font-size: 18px;
}

.about-feature span {
    font-weight: 600;
    color: #143634;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    background: #202cad;
    color: #fff;
    padding: 16px 34px;
    border-radius: 50px;
    /* font-weight:600; */
    transition: .3s;
}

.about-btn:hover {
    background: #01af96;
    color: #fff;
}

@media (max-width:991.98px) {

    .about-section {
        padding: 50px 0;
    }

    .about-title {
        font-size: 36px;
        /* margin-top:25px; */
    }

    .about-img-wrapper {
        padding-right: 0;
    }

    .about-exp-box {
        right: 20px;
        bottom: 20px;
    }

}

@media (max-width:767.98px) {

    .about-title {
        font-size: 25px;
        line-height: 1.5;
    }

    .about-exp-box {
        /* width:160px; */
        padding: 20px;
    }

    .about-exp-box h3 {
        font-size: 34px;
    }

    .about-btn {
        /* width:100%; */
        justify-content: center;
    }

}


@media (max-width:500px) {
    .about-exp-box {
        left: 20px;
        bottom: -6px;
    }
}

/* about end */


/* services start */

.service-section {
    padding: 50px 0;
    /* background: #f8fcfb; */
    background: #f3fefc;
}

.service-subtitle {
    display: inline-block;
    padding: 8px 22px;
    border-radius: 50px;
    background: #e8fbf8;
    color: #01af96;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-title {
    font-family: "Prosto One", sans-serif;
    font-size: 40px;
    color: #143634;
    max-width: 750px;
    margin: auto;
    line-height: 1.4;
    margin-bottom: 10px;
}

.service-description {
    /* max-width:700px; */
    margin: 3px auto 0;
    font-size: 15px;
    line-height: 1.8;
    color: #6b7280;
    font-weight: 400;
}

.service-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    transition: .4s;
    /* box-shadow:0 10px 35px rgba(0,0,0,.05); */
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    height: 100%;
    position: relative;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(1, 175, 150, .18);
}

.service-image {
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: .5s;
}

.service-card:hover .service-image img {
    transform: scale(1.1) rotate(2deg);
}

.service-content {
    padding: 30px;
}

.service-content h4 {
    font-size: 20px;
    color: #143634;
    /* margin-bottom: 15px; */
    font-weight: 500;
}

.service-content p {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
    /* margin-bottom: 25px; */
}

.service-btn {
    display: inline-block;
    text-decoration: none;
    color: #01af96;
    /* font-weight:700; */
    position: relative;
    transition: .3s;
}

.service-btn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: #01af96;
    transition: .3s;
}

.service-card:hover .service-btn::after {
    width: 100%;
}

.service-btn:hover {
    color: #143634;
}

.service-main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 18px 40px;
    background: #202cad;
    color: #fff;
    border-radius: 60px;
    /* font-weight:600; */
    transition: .3s;
}

.service-main-btn:hover {
    background: #01af96;
    color: #fff;
    transform: translateY(-3px);
}

@media(max-width:991px) {

    .service-section {
        padding: 50px 0;
    }

    .service-title {
        font-size: 34px;
    }

}

@media(max-width:767px) {

    .service-title {
        font-size: 28px;
    }

    .service-image img {
        height: 220px;
    }



}

/* service end */



/* why choose start */

/* why choose  */

.why-choose-section {
    padding: 50px 0;
    background: #f3fefc;
    position: relative;
    overflow: hidden;
}

.why-leaf-shape {
    position: absolute;
    /* right:0;
    top:50%; */
    top: 32%;
    right: -9%;
    transform: translateY(-50%);
    opacity: .05;
}

.why-leaf-shape img {
    /* width:350px; */
    width: 100%;
}

.why-choose-header {
    margin-bottom: 20px;
}

.why-tag {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    /* background:rgba(255,134,74,.12); */
    background-color: #e8fbf8;
    color: #01af96;
    font-weight: 600;
    margin-bottom: 15px;
}

.why-choose-header h2 {
    font-family: "Prosto One", sans-serif;
    font-size: 40px;
    color: #143634;
    max-width: 700px;
    margin: auto;
}

.why-choose-header h2 span {
    color: #01af96;
}

/* Left Image */

.why-image-box {
    overflow: hidden;
    border-radius: 25px;
    height: 100%;
}

.why-image-box img {
    width: 100%;
    height: 640px;
    object-fit: cover;
    border-radius: 25px;
}

/* Right Cards */

.why-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    transition: .4s;
    border: 1px solid rgba(1, 175, 150, .15);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.why-card.active {
    /* background:#7f998b; */
    background-color: #01af96;
    color: #fff;
}

.why-card i {
    font-size: 30px;
    color: #01af96;
    margin-bottom: 15px;
}

.why-card.active i {
    color: #fff;
}

.why-card h4 {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 300px;
    margin-bottom: 12px;
    font-family: "Prosto One", sans-serif;
}

.why-card p {
    margin: 0;
    line-height: 1.8;
    color: #666;
    font-size: 15px;
}

.why-card.active p {
    color: #fff;
}

/* Responsive */

@media(max-width:991px) {

    .why-choose-header h2 {
        font-size: 40px;
    }

    .why-image-box img {
        height: 450px;
    }
}

@media(max-width:767px) {

    .why-choose-section {
        padding: 70px 0;
    }

    .why-choose-header h2 {
        font-size: 28px;
    }

    .why-image-box img {
        height: 320px;
    }

    .why-card {
        padding: 25px;
    }
}


@media(max-width:432px) {

    .why-choose-section {
        padding: 55px 0;
    }

    .why-choose-header h2 {
        font-size: 25px;
        line-height: 1.5;
    }

    .why-leaf-shape {
        top: 8%;
        right: -38%;
    }

}

/* why choose us end */



/* service destail page */

.service-detail-section {
    padding: 50px 0;
    background: #f3fefc;
}

.service-detail-img {
    width: 100%;
    border-radius: 20px;
}

.service-detail-subtitle {
    display: inline-block;
    padding: 8px 18px;
    background: #e8fbf8;
    color: #01af96;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-detail-title {
    font-size: 30px;
    color: #143634;
    margin-bottom: 25px;
}

.service-detail-heading {
    color: #143634;
    margin: 35px 0 20px;
    font-weight: 500;
}

.service-detail-text {
    color: #666;
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 15px;
}

.service-benefit {
    padding: 16px 20px;
    border: 1px solid rgba(1, 175, 150, .15);
    border-radius: 12px;
    font-weight: 600;
    transition: .3s;
}

.service-benefit i {
    color: #01af96;
    margin-right: 10px;
}

.service-benefit:hover {
    background: #01af96;
    color: #fff;
}

.service-benefit:hover i {
    color: #fff;
}

/* Form */

.service-form {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    position: sticky;
    top: 100px;
}

.service-form h3 {
    color: #143634;
    margin-bottom: 10px;
}

.service-form p {
    color: #666;
    margin-bottom: 25px;
}

.service-form .form-control,
.service-form .form-select {
    height: 55px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.service-form textarea.form-control {
    height: auto;
}

.service-form .form-control:focus,
.service-form .form-select:focus {
    border-color: #01af96;
    box-shadow: none;
}

.service-form-btn {
    width: 100%;
    height: 55px;
    border: none;
    border-radius: 50px;
    background: #01af96;
    color: #fff;
    font-weight: 600;
    transition: .3s;
}

.service-form-btn:hover {
    background: #143634;
}

@media(max-width:991px) {

    .service-detail-title {
        font-size: 25px;
    }

    .service-form {
        position: static;
    }

}

/* detail page end */


/* contact page */

.contact-section {
    padding: 40px 0;
    /* background: #f8fcfb; */
    background: #f3fefc;
}

.contact-subtitle {
    display: inline-block;
    padding: 8px 22px;
    background: #e8fbf8;
    color: #01af96;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-title {
    font-family: "Prosto One", sans-serif;
    font-size: 42px;
    color: #143634;
    margin-bottom: 20px;
}

.contact-description {
    max-width: 700px;
    margin: auto;
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

.contact-info {
    background: #202cad;
    padding: 40px;
    border-radius: 20px;
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 30px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: #01af96;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    flex-shrink: 0;
}

.contact-item h5 {
    color: #fff;
    margin-bottom: 8px;
}

.contact-item p {
    color: #d6e5e3;
    margin: 0;
    line-height: 1.7;
}

.contact-item a {
    color: #d6e5e3;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    /* box-shadow: 0 15px 40px rgba(0, 0, 0, .08); */
}

.contact-form .form-control {
    height: 56px;
    border-radius: 12px;
    border: 1px solid rgba(1, 175, 150, .18);
    box-shadow: none;
}

.contact-form textarea.form-control {
    height: auto;
    resize: none;
}

.contact-form .form-control:focus {
    border-color: #01af96;
}

.contact-btn {
    width: 100%;
    height: 56px;
    border: none;
    border-radius: 50px;
    background: #01af96;
    color: #fff;
    font-weight: 600;
    transition: .3s;
}

.contact-btn:hover {
    background: #143634;
}

@media(max-width:991px) {

    .contact-section {
        padding: 50px 0;
    }

    .contact-title {
        font-size: 34px;
    }

    .contact-info {
        margin-bottom: 20px;
    }

}

@media(max-width:767px) {

    .contact-title {
        font-size: 28px;
        line-height: 1.4;
    }

    .contact-info,
    .contact-form {
        padding: 25px;
    }

}


@media(max-width:432px) {

    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 15px;
    }

    .contact-item a {
        font-size: 15px;
    }


    .contact-item p {
        font-size: 15px;
    }

}

/* contact page end */



/* mission and vision */


.mission-section {
    position: relative;
    padding: 50px 0;
    background: linear-gradient(135deg, #f7fffd, #eefaf8);
    overflow: hidden;
}

.mission-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: #01af9610;
    border-radius: 50%;
    top: -180px;
    left: -150px;
}

.mission-section::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: #01af9612;
    border-radius: 50%;
    right: -180px;
    bottom: -180px;
}

.mission-section-heading {
    text-align: center;
    max-width: 760px;
    margin: auto;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.mission-section-heading span {
    color: #01af96;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.mission-section-heading h2 {
    font-size: 40px;
    margin: 15px 0;
    color: #143634;

    font-family: "Prosto One", sans-serif;
}

.mission-section-heading p {
    color: #666;
    line-height: 1.9;
    font-size: 15px;
}

.mission-wrapper {
    display: grid;
    grid-template-columns: 1fr 120px 1fr;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.center-line {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.center-line::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 340px;
    background: linear-gradient(#01af96, #143634);
    border-radius: 50px;
}

.pulse-circle {
    width: 110px;
    height: 110px;
    background: #01af96;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 42px;
    position: relative;
    z-index: 3;
}

.pulse-circle::before,
.pulse-circle::after {
    content: "";
    position: absolute;
    inset: -12px;
    border: 2px solid #01af96;
    border-radius: 50%;
    animation: pulse 2.5s infinite;
}

.pulse-circle::after {
    animation-delay: 1.2s;
}

@keyframes pulse {

    0% {
        transform: scale(.8);
        opacity: 1;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }

}

.mission-box {
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(18px);
    padding: 55px;
    border-radius: 30px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .08);
    transition: .45s;
    border: 1px solid rgba(255, 255, 255, .5);
}

.mission-box:hover {
    transform: translateY(-15px);
}

.circle-icon {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: linear-gradient(135deg, #01af96, #143634);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    margin-bottom: 25px;
}

.left-box {
    border-top: 6px solid #01af96;
}

.right-box {
    border-top: 6px solid #143634;
}

.mission-box h3 {
    font-size: 30px;
    color: #143634;
    margin-bottom: 20px;
}

.mission-box p {
    color: #666;
    line-height: 1.9;
    font-size: 15px;
}

@media(max-width:992px) {

    .mission-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .center-line {
        display: none;
    }

    .mission-section-heading h2 {
        font-size: 38px;
    }

}

@media(max-width:576px) {

    .mission-section {
        padding: 50px 0;
    }

    .mission-section-heading h2 {
        font-size: 25px;
        line-height: 1.5;
    }

    .mission-box {
        padding: 35px;
    }

    .mission-box h3 {
        font-size: 25px;
    }

}

/* mission end */


/* tstimoniyals */

.nb-testimonial-section {
    padding: 50px 0;
    background: #f3fefc;
    overflow: hidden;
}

.nb-section-title {
    max-width: 760px;
    margin: auto;
    text-align: center;
    margin-bottom: 70px;
}

.nb-section-subtitle {
    display: inline-block;
    color: #01af96;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.nb-section-heading {
    font-size: 40px;
    color: #143634;
    /* font-weight: 700; */
    margin-bottom: 20px;
    font-family: "Prosto One", sans-serif;
}

.nb-section-text {
    color: #6d6d6d;
    line-height: 1.9;
    font-size: 15px;
}

.nb-testimonial-slider .owl-stage {
    display: flex;
}

.nb-testimonial-slider .owl-item {
    display: flex;
    padding: 0px 5px;
}

.nb-testimonial-item {
    background: #fff;
    border-radius: 22px;
    padding: 40px;
    border: 2px solid #e8f3f2;
    height: 100%;
    transition: .4s;
    position: relative;
    /* box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px; */
}

.nb-testimonial-item:hover {
    transform: translateY(-10px);
    /* box-shadow: 0 18px 45px rgba(0, 0, 0, .08); */
}

.nb-testimonial-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #01af96, #143634);
}

.nb-quote-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #01af96;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    margin-bottom: 25px;
}

.nb-rating {
    color: #ffc107;
    margin-bottom: 18px;
    font-size: 13px;
}

.nb-rating i {
    margin-right: 3px;
}

.nb-review {
    color: #666;
    line-height: 1.9;
    margin-bottom: 35px;
    font-size: 15px;
}

.nb-client {
    display: flex;
    align-items: center;
}

.nb-client img {
    width: 55px !important;
    height: 55px !important;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 18px;
    border: 3px solid #01af96;
}

.nb-client h4 {
    margin: 0;
    font-size: 20px;
    color: #143634;
    font-size: 17px;
}

.nb-client span {
    color: #777;
    font-size: 15px;
}

/* .nb-testimonial-slider .owl-dots {
    margin-top: 45px;
    text-align: center;
} */

.nb-testimonial-slider .owl-dot span {
    width: 12px;
    height: 12px;
    background: #b8d9d4;
    transition: .4s;
}

.nb-testimonial-slider .owl-dot.active span {
    width: 35px;
    border-radius: 20px;
    background: #01af96;
}

@media(max-width:991px) {

    .nb-testimonial-section {
        padding: 50px 0;
    }

    .nb-section-heading {
        font-size: 36px;
    }

}

@media(max-width:767px) {

    .nb-section-heading {
        font-size: 25px;
        line-height: 1.5;
    }

    .nb-testimonial-item {
        padding: 30px;
    }

}

/* testimoniyal end */


/* cta start */

.nb-cta-section {

    position: relative;

    padding: 70px 0;

    background: url(..//image/cta-1.jpg);

    background-position: center;

    background-size: cover;

    background-repeat: no-repeat;

    background-attachment: fixed;

    overflow: hidden;

}

.nb-cta-overlay {

    position: absolute;

    inset: 0;

    /* background: linear-gradient(rgba(4, 24, 20, .70), rgba(4, 24, 20, .65)); */
    background: linear-gradient(rgba(4, 24, 20, .30), rgba(4, 24, 20, .25));

}

.nb-cta-card {

    position: relative;

    z-index: 2;

    max-width: 1300px;

    margin: auto;

    text-align: center;

    padding: 70px 60px;

    border-radius: 32px;

    overflow: hidden;

    background: rgba(255, 255, 255, .08);

    backdrop-filter: blur(5px);

    -webkit-backdrop-filter: blur(5px);

    /* border: 1px solid rgba(255, 255, 255, .15); */

    /* box-shadow:
        0 30px 70px rgba(0, 0, 0, .40),
        inset 0 1px 0 rgba(255, 255, 255, .15); */

}

.nb-cta-card::before {

    content: "";

    position: absolute;

    inset: 0;

    border-radius: 32px;

    padding: 1.5px;
    border: 2px solid rgba(255, 255, 255, .15);

    /* background: linear-gradient(135deg, #8ef8da, #01af96, #ffffff40); */

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;

    mask-composite: exclude;

}

.nb-cta-card::after {

    content: "";

    position: absolute;

    width: 300px;

    height: 300px;

    background: #01af9635;

    border-radius: 50%;

    filter: blur(90px);

    top: -120px;

    right: -120px;

    z-index: -1;

}

.nb-cta-icon {

    width: 95px;

    height: 95px;

    margin: auto;

    margin-bottom: 28px;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 42px;

    color: #fff;

    background: linear-gradient(135deg, #01af96, #143634);

    box-shadow: 0 18px 45px rgba(1, 175, 150, .45);

}

.nb-cta-subtitle {

    display: inline-block;

    color: #91ffe0;

    text-transform: uppercase;

    letter-spacing: 4px;

    font-size: 15px;

    font-weight: 700;

    margin-bottom: 15px;

}

.nb-cta-title {

    color: #fff;

    font-size: 40px;

    line-height: 1.2;

    font-weight: 600;

    margin-bottom: 25px;
    font-family: "Prosto One", sans-serif;

}

.nb-cta-text {

    max-width: 720px;

    margin: auto;

    color: rgba(255, 255, 255, .92);

    font-size: 15px;

    line-height: 2;

    margin-bottom: 45px;

}

.nb-cta-btn-group {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 18px;

    flex-wrap: wrap;

}

.nb-btn-primary {

    padding: 17px 40px;

    border-radius: 60px;

    background: #01af96;

    color: #fff;

    text-decoration: none;

    /* font-weight: 600; */

    transition: .4s;

}

.nb-btn-primary:hover {

    background: #fff;

    color: #143634;

}

.nb-btn-secondary {

    padding: 17px 40px;

    border-radius: 60px;

    text-decoration: none;

    color: #fff;

    border: 1px solid rgba(255, 255, 255, .35);

    background: rgba(255, 255, 255, .08);

    backdrop-filter: blur(10px);

    transition: .4s;

}

.nb-btn-secondary:hover {

    background: #fff;

    color: #143634;

}

@media(max-width:991px) {

    .nb-cta-section {

        padding: 50px 0;

        background-attachment: scroll;

    }

    .nb-cta-card {

        padding: 50px 35px;

    }

    .nb-cta-title {

        font-size: 40px;

    }

}

@media(max-width:767px) {

    .nb-cta-card {

        padding: 40px 25px;

        border-radius: 25px;

    }

    .nb-cta-title {

        font-size: 30px;
        line-height: 1.5;

    }

    .nb-cta-text {

        font-size: 16px;

        line-height: 1.8;

    }

    .nb-btn-primary,

    .nb-btn-secondary {

        width: 100%;

        text-align: center;

    }

}


@media (max-width:500px) {
    .nb-cta-title {
        font-size: 25px;
        line-height: 1.9;
    }
}

/* cta end */




/* form modal start*/


.nb-modal {
    border: 0;
    border-radius: 22px;
    overflow: hidden;
}

.nb-modal .modal-body {
    padding: 40px;
}

.nb-close-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 10;
}



.nb-modal-heading {
    text-align: center;
    margin-bottom: 35px;
}

.nb-modal-heading span {
    display: block;
    color: #01af96;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.nb-modal-heading h2 {
    color: #143634;
    font-size: 25px;
    font-weight: 500;
    margin: 0;
}

/* Form */

.nb-form-control {
    height: 55px;
    border-radius: 12px;
    border: 1px solid #d9e4e2;
    padding: 12px 18px;
    font-size: 15px;
    box-shadow: none;
}

.nb-form-control:focus {
    border-color: #01af96;
    box-shadow: 0 0 0 .15rem rgba(1, 175, 150, .15);
}

.nb-textarea {
    height: 130px !important;
    resize: none;
    padding-top: 15px;
}

/* Button */

.nb-submit-btn {
    width: 100%;
    height: 55px;
    border: 0;
    border-radius: 50px;
    background: #01af96;
    color: #fff;
    font-size: 16px;
    /* font-weight:600; */
    transition: .35s;
}

.nb-submit-btn:hover {
    background: #143634;
}



@media (max-width:991px) {

    .nb-modal .modal-body {
        padding: 30px;
    }

    .nb-modal-heading h2 {
        font-size: 30px;
    }

}

@media (max-width:767px) {

    .modal-dialog {
        margin: 15px;
    }

    .nb-modal .modal-body {
        padding: 25px 20px;
    }

    .nb-modal-heading {
        margin-bottom: 25px;
    }

    .nb-modal-heading h2 {
        font-size: 25px;
    }

    /* .col-md-6,
    .col-lg-6{
        width:100%;
    } */

    .nb-form-control {
        height: 52px;
        font-size: 14px;
    }

    .nb-textarea {
        height: 120px !important;
    }

}


/* modal form end */


/* bra...st.. */


.nb-branch-section {

    padding: 50px 0;

    background: #f3fefc;

}

.nb-section-title {

    max-width: 700px;

    margin: auto;

    text-align: center;

    margin-bottom: 70px;

}

.nb-section-title span {

    display: inline-block;

    color: #01af96;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;

    margin-bottom: 12px;

}

.nb-section-title h2 {

    font-size: 40px;

    /* font-weight:700; */

    color: #143634;
    font-family: "Prosto One", sans-serif;

    margin-bottom: 18px;

}

.nb-section-title p {

    color: #666;

    font-size: 15px;
    line-height: 1.8;

}

.nb-branch-card {

    background: #fff;

    border-radius: 20px;

    overflow: hidden;

    display: flex;

    flex-direction: column;

    height: 100%;

    border: 1px solid #e5efed;

    transition: .35s;

    /* box-shadow:0 12px 35px rgba(0,0,0,.05); */

}

.nb-branch-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 18px 45px rgba(0, 0, 0, .10);

}

.nb-branch-content {

    padding: 28px;

    display: flex;

    flex-direction: column;

    flex: 1;

}

.nb-branch-content span {

    color: #01af96;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 10px;

}

.nb-branch-content h3 {

    color: #143634;

    font-size: 23px;

    margin-bottom: 15px;

}

.nb-branch-content p {

    color: #666;

    line-height: 1.8;

    margin-bottom: 25px;

    min-height: 110px;

}

.nb-branch-phone {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: #143634;

    text-decoration: none;

    font-weight: 600;

    margin-top: auto;

}

.nb-branch-phone i {

    width: 45px;

    height: 45px;

    background: #01af96;

    color: #fff;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: .35s;

}

.nb-branch-phone:hover {

    color: #01af96;

}

.nb-branch-phone:hover i {

    background: #143634;

}

.nb-map {

    height: 240px;

}

.nb-map iframe {

    width: 100%;

    height: 100%;

    border: 0;

}

.nb-map-btn {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    height: 60px;

    background: #01af96;

    color: #fff;

    text-decoration: none;

    font-weight: 600;

    transition: .35s;

}

.nb-map-btn:hover {

    background: #143634;

    color: #fff;

}

@media(max-width:991px) {

    .nb-branch-section {

        padding: 50px 0;

    }

    .nb-section-title h2 {

        font-size: 36px;

    }

    .nb-branch-content p {

        min-height: 90px;

    }

}

@media(max-width:767px) {

    .nb-section-title {

        margin-bottom: 40px;

    }

    .nb-section-title h2 {

        font-size: 27px;
        line-height: 1.5;

    }

    .nb-branch-card {

        margin-bottom: 10px;

    }

    .nb-branch-content {

        padding: 22px;

    }

    .nb-branch-content h3 {

        font-size: 23px;

    }

    .nb-branch-content p {

        min-height: auto;

    }

    .nb-map {

        height: 220px;

    }

}

/* end */



/* doctor */

.doctor-section {
    padding: 50px 0;
    background: #f3fefc;
}

.doctor-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.doctor-section-title {
    margin: 0 0 15px;
    color: #143634;
    font-size: 42px;
    font-family: "Prosto One", sans-serif;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 1px;
}

.doctor-section-subtitle {
    margin: 0;
    color: #6b7280;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    font-family: "Poppins", sans-serif;
}

.doctor-card {
    position: relative;
    border: 1px solid #d9d9d9;
    border-radius: 18px;
    background: #fff;
    padding: 30px;
    overflow: visible;
    height: 100%;
}

.doctor-image {
    position: relative;
    height: 220px;
    z-index: 2;
}

.doctor-bg {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 220px;
    background: #202cad;
    border-radius: 18px;
    z-index: 1;
}

.doctor-image img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    /* height:360px; */
    height: 330px;
    width: auto;
    z-index: 3;
}

.doctor-content {
    padding-left: 25px;
}

.doctor-content h3 {
    font-size: 23px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 10px;
}

.doctor-content h5 {
    color: #0b63af;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
}

.doctor-content p {
    font-size: 15px;
    color: #6d6d6d;
    margin: 0;
}

/* Tablet */

@media(max-width:991px) {

    .doctor-card {
        padding: 25px;
    }

    .doctor-card .row {
        flex-direction: column;
    }

    .doctor-card .col-5,
    .doctor-card .col-7 {
        width: 100%;
    }

    .doctor-image {
        height: 260px;
    }

    /* .doctor-bg{
    height:200px;
} */

    .doctor-image img {
        height: 300px;
    }

    .doctor-content {
        text-align: center;
        padding: 30px 0 0;
    }

    .doctor-content h3 {
        font-size: 23px;
    }

    .doctor-content h5 {
        font-size: 15px;
    }

    .doctor-content p {
        font-size: 15px;
    }

    .doctor-heading {
        margin-bottom: 45px;
    }

    .doctor-section-title {
        font-size: 34px;
    }

    .doctor-section-subtitle {
        font-size: 17px;
    }

}

/* Mobile */

@media(max-width:575px) {

    .doctor-section-title {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .doctor-card {
        height: auto;
        padding: 20px;
        margin-top: 20px;
    }

    .doctor-content {
        text-align: left;
    }

    .doctor-image {
        height: 220px;
    }

    /* .doctor-bg{
    height:170px;
} */

    /* .doctor-image img{
    height:250px;
} */

    .doctor-content h3 {
        font-size: 23px;
    }

    .doctor-content h5 {
        font-size: 15px;
    }

    .doctor-content p {
        font-size: 15px;
    }

    .doctor-heading {
        margin-bottom: 35px;
    }

    .doctor-section-title {
        font-size: 28px;
        letter-spacing: .5px;
    }

    .doctor-section-subtitle {
        font-size: 16px;
        line-height: 1.7;
    }

}

/* doctors end */


/* blog start */

.blog-section {
    padding: 50px 0;
    /* background: #f7fbff; */
    background: #f3fefc;
}

.blog-heading {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.blog-heading .section-tag {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(1, 175, 150, .12);
    color: #01af96;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 18px;
}

.blog-section-title {
    margin: 0 0 18px;
    color: #143634;
    font-size: 40px;

    font-family: "Prosto One", sans-serif;
    line-height: 1.3;
}

.blog-section-subtitle {
    max-width: 650px;
    margin: 0 auto;
    color: #6b7280;
    font-size: 15px;
    line-height: 1.8;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
}

.blog-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    /* box-shadow:0 15px 40px rgba(0,0,0,.08); */
    transition: .4s;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-img {
    position: relative;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: .5s;
}

.blog-card:hover img {
    transform: scale(1.08);
}

.blog-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #01af96;
    color: #fff;
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.blog-content {
    padding: 30px;
}

.blog-category {
    color: #01af96;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.blog-content h3 {
    font-size: 20px;
    color: #143634;
    font-weight: 500;
    margin: 15px 0;
    line-height: 1.4;
}

.blog-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 15px;
}

.blog-content a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #202cad;
    font-weight: 400;
    text-decoration: none;
    transition: .3s;
}

.blog-content a:hover {
    color: #01af96;
}

.blog-content a i {
    transition: .3s;
}

.blog-content a:hover i {
    transform: translateX(6px);
}

@media(max-width:991px) {

    .blog-heading {
        margin-bottom: 50px;
    }

    .blog-section-title {
        font-size: 34px;
    }

    .blog-section-subtitle {
        font-size: 17px;
    }


    .blog-content h3 {
        font-size: 22px;
    }

    .blog-img img {
        height: 220px;
    }

}

@media(max-width:576px) {

    .blog-heading {
        margin-bottom: 40px;
    }

    .blog-heading .section-tag {
        padding: 8px 18px;
        font-size: 13px;
    }

    .blog-section-title {
        font-size: 28px;
        line-height: 1.4;
    }

    .blog-section-subtitle {
        font-size: 16px;
        line-height: 1.7;
        padding: 0 10px;
    }

    .blog-section {
        padding: 70px 0;
    }

    .blog-content {
        padding: 22px;
    }

    .blog-content h3 {
        font-size: 20px;
    }

    .blog-content p {
        font-size: 15px;
    }

    .blog-img img {
        height: 200px;
    }

    .blog-date {
        padding: 8px 14px;
        font-size: 13px;
    }

}

/* blog end */



/* blog detail page */

.blog-detail-page {
    padding: 50px 0;
    background: #f3fefc;
}


.blog-detail-image {
    overflow: hidden;
    border-radius: 18px;
    margin-bottom: 30px;
}

.blog-detail-image img {
    width: 100%;
    border-radius: 18px;
    transition: .5s;
}

.blog-detail-image:hover img {
    transform: scale(1.04);
}

/*============================
Meta
=============================*/

.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.blog-detail-meta span {
    font-size: 15px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-detail-meta i {
    color: #01af96;
}


.blog-detail-title {
    font-size: 25px;
    line-height: 1.4;
    color: #000000;
    font-weight: 500;
    margin-bottom: 30px;
    font-family: "Prosto One", sans-serif;
}


.blog-detail-content p {
    color: #555;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 25px;
}

.blog-detail-content h2 {
    color: #202cad;
    font-size: 32px;
    font-weight: 700;
    margin-top: 45px;
    margin-bottom: 20px;
}

.blog-detail-content img {
    border-radius: 15px;
}

/*============================
Quote
=============================*/

.blog-quote {
    background: #202cad;
    color: #fff;
    padding: 45px;
    margin: 45px 0;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.blog-quote::before {

    content: "";

    position: absolute;

    width: 130px;
    height: 130px;

    background: rgba(255, 255, 255, .08);

    border-radius: 50%;

    right: -40px;
    top: -40px;

}

.blog-quote i {

    font-size: 45px;

    color: #01af96;

    margin-bottom: 15px;

}

.blog-quote p {

    color: #fff;

    margin: 0;

    font-size: 22px;

    line-height: 1.8;

    font-style: italic;

}

/*============================
List
=============================*/

.blog-list {

    margin: 30px 0;

    padding-left: 25px;

}

.blog-list li {

    margin-bottom: 18px;

    color: #000;

    font-size: 17px;

}


.blog-share {

    margin-top: 60px;

    border-top: 1px solid #e9e9e9;

    padding-top: 40px;

}

.blog-share h4 {

    color: #143634;

    font-size: 23px;

    margin-bottom: 25px;

    font-weight: 500;

}

.share-icons {

    display: flex;

    flex-wrap: wrap;

    gap: 15px;

}

.share-icons a {

    width: 40px;

    height: 40px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #202cad;

    color: #fff;

    font-size: 15px;

    text-decoration: none;

    transition: .35s;

}

.share-icons a:hover {

    background: #01af96;

    transform: translateY(-6px);

}


.comment-section {

    margin-top: 70px;

    padding: 45px;

    border-radius: 18px;

    background: #f8fbfb;

    border: 1px solid #ececec;

}

.comment-section h3 {

    color: #202cad;

    font-size: 27px;

    margin-bottom: 12px;

    font-weight: 500;

}

.comment-section p {

    margin-bottom: 30px;

}

.comment-section .form-control {

    height: 58px;

    border-radius: 10px;

    border: 1px solid #dcdcdc;

    box-shadow: none;

    padding: 15px 20px;

    font-size: 15px;

}

.comment-section textarea.form-control {

    height: auto;

    resize: none;

}

.comment-section .form-control:focus {

    border-color: #01af96;

    box-shadow: none;

}

.comment-section button {

    border: none;

    background: #202cad;

    color: #fff;

    padding: 15px 35px;

    border-radius: 50px;

    font-size: 16px;

    transition: .35s;

}

.comment-section button:hover {

    background: #01af96;

}

.comment-section button i {

    margin-left: 8px;

}


.blog-sidebar {

    position: sticky;

    top: 120px;

}

.sidebar-widget {

    background: #fff;

    border-radius: 18px;

    padding: 35px;

    box-shadow: 0 15px 45px rgba(0, 0, 0, .06);

}

.sidebar-widget h3 {

    color: #143634;

    font-size: 23px;

    margin-bottom: 30px;

    position: relative;

    padding-bottom: 15px;

}

.sidebar-widget h3::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 60px;

    height: 3px;

    background: #01af96;

}

/*============================
Recent Posts
=============================*/

.recent-post {

    display: flex;

    gap: 18px;

    align-items: center;

    margin-bottom: 25px;

    padding-bottom: 25px;

    border-bottom: 1px solid #ececec;

}

.recent-post:last-child {

    margin-bottom: 0;

    border-bottom: none;

    padding-bottom: 0;

}

.recent-post img {

    width: 95px;

    height: 95px;

    object-fit: cover;

    border-radius: 12px;

    transition: .4s;

}

.recent-post:hover img {

    transform: scale(1.08);

}

.recent-post h5 {

    margin-bottom: 8px;

    line-height: 1.5;

}

.recent-post h5 a {

    color: #000;

    font-size: 15px;

    font-weight: 500;

    text-decoration: none;

    transition: .3s;

}

.recent-post h5 a:hover {

    color: #01af96;

}

.recent-post span {

    color: #777;

    font-size: 14px;

}

.recent-post span i {

    color: #01af96;

    margin-right: 6px;

}



.blog-sidebar::-webkit-scrollbar {

    width: 5px;

}

.blog-sidebar::-webkit-scrollbar-thumb {

    background: #01af96;

}



@media(max-width:991px) {

    .blog-detail-page {

        padding: 70px 0;

    }

    .blog-detail-title {

        font-size: 34px;

    }

    .blog-detail-content h2 {

        font-size: 28px;

    }

    .blog-sidebar {

        margin-top: 0px;

        position: relative;

        top: 0;

    }

    .comment-section {

        padding: 30px;

    }

}

@media(max-width:767px) {

    .blog-detail-title {

        font-size: 28px;

    }

    .blog-detail-meta {

        gap: 12px;

    }

    .blog-detail-meta span {

        width: 100%;

    }

    .blog-detail-content h2 {

        font-size: 24px;

    }

    .blog-quote {

        padding: 30px;

    }

    .blog-quote p {

        font-size: 18px;

    }

    .share-icons {

        /* justify-content: center; */

    }

    .comment-section {

        padding: 25px;

    }

    .sidebar-widget {

        padding: 25px;

    }

    .recent-post {

        align-items: flex-start;

    }

    .recent-post img {

        width: 80px;

        height: 80px;

    }

}

@media(max-width:575px) {

    .blog-detail-page {

        padding: 50px 0;

    }

    .blog-detail-title {

        font-size: 24px;

    }

    .comment-section h3 {
        font-size: 25px;
    }

    .sidebar-widget h3 {
        font-size: 24px;
    }

    .share-icons a {

        width: 35px;

        height: 35px;

        font-size: 13px;

    }

    .recent-post h5 a {
        font-size: 13px;
    }

}

/* blog detail end */




/* departments card page start */

.departments-grid-section {
    padding: 50px 0;
    background: #f3fefc;
}

.departments-grid-title {
    max-width: 720px;
    margin: auto auto 60px;
}

.departments-grid-title span {
    display: inline-block;
    padding: 8px 22px;
    background: #01af96;
    color: #fff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
}

.departments-grid-title h2 {
    font-size: 40px;
    color: #143634;
    font-family: "Prosto One", sans-serif;
    margin-bottom: 20px;
}

.departments-grid-title p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

.dept-service-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
    transition: .4s;
    height: 100%;
}

.dept-service-card:hover {
    transform: translateY(-10px);
}

.dept-service-image {
    display: block;
    overflow: hidden;
}

.dept-service-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: .5s;
}

.dept-service-card:hover .dept-service-image img {
    transform: scale(1.08);
}

.dept-service-content {
    padding: 30px;
}

.dept-service-content h3 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 500;
}

.dept-service-content h3 a {
    color: #000000;
    text-decoration: none;
    transition: .3s;
}

.dept-service-card:hover h3 a {
    color: #01af96;
}

.dept-service-content p {
    color: #666;
    line-height: 1.9;
    font-size: 15px;
    margin-bottom: 25px;
}

.dept-service-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    border-radius: 50px;
    background: #202cad;
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    transition: .35s;
}

.dept-service-btn:hover {
    background: #01af96;
    color: #fff;
}

.dept-service-btn i {
    transition: .35s;
}

.dept-service-btn:hover i {
    transform: translateX(6px);
}

@media(max-width:991px) {

    .departments-grid-section {
        padding: 70px 0;
    }

    .departments-grid-title h2 {
        font-size: 36px;
    }

    .dept-service-image img {
        height: 240px;
    }

}

@media(max-width:767px) {

    .departments-grid-title h2 {
        font-size: 30px;
    }

    .dept-service-content {
        padding: 25px;
    }

    .dept-service-content h3 {
        font-size: 20px;
    }

    .dept-service-image img {
        height: 220px;
    }

}

@media(max-width:575px) {

    .departments-grid-section {
        padding: 50px 0;
    }

    .departments-grid-title h2 {
        font-size: 26px;
    }

    .dept-service-image img {
        height: 200px;
    }

    .dept-service-btn {
        /* width: 100%; */
        justify-content: center;
    }

}

/* departments card page end */






/* Department Detail page */

.department-detail-section {
    padding: 50px 0;
    background: #f3fefc;
}


.department-detail-content img {
    width: 100%;
    border-radius: 18px;
    transition: .4s;
}

.department-detail-content img:hover {
    transform: scale(1.02);
}

.department-subtitle {
    display: inline-block;
    background: #01af96;
    color: #fff;
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 20px;
}

.department-title {
    font-size: 30px;
    color: #000000;
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 1.3;
}

.department-detail-content p {
    color: #555;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 22px;
}

.department-detail-content h2 {
    font-size: 27px;
    color: #000000;
    margin: 45px 0 25px;
    font-weight: 500;
}


.department-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.department-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 18px;
    color: #000;
    font-size: 16px;
    font-weight: 400;
}

.department-list li::before {

    content: "\f058";

    font-family: "Font Awesome 6 Free";

    font-weight: 900;

    position: absolute;

    left: 0;

    top: 1px;

    color: #01af96;

}

/*==========================
Service Cards
==========================*/

.department-card {

    background: #fff;

    border: 1px solid #ececec;

    border-radius: 16px;

    padding: 30px;

    margin-bottom: 25px;

    transition: .35s;

    height: 100%;

}

.department-card:hover {

    transform: translateY(-8px);

    border-color: #01af96;

    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);

}

.department-card i {

    width: 70px;

    height: 70px;

    border-radius: 50%;

    background: #202cad;

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 28px;

    margin-bottom: 20px;

    transition: .35s;

}

.department-card:hover i {

    background: #01af96;

    transform: rotate(8deg);

}

.department-card h5 {

    color: #202cad;

    font-size: 20px;

    font-weight: 500;

    margin-bottom: 15px;

}

.department-card p {

    margin: 0;

    color: #666;

    font-size: 15px;

    line-height: 1.8;

}


.appointment-form {

    position: sticky;

    top: 110px;

    background: #ffffff;

    border-radius: 18px;

    padding: 35px;

    border-top: 5px solid #01af96;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);

}

.appointment-form h3 {

    color: #000000;

    font-size: 27px;

    font-weight: 500;

    margin-bottom: 10px;

}

.appointment-form p {

    color: #666;

    margin-bottom: 25px;
    font-size: 15px;

    line-height: 1.7;

}


.appointment-form .form-control,
.appointment-form .form-select {

    height: 58px;

    border-radius: 10px;

    border: 1px solid #dcdcdc;

    box-shadow: none;

    padding: 15px 18px;

    font-size: 15px;

    transition: .3s;

}

.appointment-form textarea.form-control {

    height: auto;

    resize: none;

}

.appointment-form .form-control:focus,
.appointment-form .form-select:focus {

    border-color: #01af96;

    box-shadow: 0 0 0 .15rem rgba(1, 175, 150, .15);

}


.appointment-btn {

    width: 100%;

    border: none;

    background: #202cad;

    color: #fff;

    padding: 16px;

    border-radius: 50px;

    font-size: 17px;

    font-weight: 400;

    transition: .35s;

}

.appointment-btn:hover {

    background: #01af96;

    transform: translateY(-3px);

}


.appointment-contact {

    margin-top: 30px;

    padding-top: 25px;

    border-top: 1px solid #ececec;

}

.appointment-contact h5 {

    color: #000000;

    font-size: 20px;

    margin-bottom: 20px;

    font-weight: 500;

}

.appointment-contact p {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 15px;

}

.appointment-contact i {

    width: 42px;

    height: 42px;

    border-radius: 50%;

    background: #202cad;

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: .3s;

}

.appointment-contact p:hover i {

    background: #01af96;

}

.appointment-contact a {

    color: #000;

    text-decoration: none;

    transition: .3s;

}

.appointment-contact a:hover {

    color: #01af96;

}

/*==========================
Responsive
==========================*/

@media (max-width:991px) {

    .department-detail-section {

        padding: 70px 0;

    }

    .department-title {

        font-size: 34px;

    }

    .department-detail-content h2 {

        font-size: 28px;

    }

    .appointment-form {

        margin-top: 40px;

        position: relative;

        top: 0;

    }

}

@media (max-width:767px) {

    .department-title {

        font-size: 28px;

    }

    .department-detail-content h2 {

        font-size: 24px;

    }

    .department-card {

        padding: 25px;

    }

    .department-quote {

        padding: 30px;

    }

    .department-quote p {

        font-size: 18px;

    }

    .appointment-form {

        padding: 25px;

    }

    .appointment-form h3 {

        font-size: 25px;

    }

}

@media (max-width:575px) {

    .department-detail-section {

        padding: 50px 0;

    }

    .department-title {

        font-size: 24px;

        line-height: 1.4;

    }

    .department-detail-content p {

        font-size: 15px;

    }

    .department-list li {

        font-size: 15px;

    }

    .department-card h5 {

        font-size: 20px;

    }

    .appointment-btn {

        font-size: 16px;

    }

}


/* departments detal end */


/* video */

.video-testimonials-section {
    padding-bottom: 20px;
    background: #f3fefc;
    position: relative;
}

.video-testimonials-title {
    max-width: 720px;
    margin: 0 auto 60px;
}

.video-testimonials-title .sub-title {
    display: inline-block;
    background: #01af96;
    color: #fff;
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
    letter-spacing: .5px;
}

.video-testimonials-title h2 {
    color: #202cad;
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 18px;
}

.video-testimonials-title p {
    color: #666;
    font-size: 17px;
    line-height: 1.9;
}

.video-testimonial-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    /* box-shadow:0 15px 40px rgba(0,0,0,.06); */
    transition: .4s;
    height: 100%;
    border: 1px solid #edf2f7;
}

.video-testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}


.video-testimonial-thumb {
    position: relative;
    overflow: hidden;
}

.video-testimonial-thumb iframe {
    width: 100%;
    height: 250px;
    display: block;
    border: 0;
}


.video-testimonial-content {
    padding: 8px 28px;
}

.video-testimonial-content h4 {
    margin-bottom: 15px;
    line-height: 1.5;
}

.video-testimonial-content h4 a {
    color: #000000;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    transition: .3s;
}

.video-testimonial-card:hover h4 a {
    color: #01af96;
}

.video-testimonial-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 0;
}


.video-view-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    background: #202cad;
    color: #fff;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 400;
    transition: .35s;
}

.video-view-more:hover {
    background: #01af96;
    color: #fff;
    transform: translateY(-4px);
}

.video-view-more i {
    transition: .35s;
}

.video-view-more:hover i {
    transform: translateX(6px);
}



@media(max-width:991px) {

    .video-testimonials-section {
        padding: 10px 0;
    }

    .video-testimonials-title h2 {
        font-size: 36px;
    }

    .video-testimonial-thumb iframe {
        height: 230px;
    }

}

@media(max-width:767px) {

    .video-testimonials-title {
        margin-bottom: 45px;
    }

    .video-testimonials-title h2 {
        font-size: 30px;
    }

    .video-testimonials-title p {
        font-size: 16px;
    }

    .video-testimonial-thumb iframe {
        height: 220px;
    }

    /* .video-testimonial-content {
        padding: 22px;
    } */

    .video-testimonial-content h4 a {
        font-size: 18px;
    }

}

@media(max-width:575px) {

    .video-testimonials-section {
        padding:0px 0;
    }

    .video-testimonials-title h2 {
        font-size: 26px;
    }

    .video-testimonial-thumb iframe {
        height: 210px;
    }

    .video-testimonial-content h4 a {
        font-size: 18px;
    }

    .video-view-more {
        
        justify-content: center;
    }

}

/* testimonial vide end */



/* home form section*/

.home-form-section{
    padding:50px 0;
    /* background:#f8fcfb; */
    background: #f3fefc;
}

.home-form-info{
    padding-right:40px;
}

.home-form-subtitle{
    display:inline-block;
    background:#01af96;
    color:#fff;
    padding:8px 22px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.home-form-info h2{
    color:#143634;
    font-size:40px;
    font-family: "Prosto One", sans-serif;
    /* font-weight:500; */
    margin-bottom:20px;
    line-height:1.3;
}

.home-form-info p{
    color:#666;
    line-height:1.9;
    margin-bottom:35px;
}

/* Contact */

.home-contact-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-bottom:30px;
}

.home-contact-icon{
    width:60px;
    height:60px;
    background:#202cad;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    transition:.3s;
}

.home-contact-item:hover .home-contact-icon{
    background:#01af96;
}

.home-contact-item span{
    display:block;
    color:#777;
    font-size:14px;
    margin-bottom:8px;
}

.home-contact-item h5{
    margin:0 0 8px;
    font-size:16px;
    font-weight:500;
}

.home-contact-item a{
    text-decoration:none;
    color:#202cad;
    transition:.3s;
}

.home-contact-item a:hover{
    color:#01af96;
}

/* Form */

.home-form-box{
    background:#fff;
    padding:45px;
    border-radius:20px;
    /* box-shadow:0 20px 60px rgba(0,0,0,.08); */
}

.home-form-box h3{
    color:#143634;
    font-size:28px;
    font-weight:500;
    margin-bottom:10px;
}

.home-form-box p{
    color:#666;
    margin-bottom:30px;
}

.home-form-box .form-control,
.home-form-box .form-select{
    height:56px;
    border-radius:10px;
    border:1px solid #ddd;
    box-shadow:none;
    padding:15px;
}

.home-form-box textarea.form-control{
    height:auto;
    resize:none;
}

.home-form-box .form-control:focus,
.home-form-box .form-select:focus{
    border-color:#01af96;
    box-shadow:0 0 0 .15rem rgba(1,175,150,.15);
}

.home-form-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    width:100%;
    height:58px;
    background:#202cad;
    color:#fff;
    border:none;
    border-radius:50px;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.home-form-btn:hover{
    background:#01af96;
}

.home-form-btn i{
    transition:.3s;
}

.home-form-btn:hover i{
    transform:translateX(5px);
}

/* Responsive */

@media(max-width:991px){

.home-form-section{
    padding:70px 0;
}

.home-form-info{
    padding-right:0;
}

.home-form-info h2{
    font-size:36px;
}

.home-form-box{
    padding:35px;
}

}

@media(max-width:575px){

.home-form-section{
    padding:50px 0;
}

.home-form-info h2{
    font-size:28px;
}

.home-form-box{
    padding:25px;
}

.home-form-box h3{
    font-size:25px;
}

.home-contact-icon{
    width:50px;
    height:50px;
    font-size:18px;
}

.home-contact-item h5{
    font-size:16px;
}

.home-form-btn{
    height:52px;
    font-size:15px;
}

}