@font-face {
  font-family: 'Gordita';
  src: url('../fonts/Gordita-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Gordita';
  src: url('../fonts/Gordita-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Gordita';
  src: url('../fonts/Gordita-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Gordita';
  src: url('../fonts/Gordita-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Gordita';
  src: url('../fonts/Gordita-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --blue--: #009ECF;
    --green--: #5EB446;
}

a{
    text-decoration: none !important;
    font-size: 16px;
    line-height: 1;
    color: #121212;
}

ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

body{
    font-family: 'Gordita', sans-serif;
    font-weight: 400; /* Regular */
}

/* h1,h2,h3,h4,h5,h6{
    font-family: "articulat-cf", sans-serif;
} */

p{
    font-size: 16px;
    margin: 0;
}

section{
    overflow: hidden;
    /* position: relative; */
    /* z-index: 3; */
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.prealoader{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999999;
    background-color: #fff;
    display: grid;
    place-items: center;
}

.prealoader img{
    width: 200px;
    animation: zoomInOut 3s infinite;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1); /* Original size */
    }
    50% {
        transform: scale(1.2); /* Zoomed in */
    }
    100% {
        transform: scale(1); /* Back to original size */
    }
}

.c-scrollbar{
    opacity: 1;
}

.c-scrollbar_thumb {
    /* background-color: #fff; */
}

.smooth-scroll{
    margin-top: 100px;
}

header{
    display: flex;
    align-items: center;
    padding: 20px 5%;
    background: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99;
}

header .logo, header .flex-1{
    flex: 1;
}

header .logo img {
    width: 180px;
}

header nav ul{
    display: flex;
    gap: 20px;
}

header nav ul li a{
    font-size: 16px;
    color: #121212;
}

header nav ul li a:hover{
    color: var(--green--);
}

header nav ul li.drop_menu{
    position: relative;
}

header nav ul li.drop_menu:hover a{
    color: var(--green--);
}

header nav ul li.drop_menu .drop_menu_new{
    position: absolute;
    width: 240px;
    top: 100%;
    display: flex;
    background: #fff;
    padding: 20px 10px;
    gap: 40px;
    border-top: 4px solid var(--green--);
    transform: translateY(20px) translateX(50%);
    transform-origin: top;
    transition: 0.3s ease-in-out;
    right: 50%;
    border-radius: 20px;
    opacity: 0;
    visibility: hidden;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

header nav ul li.drop_menu:hover .drop_menu_new, header nav ul li.drop_menu:focus .drop_menu_new{
    transform: translateY(0) translateX(50%);
    opacity: 1;
    visibility: visible;
    transition: 0.5s ease-in-out;
}

header nav ul li.drop_menu .drop_menu_new ul{
    display: flex;
    flex-direction: column;
    gap: 20px 60px;
    padding: 0;
}

header nav ul li.drop_menu .drop_menu_new ul li a{
    padding: 0;
    padding-bottom: 2px;
    color: #111111;
}

.mobile_menu{
    position: fixed;
    height: 100vh;
    width: 300px;
    left: 0;
    top: 0;
    background: #fff;
    overflow: auto;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    z-index: 9999;
    transform: translateX(-100%);
    transition: 0.5s;
}

.mobile_menu.active{
    transform: translateX(0);
}

.mobile_menu > ul{
    padding: 10px;
}

.mobile_menu ul li a{
    display: block;
}

.mobile_menu > ul > li > a{
    padding: 10px 20px;
}

.mobile_menu > ul > li > a.drop_menu_btn.active{
    background: var(--green--);
    color: #fff;
    position: relative;
}

.mobile_menu ul li.drop_menu > a{
    display: flex;
    justify-content: space-between;
}

.mobile_menu ul li.drop_menu > a > i{
    display: none;
}

.mobile_menu ul li.drop_menu > a::after{
    content: '\f107';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #1E1E1E;
    padding-left: 5px;
}

.mobile_menu ul li.drop_menu > a.active::after{
    content: '\f106';
    color: #fff;
}

.mobile_menu > ul > li > a:hover{
    color: #1E1E1E;
}


.mobile_menu > ul > li{
    border-bottom: 1px solid #A9A9A969;
}

.mobile_menu > ul > li:last-child{
    border: none;
}

.mobile_menu .connect_btn{
    display: none; 
}

.mobile_menu .mega_menu .menu_head{
    display: none;
}

.mobile_menu .mega_menu .menu ul, .mobile_menu .drop_menu_new .menu ul{
    padding: 10px 20px;
    border: 1px solid var(--green--);
}

.mobile_menu .mega_menu .menu ul li, .mobile_menu .drop_menu_new .menu ul li{
    margin-bottom: 10px;
}

.mobile_menu .mega_menu .menu ul li a, .mobile_menu .drop_menu_new .menu ul li a{
    color: #111;
}

.mobile_menu .mega_menu .menu ul li a:hover{
    /* color: var(--brown--); */
}

.mobile_menu .mega_menu, .mobile_menu .drop_menu_new{
    display: none;
}

.mobile_menu .nav_close_btn{
    padding: 10px 20px;
    border-bottom: 1px solid #000;
    margin-bottom: 20px;
    text-align: end;
}

.mobile_menu .nav_close_btn a{
    font-size: 24px
}

.mb_menu_btn{
    cursor: pointer;
    display: none;
}

.mb_menu_btn i{
    color: var(--green--);
    font-size: 32px;
}

.px_5{
    padding-left: 5%;
    padding-right: 5%;
}

.banner{
    position: relative;
    z-index: 1;
    /* border-radius: 40px; */
    overflow: hidden;
}

.banner::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #fff;
    z-index: -2;
}

.banner::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 38.97%, rgba(0, 0, 0, 0.17) 100%);
    z-index: 1;
    border-radius: 40px;
}

/* .banner img{
    
} */

.banner .shape_1{
    position: absolute;
    width: calc(100% - 500px);
    height: 100%;
    background: #000;
    left: 0;
    top: 0;
    border-radius: 40px;
    z-index: -1;
}

.banner .shape_2{
    position: absolute;
    height: calc(100% - 200px);
    width: 100%;
    background: #000;
    left: 0;
    top: 0;
    border-radius: 40px;
    z-index: -1;
}
.banner .shape_3{
    position: absolute;
    height: 200px;
    width: 500px;
    background: #000;
    right: 0;
    bottom: 0;
    z-index: -1;
    /* border-radius: 0 0 ; */
}

.banner img{
    width: 100%;
    height: calc(100vh - 110px);
    object-fit: cover;
    mix-blend-mode: lighten;
}

.banner .content{
    position: absolute;
    left: 5%;
    top: 20%;
    width: 650px;
    z-index: 2;
}

.banner .content h2{
    font-weight: 700;
    font-size: 46px;
    color: #fff;
}

.banner .content p{
    color: #fff;
}

.banner_content_slider{
    width: 325px;
    flex: 0 0 auto;
    padding: 0 10px;
}

.banner_content_slider .slides h3{
    font-size: 17px;
    font-weight: 500;
    color: #121212;
}

.banner_content_slider .slides p{
    font-size: 14px;
    color: #767676;
}

.banner_content_slider .slides a{
    font-size: 14px;
    font-weight: 500;
    color: #009ECF;
    display: inline-block;
}

.banner_img_slider{
    width: 180px;
}

.banner_img_slider img{
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 2px solid #fff;
    transform: scale(1.3);
    /* opacity: 0; */
    transition: 0.3s;
    object-fit: cover;
}

.banner_img_slider img.slick-active{
    opacity: 1;
}

.banner_img_slider img.slick-current{
    border: 2px solid #A9F693;

}

.banner_img_slider .slick-list{
    padding: 10px;
}

.banner_sec{
    position: relative;
}

.banner_sec .banner_ab{
    position: absolute;
    bottom: 0;
    right: 0;
    background: #fff;
    width: 500px;
    height: 200px;
    z-index: 2;
    border-radius: 40px 0 0 0;
    display: flex;
    padding: 20px;
}

.banner_slider{
    position: relative;
}

.banner_slider .slick-dots{
    position: absolute;
    z-index: 4;
    display: flex;
    bottom: 10%;
    left: 4%;
    gap: 5px;
}

.banner_slider .slick-dots li button{
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50px;
    font-size: 0;
    border: none;
    transition: 0.3s;
}

.banner_slider .slick-dots li.slick-active button{
    width: 30px;
}

.contact_us_btn{
    font-size: 14px;
    display: inline-block;
    padding: 7px 7px 7px 12px;
    transition: 0.3s;
    border-radius: 50px;
}

.contact_us_btn i{
    aspect-ratio: 1/1;
    width: 32px;
    display: inline-block;
    align-content: center;
    text-align: center;
    background: #fff;
    color: #000;
    border-radius: 50%;
    margin-left: 10px;
}

.contact_us_btn.bg_blue{
    background: var(--blue--);
    color: #fff;
}

.contact_us_btn.bg_blue:hover{
    background: #fff;
    color: #000;
}
.play_btn{
    display: grid;
    width: 42px;
    height: 42px;
    background: #fff;
    border-radius: 50%;
    place-items: center;
    color: var(--green--);
    font-size: 30px;
    transition: 0.3s;
}

.play_btn:hover{
    color: #fff;
    background: var(--green--);
}

.logo_sec{
    display: flex;
    align-items: center;
    gap: 20px 40px;
}

.follow_us{
    display: flex;
    gap: 20px;
    align-items: center;
    border: 1px solid #D9D9D9;
    border-radius: 50px;
    padding: 10px 10px 10px 20px;
}

.follow_us p{
    font-weight: 500;
    white-space: nowrap;
}

.follow_us ul{
    display: flex;
    gap: 10px;
}

.follow_us ul li a{
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid #767676;
    color: #767676;
    font-size: 20px;
    border-radius: 50%;
    transition: 0.3s;
}


.follow_us ul li a:hover{
    background: #767676;
    color: #fff;
}

.logo_slider{
    width: 100%; 
    overflow: hidden;
}

.logo_slider img {
  aspect-ratio: 8/1;
  object-fit: contain;
  padding: 0 5px;
}

.heading h2{
    font-weight: 700;
    font-size: 33px;
    color: #121212;
}

.heading p{
    font-size: 20px;
    color: #767676;
}

.services-container {
    display: flex;
    gap: 20px;
    /* flex-wrap: wrap; */
    justify-content: center;
    padding: 40px 0;
}

.service-card{
    position: relative;
    flex: 1 1 25%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    overflow: hidden;
    color: white;
    /* display: flex;
    align-items: flex-end; */
    transition: transform 0.3s ease;
    transition: 0.3s ease-in-out;
}

.service-card.active{
    flex: 1 1 50%;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: radial-gradient(38.94% 96.64% at 50.07% 48%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%); */
    backdrop-filter: grayscale(100%);
    z-index: 1;
    background: #0000007D;
    transition: 0.3s ease-in-out;
}

.service-card.active::before{
    background: radial-gradient(38.94% 96.64% at 50.07% 48%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    backdrop-filter: grayscale(0);
}

.bg_gr{
    background: radial-gradient(33.57% 83.3% at 51.1% 48%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.service-card .content {
    position: relative;
    z-index: 2;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 60px;
}

.service-card h3 {
    margin: 0 0 10px;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.3;
}

.service-card .service-card-b{
    display: flex;
    gap: 30px;
    align-items: center;
    border-top: 1px solid #FFFFFF42;
    padding-top: 20px;
    justify-content: end;
}

.service-card p {
    font-size: 1rem;
    margin-bottom: 10px;
}

.service-card small {
    display: block;
    font-size: 14px;
    color: #FFFFFF;
    /* margin-bottom: 15px; */
    height: 0;
    opacity: 0;
    transition: 0.3s ease-in-out;
    width: 0;
}

.service-card.active small{
    width: auto;
    height: auto;
    opacity: 1;
}

.contact_us_btn.blur_bg{
    background: #FFFFFF33;
    backdrop-filter: blur(8px);
    color: #fff;
    white-space: nowrap;
}

.contact_us_btn.blur_bg:hover{
    background: #fff;
    color: #000;
}

.eco_flex{
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.eco_flex .play_img{
    width: 150px;

}

.play_img{
    position: relative;
    border-radius: 50%;
    flex: 0 0 auto;
    overflow: hidden;
    display: grid;
    place-items: center;
}

/* .play_img a{
    width: 100%;
    display: block;
} */

.play_img img{
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.play_img i{
    position: absolute;
    font-size: 30px;
    color: var(--green--);
    background: #fff;
    border-radius: 50%;
    aspect-ratio: 1/1;
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
}

.gray_content p{
    color: #767676;
    font-size: 18px;
}

.gray_content p span{
    font-weight: 500;
    color: #121212;
}

.contact_us_btn.d_blue_bg{
    color: #fff;
    background: #005697;
}

.contact_us_btn.bg_black{
    color: #fff;
    background: #1E1E1E;
    border: 1px solid #1E1E1E;
}

.contact_us_btn.bg_black:hover{
    color: #1E1E1E;
    background: #fff;
}

.counter_card p{
    font-size: 14px;
    color: #484848;
}

.counter_card p strong{
    font-size: 20px;
    color: #111111;
}

.counter_card span{
    font-weight: 700;
    color: #111111;
    font-size: 48px;
}

.fs_18{
    font-size: 18px !important;
}

.fw_500{
    font-weight: 500 !important;
}

.experience_content .content p{
    font-size: 18px;
}

.container_bg{
    position: relative;
    z-index: 2;
    padding: 140px 60px 150px 0;
    overflow: hidden;
    border-radius: 40px;
    background: url(../images/container_bg.avif) no-repeat 100% 100%;
    background-size: cover;
    /* background-attachment: fixed; */
}

.container_bg::before, .container_bg::after{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.container_bg::before{
    /* z-index: -2;
    background: url(../images/container_bg.avif) no-repeat;
    background-size: cover;
    background-attachment: fixed; */
}

.container_bg::after{
    z-index: -1;
    background: linear-gradient(90.12deg, rgba(38, 123, 154, 0) 26.61%, rgba(38, 123, 154, 0.56) 40.17%, #267B9A 63.41%);
}

.experience_card{
    border: 1px solid #D9D9D9;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
}

.experience_card img{
    width: 80px;
    aspect-ratio: 1/1;
    object-fit: contain;
    margin: 0 auto;
    margin-bottom: 15px;
}

.certificate_card_1, .certificate_card_2{
    background: #E4F3FF;
    border-radius: 20px;
    padding: 10px;
    overflow: hidden;
    height: 100%;
    position: relative;
}

.certificate_card_1 i, .certificate_card_2 i{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: grid;
    place-items: center;
    background: #E4F3FFAB;
    color: #005697;
    font-size: 32px;
    transform: scale(0);
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.certificate_card_1:hover i, .certificate_card_2:hover i{
    transform: scale(1);
    opacity: 1;
}

.certificate_card_1 img{
    border-radius: 20px;
    aspect-ratio: 3/2;
    object-fit: cover;
}

.certificate_card_2 img{
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    aspect-ratio: 7/10;
}

.gallery_img{
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.gallery_img i{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: grid;
    place-items: center;
    background: #00569790;
    color: #fff;
    font-size: 32px;
    transform: scale(0);
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.gallery_img:hover i{
    transform: scale(1);
    opacity: 1;
}

.gallery_img img{
    aspect-ratio: 1/1;
    object-fit: cover;
}

.team_card{
    border: 1px solid #EBEBEB;
    border-radius: 30px;
    padding: 30px 0 0 20px;
    display: flex;
    flex-wrap: wrap;
}

.team_card img{
    width: 35%;
    /* align-self: baseline; */
    aspect-ratio: 5/6;
    object-fit: contain;
    object-position: bottom;
}

.team_card .content{
    padding: 0 20px 20px 20px;
    width: 65%;
}

.team_card .content h3{
    font-weight: 700;
    font-size: 20px;
}

.team_card .content p{
    font-size: 14px;
}

.border_1{
    background: #D9D9D9;
}

.testimonial_card h3{
    font-weight: 500;
    font-size: 28px;
    margin-bottom: 15px;
}

.testimonial_card p{
    font-size: 18px;
}

.testimonial_card .testimonial_name{
    display: flex;
    gap: 20px;
    align-items: center;
}

.testimonial_card .testimonial_name img{
    width: 100px;
    aspect-ratio: 1/1;
    flex: 0 0 auto;
    border-radius: 50%;
}

.testimonial_card .testimonial_name .content h4{
    font-weight: 700;
    font-size: 24px;
}

.testimonial_card .testimonial_name .content p{
    font-size: 18px;
}

.testimonial_bg{
    position: relative;
    z-index: 2;
    padding: 40px 50px;
    border-radius: 30px;
    overflow: hidden;
}

.testimonial_bg::after, .testimonial_bg::before{
    width: 100%;
    height: 100%;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
}

.testimonial_bg::after{
    background: linear-gradient(90deg, #185B75 20.08%, rgba(24, 91, 117, 0.851777) 43.55%, rgba(24, 91, 117, 0) 81.07%);
    z-index: -1;
}

.testimonial_bg::before{
    background: url(../images/testimonial_bg_img.jpg) no-repeat;
    background-size: cover;
    z-index: -2;
}

.testimonial_slider_arrows{
    display: flex;
    gap: 15px;
}

.testimonial_slider_arrows .slick-arrow{
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: #767676;
    border: none;
}

.testimonial_slider_arrows .slick-arrow:hover{
    background: #5EB446;
    color: #fff;
}

.blog_card img{
    border-radius: 10px;
}

.blog_card .date_sec{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #EDEDED;
}

.blog_card .date_sec p{
    color: #767676;
    font-size: 14px;
}

.blog_card h3{
    color: #121212;
    font-size: 24px;
    padding-top: 20px;
}

.blog_card .date_sec span{
    display: inline-block;
    padding: 10px 20px;
    background: #5EB446;
    border-radius: 50px;
    font-size: 14px;
    color: #fff;
}

.give_us_btn{
    display: inline-block;
    font-size: 20px;
    padding: 10px 20px;
    background: #fff;
    color: #121212;
    transition: 0.3s;
    font-weight: 400;
    border-radius: 5px;
}

.give_us_btn:hover{
    transform: scale(1.1);
}

ul.footer_menu{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

ul.footer_menu li a{
    font-weight: 400;
    font-size: 18px;
    color: #121212;
    transition: 0.3s;
}

ul.footer_menu li a:hover{
    color: var(--green--);
}

.i_frame_footer{
    border-radius: 10px;
    aspect-ratio: 3/5;
}

.border_2{
    background:#F0F0F0;  
    opacity: 1;
}

.b_footer{
    display: flex;
    align-items: center;
}

.b_footer .logo{
    flex: 1;
}

.b_footer .logo img{
    width: 150px;
}

.b_footer .b_footer_menu{
    display: flex;
    gap: 10px 20px;
}

.b_footer .b_footer_menu li a{
    color: #121212;
    transition: 0.3s;
    font-size: 14px;
}

.b_footer .b_footer_menu li a:hover{
    color: var(--green--);
}

.b_footer .media_menu{
    display: flex;
    flex: 1;
    gap: 10px;
    justify-content: end;
}

.b_footer .media_menu li a{
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    border: 1px solid #000000;
    color: #000;
    transition: 0.3s;
    border-radius: 50%;
    font-size: 14px;
}


.b_footer .media_menu li a:hover{
    background: #000;
    color: #fff;
}

.copy_right p{
    color: #005697;
    font-size: 14px;
    text-align: center;
}

.word {
    display: inline-block;
    opacity: 0;
    filter: blur(8px);
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.word.visible {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0);
}

.inner_banner{
    background: #005697;
    padding-top: 30px;
    position: relative;
    padding-bottom: 10px;
}

.inner_banner .circle_shape_1{
    position: absolute;
    height: 300px;
    border: 35px solid #7BB9FF26;
    aspect-ratio: 1/1;
    right: 0;
    top: 50%;
    transform: translate(25% , -25%);
    border-radius: 50%;
    z-index: -1;
}

.breadcrumb ul{
    display: flex;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.breadcrumb ul li, .breadcrumb ul li a{
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.breadcrumb ul li a:hover{
    color: var(--blue-color--);
}


.breadcrumb ul li i{
    margin: 0 10px;
}

.inner_heading{
    font-weight: 500;
    font-size: 32px;
    color: #fff;
    margin-top: 10px;
    position: relative;
    z-index: 2;
}

.inner_heading_1{
    font-weight: 500;
    font-size: 32px;
    color: #fff;
}

.contact_card{
  border: 1px solid #005697;
  padding: 40px 20px;
  background: #00569733;
  /* backdrop-filter: blur(62px); */
  height: 100%;
  border-radius: 20px;
}

.contact_card i{
    font-size: 32px;
    color: var(--green--);
}


.blog_content{
    margin-top: 20px;
}

.blog_content p{
    margin-bottom: 15px;
}

.recent_blogs h2 {
  font-size: 22px;
}

.contact_us_form input, .contact_us_form textarea, .contact_us_form select{
    border: none;
    border-bottom: 1px solid #fff;
    padding: 10px 10px;
    padding-left: 0;
    color: #fff;
    background: none;
    outline: none;
    width: 100%;
}

.contact_us_form input[type="checkbox"]{
    width: 20px;
    background-color: #5eb44680;
}

.contact_us_form input[type="checkbox"]:checked{
    background-color: #5eb446;
}

.contact_us_form input.white_input, .contact_us_form textarea.white_input, .contact_us_form select.white_input{
    border-bottom: 1px solid #000;
    color: #000;
    width: 100%;
}

.contact_us_form textarea{
    height: 100px;
}

.contact_us_form button.sub_btn{
    background: var(--green--);
    color: #fff;
    border-radius: 50px;
    border: 1px solid var(--green--);
    padding: 10px 25px;
    transition: 0.5s;
}

.contact_us_form button.sub_btn:hover{
    color: var(--green--);
    background: none;
}

.team-member {
  background-color: #f0f0f0;
  border-radius: 12px;
  padding: 20px;
  max-width: 100%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
  height: 100%;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 55%;
  border-radius: 50%;
  margin-bottom: 15px;
}

.team-member h3 {
  font-size: 20px;
  color: #222;
}

.team-member .role {
  font-style: italic;
  color: #777;
  margin: 5px 0 10px;
}

.team-member p {
  font-size: 14px;
  line-height: 1.5;
}

.team-member .social_icon ul{
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}

.team-member .social_icon ul li a{
    color: var(--blue--);
    font-size: 20px;
}

.news{
    overflow: hidden;
}

.news:hover{
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transition: 0.3s;
}
.news_slider .slick-track{
    padding-bottom: 20px;
}

.news img {
    height: 200px;
    object-fit: cover;
}

.news .content{
    padding: 10px 20px;
    border-bottom: 5px solid var(--blue--);
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news .content .a_detail span{
    color: var(--green--);
    font-size: 14px;
}

.news .content h3{
    font-size: 22px;
    color: #000;
    position: relative;
}

.news .content h3::before{
    content: '';
    position: absolute;
    width: 20%;
    height: 1px;
    bottom: 0;
    left: 0;
    background: #d1d1d1;
}

.news .content .author p{
    font-size: 16px;
    font-weight: 500;
}

.news .slide_read_more{
    display: block;
    padding: 10px 0;
    color: #fff;
    background: var(--blue--);
    text-align: center;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    transform: translateY(50px);
}

.news:hover .slide_read_more{
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.whats-app{
    position: fixed;
    width: 40px;
    height: 40px;
    bottom: 40px;
    right: 3%;
    /* bottom: 15%;
    right: 3%; */
    background: #01c83c;
    z-index: 99;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 1px 1px 8px 2px #959595;
}

.whats-app a{
    color: #fff;
    font-size: 25px;
}

.btn-custom {
    border: 1px solid var(--blue--);
    color: var(--blue--);
    font-weight: 500;
}
.btn-custom:hover {
    background-color: var(--blue--);
    color: #fff;
}

.bg_blue{
    background: var(--blue--);
}

.new_inner_banner{
    padding: 100px 40px;
}

.service_listing_card h2{
    font-weight: 700;
    font-size: 24px;
    color: #121212;
}

.service_listing_card p{
    font-weight: 400;
    font-size: 14px;
    color: #767676;
}

.service_listing_card a{
    display: inline-block;
    font-size: 14px;
    color: #009ECF;
    font-weight: 500;
}

.load_more_btn{
    display: inline-block;
    color: #009ECF;
    text-decoration: underline !important;
}

.service_img_sider img{
    width: 100%;
    aspect-ratio: 5/3;
    object-fit: cover;
}

.load_more_b{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.load_more_b .load_more_btn{
    white-space: nowrap;
}

.load_more_b::before, .load_more_b::after{
    content: '';
    width: 100%;
    height: 1px;
    background: #D4D4D4;
    display: block;
}

.ser_img img{
    aspect-ratio: 5/3;
    object-fit: cover;
}

.f_18{
    font-size: 18px;
}

.blog_content ul {
    list-style: inside !important;
}