@import url("https://use.typekit.net/aoc8zca.css");

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --brown--: #781D1E;
    --dark-brown--: #773B3B;
    --dark-brown1--: #c79384;
    --brown-shade--: #C79384;
    --light-brown--: #FEF6F3;
}

a{
    text-decoration: none !important;
    font-size: 16px;
    /* line-height: 1; */
    line-height: 1.3;
    color: #000;
}

ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

p{
    margin: 0; 
}

body{
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-size: 16px;
}

h1,h2,h3,h4,h5,h6{
    color: #000;
    margin: 0;
    font-family: "new-science", sans-serif;
    font-style: normal;
}

section{
    overflow: hidden;
}

/* 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;
}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    position: sticky;
    z-index: 100;
    top: 0;
    background: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

header .logo img{
    width: 100px;
}

header nav{
    display: flex;
    align-items: center;
    gap: 40px;
}

header nav ul{
    display: flex;
    gap: 30px;
}

header nav ul li a{
    color: #000;
    transition: 0.3s;
    padding: 36px 5px;
}

header nav ul li a:hover, header nav ul li.drop_menu:hover > a{
    color: var(--brown--);
}

header nav ul li.drop_menu > a::after{
    content: '\f107';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #FF1E21;
    padding-left: 5px;
}

header nav ul li.drop_menu:hover > a::after{
    content: '\f106';
}

header nav ul li.drop_menu .mega_menu{
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: flex;
    background: #fff;
    padding: 20px 5%;
    gap: 40px;
    border-top: 4px solid var(--brown-shade--);
    transform: rotateX(90deg);
    transform-origin: top;
    transition: 0.3s ease-in-out;
}



header nav ul li.drop_menu:hover .mega_menu{
    transform: rotateX(0);
    transition: 0.5s ease-in-out;
}

header nav ul li.drop_menu .mega_menu .menu_head{
    width: 30%;
}

header nav ul li.drop_menu .mega_menu .menu_head img{
    /* aspect-ratio: 2/1; */
    object-fit: cover;
    border-radius: 15px;
}

header nav ul li.drop_menu .mega_menu ul{
    display: grid;
    grid-template-rows: repeat(4, min-content);
    grid-auto-flow: column;
    gap: 20px 60px;
}

header nav ul li.drop_menu .mega_menu ul li a{
    padding: 0;
    border-bottom: 1px solid var(--brown--);
    padding-bottom: 2px;
}

header .menu-btn{
    display: none;
    flex-direction: column;
    gap: 5px;
    margin: auto 0;
    cursor: pointer;
}
header .menu-btn span{
    display: inline-block;
    width: 30px;
    height: 2px;
    /* background: #0c2d35; */
    /* background: #fff; */
    background: var(--brown--);
}

header.active .menu-btn span{
    background: var(--brown--);
}

header .menu-btn.active span{
    background: none;
}

header .menu-btn span:nth-child(1){
    width: 50%;
    transition: 0.3s;
}
header .menu-btn:hover span:nth-child(1){
    width: 100%;
}
header .menu-btn span:nth-child(2){
    position: relative;
}
header .menu-btn span:nth-child(2)::before, header .menu-btn span:nth-child(2)::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    transform: rotate(0);
    background: var(--brown--);
    /* background: #fff; */
    transition: 0.5s ease-in-out;
}

header.active .menu-btn span:nth-child(2)::before, header.active .menu-btn span:nth-child(2)::after{
    background: var(--brown--);
}
header .menu-btn.active span:nth-child(2)::before{
    transform: rotate(-45deg);
    opacity: 1;
}
header .menu-btn.active span:nth-child(2)::after{
    transform: rotate(45deg);
    opacity: 1;
}
header .menu-btn span:nth-child(3){
    width: 50%;
    transition: 0.3s;
    margin-left: auto;
}

header .menu-btn:hover span:nth-child(3){
    width: 100%;
}

header .mobile_menu{
    position: fixed;
    height: 100vh;
    width: 300px;
    right: 0;
    top: 0;
    background: #fff;
    overflow: auto;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    z-index: 99;
    transform: translateX(100%);
    transition: 0.5s;
}

header .mobile_menu.active{
    transform: translateX(0);
}

header .mobile_menu > ul{
    padding: 10px;
}

header .mobile_menu ul li a{
    display: block;
}

header .mobile_menu > ul > li > a{
    padding: 10px 20px;
}

header .mobile_menu > ul > li > a.drop_menu_btn.active{
    background: var(--brown-shade--);
    color: #fff;
    position: relative;
}

header .mobile_menu ul li.drop_menu > a{
    display: flex;
    justify-content: space-between;
}

/* header .mobile_menu ul li.drop_menu > a::after{
    content: '\f107';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #FF1E21;
    padding-left: 5px;
}

header .mobile_menu ul li.drop_menu > a.active::after{
    content: '\f106';
    color: #fff;
} */

header .mobile_menu > ul > li > a:hover{
    color: var(--dark-brown--);
}


header .mobile_menu > ul > li .drop_menu_btn_new{
    position: absolute;
    right: 0;
    top: 0;
    height: 36px;
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-left: 1px solid var(--brown-shade--);
    color: var(--brown-shade--);
}

header .mobile_menu > ul > li .drop_menu_btn_new.active{
    border-left: 1px solid #fff;
    color: #fff;
}

header .mobile_menu > ul > li{
    border-bottom: 1px solid var(--brown-shade--);
    position: relative;
}

header .mobile_menu > ul > li:last-child{
    border: none;
}

header .mobile_menu .connect_btn{
    display: none; 
}

header .mobile_menu .mega_menu .menu_head{
    display: none;
}

header .mobile_menu .mega_menu .menu ul{
    padding: 10px 20px;
    border: 1px solid var(--brown-shade--);
}

header .mobile_menu .mega_menu .menu ul li{
    margin-bottom: 10px;
}

header .mobile_menu .mega_menu .menu ul li a{
    color: var(--brown--);
}

header .mobile_menu .mega_menu .menu ul li a:hover{
    /* color: var(--brown--); */
}

header .mobile_menu .mega_menu{
    display: none;
}

.mobile_menu .nav_close_btn{
    padding: 10px 20px;
    border-bottom: 1px solid var(--dark-brown--);
    margin-bottom: 20px;
    text-align: end;
}

.mobile_menu .nav_close_btn a{
    font-size: 24px
}

.connect_btn{
    padding: 10px 20px;
    display: inline-block;
    background: var(--light-brown--);
    color: var(--brown--);
    border-radius: 50px;
    transition: 0.3s;
}

.connect_btn:hover{
    color: #fff;
    background: var(--brown--);
}

.banner_sec{
    /* padding: 0 4.5%; */
    /* padding: 0 4.5%; */
}

.banner_slider{
    /* border-radius: 30px; */
    overflow: hidden;
}

.banner_slider .banner{
    position: relative;
}

.banner_slider .banner .content{
    position: absolute;
    right: 5%;
    bottom: 0;
    width: 450px;
    background: #fff;
    padding: 30px 30px;
    border-radius: 30px 30px 0 0;
}

.banner_slider .banner .content h2{
    font-size: 28px;
}

.banner_slider .slick-arrow{
    position: absolute;
    z-index: 3;
    left: 7%;
    width: 40px;
    height: 40px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    bottom: 3%;
    border: none;
}

.banner_slider .slick-arrow.slick-prev{
    transform: translateY(-120%);
}

.heading span{
    font-size: 18px;
    color: #000;
    font-weight: 600
}

.heading h2{
    font-size: 32px;
}

.know_more_btn{
    padding: 10px 20px;
    border: 1px solid var(--brown--);
    display: inline-block;
    color: var(--brown--);
    border-radius: 50px;
    transition: 0.3s;
}

.know_more_btn:hover{
    color: #fff;
    background: var(--brown--);
}

.service_card{
    border-radius: 30px;
    overflow: hidden;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.service_card .content{
    padding: 20px;
    background: #fff;
    aspect-ratio: 8/4;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.service_card h3{
    font-size: 20px;
    margin-bottom: 10px;
}

.learn_more_btn{
    display: inline-block;
    transition: 0.3s;
    font-weight: 500;
    color: #000;
}

.learn_more_btn:hover{
    color: var(--brown--);
}

.learn_more_btn i{
    color: var(--brown--);
    padding-left: 5px;
    transition: 0.3s;
}

.learn_more_btn:hover i{
    padding-left: 8px;
}

.services_slider .slick-list{
    overflow: visible;
}

.services_slider_nav{
    display: flex;
    align-items: center;
    gap: 10px;
}

.services_slider_arrows{
    display: flex;
    gap: 5px;
}

.services_slider_arrows .slick-arrow{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: none;
    border: 1px solid var(--brown--);
    font-size: 22px;
    color: var(--brown--);
}

.services_slider_dots{
    width: 100%;
}

.services_slider_dots .slick-dots{
    display: flex;
    width: 100%;
    border: 1px solid #ECECEC;
    padding: 2px;
    border-radius: 50px;
}

.services_slider_dots .slick-dots li{
    width: 100%;
    display: flex;
    align-items: center;
}

.services_slider_dots .slick-dots li button{
    width: 100%;
    font-size: 0;
    height: 6px;
    border: none;
    border-radius: 50px;
    background: none;
    transition: 0.3s;
}

.services_slider_dots .slick-dots li.slick-active button{
    background: var(--brown--);
}

.service_card img{
    aspect-ratio: 1/1;
    object-fit: cover;
}

.services_bg{
    background: url(../images/service_sec_bg.avif) no-repeat;
    background-size: contain;
    background-size: 130%;
    background-position: right 100%;
}

.about_sec{
    display: flex;
    gap: 2%;
    flex-wrap: wrap;
    background: var(--light-brown--);
    border-radius: 50px 50px 0 0;
}

.about_sec img{
    width: 35%;
    object-fit: cover;
}

.about_sec .about_content{
    width: 45%;
    padding-bottom: 100px;
}

.about_content .spec_content{
    display: flex;
    gap: 10px;
}

.about_content .spec_content i{
    font-size: 42px;
    color: var(--brown-shade--);
}

.see_btn{
    padding: 10px 20px;
    display: inline-block;
    color: var(--brown--);
    border-radius: 50px;
    background: #E7D0C8;
    transition: 0.3s;
}

.see_btn:hover{
    color: #fff;
    background: var(--brown--);
}

.counter_sec_bg{
    background: var(--dark-brown1--);
    border-radius: 50px 50px 0 0;
    margin-top: -70px;
    z-index: 5;
    position: relative;
    padding-bottom: 100px !important;
}

.client_slider{
    position: relative;
}

.client_slider::before{
    content: '';
    position: absolute;
    width: 10%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(90deg, #ffffff 0%, transparent 100%);
    z-index: 2;
}

.client_slider::after{
    content: '';
    position: absolute;
    width: 10%;
    height: 100%;
    right: 0;
    top: 0;
    background: linear-gradient(-90deg, #ffffff 0%, transparent 100%);
    z-index: 2;
}

.client_slider img{
    aspect-ratio: 3/1;
    object-fit: contain;
    padding: 0 5px;
}

.counter{
    /* background: #FBDFD6; */
    padding: 20px 30px;
    border-radius: 20px;
    text-align: center;
}

.counter .counter_img{
    width: 80px;
    height: 80px;
    display: grid;
    place-items: center;
    background: #fff;
    border-radius: 50%;
    margin: 0 auto;
}

.counter .counter_img img{
    width: 55%;
}

.counter h3{
    font-size: 42px;
    font-weight: 700;
    color: var(--brown--);
}

.counter p{
    color: #fff;
    font-size: 20px;
    font-weight: 500;
}

.connect_sec{
    padding: 40px 40px;
    background: #FEF6F3;
    border-radius: 30px;
}

.text_brown{
    color: #311C1C !important;
}

.connect_sec .content p{
    color: #311C1C;
}

.contact_us_btn{
    padding: 10px 20px;
    display: inline-block;
    color: #311C1C;
    border-radius: 50px;
    background: #E7D0C8;
    transition: 0.3s;
}

.contact_us_btn:hover{
    color: #fff;
    background: #311C1C;
}

.news_card{
    display: flex;
    gap: 20px;
    cursor: pointer;
}

.news_card img{
    width: 30%;
    height: 30%;
    flex:  0 0 auto;
    border-radius: 20px;
    object-fit: cover;
}

.news_card .content{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news_card .content .news_heading{
    position: relative;
}

.news_card .content .news_heading::before{
    content: '';
    width: 35%;
    height: 5px;
    left: 0;
    bottom: 15px;
    background: linear-gradient(90deg, var(--brown-shade--) 0%, transparent 100%);
    position: absolute;
    z-index: -1;
}

.news_card .content .news_heading h3 {
    font-size: 18px;
    font-weight: 400;
  
    }

.news_card_slider .slick-current > div{
    position: relative;
}

.news_card_slider .slick-current > div::before{
    content: '';
    height: 80%;
    width: 1px;
    background: #D1D1D1;
    position: absolute;
    right: 23px;
    top: 0;
}

.news_sec_bg{
    background: #FEF6F3;
    border-radius: 50px 50px 0 0;
    margin-top: -50px;
    z-index: 5;
    position: relative;
    padding-bottom: 60px !important;
}

.news_card_slider{
    position: relative;
}

.news_card_slider_nav{
    display: flex;
    align-items: center;
    gap: 10px;
}

.news_card_slider_arrows{
    display: flex;
    gap: 5px;
}

.news_card_slider_arrows .slick-arrow{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: none;
    border: 1px solid var(--brown-shade--);
    font-size: 22px;
    color: var(--brown-shade--);
}

.news_card_slider_dots{
    width: 100%;
}

.news_card_slider_dots .slick-dots{
    display: flex;
    width: 100%;
    border: 1px solid #D6D6D6;
    padding: 2px;
    border-radius: 50px;
}

.news_card_slider_dots .slick-dots li{
    width: 100%;
    display: flex;
    align-items: center;
}

.news_card_slider_dots .slick-dots li button{
    width: 100%;
    font-size: 0;
    height: 6px;
    border: none;
    border-radius: 50px;
    background: none;
    transition: 0.3s;
}

.news_card_slider_dots .slick-dots li.slick-active button{
    background: var(--brown-shade--);
}

.certificate {
    background-color: #fff9f9;
}





footer{
    background: #fff;
    z-index: 5;
    position: relative;
}

ul.footer_icon{
    display: flex;
    gap: 10px;
}

ul.footer_icon li{
    margin-bottom: 0;
}

ul.footer_icon li a i{
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border: 1px solid var(--brown-shade--);
    color: var(--brown-shade--);
    border-radius: 5px;
    transition: 0.3s;
    font-size: 14px;
}

ul.footer_icon li a:hover i{
    color: var(--brown--);
    border: 1px solid var(--brown--);
}

.footer_logo img{
    width: 150px;
}

.footer_heading h2{
    font-size: 24px;
}

.footer_heading h4{
    font-size: 18px;
}

ul.footer_menu li{
    margin-bottom: 5px;
}

ul.footer_menu li a{
    color: #000;
    transition: 0.3s;
    font-size: 14px;
    display: flex;
    gap: 0px;
    line-height: 1.3;
}

ul.footer_menu li a:hover{
    color: var(--brown-shade--);
}

ul.footer_menu li a i{
    color: var(--brown-shade--);
    padding-right: 5px;
}

ul.footer_contact_menu li{
    display: flex;
    gap: 10px;
    color: #000;
    margin-bottom: 10px;
    font-size: 14px;
}

ul.footer_contact_menu li i{
    color: var(--brown-shade--);
    font-size: 20px;
}

ul.footer_contact_menu li a{
    color: #000;
    transition: 0.3s;
    font-size: 14px;
}

ul.footer_contact_menu li a:hover{
    color: var(--brown-shade--);
}

.border_1{
    background: var(--brown-shade--);
}

.copy_rights{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.copy_rights p{
    font-size: 14px;
}

.copy_rights ul{
    display: flex;
    gap: 5px 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.copy_rights ul li a{
    color: #000;
    font-size: 14px;
}

.copy_rights ul li a:hover{
    color: var(--brown--);
}

.inner_banner_bg{
    /* padding: 0 4.5%; */
}

.inner_banner{
    /* border-radius: 30px; */
    overflow: hidden;
}

.inner_banner img{
    /* aspect-ratio: 9 / 3;
    object-fit: cover; */
}

.breadcrumb ul{
    display: flex;
    gap: 5px;
}

.breadcrumb ul li:not(:last-child):after{
    content: '/';
    padding: 0 5px;
}

.breadcrumb ul li a{
    color: #000;
}

.heading_contact span {
    font-size: 32px;
    font-weight: 600;
    color: var(--brown--)
}

.heading_contact h2 {
    font-size: 26px;
    font-weight: 400
}

.contact-info {
    padding: 12px 20px;
  }

.contact-info .icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    background: var(--brown-shade-- );
    margin-top: 5px
}

.contact-info .icon i {
    color: #fff;
    font-size: 24px
}

.contact-info .info h4 {
    font-size: 18px;
    color: #000;
    margin-bottom: 3px;
    font-weight: 600
}

.contact-info .info p,.contact-info .info p a {
    font-size: 14px;
    color: #000
}

.contact-info .info p {
    margin: 0;
    font-weight: 500
}

.contact-form {
    padding: 35px 25px 20px;
    height: 100%
}

.contact-form h3 {
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 400
}

.contact-form form input {
    width: 100%;
    height: 50px;
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 0 10px;
    outline: 0
}

.contact-form form textarea {
    width: 100%;
    height: 100px;
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 10px 10px 0
}

.form_new {
    background: #fff;
    border-radius: 10px;
    padding: 20px 20px 10px;
    margin: 20px 0
}

.form_new h2 {
    font-size: 20px;
    color: #000;
    font-weight: 600
}

.form_new form .form_input label {
    display: block;
    font-size: 12px;
    color: #000;
    font-weight: 600;
    margin-bottom: 5px
}

.form_new form .form_input input,.form_new form .form_input select,.form_new form .form_input textarea {
    width: 100%;
    padding-left: 10px;
    height: 35px;
    border: 2px solid #dedede;
    outline: 0
}

.form_new form .form_input textarea {
    height: 100px
}

.form_new form .form_input input:focus,.form_new form .form_input select:focus {
    border: 2px solid var(--brown-shade--   )
}

.form_new form .form_input button {
    padding: 5px 25px;
    background: var(--brown-shade-- );
    color: #fff;
    border: 2px solid var(--brown-shade--   );
    transition: .3s;
    font-weight: 500;
    border-radius: 50px;
    font-size: 16px
}

.form_new p {
    font-weight: 500
}

.form_new h3 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 10px;
    color: var(--brown-shade--  )
}

.form_new form input[type=checkbox].form-check-input {
    accent-color: var(--brown-shade--   )!important
}

.contact-form,.contact-info {
    background: #f3f3f3;
    border-radius: 5px
}

.contact-form form input[type=submit]{
    background: var(--brown-shade--);
    color: #fff;
}

.main_heading h1 , .main_heading h2{
    /* font-size: 28px; */
    font-size: 40px;
}

.blog_card{
    cursor: pointer;
}

.blog_card img{
    border-radius: 10px;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.blog_card h3{
    font-size: 22px;
}

.blog_info{
    display: flex;
    gap: 15px;
}

.blog_info span{
    color: #000;
}

.blog_info span.date{
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog_info span.date i{
    font-size: 8px;
}

.blog_detail_img img{
    width: 100%;
    aspect-ratio: 7/3;
    object-fit: cover;
    border-radius: 20px;
}

.blog_detail_content h1{
    font-size: 24px;
}

.recent_blogs h2{
    font-size: 22px;
}

.member_card img{
    border-radius: 0 10px 10px 10px;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: top;
}

.member_card .content .name span{
    display: inline-block;
    padding: 6px 20px;
    border: 1px solid #707070;
    border-radius: 5px;
    font-size: 20px;
    font-weight: 600;
}

.member_card .content .designation{
    font-size: 18px;
}

.member_card .content .mail a{
    color: var(--brown--);
    font-size: 14px;
}

.team_sec_bg{
    background: var(--light-brown--);
}

.floating_btns{
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
}

.floating_btns ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating_btns ul li a{
    display: grid;
    width: 40px;
    height: 40px;
    background: var(--brown-shade--);
    color: #fff;
    place-items: center;
    border-radius: 5px 0 0 5px;
    box-shadow: rgba(255, 255, 255, 0.2) 0px 8px 24px;
}

.whats-app{
    position: fixed;
    width: 40px;
    height: 40px;
    bottom: 80px;
    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;
}

.scroll_up {
    position: fixed; 
    z-index: 99;  
    bottom: 20px;
    right: 3%;
}

.scroll_up a i{
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid var(--brown-shade--);
    color: var(--brown-shade--);
    border-radius: 5px;
    transition: 0.3s;
    font-size: 22px;
    box-shadow: rgba(255, 255, 255, 0.2) 0px 8px 24px;
    background: #fff;
}

.scroll_up a:hover i{
    color: var(--brown--);
    border: 1px solid var(--brown--);
}

.jobs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--brown--);
    padding-bottom: 40px;
    padding-right: 20px
}

.jobs .details ul {
    display: flex;
    gap: 10px 40px;
    list-style: disc;
    flex-wrap: wrap
}

.jobs .details ul li {
    margin-left: 20px
}

.jobs .apply_btn {
    display: inline-block;
    padding: 13px 25px;
    background: var(--green--);
    color: #fff;
    border-radius: 10px;
    white-space: nowrap
}

.card-i {
    color: var(--blue--);
    width: 22px
}

.btn-danger {
    color: #fff;
    background-color: var(--green--)!important;
    border-color: var(--green--)!important;
    box-shadow: none!important
}

.intro-case {
    background-color: #fef6f3;
    padding: 25px;
    border-radius: 25px;
}
.intro-case img{
    border-radius: 25px;
}
.intro-case p{
    text-align: justify;
}

.challenge {
    margin-top: 25px;
    text-align: center;
}
.accordion-button:not(.collapsed) {
    color: #791b20;
    background-color: #fef6f3;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}
.accordion-body {
    padding: 1rem 1.25rem;
    text-align: justify;
}

.services_content h2{
    font-size: 28px;
}
.services_content h3{
    font-size: 18px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
}
/* .solutions {
    text-align: justify;
} */
.services-h {
    background-image: var(--background--);
    border-radius: 25px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.solution-info {
    background-color: #fef6f3;
    padding: 25px;
    border-radius: 15px;
    height: 100%;
}
.solution-info h4{
   font-weight: 600;
   font-size: 22px;
   text-align: left;
}
.solution-info ul li {
    font-size: 14px;
    margin-bottom: 8px;
}

.whychoose_us {
    background-color: #fbfbfb;
    padding: 25px;
    border-radius: 25px;
}
.why-choose-content span {
    font-weight: 600;
}
.whychoose_us .services_content{
    background-color: #f0f0f0;
    padding: 25px;
    border-radius: 25px;
}
.benefits_cont span {
    font-weight: 600;
}
.process {
    background-color: #f1f1f1;
    padding: 20px;
}

.inner_heading h2{
    font-size: 24px;
}

.features_heading h3{
    font-size: 18px;
}

.features_list ul li{
    display: flex;
    gap: 5px;
    margin-bottom: 5px;
}

.features_list ul li i{
    color: var(--brown--);
    line-height: 1.5;
}

.book_appointment_btn{
    background: var(--light-brown--);
    color: var(--brown--);
}

.text-justify{
    text-align: justify;
}

.accordion_list li{
    display: flex;
    gap: 6px;
    align-items: flex-start;
    margin-bottom: 10px;
    border-bottom: 1px solid #781d1e21;
    padding-bottom: 10px;
}

.accordion_list li:last-child{
    border-bottom: none;
}

.accordion_list li i{
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    background: var(--brown--);
    color: #fff;
    font-size: 12px;
    border-radius: 50%;
    flex: 0 0 auto;
    margin-top: 2px;
}





.read_more_content .content .limited_lines{
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
}

.read_more_content .content .limited_lines.active{
    -webkit-line-clamp: initial;
}

.about_main_heading h1{
    font-size: 42px;
}

.big_heading{
    font-size: 42px !important;
}

.certificate_logo img{
    width: 80%;
    margin: 0 auto;
}

ul.circle_ul li i {
    font-size: 8px;
    margin-top: 7px;
}

.news_card_row .news_card_col{
    position: relative;
}

.news_card_row .news_card_col:nth-child(odd):before{
    content: '';
    height: 80%;
    width: 1px;
    background: #D1D1D1;
    position: absolute;
    right: 23px;
    top: 0;
}

.news_card .content .news_heading span {
    font-size: 22px;
    font-weight: 600;
    font-family: "new-science", sans-serif
    }