@import url(https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap);

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Work Sans", sans-serif;
    font-size: 1.06rem;
    line-height: 26px;
    color: #3c3c3c;
    font-weight: 300;
}

.sm-text {
    font-size: 13px;
    line-height: 19px;
}

a,
a:hover {
    text-decoration: none;
    color: #3c3c3c;
}

div#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    text-align: center;
    z-index: 9999;
    background: #9999998f;
    display: none;
}

div#loader .loader_inner {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

div#loader .loader_inner .spinner-border {
    color: #cd5f91;
}

button .spinner-border {
    width: 20px;
    height: 20px;
    font-size: 12px;
}

img {
    max-width: 100%;
}

.bg-gray {
    background-color: #f7f7f6;
}

.bg-pink {
    background-color: #cd5f91;
}

.btn.primary_btn {
    background: #cd5f91;
    padding: 4px 10px;
    border-radius: 0;
    color: #fff;
    font-size: 14px;
    line-height: 22px;
    transition: 0.6s all ease;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 150px;
}

.btn.primary_btn:hover {
    border-radius: 12px 3px 12px 2px;
    transition: 0.6s all ease;
}

.btn.primary_btn img {
    width: 40px;
    margin-right: 10px;
}

.btn.secondry_btn {
    background: #fff0;
    padding: 4px 10px;
    border-radius: 0;
    color: #919191;
    font-size: 16px;
    line-height: 22px;
    transition: 0.6s all ease;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 200px;
    border: 2px solid #919191;
}
.btn.secondry_btn.white_btn {
    border-color: #ffffff;
    color: #fff;
}
.btn.secondry_btn:hover {
    border-radius: 12px 3px 12px 2px;
    transition: 0.6s all ease;
    background-color: #cd5f91;
    border-color: #cd5f91;
    color: #fff;
}

.cst_tag {
    font-size: 12px;
    padding: 6px 10px;
    background-color: #f2f2f2;
    border-radius: 100%;
    color: #3c3c3c;
}

.sectionHead h2 {
    font-size: 30px;
    font-weight: 400;
}

.section_padding {
    padding: 30px 0;
}

.zigzagsection .zigzag_row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

.zigzagsection .zigzag_row:nth-child(even) {
    flex-direction: row-reverse;
}

.zigzagsection .zigzag_row .zigzag_col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 450px;
}

.zigzagsection .zigzag_row .zigzag_col .zigzag_content,
.zigzagsection .zigzag_row .zigzag_col .content {
    max-width: 550px;
    padding: 25px 10px;
}

.zigzagsection .zigzag_row .zigzag_col {
    width: 50%;
    display: flex;
    align-items: center;
}

.zigzagsection .zigzag_row:nth-child(odd) .zigzag_content,
.zigzagsection .zigzag_row:nth-child(odd) .content {
    margin-left: auto;
    padding-right: 40px;
}

.zigzagsection .zigzag_row:nth-child(even) .zigzag_content,
.zigzagsection .zigzag_row:nth-child(even) .content {
    margin-right: auto;
    padding-left: 40px;
}

@media screen and (max-width: 991px) {
    .zigzagsection .zigzag_row {
        align-items: stretch;
    }

    .zigzagsection .zigzag_row .zigzag_col img {
        height: 100%;
    }

    .zigzagsection .zigzag_row .zigzag_col .zigzag_content,
    .zigzagsection .zigzag_row .zigzag_col .content {
        margin: auto;
    }

    .zigzagsection .zigzag_row:nth-child(odd) .zigzag_content,
    .zigzagsection .zigzag_row:nth-child(odd) .content {
        padding-left: 10px;
        padding-right: 10px;
    }

    .zigzagsection .zigzag_row:nth-child(even) .zigzag_content,
    .zigzagsection .zigzag_row:nth-child(even) .content {
        padding-left: 10px;
    }
}

@media screen and (max-width: 768px) {
    .zigzagsection .zigzag_row .zigzag_col {
        width: 100%;
    }

    .zigzagsection .zigzag_row .zigzag_col .zigzag_content,
    .zigzagsection .zigzag_row .zigzag_col .content {
        margin: auto;
        text-align: center;
    }
}

.navbar-expand-lg .navbar-nav .nav-link {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 15px;
    line-height: 17px;
    padding: 24px 20px 24px 10px;
    position: relative;
    color: #3c3c3c;
}

nav.navbar {
    padding: 0;
    border-bottom: 1px solid #d5d5d5;
}

.navbar-expand-lg .navbar-nav .nav-link:before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #cd5f91;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    transition: 0.5s all ease;
}

.navbar-expand-lg .navbar-nav .nav-link:hover:before {
    width: calc(100% - 20px);
    transition: 0.5s all ease;
}

.navbar-expand-lg .navbar-nav .nav-link:hover {
    color: #cd5f91;
}

li.nav-item.dropdown {
    position: unset;
}

li.nav-item.dropdown:hover:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgb(239 239 239 / 96%);
    min-height: 150px;
    z-index: 7;
}

li.nav-item.dropdown ul.dropdown-menu {
    background: #fff0;
    border: 0;
    padding: 0;
}

li.nav-item.dropdown ul.dropdown-menu.mega-menu {
    transform: translateX(-35%);
}

li.nav-item.dropdown ul.dropdown-menu.mega-menu li ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.dropdown-item {
    background-color: #fff0;
    padding: 4px 10px;
    position: relative;
    line-height: 23px;
}

.dropdown-item:hover {
    background-color: #fff0;
}

.not_text {
    max-width: 1600px;
}

.dropdown-item:after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #cd5f91;
    left: 10px;
    z-index: 6;
    transition: 0.5s all ease;
}

.dropdown-item:hover:after {
    width: calc(100% - 20px);
}

.headTop {
    background-color: #f0edec;
    padding: 5px 0;
}

.headTop ul.topList {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
    flex-wrap: wrap;
    justify-content: end;
}

.headTop p.top_text {
    font-weight: 400;
    font-size: 16px;
    margin: 0;
    padding-left: 12px;
    position: relative;
    display: inline-block;
}

.headTop p.top_text::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #cd5f91;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 100%;
    animation: pulse 2s infinite;
}

.headTop p.top_text a {
    color: #cd5f91;
}

.headTop ul.topList li a {
    font-size: 16px;
    font-weight: 400;
}

.headTop ul.topList li:not(:last-child) {
    margin-right: 15px;
}

.mobileBottom {
    display: none;
    position: fixed;
    bottom: 0;
    background: #888;
    width: 100%;
    color: #fff;
    padding: 0 0;
    z-index: 9;
    transition: 1s all ease;
}

.mobileBottom.hideMenu {
    bottom: -20%;
}

.mobileBottom ul.menu {
    padding: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 8px 0 5px 0;
}

.mobileBottom ul.menu li {
    text-align: center;
    font-size: 9px;
    line-height: 19px;
    font-weight: 500;
    text-transform: uppercase;
}

.mobileBottom ul.menu li a {
    color: #fff;
}

.mobileBottom ul.menu li a img,
.mobileBottom ul.menu li button img {
    display: block;
    width: 25px;
    margin: 0 auto 2px;
    filter: brightness(11);
}

.mobileBottom ul.menu li button.navbar-toggle {
    border: 0;
    margin: 0;
    background: #fff0 !important;
    float: none;
    margin: auto;
}

.mobileBottom ul.menu li button.navbar-toggle img {
    width: 25px;
    filter: brightness(11);
}

.mobileBottom ul.menu li.centerList a span.iconImg {
    background: #bd5886;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    width: 50px;
    height: 50px;
    text-align: center;
    margin: auto;
    margin-top: -24px;
    margin-bottom: 2px;
    box-shadow: 0 0 8px 1px #ffbddb;
}

.mobileBottom ul.menu li.centerList a span.iconImg img {
    filter: brightness(10.5);
    line-height: 50px;
}

.mobileBottom ul.menu li:not(:last-child) {
    margin-right: 10px;
}

section.main_banner {
    height: auto;
    min-height: 440px;
    max-height: 85vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
section.main_banner .banner_image {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
section.main_banner .banner_text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    max-width: 800px;
    color: #fff;
    padding: 20px 20px;
    background: #00000036;
    text-align: center;
}

section.main_banner .banner_text.text-start {
    left: 0;
    transform: translate(0, -50%);
}

section.main_banner.banner_text_left .banner_text {
    top: 15%;
    left: 15%;
    transform: translate(0%, 0%);
    background: #00000006;
    text-align: left;
    width: 55%;
    max-width: 770px;
}

section.main_banner .banner_text h1 {
    font-size: 2.5rem;
    line-height: 45px;
}

section.main_banner .banner_text p {
    font-weight: 400;
}


section.process-section {
    padding: 30px 0;
}

.slick-arrow {
    z-index: 3;
}

section.main_banner .banner_text .btn_sec {
    gap: 10px;
}
section.small_banner {
    height: auto;
    min-height: 280px;
    max-height: 280px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
section.small_banner img.banner_image {
    height: 100%;
    position: absolute;
    width: 100%;
    object-fit: cover;
}

section.small_banner .banner_text{
    position: absolute;
    right: 0;
    bottom: 0;
    margin: 0;
    background: rgba(0, 0, 0, 0.4);
    padding: 5px 20px 10px;
}

section.small_banner .banner_text h1 {
    margin: 0;
    color: #fff;
}
section.process-section .slick-initialized .slick-slide {
    margin: 0 10px;
    height: 100%;
}

section.process-section .process_slider {
    padding: 20px 0 30px;
}

.processCard {
    background: #f4f4f4b3;
    padding: 10px 15px;
    text-align: center;
    min-height: 351px;
    display: flex !important;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    border-radius: 10px;
}

section.process-section.bg_sec .processCard {
    background: #ffffff;
}

.processCard:hover {
    box-shadow: 0px 0px 12px 0px #d9d9d9;
}

.processCard .process_thumb {
    text-align: center;
    background: #fff;
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 1s ease;
    transform: rotateY(0deg);
}

section.process-section.bg_sec .processCard .process_thumb {
    background: #f4f4f4b3;
}

.processCard:hover .process_thumb {
    transform: rotateY(360deg);
    transition: all 1s ease;
}

.processCard .process_thumb img {
    width: 40px;
}

.processCard .process_content h3 {
    font-size: 18px;
}

.processCard .process_content p {
    font-size: 14px;
    line-height: 23px;
}

ul.column-five li.process-content {
    list-style: none;
    max-width: 20%;
    width: 19%;
    margin-bottom: 20px;
    padding: 10px;
}

ul.column-five {
    padding: 0;
    margin: 0;
}

ul.column-five li.process-content h3 {
    font-size: 19px;
    line-height: 22px;
    margin-bottom: 0;
    min-height: 44px;
    margin-top: 10px;
    font-weight: 400;
}

ul.column-five li.process-content p {
    margin: 0;
}

ul.column-five li.process-content img {
    width: 70px;
    margin: 0;
}

section.services_sec {
    padding: 30px 0;
}

section.services_sec .service_card {
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    height: calc(100% - 20px);
    min-height: 280px;
    display: block;
    border-radius: 10px;
}

section.services_sec.min_h_0 .service_card {
    min-height: auto;
    height: auto;
}

section.services_sec .service_card img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    min-height: 250px;
}

section.services_sec .service_card .service_content {
    padding: 10px 0;
}

section.services_sec .service_card.service_hover_card {
    position: relative;
    overflow: hidden;
    min-height: 340px;
    height: calc(100% - 20px);
    
}

section.services_sec .service_card.service_hover_card .service_content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    color: #fff;
    background-color: #00000059;
    height: 100%;
}

section.services_sec .service_card.service_title_card .service_content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 20px 15px;
    color: #fff;
    background-color: #0000004b;

}
section.services_sec .service_card.service_title_card .service_content h2{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}
section.services_sec .service_card.service_title_card .service_content h2 a{
    color: #fff;
}
section.services_sec .service_card.service_title_card .service_content p {
    overflow: hidden;
    height: 0;
    max-height: 0;
    transition: all 0.6s ease;
    margin: 0;
    line-height: 21px;
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
}

section.services_sec .service_card.service_title_card:hover .service_content p {
    
    height: auto;
    max-height: 200px;
    transition: all 0.6s ease;
}

section.services_sec .service_card.service_hover_card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(1);
    transition: all 1s ease;
    object-fit: cover;
}

section.services_sec .service_card.service_hover_card:hover img {
    transform: scale(1.1);
    transition: all 1s ease;
}

section.services_sec .service_card.service_hover_card .service_content a.btn.secondry_btn {
    color: #fff;
    border-color: #cd5f91;
}

section.services_slider_sec {
    padding: 30px 0;
}

section.services_slider_sec .slider_arrow {
    display: flex;
    list-style: none;
    justify-content: flex-end;
}

section.services_slider_sec .slider_arrow li {
    border: 1px solid #000;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 100%;
    margin: 0 5px;
    cursor: pointer;
}

section.services_slider_sec .slider_arrow li:hover {
    background-color: #cd5f91;
    color: #fff;
    border-color: #cd5f91;
}

.service_item {
    position: relative;
}

.service_item img {
    width: 100%;
}

.service_item .slider_content {
    position: absolute;
    top: 50%;
    right: 40px;
    width: 350px;
    transform: translateY(-50%);
    background: #ffffffed;
    padding: 30px 30px;
    color: #000;
    box-shadow: -1px 2px 6px 2px #acacac;
    border-radius: 8px;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 #cd5f91;
    }

    70% {
        -webkit-box-shadow: 0 0 0 10px #fff0;
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 #fff0;
    }
}

@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 #cd5f91;
        box-shadow: 0 0 0 0 #cd5f91;
    }

    70% {
        -moz-box-shadow: 0 0 0 10px #fff0;
        box-shadow: 0 0 0 10px #fff0;
    }

    100% {
        -moz-box-shadow: 0 0 0 0 #fff0;
        box-shadow: 0 0 0 0 #fff0;
    }
}

.dropdown .dropdown-toggle::after {
    border: 0 !important;
    content: '\f107';
    font-family: 'FontAwesome';
    position: absolute;
    font-size: 14px;
    transform: rotate(0);
    transition: all .3s ease;
}

.dropdown:hover .dropdown-toggle::after {
    transform: scaleY(-1);
    transition: all 1s ease;
}

@media screen and (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }

    .dropdown:hover .dropdown-menu.mega-menu {
        display: flex;
        margin-top: 0;
    }

    .dropdown .dropdown-menu {
        display: none;
    }

    .dropdown:hover .dropdown-toggle::after {
        border-top: 0;
        border-bottom: 0.3em solid;
    }
}

@media screen and (max-width: 991px) {
    .dropdown-toggle.show::after {
        border-top: 0;
        border-bottom: 0.3em solid;
    }
}

section.why_choose_us {
    padding: 30px 0;
}

section.why_choose_sec img.h-100 {
    object-fit: cover;
}

.wychContent {
    padding: 20px 35px;
    height: 100%;
    background: #efeeec;
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

section.unitProcessSec {
    border-top: 2px solid #efeeec;
    padding: 30px 0;
    overflow: hidden;
}

section.unitProcessSec img {
    width: 100%;
}

section.unitProcessSec #processSlider {
    padding-top: 10%;
}

section.unitProcessSec ol.carousel-indicators {
    position: relative !important;
    margin-bottom: 20px;
    margin-left: 0;
    margin-right: 0;
}

section.unitProcessSec ol.carousel-indicators li {
    padding: 5px 0 5px 10px;
    text-align: center;
    background: #888;
    color: #fff;
    border-radius: 0;
    width: 120px !important;
    clip-path: polygon(70% 0%, 100% 50%, 70% 100%, 0% 100%, 25% 50%, 0% 0%);
    cursor: pointer;
    text-indent: unset;
    height: auto;
    margin: 0;
    border: none;
}

section.unitProcessSec ol.carousel-indicators .slick-track {
    width: fit-content !important;
}

section.unitProcessSec ol.carousel-indicators .slick-slide.slick-active {
    margin-right: -15px;
}

section.unitProcessSec ol.carousel-indicators .slick-slide.slick-active.slick-current li {
    background: #c75c8c;
    color: #fff;
}

section.unitProcessSec ol.carousel-indicators li:after,
section.unitProcessSec ol.carousel-indicators li:before {
    content: none;
}

section.unitProcessSec .thumb img {
    border-radius: 20px;
}

section.unitProcessSec .content {
    max-width: 520px;
    padding-left: 30px;
}

section.unitProcessSec .content ul {
    padding-left: 30px;
}

section.unitProcessSec .content ul li {
    margin-bottom: 15px;
}

section.map_section {
    padding: 30px 0 0;
}

section.home-blog-section {
    padding: 30px 0;
}

section.home-blog-section .blog-listing {
    margin-bottom: 0;
}

section.home-blog-section .post-thumbnail img {
    height: auto;
}

section.home-blog-section .blog {
    box-shadow: 0 0 12px 3px #d9d9d9;
    border-radius: 8px;
}

section.home-blog-section .post-content {
    border-radius: 0 0 8px 8px;
}

section.home-blog-section .post-thumbnail {
    border-radius: 8px 8px 0 0;
}

.blg-card .blg-thumb img {
    filter: brightness(0.8);
}

.blg-thumb img {
    max-width: 100%;
    border-radius: 8px;
    object-fit: cover;
    min-height: 248px;
    width: 100%;
    /* cursor: pointer; */
}

.blg-big-height .blg-thumb img {
    min-height: 143px;
    max-height: 145px;
}

.blg-full-card {
    background: #f8f8f8;
    border-radius: 8px;
    margin-right: 6px;
    margin-bottom: 10px;
}

.blg-full-card .blg-content {
    padding: 10px 20px;
}

.blg-content a.blg-cat {
    display: inline-block;
    background-color: #eee;
    border-radius: 5px;
    padding: 1px 10px;
    color: #cf6090;
    font-size: 13px;
    line-height: 20px;
    font-weight: 400;
}

.blg-content h3 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    margin: 10px 0;
    font-weight: 400;
}

.blg-full-card .blg-content p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    margin-bottom: 10px;
}

.blg-card .blg-content {
    position: absolute;
    bottom: 0;
    padding: 10px 10px 0;
    left: 0;
}

.blg-card .blg-content h3 {
    color: #fff;
    font-size: 18px;
    margin: 5px 0 6px;
}

.blg-card .blg-content h3 a {
    color: #fff;
}

.blg-card {
    position: relative;
    margin: 0 6px 12px;
}

.faq_sec button.accordion-button {
    padding: 10px 25px 10px 10px;
    border-radius: 10px 10px 0 0 !important;
    outline: 0;
    box-shadow: none;
    border: 0;
    background: #fff0;
    font-size: 20px;
    color: #3c3c3c;
    font-weight: 400;
}

.faq_sec button.accordion-button:not(.collapsed) {
    background: #f8f8f8;
}

.faq_sec .accordion {
    border-radius: 0;
}

.faq_sec .accordion .accordion-item {
    border-radius: 0;
    border: 0;
    border: 1px solid #b8b8b8;
    padding: 0;
    border-radius: 10px;
    margin-bottom: 10px;
}

.faq_sec .accordion .accordion-item .accordion-body {
    padding: 5px 19px 10px;
}

.blog_section .faq_sec button.accordion-button {
    padding: 6px 5px 5px 10px;
    font-size: 17px;
}

.blog_section .faq_sec .accordion .accordion-item .accordion-body {
    font-size: 15px;
}

section.faq_sec {
    padding: 30px 0;
}

section.faq_sec .faq_inner {
    /* padding: 24px 20px; */
    /* border: 1px solid #888; */
    border-radius: 7px;
}

.faq_sec .accordion .accordion-item:last-child {
    border-bottom: 1px solid #b8b8b8;
}

.accordion-button:not(.collapsed)::after {
    background-image: none;
    transform: none;
    content: "\f068";
}

.accordion-button::after {
    background-image: none;
    content: "\2b";
    font-family: fontAwesome;
    color: #cd5f91;
    font-size: 16px;
    transform: none;
    margin-left: 10px;
    position: absolute;
    right: 10px;
}

section.broucher-section {
    padding: 30px 0 20px;
    border-top: 2px solid #efefef;
}

.broucher-card {
    padding: 0 0;
    text-align: center;
    margin-bottom: 20px;
    height: calc(100% - 20px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: translateY(0);
    transition: 0.8s all ease;
}

.broucher-card .broucher-card-inner {
    width: 100%;
    height: 342px;
    transform-style: preserve-3d;
    padding-bottom: 100%;
    transition: transform 0.6s;
}

.broucher-card:hover .broucher-card-inner {
    transform: rotateY(180deg);
}

.broucher-card .br-thumb img {
    object-fit: contain;
    margin-bottom: 10px;
    width: 100%;
    max-height: 304px;
    transition: 0.8s all ease;
}

.broucher-card .br-thumb,
.broucher-card .broucher-content {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.broucher-card .broucher-content {
    transition: 0.8s allease;
    color: #fff;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: rotateY(180deg);
    background: linear-gradient(180deg,
            rgb(205 95 145) 0%,
            rgb(0 0 0 / 0.9249824929971989) 100%);
}

.broucher-card .broucher-content a.btn.btn-transparent {
    border-color: #fff;
    color: #fff;
}

.broucher-card .broucher-content a.btn.btn-transparent:hover {
    color: #000;
}

.broucher-card .broucher-card-inner h3 {
    font-weight: 400;
}

.broucher-card .broucher-content p {
    font-size: 22px;
    margin-bottom: 30px;
}

.brochure_section_two {
    padding: 30px;
    background-color: #bd5886;
}

.brochure_btn_sec a.btn {
    color: #fff;
    border-color: #fff;
}

.brochure_btn_sec a.btn:hover {
    background-color: #fff;
    color: #bd5886;
}

.slick-prev:before {
    content: "\f104";
    font-family: "FontAwesome";
    color: #393939;
    font-size: 30px;
}

.slick-next:before {
    content: "\f105";
    font-family: "FontAwesome";
    color: #393939;
    font-size: 30px;
}

footer {
    padding: 32px 0;
    background: #f0edec;
}

footer h3 {
    font-size: 1.2rem;
}

footer .items li a {
    color: #3c3c3c;
    font-size: 16px;
    line-height: 26px;
}

footer .social-icons {
    text-align: right;
}

footer .social-icons a {
    margin-bottom: 5px;
    display: inline-block;
}

footer .social-icons a:not(:first-child) {
    margin-left: 10px;
}

@media (max-width: 768px) {
    footer .social-icons {
        text-align: center;
        margin-bottom: 20px;
    }
}

footer .first-sec {
    margin-bottom: 10px;
}

footer .first-sec .nw-subscribe {
    text-align: right;
    margin-top: 30px;
}

footer .copyright {
    font-size: 14px;
}

footer .copyright .img-container {
    display: inline-block;
    vertical-align: bottom;
    width: 19%;
    text-align: right;
}

@media (max-width: 1248px) {
    footer .copyright .img-container {
        width: 39%;
    }
}

@media (max-width: 768px) {
    footer .copyright .img-container {
        width: 100%;
        text-align: center;
    }
}

footer .copyright .img-container img:first-child {
    margin-right: 30px;
}

footer .copyright p {
    display: inline-block;
    vertical-align: bottom;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    footer .copyright p {
        width: 100%;
        margin-bottom: 20px;
        text-align: center;
    }
}

footer .copyright span {
    margin-right: 5px;
    margin-left: 5px;
}

.googleRevSummry {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
    border: 1px solid #929292;
    border-radius: 8px;
    background-color: #fff;
}

.googleRevSummry .ti-widget.ti-goog a.ti-header {
    padding: 0 5px 6px;
    height: auto;
    display: block;
}

.googleRevSummry .ti-widget.ti-goog .ti-text {
    font-size: 15px;
    font-weight: 500;
}

.googleRevSummry .ti-widget.ti-goog a.ti-header .ti-name {
    font-size: 12px;
}

.googleRevSummry .ti-widget.ti-goog .ti-widget-container {
    margin: 0;
}

.googleRevSummry .ti-widget.ti-goog .ti-header .ti-stars {
    margin-top: 0;
}

.googleRevSummry a.linkBtn {
    text-align: center;
    background: #4285f4;
    color: #fff;
    padding: 0;
    font-size: 15px;
    border-radius: 0 1px 8px 8px;
}

.googleRevSummry .ti-widget.ti-goog .ti-widget-container .ti-fade-container {
    display: flex;
    align-items: center;
}

.googleRevSummry .ti-widget.ti-goog .ti-widget-container .ti-fade-container img.ti-platform-icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

img.ti-star {
    width: 13px;
}

.icon_card-sec {
    padding: 40px 0;
}

.iconCard {
    background: #fff;
    padding: 10px 15px;
    text-align: left;
    min-height: 300px;
    box-shadow: 0 0 3px 1px silver;
    border-top: 2px solid #cd5f91;
    border-radius: 12px;
    margin-bottom: 10px;
}

p.lg_text.green {
    color: green;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #8c8c8c;
}

.slick-slide {
    margin: 0 10px;
    height: auto;
}

.iconCard h3 {
    font-size: 22px;
    font-weight: 500;
}

.iconCard p {
    margin-bottom: 6px;
}

.iconCard p.lg_text {
    font-size: 18px;
    font-weight: 400;
}

.iconCard p.sm_text {
    font-size: 14px;
    font-style: italic;
}

.iconCard p.lg_text.red {
    color: #ee3b8b;
}

p.lg_text.green {
    color: #393939;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #8c8c8c;
}

section.home-service-sec {
    background: #efeeec;
    padding: 30px 0;
}

section.home-service-sec .tab-pane img {
    min-height: 380px;
    object-fit: cover;
}

section.home-service-sec .sectionHead {
    text-align: center;
    padding-bottom: 15px;
}

section.home-service-sec .content-text {
    margin-bottom: 25px;
}

.sectionHead h2 {
    font-size: 30px;
    font-weight: 400;
    line-height: 32px;
}

.sectionHead p {
    margin-bottom: 10px;
}

section.home-service-sec .sectionHead .serviceLinks {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    border-bottom: none;
    margin-top: 25px;
}

section.home-service-sec .sectionHead .serviceLinks li button {
    display: inline-block;
    border: 1px solid #afaaa0;
    min-width: auto;
    margin: 0 5px 7px;
    padding: 2px 18px;
    border-radius: 5px;
    font-size: 16px;
    color: #3c3c3c;
}

section.home-service-sec .sectionHead .serviceLinks li button.active {
    background: #cd5f91;
    color: #fff;
    border-color: #cd5f91;
}

section.home-service-sec .sectionHead .serviceLinks li button:hover {
    background: #cd5f91;
    color: #fff;
    border-color: #cd5f91;
}

section.home-sector-sec.estate-gallery .sectorInner img {
    min-height: 280px;
    max-height: 280px;
    object-fit: cover;
    object-position: center;
}

section.home-sector-sec {
    background: #f7f7f6;
    padding: 30px 0 20px;
}

.experiance_sec {
    padding: 30px 0;
}

.experiance_sec.bg-pink {
    color: #fff;
}

.experiance_sec .exp_card {
    margin-top: 10px;
    padding: 10px 20px;
}

.experiance_sec .exp_card img {
    height: 70px;
    margin-bottom: 20px;
}

.experiance_sec .exp_card .step_num {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #ffffff;
}

.experiance_sec .exp_card .exp_content h3 {
    margin-bottom: 15px;
}

.min-height-103 {
    min-height: 103px;
}

.cta_sec {
    padding: 40px 0;
}

.zigzag_section_two .content {
    max-width: 560px;
    padding: 15px 10px;
}

.zigzag_section_two .content p {
    margin-bottom: 7px;
}

.zigzag_section_two img.h-100 {
    object-fit: cover;
}

.zigzag_section_two .container .zigzag_row:nth-child(even) {}

.slick-dots li button:before {
    font-size: 30px;
}

.services_sec_2 .service_card {
    background: #fcfcfc;
    padding: 12px;
    border-radius: 8px;
    min-height: 445px;
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.services_sec_2.min_h_0 .service_card {
    min-height: auto;
    height: calc(100% - 20px);
}

section.services_sec_2.card-no-bg .service_card {
    background: #efeeec;
    min-height: 515px;
}

.services_sec_2 .service_card a {
    font-weight: 400;
    color: #c75c8c;
}

.services_sec_2 .service_card a i {
    font-size: 13px;
}

.services_sec_2 .service_card .thumb {
    margin-bottom: 15px;
}

.services_sec_2 .service_card .thumb img {
    border-radius: 8px;
}

.services_sec_2 .service_card:hover {
    box-shadow: 0px 0px 12px 3px #d9d9d9;
}

.testimonial_sec {
    padding: 30px 0;
}

.testimonail_crousel .slick-track {
    display: flex;
    align-items: center;
}

.breadcrumbtwo,
.breadcrumb {
    position: inherit;
    background-color: #f0edec;
    width: 100%;
    border-radius: 0;
    padding: 13px 22px;
    margin: 0px 0px;
    display: flex;
    list-style: none;
    column-gap: 20px;
}

.breadcrumb {
    position: absolute;
    background-color: #00000051;
    color: #ffffff;
    z-index: 9;
}

.breadcrumbtwo li,
.breadcrumb li {
    position: relative;
}

.breadcrumb li a {
    color: #ffffff;
}

.breadcrumbtwo li:not(:last-child):after,
.breadcrumb li:not(:last-child):after {
    content: '/';
    position: absolute;
    right: -12px;
}

.breadcrumbtwo li.active {
    color: #ca5e8f;
}

.breadcrumb li.active {
    font-weight: 400;
}

ul.date_time {
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: start;
}

ul.date_time li {
    list-style: none;
    padding-right: 10px;
    position: relative;
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 2px;
}

ul.date_time li a {
    text-decoration: none;
}

ul.date_time li p {
    margin-bottom: 0px;
    font-size: 14px;
    line-height: 24px;
}

ul.date_time li:not(:last-child) a:after,
ul.date_time li:not(:last-child) p:after {
    content: '|';
    padding-left: 10px;
}

section.blog_listing_page {
    padding: 30px 0 20px;
}

.blog_card {
    background: #f0edec;
    height: calc(100% - 20px);
    margin-bottom: 20px;
}

.blog_card .content {
    padding: 10px 20px;
}

section.blog_section {
    padding: 20px 0;
}

section.blog_section .blog_top {
    margin-bottom: 20px;
}

section.blog_section .blog_top h1 {
    margin-bottom: 0;
    font-size: 25px;
    font-weight: 400;
}

section.blog_section .blog_detail_card a {
    text-decoration: underline
}

section.blog_section .blog_detail_card a:hover {
    text-decoration: none;
}

.blog_search {
    position: relative;
}

.blog_search input {
    padding: 4px 40px 4px 10px;
    background: #eceae7;
    border: none;
    width: 100%;
    outline: 0;
}

.blog_search .search-icon {
    position: absolute;
    right: 7px;
    top: 50%;
    transform: translateY(-50%);
    padding: 2px 2px;
    background: url(../images/search.svg) center center no-repeat;
    width: 30px;
    height: 33px;
    border: none;
    background-size: 18px;
}

.blog_category {
    padding: 6px 0;
    border-top: 1px solid #878585;
    border-bottom: 1px solid #878585;
    margin-bottom: 20px;
}

.blog_category ul.category_list {
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}

.blog_category ul.category_list li {
    position: relative;
    padding-right: 20px;
}

.blog_category ul.category_list li:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-57%);
}

.blog_category ul.category_list li.active a {
    font-weight: 400;
}

.blog_category ul.category_list li.active a,
.blog_category ul.category_list li a:hover {
    border-bottom: 1px solid #878585 !important;
}

.blog_card {
    background: #f4f4ef;
}

.blog_card .blog_thumb img {
    max-width: 100%;
}


.blog_card .content h3,
.blog_card .content h2 {
    font-size: 1.5rem;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.blog_card .content p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.blog_card .content a.blog_link:hover {
    text-decoration: underline;
    font-weight: 400;
}

section.detail_banner {
    height: 80vh;
    position: relative;
}

section.detail_banner img {
    width: 100%;
}

section.detail_banner .detail_head {
    position: absolute;
    left: 3px;
    top: 50%;
    transform: translate(00%, -50%);
    padding: 30px 15px 10px;
    width: 60%;
    background: #00000033;
    color: #fff;
    border: 0px solid #f48c00;
    backdrop-filter: blur(3px);
}

section.detail_banner .detail_head h1 {
    text-align: left;
    margin: 00px 0 15px;
    text-transform: uppercase;
}

section.detail_banner .detail_head ul.bread_crumb {
    margin: 0;
    padding: 0;
    padding-right: 20px;
}

section.detail_banner .detail_head ul.bread_crumb li {
    padding-right: 0;
    display: contents;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}

section.detail_banner .detail_head ul.bread_crumb li a {
    padding-right: 20px;
    color: #fff;
    position: relative;
}

section.detail_banner .detail_head ul.bread_crumb li a::after {
    content: '\f101';
    position: absolute;
    font-family: "FontAwesome";
    font-size: 10px;
    top: 0px;
    right: 1px;
}

section.detail_banner .detail_head ul.date_time {
    display: flex;
    margin: 0;
    padding: 0;
}

section.detail_banner .detail_head ul.date_time li {
    list-style: none;
    padding-right: 10px;
    position: relative;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}

section.detail_banner .detail_head ul.date_time li:before {
    content: '•';
    padding-right: 8px;
    font-family: "Font Awesome";
}

.blog_detail_card .blog_thumb {
    margin-bottom: 20px;
}

.blog_detail_card .beforeAfter-slider {
    margin-bottom: 15px;
}

.blog_detail_card .beforeAfter-slider .slider-container {
    border-radius: 0;
}

@media (min-width:1200px) {
    .blog_detail_card h1 {
        font-size: 32px;
    }
}

.blog_detail_card h2 {
    font-size: 27px;
    text-transform: none;
}

.blog_detail_card h3 {
    font-size: 24px;
    text-transform: none;
}

section.blog_section aside {
    position: sticky;
    top: 20px;
}

aside .side_card {
    padding: 10px 10px 15px;
    border: 3px solid #d9d9d9;
    margin-bottom: 20px;
}

aside .side_card h3 {
    text-align: center;
    /*     text-transform: uppercase; */
    font-size: 22px;
    font-weight: 400;
}

aside .side_card ul.cat_list li a:hover {
    font-weight: 400;
    text-decoration: underline;
}

aside .side_card ul.cat_list {
    padding: 0;
    list-style: none;
    margin: 15px 0 7px;
}

aside .side_card ul.cat_list li {
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #c2c2c2;
    position: relative;
    font-size: 15px;
    font-weight: 400;
    padding-left: 15px;
}

aside .side_card ul.cat_list li ul li:before {
    display: none;
}

aside .side_card ul.cat_list li ul li {
    border-bottom: 0;
    margin-bottom: 3px;
    padding-bottom: 4px;
    list-style: circle;
    margin-left: 15px;
    font-size: 14px;
    padding-left: 0;
}

aside .side_card ul.cat_list li ul {
    margin-top: 10px;
}

aside .side_card ul.cat_list li::before {
    content: '\f054';
    font-family: "FontAwesome";
    font-size: 12px;
    position: absolute;
    left: 0;
    top: 0px;
}

.search_sec a.btn {
    width: auto;
    min-width: auto;
    padding: 4px 20px;
}

.search_sec .btn_sec {
    justify-content: space-between;
}

.more_about {
    padding: 20px 0 30px;
    background: #f2f2f2;
}

.more_about .content .h4 {
    text-transform: uppercase;
    color: #a5a5a5;
    margin-bottom: 10px;
}

.more_about h2 {
    margin-bottom: 30px;
}

section.related_post {
    padding: 30px 0;
}

.team_listing_page {
    padding: 30px 0;
}

.team_card .content {
    padding: 10px;
}

.team_card .content p {
    margin-bottom: 4px;
}

.team_card .content p.designation {
    font-weight: 400;
    margin-bottom: 0;
}

.team_card .content p.language {
    min-height: 26px;
    margin-bottom: 10px;
}

.team_card .content h3 {
    margin-bottom: 3px;
}

.team_detail_page {
    padding: 30px 0;
}

.inputGroup {
    flex-direction: column;
    margin-bottom: 15px
}

input.form-control {
    width: 100%;
    border-radius: 3px;
    box-shadow: none !important;
}

label.form-label {
    margin: 0;
    padding-left: 2px;
    font-weight: 400;
    font-size: 14px;
    line-height: 23px;
    display: block;
    min-height: 23px;
}

.inputGroup input,
.inputGroup select {
    padding: 6px 10px;
    font-size: 15px;
    line-height: 20px;
}

.inputGroup select {
    border-radius: 3px;
    color: #5f6265;
}

section.redeem_form_sec {
    padding: 30px 0;
    background: #f0edec
}

.formModal .modal-header {
    margin: 14px 15px 0px;
    border-bottom: 0;
    background: #f8f8f8;
    padding: 10px 15px;
    border-radius: 0;
}

.formModal .modal-header p.modal-title {
    font-weight: 400;
}

.modal-header .btn-close {
    position: absolute;
    top: -7px;
    right: -7px;
    background-color: #e1e1e1;
    border-radius: 100%;
    color: #000;
    background-size: 13px;
    opacity: 1;
}

section.why_choose_sec .head {
    font-size: 20px;
    width: fit-content;
    max-width: 80%;
    background: #F4E2EB;
    padding: 5px 9px;
    z-index: 1;
}

section.why_choose_sec .why_choose_inner .wch_text:not(:first-child) {
    margin-top: 25px;
}

section.why_choose_sec .wch_text {
    z-index: 1;
}

section.why_choose_sec .wch_text:after {
    content: '';
    width: 100%;
    border: 2px solid #f4e2eb;
    height: 0px;
    background: #f4e2eb;
    position: absolute;
    left: 0;
    z-index: -1;
    top: 49%;
}

section.why_choose_sec .why_choose_inner {
    padding-top: 20px;
}

section.why_choose_sec .why_choose_inner h4 {
    font-size: 17px;
}

section.team_sec .teamCard {
    display: block;
    position: relative;
    padding-bottom: 50px;
}

section.team_sec .teamCard img {
    border-radius: 10px;
}

section.team_sec .teamCard:hover img {
    filter: drop-shadow(2px 4px 6px #b8b8b8);
}

section.team_sec {
    padding: 30px 0;
    border-top: 2px solid #f2f2f2;
}

section.team_sec .teamCard .content {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    width: 80%;
    text-align: center;
    background: #ffffff;
    box-shadow: -1px 3px 4px 0px #c1c1c1;
    border-radius: 6px;
    padding: 10px;
    transition: all .5s ease;
}

section.team_sec .teamCard:hover .content {
    bottom: 30px;
    transition: all .5s ease;
}

section.team_sec .teamCard .content p {
    margin: 0;
}

section.team_sec .teamCard .content h3 {
    margin: 0;
}

section.team_sec button.slick-arrow {
    background: #fff;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    z-index: 9;
}

section.team_sec button.slick-arrow button.slick-prev {
    left: 20px;
}

section.team_sec button.slick-prev {
    left: 20px;
}

section.team_sec button.slick-arrow::before {
    font-size: 20px;
}

section.team_sec button.slick-next {
    right: 20px;
}

section.team_listing_page .team_card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 12px;
    border-radius: 5px;
    background: #ffffff;
    box-shadow: 0px 0px 7px 2px #d6d6d6;
    margin-bottom: 20px;
    height: calc(100% - 20px);
}

section.team_listing_page .team_card:hover {
    box-shadow: 0px 0px 14px 4px #d6d6d6;
}

section.step_section {
    padding: 30px 0;
}

section.step_section .step_list {
    display: flex;
    gap: 7px;
    justify-content: center;
    flex-wrap: wrap;
}

section.step_section .step_list .step_card {
    position: relative;
    text-align: center;
    background: #cb5d90;
    color: #fff;
    border-radius: 20px;
    max-width: 320px;
    width: 19%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
}

section.step_section .step_list.four_card .step_card {
    width: 25%;
}

section.step_section .step_list .step_card .num {
    padding: 30px 20px;
    width: 100%;
    font-size: 60px;
    font-weight: 500;
    background: #92929254;
    border-radius: 20px 20px 0 0;
    min-height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.step_section .step_list .step_card .content {
    padding: 20px 30px;
}

section.step_section .step_list .step_card .content h3 {
    font-size: 17px;
    font-weight: 500;
}

section.step_section .step_list .step_card .content p {
    margin: 0;
    font-size: 13px;
    line-height: 21px;
}

section.step_section .step_list .step_card .step_icon {
    padding: 20px;
    background: #0000001f;
    border-radius: 0 0 20px 20px;
    width: 100%;
}

section.step_section .step_list .step_card .step_icon img {
    filter: invert(1) brightness(10.5);
    width: 60px;
}

section.step_section .step_list .step_card .puzzle {
    position: absolute;
    bottom: 25%;
    left: 102%;
    width: 31.5px;
    height: 43px;
    background: #fff;
    z-index: 9;
    border-radius: 100%;
}

section.step_section .step_list .step_card:nth-child(2) .puzzle {
    bottom: 38%;
}

section.step_section .step_list .step_card:nth-child(3) .puzzle {
    bottom: 51%;
}

section.step_section .step_list .step_card:nth-child(4) .puzzle {
    bottom: 70%;
}

section.step_section .step_list .step_card:nth-child(5) .puzzle {
    bottom: 70%;
}

section.step_section .step_list .step_card:last-child .puzzle {
    display: none;
}

section.step_section .step_list .step_card .puzzle::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 4px;
    width: 23px;
    height: 34px;
    background: #cb5d90;
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

section.step_section .step_list .step_card .puzzle::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 80%;
    width: 25px;
    height: 14px;
    background: #cb5d90;
    border-radius: 0;
    transform: translateY(-50%);
    z-index: 2;
}

section.team_sec .nav-tabs li.nav-item button.nav-link.active {
    background: #cd5f91;
    color: #fff;
}

section.team_sec .nav-tabs li.nav-item button.nav-link {
    border: 1px solid #cd5f91;
    color: #cd5f91;
    font-weight: 400;
}

section.team_sec .nav-tabs {
    gap: 20px;
}

section.thanks_sec {
    min-height: calc(100vh - 108px);
    display: flex;
    justify-content: center;
    align-items: center;
}

section.thanks_sec .content {
    box-shadow: 1px 3px 13px 6px #dbdbdb;
    padding: 40px 20px;
    border-radius: 10px;
    background-color: #fff;
}

section.thanks_sec .content img {
    margin-bottom: 25px;
}

section.thanks_sec .content .btn {
    margin-top: 20px;
}

.error_span {
    font-size: 11px;
    line-height: 17px;
    display: block;
    text-align: right;
    font-weight: 400;
}

.inventory_sec {
    padding: 20px 0;
}

.inventory_sec .accordion-item {
    border: none;
    border-bottom: 1px solid #b9b9b9;
    border-radius: 0;
}

.inventory_sec .accordion-button:not(.collapsed) {
    background: #cd5f91;
    color: #fff;
}

.inventory_sec .accordion-button {
    padding: 10px 20px;
    border-radius: 0 !important;
    box-shadow: none;
}

.inventory_sec .accordion-body button.accordion-button:not(.collapsed) {
    background: #c1c1c1;
    color: #fff;
}

.inventory_sec .accordion-body button.accordion-button {
    padding: 0px 15px;
    font-size: 15px;
    margin-top: 20px;
}

.inventory_sec .accordion-body .accordion-item {
    border-bottom: none;
}

.inventory_sec .accordion-body {
    padding: 8px;
}

.inventory_sec .accordion-button:not(.collapsed)::after {
    color: #fff;
}

.inventory_sec .accordion-button span {
    position: absolute;
    right: 54px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
}

.inventory_sec .accordion-body .content h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

.inventory_sec .accordion-body .content ul li {
    list-style: none;
    font-size: 15px;
    line-height: 22px;
    color: #363636;
    font-weight: 400;
}

.inventory_sec .accordion-body .content ul {
    padding-left: 8px;
}

.inventory_sec .masonry {
    column-count: 3;
    column-gap: 1rem;
}

.inventory_sec .masonry-item {
    break-inside: avoid;
    margin-bottom: 1rem;
}

section.notfound_section {
    padding: 20px 0;
}

section.notfound_section .thumb img {
    max-width: 100%;
    width: 80%;
}

section.notfound_section .content {
    padding: 0 30px;
}

section.notfound_section .content h1 {
    font-size: 50px;
    margin-bottom: 15px;
}

section.notfound_section .content p {
    margin-bottom: 25px;
}

section.contactus_main {
    padding: 30px 0;
}

section.contactus_main .contact_form {
    background: #f2f2f2;
    padding: 30px 20px;
}

.map_section {}

.map_section .nav-tabs {
    width: 100%;
    border: none;
    margin-bottom: 10px;
}

.map_section .nav-tabs li.nav-item {
    width: 50%;
}

.map_section .nav-tabs li.nav-item button.nav-link {
    width: 100%;
    border: 2px solid #f2f2f2;
    border-radius: 0;
    color: #434343;
    font-weight: 400;
}

.map_section .nav-tabs li.nav-item button.nav-link.active {
    background: #bd497e;
    color: #fff;
    border: 2px solid #bd497e;
}

.map_section .map {}

.map_section .map iframe {
    width: 100%;
    min-height: 450px;
}

.map_section .address {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.map_section .address .address_list {
    width: calc(50% - 8px);
    border-bottom: 1px solid #f4e2eb;
}

.map_section .address .address_list.w-60 {
    width: calc(60% - 8px);
}

.map_section .address .address_list h3 {
    font-size: 20px;
    border-bottom: 2px solid #bd497e;
    padding-bottom: 8px;
}

.map_section .address .address_list p.phone a {
    color: #bd497e;

}

.map_section .address .address_list p.phone a:hover {
    text-decoration: underline;
}

.map_section .address.masonry {
    column-count: 2;
    column-gap: 1rem;
}

.map_section .address.masonry .masonry-item {
    break-inside: avoid;
    margin-bottom: 1rem;
}

.math-captcha-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    max-width: 380px;
    position: relative;
}

.math-captcha-question {
    font-size: 18px;
    width: 100%;
}

.math-captcha-input {
    width: 118px;
    padding: 6px 8px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    line-height: 20px;
}

.math-captcha-refresh {
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: #374151;
    /* Tailwind gray-700 */
    transition: all 0.2s ease;
}

.math-captcha-refresh:hover {
    background: #f3f4f6;
}

.math-captcha-error {
    color: #dc2626;
    /* Tailwind red-600 */
    font-size: 13px;
    margin-top: 6px;
}

.math-captcha-box .error_span {
    position: absolute;
    bottom: -10px;
    left: 0;
}

section.belowCard_sec {
    padding: 30px 0;
}

section.belowCard_sec .belowCard {
    background: #fff;
    padding: 10px 15px 25px;
    margin-bottom: 20px;
    height: calc(100% - 20px);
    text-align: center;
    border-radius: 15px;
    box-shadow: rgb(218 134 171 / 29%) 0px 3px 14px 4px;
    transition: 0.4s all ease;
    transform: translateY(0);
}

section.belowCard_sec.no_icon .belowCard {
    padding: 30px 25px 25px;
    border-left: 3px solid #ce5f8f;
}

section.belowCard_sec .belowCard:hover {
    transition: .4s all ease;
    transform: translateY(-6px);
}

section.belowCard_sec .belowCard .icon {
    display: table;
    padding: 15px;
    margin: 0 auto;
    margin-top: -60px;
    margin-bottom: 10px;
    background: #da86ab;
    border-radius: 100%;
}

section.belowCard_sec .belowCard img {
    width: 70px;
    margin-bottom: 0;
    filter: invert(1) brightness(10.5);
}

section.belowCard_sec .belowCard h3 {
    margin-bottom: 10px;
    font-weight: 500;
}

section.belowCard_sec .belowCard p {
    margin-bottom: 0;
}

/* beforeafterSlider */
section.beforeAfterSlider {
    padding: 30px 0;
}

.beforeAfter-slider .slider-container {
    display: grid;
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    --position: 50%;
}

.beforeAfter-slider .image-container {
    max-width: 100%;
}

.beforeAfter-slider .slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
    max-height: 500px;
}

.beforeAfter-slider .image-before {
    position: absolute;
    inset: 0;
    width: var(--position);
}

.beforeAfter-slider .sliderInput {
    position: absolute;
    inset: 0;
    cursor: pointer;
    opacity: 0;
    /* for Firefox */
    width: 100%;
    height: 100%;
}

.beforeAfter-slider .sliderInput:focus-visible~.sliderInput-button {
    outline: 5px solid black;
    outline-offset: 3px;
}

.beforeAfter-slider .slider-line {
    position: absolute;
    inset: 0;
    width: .2rem;
    height: 100%;
    background-color: #fff;
    left: var(--position);
    transform: translateX(-50%);
    pointer-events: none;
}

.beforeAfter-slider .slider-button {
    position: absolute;
    background-color: #fff;
    color: black;
    padding: 15px;
    border-radius: 100vw;
    display: grid;
    place-items: center;
    top: 50%;
    left: var(--position);
    transform: translate(-50%, -50%);
    pointer-events: none;
    box-shadow: 1px 1px 1px hsl(0, 50%, 2%, .5);
}

.beforeAfter-slider .slider-button img {
    width: 30px;
}

.know_sec {
    padding: 30px 0;
}

.know_sec .know_card {
    background: #fff;
    padding: 15px 13px;
    border-radius: 10px;
    margin-bottom: 20px;
    height: calc(100% - 20px);
}

.know_sec .know_card p {
    margin: 0;
    line-height: 23px;
}

.know_sec .know_card h3 {
    margin-bottom: 2px;
}

section.sitemap_sec {
    padding: 40px 0;
}

section.sitemap_sec h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

section.sitemap_sec h2 {
    font-size: 22px;
    margin: 15px 0 20px;
}

section.sitemap_sec p {
    margin-bottom: 8px;
}

section.sitemap_sec p a {
    font-size: 17px;
    font-weight: 400;
    position: relative;

    padding-left: 19px;
}

section.sitemap_sec p a:hover {
    color: #cd5f91;
}

section.sitemap_sec p a:before {
    content: '\f0da';
    font-family: 'FontAwesome';
    font-size: 21px;
    line-height: 18px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.blog_section .highlight_sec {
    padding: 10px 20px;
    background: #f2f2f2;
    border-radius: 5px;
    position: relative;
    margin-bottom: 10px;
}

.blog_section .highlight_sec ul {
    margin-bottom: 10px;
}

.blog_section .highlight_sec:after {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 40%;
    height: 40%;
    border: 2px solid #cd5f91;
    z-index: 0;
    border-bottom-width: 0;
    border-right-width: 0;
    border-top-left-radius: 4px;
}

.blog_section .highlight_sec::before {
    content: '';
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 40%;
    height: 40%;
    border: 2px solid #cd5f91;
    z-index: 0;
    border-top-width: 0;
    border-left-width: 0;
    border-bottom-right-radius: 4px;
}

.search-container {
    position: relative;
    width: 100%;
    max-width: fit-content;
    display: flex;
    align-items: center;
    justify-content: start;
}

.search-container .crossIcon {
    background: rgba(255, 255, 255, 0);
    height: 20px;
    width: 20px;
    display: flex;
    display: none;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 600;
    position: absolute;
    top: 9px;
    right: 50px;
    z-index: 99;
    color: #000;
    cursor: pointer;
}

#searchval {
    width: 100%;
    max-width: 200px;
    height: 35px;
    font-size: 15px;
    padding-left: 13px;
    padding-right: 20px;
    margin: 5px 0;
    border: none;
    outline: none;
}

.search-icon {
    fill: #fff;
    pointer-events: none;
    background: #888;
    height: 35px;
    width: 45px;
    padding: 10px;
    cursor: pointer;
}

.searchcard {
    position: fixed;
    right: 0;
    left: 41px;
    top: 55px;
    background: #fff;
    z-index: 999;
    width: 700px;
    border: none;
    border-radius: 0;
    box-shadow: 0 0 0 1px rgba(39, 44, 48, .05), 0 1px 5px 1px rgba(39, 44, 48, .16);
    display: none;
    padding: 10px 10px;
}

.searchtitle {
    margin-right: 2px;
    border-bottom: 1px solid #f0edec;
    text-transform: uppercase;
    color: rgba(34, 34, 34, .4);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}

.searchcard .itemList {
    list-style: none;
    padding-left: 0;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 400;
}
.max-height{
        max-height: 460px;
    width: 100%;
    object-fit: cover;
}
.searchcard .itemList li {
    line-height: normal;
    width: auto;
    white-space: nowrap;
    overflow: hidden !important;
    text-overflow: ellipsis;
}

.searchcard .itemList li a {
    position: relative;
    font-size: 13px;
    color: #6f6f6f;
    line-height: 22px;
    padding-bottom: 4px;
}

.searchcard .itemList li a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: #d2d0d0;
    transition: width .3s ease-in;
}

.searchcard .itemList li a:hover::before {
    width: 100%;
}

section.new_banner {
    padding: 30px 0;
}

section.new_banner .image_sec {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 15px 3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

section.new_banner .image_sec .thumb {}

section.new_banner .image_sec .thumb img {
    width: 100%;
    border-radius: 10px;
}

section.new_banner .image_sec .content {
    background: #fff;
    padding: 10px 15px;
}

section.new_banner .image_sec .content h2 {
    margin-bottom: 5px;
    font-size: 19px;
}

.report_card_sec .report_card p.text {
    margin-bottom: 0px;
}

.report_card_sec .report_card p.number {
    margin-bottom: 0px;
    font-weight: 500;
    line-height: 24px;
}

.report_card_sec .report_card {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 4px;
    height: calc(100% - 10px);
}
.report_card_sec.bg_card .report_card {
    background-color: #f9fafb;
}
.extText {
    display: flex;
    align-items: center;
    margin: 13px 0;
}

.extText svg {
    width: 30px;
    color: #cd5f91;
}

.extText p {
    margin: 0;
    margin-left: 6px;
}

section.new_banner .left-content h1 {
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 30px;
}

section.new_banner .left-content .report_card_sec .report_card {
    box-shadow: 0px 0px 10px 1px rgb(84 84 84 / 25%), 0 4px 5px -4px rgb(253 253 253 / 10%);
}

section.snapshot_sec {
    padding: 30px 0;
}

.snap_card_sec .snap_card {
    display: flex;
    padding: 10px 0;
}

.snap_card_sec .snap_card .icon {
    min-width: 40px;
    width: 40px;
    height: 40px;
    background-color: #fef3c7;
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    margin-top: 6px;
}

.snap_card_sec .snap_card .icon img {
    width: 30px;
}

.snap_card_sec .snap_card h3 {
    font-size: 18px;
    margin-bottom: 0;
}

.snap_card_sec .snap_card p {
    margin-bottom: 0;
    font-size: 16px;
}

section.snapshot_sec .content p {
    margin-bottom: 10px;
}

section.snapshot_sec .content h2 {
    margin-bottom: 15px;
    font-weight: 500;
}

section.snapshot_sec .report_card_sec .report_card {
    background-color: #f9fafb;
    padding: 20px;
}

section.overview_sec {
    padding: 20px 0 40px;
}

section.overview_sec p {
    margin-bottom: 10px;
    z-index: 2;
}

section.overview_sec .report_card_sec {
    margin: 15px 0;
}

section.overview_sec .report_card_sec .report_card {
    background: #fffbeb;
    padding: 15px;
}

section.overview_sec .active_Sec h3 {
    font-size: 19px;
    margin-bottom: 13px;
}

section.overview_sec .active_Sec span.badge {
    background: linear-gradient(180deg, #fff, #f5f7fb);
    border: 1px solid #0206171a;
    padding: .4rem .7rem;
    border-radius: 9px;
    font-size: 12px;
    font-weight: 600;
    color: #0f172a;
    letter-spacing: .1px;
    margin-right: 0;
    margin-top: 1px;
}

section.overview_sec .active_Sec span.badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

section.insight_card {
    padding: 30px 0;
}
section.insight_card table{
    font-weight: 300;
}
section.insight_card table thead tr th{
    width: 20%;
}
section.works_btr {
    padding: 30px 0;
}

section.works_btr .report_card_sec .report_card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    height: calc(100% - 10px);
     transition: .4s all ease;
         border: 1px solid #fff;
}
section.works_btr .report_card_sec .report_card:hover{
    transition: .4s all ease;
    transform: translateY(-6px);
        border: 1px solid #cd5f91;
}
section.works_btr.no_hover .report_card_sec .report_card {
    background: #f7f7f6;
    border-color: #fff0;
}
section.works_btr.no_hover .report_card_sec .report_card:hover {
    transition: .4s all ease;
    transform: translateY(-6px);
        border: 1px solid #f7f7f6;
}
section.works_btr .report_card_sec .report_card p.number {
    margin-bottom: 10px;
}

.sm_text {
    font-size: 14px;
}

.shadowOwn {
    box-shadow: 0 0 0px #0000, 0 0 0px #0000, 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 9px 0px rgb(0 0 0 / 0.1);
    border-radius: 10px;
}

section.footer_strip .inner_sec {
    padding: 20px;
    display: flex;
    height: 100%;
    align-items: center;
}

section.footer_strip .inner_sec .content h2 {
    font-size: 21px;
    margin-bottom: 6px;
    color: #fff;
}

section.footer_strip .inner_sec .content p {
    margin-bottom: 0;
    color: #fff;
}

section.footer_strip .inner_sec a.btn.secondry_btn {
    border-color: #fff;
    color: #fff;
    min-width: 145px;
}
.esg_sec .esg_inner{
    background-size: cover;
    background-repeat: no-repeat;
       padding: 40px 40px;
       position: relative;
}
.esg_sec .esg_inner .sectionHead{
    z-index: 2;
    position: relative;
}
.esg_sec .esg_inner:before {
    content: '';
    position: absolute;
    background: #00000063;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0;
}
.esg_sec .esg_inner .icon_card_list{
display: flex;
    flex-wrap: wrap;
    gap: 40px 10px;
    z-index: 2;
    position: relative;
}
.esg_sec .esg_inner .icon_card_list .icon_card_outer {
    width: 19%;
}
.esg_sec .esg_inner .icon_card_list.list_4 .icon_card_outer {
    width: 24%;
}
.esg_sec .icon-card {
    text-align: center;
    transition: transform 0.3s ease;
}

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

.esg_sec .icon-circle {
        width: 110px;
    height: 110px;
    border: 3px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.esg_sec .icon-circle img {
    width: 60px;
    filter: invert(3) brightness(10.5);
}
.esg_sec .icon-card:hover .icon-circle img {
    filter: none;
}
.esg_sec .icon-card:hover .icon-circle {
    background: rgba(255, 255, 255, 0.922);
    transform: scale(1.05);
}

.esg_sec .icon-circle svg {
    width: 60px;
    height: 60px;
    stroke: white;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.esg_sec .icon-text {
       color: white;
    font-size: 13px;
    line-height: 17px;
    font-weight: 400;
}

.esg_sec .icon-text strong {
    font-weight: 600;
}

@media (max-width: 768px) {

    .esg_sec .icon-circle {
        width: 120px;
        height: 120px;
    }

    .esg_sec .icon-circle svg {
        width: 60px;
        height: 60px;
    }
}
.btr-quote {
    position: relative;
    padding: 2.5rem 1.5rem 2.5rem 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid #c75c8c;
    border-radius: 8px;
    margin: 0;
}

.btr-quote::before {
    content: '"';
    position: absolute;
    left: 0.5rem;
    top: 0.5rem;
    font-size: 3rem;
    line-height: 1;
    color: #0066cc;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.btr-quote .quote-text {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
    color: #2c3e50;
    font-style: italic;
    font-weight: 500;
}
.story_card{
    overflow: hidden;
}
.story_card .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 95%;
    color: #fff;
}
.story_card .content h3 {
    color: #fff;
}
.story_card:before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #00000042;
}
@media (max-width: 767px) {
    .btr-quote {
        padding: 1.25rem 1.25rem 1.25rem 2.5rem;
    }
    
    .btr-quote .quote-text {
        font-size: 0.95rem;
    }
}
section.home-gallery-sec {
    padding: 30px 0 30px;
}

.home-gallery-sec .galItem {
    position: relative;
    margin-bottom: 30px;
    display: block;
    height: calc(100% - 30px);
    transform: translateY(0px);
    transition: .4s all ease;
    border-radius: 8px;
    padding-top: 10px;
    overflow: hidden;
}

.home-gallery-sec .galItem:hover {
    transform: translateY(-10px);
    transition: .4s all ease;
}

.home-gallery-sec .galItem .galTag {
    top: 10px;
    border-top-left-radius: 8px;
}

.home-gallery-sec .galContent {
    position: absolute;
    transform: scale(1);
    width: 100%;
    text-align: center;
    transition: 1s all ease;
    padding: 10px 10px;
    bottom: 0;
    background: rgba(0,0,0,.47);
    border-radius: 0px 0px 8px 8px;
}

.home-gallery-sec .galContent h3 {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0;
}

.home-gallery-sec .galItem img {
    max-width: 100%;
    width: 100%;
    border-radius: 8px;
    max-height: 344px;
    object-fit: cover;
    height: 100%;
    min-height: 248px;
}

section.home-gallery-sec ul.nav-tabs, ul.nav-tabs.common_nav {
    justify-content: flex-start;
    display:flex;
    border: none;
    border-bottom: 2px solid #d8d8d8;
    margin: 0 6px .6rem;
}
section.home-gallery-sec ul.nav-tabs li.nav-item button, ul.nav-tabs.common_nav li.nav-item button {
        background: #e5e5e500;
        border: none;
        padding: 3px 0;
        width: 100%;
        font-size: 18px;
        font-weight: 400;
        border-radius: 0;
        border-bottom: 3px solid #aeaeae;
        color: #000000;
}
section.home-gallery-sec ul.nav-tabs li.nav-item button:hover, ul.nav-tabs.common_nav li.nav-item button:hover{
	background: #e5e5e552;
}
section.home-gallery-sec ul.nav-tabs li.nav-item button.active, ul.nav-tabs.common_nav li.nav-item button.active {
        border-bottom: 3px solid #ce5f8f;
        background: #e5e5e552;
}
section.home-gallery-sec ul.nav-tabs li.nav-item, ul.nav-tabs.common_nav li.nav-item {
    width: auto;
    min-width: 200px;
    text-align: center;
    margin-right: 2px;
}
.galTag {
    padding: 2px 8px;
    background: rgba(0,0,0,.4);
    color: #fff;
    margin-bottom: 1px;
    display: inline-block;
    font-weight: 500;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    font-size: 14px;
}
section.home-gallery-sec .galCatDropdown select {
    max-width: 230px;
    padding: 2px 3px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 400;
}

.masonryLayout {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(300px,1fr));
    gap: 20px;
}

.masonryItem {
    background-color: #fff;
    box-sizing: border-box;
    transition: transform .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    color: #fff;
}

.masonryItem img {
    width: 100%;
    height: auto;
    display: block;
}

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

/* guide page  */
.guide-section {
  padding: 30px 0 50px;
}
.guide-section .guide-card {
  position: relative;
  margin: 20px 0 20px;
  cursor: pointer;
display:block;
}
.guide-section .guide-card .guide-thumb img {
  width: 100%;
  max-height:420px;
min-height:300px;
}
.guide-section .guide-card .guide-thumb {
  position: relative;
}
.guide-section .guide-card .guide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
}
.guide-section .guide-card .guide-content h2, .guide-section .guide-card .guide-content h3 {
  font-size: 30px;
  color: #fff;
  line-height: 33px;
  text-transform: uppercase;
  margin-bottom: 10px;
	font-weight: 500;
}
.guide-section .guide-card .guide-content p {
  color: #fff;
  font-size: 19px;
  line-height: 25px;
  margin-bottom: 10px;
}
.guide-section .guide-card .guide-thumb:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
  top: 0;
  left: 0;
}
.guide-section .guide-card .guide-thumb:after {
  content: '';
  position: absolute;
  width: 92%;
  height: 92%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #fff;
  transition: .6s all ease;
}
.guide-section .guide-inner .guide-card:hover .guide-thumb:after {
  transition: .6s all ease;
  width: 90%;
  height: 90%;
}
.category_listing ul {
	margin-bottom:0px;
    padding: 3px 0 6px;
    border-top: 1px solid #999999;
    border-bottom: 1px solid #999999;
}
.category_listing ul li.active a {
  border-bottom: 1px solid #cd5f91 !important;
	font-weight: 500;
}
.category_listing ul li:not(:last-child)::after {
    content: "|";
    padding: 0 .5rem;
}
.category_listing ul li:hover a {
    border-bottom: 1px solid #cd5f91 !important;
}
.category_listing ul li.active a {
    border-bottom: 1px solid #cd5f91 !important;
	font-weight:400
}
.category_listing ul li {
    display: inline-block;
    padding: 0;
    font-size: 1.07rem;
}
.ctaSection{
    padding: 30px 0 30px;
    background: #f2f2f2;
}
.ctaSection .content .h4{
font-size: 20px;
    line-height: 27px;
    font-weight: 400;
}
.ctaSection h2{
/*     text-transform: uppercase; */
        margin-bottom: 10px;
}
.ctaSection h3 {
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 20px;
}

section.broucher-section {
    padding: 30px 0 20px;
    border-top: 2px solid #efefef;
}
.broucher-card {
    padding: 0px 0px;
    text-align: center;
	margin-bottom: 20px;
    height: calc(100% - 20px);
	display: flex;
    flex-direction: column;
    justify-content: space-between;
	transform: translateY(0);
    transition: .8s all ease;
}
.broucher-card .broucher-card-inner{
	width:100%;
	height:342px;
	transform-style: preserve-3d;
	padding-bottom: 100%;
  transition: transform 0.6s;
}
.broucher-card:hover .broucher-card-inner{
	transform: rotateY(180deg);
}

.broucher-card .br-thumb img {
    object-fit: contain;
    margin-bottom: 10px;
	width:100%;
	max-height: 304px;
	transition: .8s all ease;
}
.broucher-card .br-thumb, .broucher-card .broucher-content{
	position: absolute;
    width: 100%;
    height: 100%;    
	-webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.broucher-card .broucher-content{
	transition: .8s allease;
    color: #fff;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: rotateY(180deg);
    background: linear-gradient(180deg, rgba(205, 95, 145, 1) 0%, rgba(0, 0, 0, 0.9249824929971989) 100%);
}
.broucher-card .broucher-content a.btn.btn-transparent {
    border-color: #fff;
    color: #fff;
}
.broucher-card .broucher-content a.btn.btn-transparent:hover {
    color: #000;
}
.readMoreContent{
	display: -webkit-box;
    -webkit-line-clamp: unset;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    margin-bottom: 4px;
}
.readMoreContent.readLess{
	-webkit-line-clamp: unset !important;
}
.readLessBtn{
	font-size:16px;
	font-weight:500;
}
.readMoreContent span{
	display:block;
	margin:7px 0;
}
.readMoreContent.hideText{
	-webkit-line-clamp: 11;
}
section.keyDevelopment {
    padding: 30px 0;
}
.key-card {
        position: relative;
    display: block;
    overflow: hidden;
    background: #eeeeee;
    padding: 10px;
    border-radius: 7px;
	height: calc(100% - 20px);
	    margin-bottom: 20px;
}
.keyDevelopment .key-card:hover {
    box-shadow: 0px 3px 4px 0px #dcdcdc;
}
.key-card .thumb {
    border-radius: 7px;
    overflow: hidden;
}
.key-card img {
    width: 100%;
    transform: scale(1);
    transition: .7s all ease;
    max-height: 220px;
    object-fit: cover;
    border-radius: 7px;
}
.key-card:hover img {
    transform: scale(1.1);
	transition:.7s all ease;
}
.key-card:after {
/*     content:''; */
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(0deg, rgb(0 0 0 / 83%) 0%, rgb(0 0 0 / 0%) 41%);
    width: 100%;
    height: 100%;
}
.key-card .key-content {
/*     position: absolute;
    z-index: 9;
    color: #fff;
    bottom: 10px;
    text-align: center;
    width: 100%; */
	padding:10px 10px 0;
}
.key-card .key-content h3{
	margin-bottom:10px;
	display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}
.key-card .key-content p{
	margin:0;
	max-height:auto;
	transition:1s all ease;
	display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}
.key-card:hover .key-content p{
/* 	max-height:240px; */
	transition:1s all ease;
}
.key-card p.arrowSign {
    position: absolute;
    z-index: 9;
    color: #000000;
    top: 10px;
    right: 10px;
    text-align: center;
    width: 30px;
    height: 30px;
    line-height: 28px;
    margin: 0;
    background: #f0edec;
    border-radius: 100%;
}
.key-card p.arrowSign img {
    width: 17px;
}
.whyContent {
	background: #f7f7f6;
    text-align: center;
    padding: 20px 30px;
        height: calc(100% - 15px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 15px;
}
.whyContent .whyThumb img {
    height: 90px;
    margin-bottom: 15px;
transform: scale(1);
    transition: all .5s ease;
}
.whyContent:hover img {
    transform: scale(1.1);
    transition: all .5s ease;
}
.whyContent h3 {
    margin-bottom: 0;
    font-size: 19px;
}
.whyChooseThumb img {
    width: 100%;
}
 .sectorOuter{
	padding:10px 0;
}
 .sectorInner {
  position: relative;
	transform: translateY(0px);
    transition: .4s all ease;	
	display:block;
}
.sectorInner:hover {
    transform: translateY(-10px);
}
 .sectorInner .sectorContent p {
    max-height: 0;
    transition: 1s all ease;
    overflow: hidden;
    margin: 0;
}
.sectorInner:hover .sectorContent p{
    max-height: 240px;
    transition: 1s all ease;
}
 .sectorInner img {
  width: 100%;
	border-radius: 8px;
	min-height: 280px;
    max-height: 280px;
	object-fit:cover;
}
 .sectorInner .sectorContent {
  position: absolute;
	left:0;
  bottom: 0;
  color: #fff;
  padding: 13px 20px;
width:100%;
	background: #00000087;
    border-radius: 0px 0px 8px 8px;
}
 .sectorInner .sectorContent h3 {
  margin-bottom: 0px;
  font-size: 22px;
	display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}
.sectorInner:hover .sectorContent h3{
	-webkit-line-clamp: none;
}
section.place-slider {
    padding: 30px 0 30px;
}
section.place-slider .slick-list{
	max-width:98%;
	margin:auto;
}
.place-slider .sectorInner img {
    width: 100%;
	    max-height: 230px;
    object-fit: cover;
	border-radius:0px;
}
.place-slider .sectorInner {
/*     margin: 0 15px ; */
    background: #f2f2f2;
}
section.place-slider ul.slick-dots {
    bottom: -35px;
}
.place-slider .slick-slide{
	padding:20px;
	transition:1s all ease;
	transform:scale(1)
}
.place-slider .slick-slide .sectorInner .content p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}
.place-slider .slick-slide.slick-current .sectorInner .content p {
    -webkit-line-clamp: unset;
}
.place-slider .slick-slide.slick-current{
	transform:scale(1.1);
	transition:1s all ease;
}
.place-slider .sectorInner .content {
    padding: 0px 10px 10px;
}
.place-slider .content h3 {
    margin-top: 15px;
	margin-bottom:0;
	font-size: 19px;
}
.place-slider .content p.readMoreContent{
	-webkit-line-clamp: 5;
}

section.place-slider button.slick-arrow {
    background: #f2f2f2;
    border-radius: 100%;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 32px;
/* 	display:none !important; */
}
section.place-slider button.slick-prev.slick-arrow {
    left: -20px;
}
section.place-slider button.slick-next.slick-arrow {
    right: 0px;
}
section.place-slider .slick-dots li button:before{
	font-size: 45px;
}
section.place-slider button.slick-arrow img {
    height: auto;
    width: 18px;
}
section.areaRouteSec {
    padding: 30px 0;
    margin: 30px 0;
}
section.areaRouteSec .sectionHead h2 {
    /* font-size: 30px;
    text-transform: uppercase;
    font-weight: bold;
	margin-bottom:30px; */
}
section.areaRouteSec .sectionHead h2.font-normal {
    text-transform: capitalize;
    font-size: 2.5rem;
}
section.areaRouteSec .sectionHead p {
    font-size: 18px;
}
section.areaRouteSec .routeCard {
    text-align: center;
    padding: 20px 30px;
	position:relative;
	height:100%;
  z-index:6;
}
section.areaRouteSec .routeCard p.routeTime {
    margin-bottom: 15px;
    font-size: 25px;
    text-transform: uppercase;
    font-weight: 500;
    color: #000;
}
section.areaRouteSec .routeCard p {
    margin: 0;
}
section.areaRouteSec .row .col-md-3:not(:last-child) .routeCard:not(.no-border)::after {
    content: '';
    position: absolute;
    height: 0;
    width: 100%;
    background: #cf6090;
    top: 60px;
    left: 50%;
    border: 1.5px solid #cf6090;
	z-index: -1;
}
section.areaRouteSec .routeCard .routeIcon img {
    width: 50px;
    filter: invert(1) brightness(10.5);
	transform: scale(1);
    transition: all .5s ease;
}
section.areaRouteSec .routeCard:hover .routeIcon img {
    transform: scale(1.1);
    transition: all .5s ease;
}
section.areaRouteSec .routeCard .routeIcon {
	position:relative;
    background: #ca5e8f;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}
section.areaRouteSec .routeCard .routeIcon:after{
	content: '';
    position: absolute;
    height: 13px;
    width: 4px;
    background: #cf6090;
    top: 100%;
    left: calc(50% - 3px);
}
@media (max-width: 991px){
	section.areaRouteSec .row .col-md-3:not(:last-child) .routeCard:not(.no-border)::after{
		display:none;
	}
}
@media (max-width: 768px) {
	section.keyDevelopment {
    padding: 10px 0;
}
	.place-slider .sectorInner img{
		min-height:auto;
	}
/* 	section.areaRouteSec .sectionHead h2 {
		font-size: 25px;
		margin-bottom: 20px;
		line-height: 33px;
	} */
	section.areaRouteSec .routeCard p.routeTime {
    margin-bottom: 5px;
    font-size: 18px;
    line-height: 29px;
	}
	section.areaRouteSec .routeCard {
    padding: 20px 0px;
	}
	section.areaRouteSec .routeCard:not(.no-border)::after {
    content: none;
	}
}
.video-item {
    background: #f4f4ef;
    height: 100%;
    position: relative;
}
.video-item .post-content {
    padding: 10px 15px;
}
.video-item .development-tagOverlay {
    padding: 2px 8px;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    margin-bottom: 1px;
    display: inline-block;
    font-weight: 500;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    font-size: 14px;
}
.video-item .post-meta span:not(:last-child) {
    border-right: 2px solid #767676;
    padding-right: 3px;
    margin-right: 6px;
}
section.process-section.home-process-section {
  padding: 30px 0 30px;
}
ul.column-five li.process-content {
    list-style: none;
    max-width: 25%;
    width: 24%;
    margin-bottom: 20px;
    padding: 10px;
}
ul.column-five {
	margin-top:30px;
    padding: 0;
}
ul.column-five.h-auto li.process-content h3 {
    min-height: auto;
}
ul.column-five li.process-content h3 {
    font-size: 20px;
    line-height: 22px;
    margin-bottom: 10px;
    min-height: 44px;
	    margin-top: 10px;
}
ul.column-five li.process-content p {
   margin: 0;
    font-size: 14px;
    line-height: 20px;
}
ul.column-five li.process-content img {
    margin-bottom: 10px;
}
section.esgSec_new .contentOuter {
    padding: 0 30px;
    padding-right: 20%;
}
section.esgSec_new .contentOuter .icon {
    display: inline-block;
    padding: 10px 15px;
    background: #ffff;
    border-radius: 10px;
    margin-bottom: 12px;
}
section.gallery_listing {
    padding: 30px 0;
}
section.gallery_listing .gallery-item {
    margin-bottom: 10px;
        transform: translateY(0px);
    transition: all .4s ease;
}
section.gallery_listing .gallery-item:hover {
    transform: translateY(-6px);
    transition: all .4s ease;
}
section.gallery_listing .gallery-item .gallery-thumb {
    margin-bottom: 10px;
}
section.gallery_listing .gallery-item .gallery-thumb img {
    max-height: 235px;
    object-fit: cover;
}
section.galImagesec {
    padding: 0px 0 30px;
}
section.galImagesec .galThumb img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    max-height: 350px;
    object-fit: cover;
    border-radius: 8px;
    min-height: 430px;
    max-height: 450px;
    object-position: center;
}
section.gallery_listing .gallery-item .gallery-title {
    padding: 14px 0 10px;
    position: relative;
}
section.gallery_listing .gallery-item .gallery-title h3 {
    margin: 0;
}
section.gallery_listing .gallery-item .gallery-title .gallery-meta p {
    margin: 0;
}
section.gallery_listing .gallery-item .gallery-title:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 7px;
    background: #424242;
    top: 0;
}
.gal_table>tbody>tr:nth-of-type(odd)>*{
    background-color: #eceae7;
}
.gal_table>tbody>tr:nth-of-type(even)>*{
    background-color: #f9f9f9;
}
section.galImagesec .galThumb {
      height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}
section.galImagesec .galThumb img {
    transform: scale(1);
    transition: all 1s ease;
}

section.galImagesec .galThumb:hover img {
    transform: scale(1.1);
    transition: all 1s ease;
}
section.galImagesec .galThumb:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color:#fff;
    z-index:9;
    opacity:0;
	background-image:url('https://preview.isdnew.benhams.co.uk/wp-content/uploads/2025/05/loupe.png');
	width: 35px;
    height: 35px;
    background-size: contain;
    background-repeat: no-repeat;
    filter: invert(1);
}
section.galImagesec .galThumb:after {
    content: '';
    position: absolute;
    width:0;
    height:0;
    background:#0000002e;
    left: 50%;
    top: 50%;
    border-radius:8px;
    transform: translate(-50%, -50%);
    opacity:0;
    transition:all 1s ease;
}
section.galImagesec .galThumb:hover:after{
    opacity:1;
    transition:all 1s ease;
    width:100%;
    height:100%;
}
section.galImagesec .galThumb:hover:before{
    opacity:1;
    transition:all 1s ease;
}
section.gallery-slider {
    padding: 30px 0;
}

.gallery-detail-image {
	padding-left: 0;
}
.galleryDetail-slider .slick-list {
	max-width: 100%;
}
.galleryDetail-slider .slide-item {
  /* padding: 0 10px; */
  position: relative;
}
.gallery-detail-data {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0%, -25%);
}
.galleryDetail-slider .slick-next:before, .galleryDetail-slider .slick-prev:before{
    content: none;
}
.gallery-detail-carousel .slick-slide img {
  object-fit: cover;
	height:468px;
}
.galTag {
    padding: 2px 8px;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    margin-bottom: 1px;
    display: inline-block;
    font-weight: 500;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    font-size: 14px;
}
.post-thumbnail {
  min-height: auto;
  overflow: hidden;
}
.post-thumbnail.video-thumbnail {
  min-height: auto;
  position: relative;
}
.post-thumbnail.video-thumbnail a::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(60, 60, 60, 0.1);
}
.post-thumbnail.video-thumbnail img {
  /* min-height: 20rem; */
  height: auto;
}
.post-thumbnail.video-thumbnail .play-icon {
  display: inline-block;
  border: 0 solid;
  background: 0 0;
  width: 0;
  height: 30px;
  border-color: transparent transparent transparent #fff;
  transition: 0.1s;
  cursor: pointer;
  border-width: 22px 0 22px 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
section.blog-section.newVideoSec {
    padding: 20px 0 20px;
}
.newVideoSec .post-content h2, .newVideoSec .post-content h3{
	display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
	font-size: 22px;
    margin-bottom: 10px;
}
.newVideoSec .blog-container .load-more{
	 margin-bottom: 4rem;
}
.newVideoSec .video-item .post-content{
	background: transparent;
}
.newVideoSec .post-thumbnail.video-thumbnail{
	cursor:pointer;
	padding: 0;
}
.newVideoSec .post-thumbnail.video-thumbnail img{
	height:auto;
	min-height:auto;
}
.newVideoSec .post-thumbnail.video-thumbnail.longImg .play-icon {
    border: none;
    font-size: 50px;
    color: rgb(255, 88, 88);
    height: auto;
    width: auto;
	z-index:8;
    opacity: .7;
}
.newVideoSec .post-thumbnail.video-thumbnail.longImg:hover .play-icon {
opacity: 1;
}
.newVideoSec .post-thumbnail.video-thumbnail.longImg img{
	height:410px;
	object-fit:cover;
}
.newVideoSec .blog-listing.video-listing{
	margin-bottom:5px;
}
.post-thumbnail.video-thumbnail a {
    position: relative;
}
.newVideoSec .post-content .post-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    margin-bottom: 0;
}
.newVideoSec .video-item {
    margin: 0 5px;
    margin-bottom: 20px;
	border-radius:10px;
	background: #f4f4ef;
}
section.blog-section.newVideoSec .slick-prev{
    left: 0;
}
section.blog-section.newVideoSec .slick-next{
    right: 0;
}
.modal-dialog.ytVideo {
    max-width: fit-content;
    min-width: 350px;
}

.modal-dialog.ytVideo iframe {
    width: 100%;
    height: 480px;
}

.modal-dialog.ytVideo .modal-content {
    background: #fff0;
}

/* Close (X) button */
.videoModal .btn-close {
    position: absolute;
    top: -18px;
    right: -18px;
    font-size: 28px;
    color: #000000;
    background: rgb(255 255 255);
    border-radius: 50%;
    width: 25px;
    height: 25px;
    line-height: 28px;
    text-align: center;
    cursor: pointer;
    z-index: 1001;
    opacity: 1;
}
section.whyChooseSec.countryCards{
    padding: 30px 0;
}
section.whyChooseSec.countryCards .chooseListItem {
    display: flex;
    align-items: start;
    background: #fff;
    padding: 15px 10px;
    border-radius: 15px;
    box-shadow: 0px 0px 9px 1px #d4d4d4;
    margin-bottom: 30px;
    height: calc(100% - 30px);
    transition: .4s all ease;
    transform: translateY(0);
}

section.whyChooseSec.countryCards .chooseListItem:hover {
    transition: .4s all ease;
    transform: translateY(-6px);
}

section.whyChooseSec.countryCards .chooseListItem .chooseThumb {
    margin-top: 10px;
    border-radius: 100%;
    border: 1px solid #cf6a99;
    width: 60px;
    height: 60px;
    flex-shrink: 0; /* Prevent shrinking */
    display: flex;
    align-items: center;
    justify-content: center;
}

section.whyChooseSec.countryCards .chooseListItem .chooseContent {
    padding: 0 0px 0 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1; /* Take remaining space */
}

section.whyChooseSec.countryCards .chooseListItem .chooseThumb img {
    width: 55px;
    height: 55px;
    border-radius: 100%;
    object-fit: cover; /* Ensure image fits properly */
}

.chooseListItem .chooseContent {
    padding: 10px 19px;
}

.chooseListItem .chooseContent h3 {
    margin-bottom: 10px;
    font-weight: 400;
}

.chooseListItem .chooseContent p {
    margin-bottom: 10px;
    font-size: 16px;
}

.chooseListItem .chooseContent .btnSec a {
    border: 1.5px solid #d16996;
    font-weight: 300;
    font-size: 14px;
    padding: 3px 20px;
    color: #d16996;
    border-radius: 2px;
    display: inline-block;
    line-height: 20px;
    margin-right: 5px;
    margin-bottom: 5px;
}

.chooseListItem .chooseContent .btnSec a:hover {
    opacity: .8;
    background: #d16996;
    color: #fff;
    border-radius: 4px;
}