* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Poppins", sans-serif;
}


ul,
li {
    list-style: none;
}

a {

    text-decoration: none;
}

.combiner {
    position: relative;
}


.combiner .ptr-2 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    height: 100%;
    width: 50%;
    object-fit: contain;
    filter: opacity(25%);
    z-index: -1;
}


:root {
    --pri-color: #FFF;
    --pir-text: #212529;
    --navbar-bg: #343a40;

    --pri-btn-bg: #14213d;
    --sec-btn-bg: #fb8e5a;

    --pri-sub-title: #00233e;

    --nav-btn-bg: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);

}

.subtitle {
    letter-spacing: 2px;
    font-weight: 400;
    color: var(--pri-sub-title);
}


.butn {
    display: inline-flex;
    align-items: center;
    padding: 0.438rem 1rem;
    color: var(--pri-btn-text);
    border-radius: 100px;
    white-space: nowrap;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.5s ease;

}

.butn_2 {
    background: var(--nav-btn-bg);
    color: #212529;
}

.butn_1 {
    color: #000000;
    background: var(--nav-btn-bg);
}


/* TOP HEADER ------------------------------------------------*/
.top-header {
    background-color: #FFF;
}

.top_header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.top-header .tp-text {
    display: flex;
    flex-direction: column;

}

.top-header .tp-text a {
    color: var(--pir-text);
}

.tp-text .tp-title {
    font-size: 15px;
    font-weight: 400;
    color: #AEB2C2;
}


.top_header-social .tp_scl a {
    color: var(--pir-text);
    font-size: 1.188rem;
    margin: 0 0.75rem;
}

.top_header-social {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
}


.top-header_adrs {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    flex-grow: 1;
    align-items: center;
    justify-content: end;
}

.top-header_adrs .tp_icon {
    display: flex;
    align-content: center;
    justify-content: center;
    height: 45px;
    width: 45px;
    color: #FFF;
    background-color: var(--pri-btn-bg);
    border-radius: 100%;

}

.top-header_adrs .tp_icon>img {
    object-fit: contain;
    padding: 6px;
}

.top-header_adrs .tp_adrs {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    padding: 0.75rem 1rem 0.75rem 0.75rem;
}

.top-header_adrs .tp_adrs a {
    display: inline-flex;
    align-items: center;
    color: var(--pir-text);
    text-decoration: none;
    font-weight: 300;
    transition: all 0.3s linear;
}

.top-header_adrs .tp_adrs a:hover {
    color: var(--link-hover);
}

.top-header_adrs .tp_adrs a i {
    margin: 0 0.313rem;
}

.top-header_adrs .tp_adrs:nth-last-child(1) a {
    padding: 0.75rem 1rem 0.75rem 0.75rem;
    background: var(--nav-btn-bg);
    color: #000000;
    border-radius: 20px;
    border: 2px solid #ececec;
    transition: all 0.3s linear;
}

.top-header_adrs .tp_adrs:nth-last-child(1) a:hover {
    transform: scale(0.9);
    border-color: var(--link-hover);
}


/* NAVBAR--------------------------------- */
.navbar {
    background-color: #FFF;
}



.navbar .navbar-nav {
    width: 100%;
}



.navbar-toggler span {
    color: #FFF !important;
    
    
}


.navbar .nav-item {
    flex-grow: 1;
    padding: 0 10px;
}

.navbar .nav-item .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    color: #212529;
    font-weight: 300;
    text-align: center;
    white-space: nowrap;
}


.navbar .nav-link.active {
    background-color: #ffffff11;

}

@media screen and (min-width:1200px) {
    .navbar {
        background-color: var(--navbar-bg);
    }

    .navbar .nav-item .nav-link {
        color: #FFF;
    }
}

.nav-item.dropdown:hover .dropdown-menu{
    display: block;
}

.dropdown-item.active{
    background-color: transparent;
    color: #212529;
}

/* BANNER SLIDER */
.banner-slider .swiper-slide {
    position: relative;
}

/* @media screen and (min-width:1200px) {
    .banner-slider .swiper-slide {

        height: calc(100vh - 100px);
    }
} */

.bnr_desc {
    color: #FFF;
    font-weight: 300;
    font-size: 13px;
    text-align: center;
    width: 80%;
    opacity: 0.7;
}

.banner-slider .br-ti_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner-slider .swiper-slide .bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.banner-slider .swiper-button-prev {
    background-color: #e9ecef;
    left: 10px;
    top: 50% !important;
    padding: 10px 23px;
    border-radius: 50%;
}

.banner-slider .swiper-button-next {
    background-color: rgb(255, 255, 255);
    right: 10px;
    top: 50% !important;
    padding: 10px 23px;
    border-radius: 50%;
}

.banner-slider .swiper-button-next::after,
.banner-slider .swiper-button-prev::after {
    font-size: 20px;
    color: #0077b6;
}

.banner-slider {
    position: relative;

}

/* .banner-slider::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #00000052;
  z-index: 2;
} */


.banner-slider .slider-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* transform: translate(-50%, -50%); */
    z-index: 66 !important;
    /* background-color: red; */
    /* max-width: 40%; */
}

.banner-slider .swiper-pagination-bullet-active {
    background: #FFF;
}


.slider-content .sld-cont-inner {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 50%;
}


@media screen and (max-width:1200px) {
    .sld-cont-inner {
        max-width: 70% !important;
    }
}

@media screen and (max-width:855px) {
    .sld-cont-inner {
        max-width: 80% !important;
    }
}

@media screen and (max-width:800px) {
    .sld-cont-inner {
        max-width: 80% !important;
    }

    .slider_title {
        font-size: 45px !important;
    }
}

@media screen and (max-width:675px) {


    .slider_title {
        font-size: 42px !important;
    }
}



@media screen and (max-width:628px) {
    .sld-cont-inner {
        max-width: 95% !important;
    }

    .slider_title {
        font-size: 40px !important;
    }
}


@media screen and (max-width:600px) {


    .slider_title {
        font-size: 38px !important;
    }
}

@media screen and (max-width:478px) {


    .slider_title {
        font-size: 36px !important;
    }
}

@media screen and (max-width:455px) {


    .slider_title {
        font-size: 34px !important;
    }
}


@media screen and (max-width:428px) {


    .slider_title {
        font-size: 32px !important;
    }
}

.banner-slider .slider-content .slider_subtitle {
    position: relative;
    display: inline-block;
    color: var(--active-link);
    text-transform: uppercase;
    font-family: var(--f-2);
    letter-spacing: 2px;
    cursor: default;
}

.banner-slider .slider_img img {
    /* height: 100vh; */
    object-fit: cover;

}


.banner-slider .slider-content .slider_title {
    position: relative;
    color: #FFF;
    font-weight: 800;
    cursor: default;
    /* font-size: 3vw; */
    font-size: 50px;
    text-align: center;
}

.banner-slider .slider-content .slider_desc {
    color: #FFF;
    font-weight: 200;
    opacity: 0.8;
    max-width: 80%;
}

@media screen and (max-width:700px) {

    .banner-slider .swiper-button-prev,
    .banner-slider .swiper-button-next {
        display: none;
    }
}


.banner_content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.banner_content_inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}


.slider_content {
    width: 80%;
    /* background-color: red; */
}

.home-head {
    color: #FFF;
    letter-spacing: 2px;
    font-weight: 400;
}


.banner_subimage {
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner_subimage .banner_subimage_innner {
    max-width: 70%;
}

.banner_subimage .banner_subimage_innner img {
    width: 100%;
    object-fit: contain;
}




@media screen and (max-width:1200px) {
    .banner_subimage {
        height: 100%;
    }

    .banner_subimage .banner_subimage_innner {
        height: 100%;
        max-width: 70%;
    }

    .banner_subimage .banner_subimage_innner img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}


.swiper-slide-active .home-head,
.swiper-slide-active .butn_wrapper .butn,
.swiper-slide-active .banner_subimage_innner img,
.swiper-slide-active .home-subtitle {
    transform: translateY(30px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent 0.9s .7s ease-in-out 1 forwards;
}

.swiper-slide-active .banner_subimage_innner img {
    animation-delay: 1.5s;
}

.swiper-slide-active .home-subtitle {
    animation-delay: 1s;
}

.swiper-slide-active .home-head {
    animation-delay: 1.5s;
}

.swiper-slide-active .butn_wrapper .butn {
    animation-delay: 2s;
}

@keyframes showContent {
    to {
        transform: translateY(0);
        filter: blur(0);
        opacity: 1;
    }
}


.home-title {
    text-transform: uppercase;
    color: #fb8e5a;
    padding: 0.26vw 0.521vw;
    /* font-size: 48px; */
    margin-right: 0.365vw;
    font-weight: 800;
    position: relative;
    white-space: nowrap;
    z-index: 1;
    display: inline-block;
    opacity: 0;
    animation: fadeIn 0.3s 0.5s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


.home-title:before {
    content: '';
    width: 0;
    height: 100%;
    background: #ffffff;
    position: absolute;
    top: 0;
    left: 0;
    /* border-radius: 100px; */
    animation: animate 5s 2s ease alternate 1 forwards,
        blinkBorder 1s 7s step-start infinite;
    border-right: 3px solid #262626;
}

@keyframes blinkBorder {

    0%,
    100% {
        border-right-color: #262626;
    }

    50% {
        border-right-color: transparent;
    }
}

@keyframes animate {
    0% {
        width: 100%;
        z-index: 1;
    }

    50% {
        width: 0%;
        z-index: 1;
    }

    51% {
        width: 0%;
        z-index: -1;
    }

    100% {
        width: 100%;
        z-index: -1;
    }
}

.home-subtitle {
    color: #FFF;
    font-weight: 400;
    /* font-size: 44px; */
    font-size: 3.5vw;
}

.home-head {
    font-size: 1.5vw;
}

@media screen and (max-width:1200px) {


    .slider-body .col-bottom {
        /* height: 50%; */
        width: 100%;
    }

}

.banner_text_body {
    width: 100%;
    padding: 0 20px;
}

/* @media screen and (max-width:1200px) {
    .banner_text_body {
        text-align: center;
    }
}


@media screen and (max-width:1420px) {
    
    .home-title {
        font-size: 46px;
    }
}


@media screen and (max-width:1350px) {
    .home-subtitle {
        font-size: 42px;
    }

    .home-title {
        font-size: 44px;
    }
}

@media screen and (max-width:1300px) {
    .home-subtitle {
        font-size: 40px;
    }

    .home-title {
        font-size: 40px;
    }
}

@media screen and (max-width:1250px) {
    .home-subtitle {
        font-size: 38px;
    }

    .home-title {
        font-size: 38px;
    }
}


@media screen and (max-width:1100px) {
    .home-subtitle {
        font-size: 36px;
    }

    .home-title {
        font-size: 36px;
    }
}

@media screen and (max-width:900px) {
    .home-subtitle {
        font-size: 33px;
    }

    .home-title {
        font-size: 34px;
    }
}


@media screen and (max-width:800px) {
    .home-subtitle {
        font-size: 32px;
    }

    .home-title {
        font-size: 32px;
    }
}

@media screen and (max-width:700px) {
    .home-subtitle {
        font-size: 30px;
    }

    .home-title {
        font-size: 30px;
    }
} */

/* ABOUT */

.abt_img-inner {
    position: relative;
}

.abt_img-inner.wch{
    max-width: 80%;
}

@media (max-width:500px) {
    .abt_img-inner.wch{
        max-width: 90%;
    }
}

.abt_img-inner img {
    position: relative;
}

.abt_img-inner.sec::before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 100px 100px 0 0;
    border-color: #ffffff transparent transparent transparent;
    transform: rotate(0deg);
    z-index: 20;
}

.abt_img-inner.th::before {
    display: none;
}

.abt_img-inner.sec.nd::before {
    display: none;
}

.abt_img-inner::before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 100px 100px 0 0;
    border-color: #dee2e6 transparent transparent transparent;
    transform: rotate(0deg);
    z-index: 20;

}

@media screen and (max-width:992px) {
    .abt_img-inner::before {
        border-color: #f8f9fa transparent transparent transparent;


    }
}

.abt_image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}


.abt_image-wrapper .abt_experience {
    position: absolute;
    right: 30px;
    bottom: 0;
    background-color: #4f000b;
}


.abt_experience_inner {
    position: relative;
    padding: 30px;
}

.abt_experience_inner::before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 50px 50px 0 0;
    border-color: transparent transparent transparent transparent;
    transform: rotate(0deg);

    z-index: 20;

}


.abt_image-wrapper::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 210%;
    width: 50%;
    margin-top: -300px;
    transform: skewY(-22deg);
    background-color: #dee2e6;
    z-index: -1;
}

@media screen and (max-width:992px) {
    .abt_image-wrapper::before {
        background-color: #f8f9fa;
    }
}


.abt_img-inner {
    max-width: 100%;
}


.abt_img-inner.sec {
    max-width: 90%;
}


@media screen and (max-width:1250px) {
    .abt_img-inner {
        max-width: 90%;
    }
}

@media screen and (max-width:1200px) {
    .abt_img-inner {
        max-width: 95%;
    }
}

@media (min-width:768px) and (max-width:991px) {
    .abt_img-inner {
        max-width: 85%;
    }
}


@media screen and (max-width:499px) {
    .abt_img-inner {
        max-width: 100%;
    }
}


@media screen and (max-width:1100px) {}

.wcu-card {
    position: relative;
    overflow: hidden;
    /* transition: opacity 0.5s ease, transform 0.5s ease; */

}



.wcu-card img {
    width: 100%;
    object-fit: cover;
    object-position: center center;
}

.ych-head {
    margin-bottom: var(--main-head-margin);
    font-size: var(--sec-main-head-size);
    color: #333333;
    font-family: var(--pri-font-family);

}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 99;
    padding: 20px;
    text-align: center;
    transition: 0.5s ease;

}

.card-content .sct1_head {
    font-size: 24px;
    font-weight: 400;
    color: #FFF;
}


.wcu-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, transparent 1%, transparent 10%, #000);

    opacity: 0.8;
}

.lazy {
    transition: 0.5s ease;
}

.wcu-card:hover img {
    transform: scale(1.04);
}

.card-content>h4 {
    color: #fff;
    font-family: var(--pri-font-family);
    font-weight: 600;
}

.card-content>p {
    opacity: 0;
    transform: translateY(150px);
    visibility: hidden;
    display: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.wcu-card:hover .card-content>p {
    display: block;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    animation: zoomup 0.3s ease-in-out;
    color: #fff;
}

@keyframes zoomup {
    0% {
        transform: translateY(150px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.sct1_card {
    position: relative;
}

.sct1_card::before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 100px 100px 0 0;
    border-color: #001f36 transparent transparent transparent;
    transform: rotate(0deg);
    z-index: 20;
}

.sct1_card:hover {}


@media screen and (max-width:992px) {
    .sct1_card::before {
        border-color: #ffffff transparent transparent transparent;
    }
}

.sct1_card .serv_btn>a {
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative;
    text-decoration: none;
    background-color: #e9ecef;
    color: #00233e;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    transition: all 0.5s ease;
}

.sct1_card .serv_btn>a:hover{
    color: #FFF;
    background-color: #001d3d;
}

.sct1_card .serv_btn>a .serv_ic {
    border: 3px solid #00233e;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border-radius: 100%;
}


@media screen and (max-width:992px) {


    .sct_2 .services .service_header .subtitle {
        color: #9d0208 !important;
    }

    .sct_2 .services .service_header .title {
        color: #262626 !important;
    }
}



.sct_2 .services {
    position: relative;
    overflow: hidden;
}

.sct_2 .services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 50%;
    width: 100%;
    background-color: #001f36;
    transform: skew(-22deg);
    margin-left: -300px;
    z-index: -1;

}

@media screen and (max-width:1250px) {
    .sct_2 .services::before {
        margin-left: -250px;
    }
}

@media screen and (max-width:1100px) {
    .sct_2 .services::before {
        margin-left: -220px;
    }
}

@media screen and (max-width:992px) {
    .sct_2 .services::before {
        display: none;
    }
}

.sct-3{
    position: relative;
}

.sct-3_bg{
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    object-position: center center;
    object-fit: cover;


}


.sct-3 .why-choose-us {
    position: relative;
    overflow: hidden;
}


.text_bg_marquee {
    display: block;
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    z-index: -1 !important;
}



.text_bg_marquee_sec {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    z-index: 1 !important;
}


@media screen and (max-width:992px) {
    .text_bg_marquee_sec {
        top: auto;
        left: 50%;
        transform: translate(-50%, 0);
        bottom: 0 !important;
    }

    .text_bg_marquee_sec .text_bg {
        font-size: 200px;
    }

}


@media screen and (max-width: 900px) {
    .text_bg_marquee {
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(90deg);
        width: 100%;
        height: auto;
        z-index: -1 !important;
        text-align: center;
    }
}


.text_bg {
    color: #49505722;
    font-size: 300px;
    font-weight: 900;
}

.wch_right {
    position: relative;
    display: flex;
}



@media screen and (min-width:1200px) {
    .wch_right.sec {
        min-height: 400px;
    }
}

.wch_content {
    position: relative;
    z-index: 50;
}



.wch_right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 30%;
    height: 100%;
    width: 300%;
    background-color: #001f36;
    z-index: -1;
    margin-right: -300px;
    transform: skew(-22deg);

}

.wch_right .wchright_img {
    position: relative;
    flex-basis: 50%;
    margin-right: -2px;
    z-index: 2;
}


.wch_right .wchright_img img {
    /* max-height: 600px;
    object-fit: contain; */
}


.wch_right .wch_right_content {
    position: relative;
    flex-grow: 1;
    /* margin-left: 30px; */
}

.wch_right .wch_right_content .counters {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}


@media screen and (max-width:767px) {


    .wch_right {
        flex-direction: column;
    }

}

.wch_right .wch_right_content .counters .count {
    padding: 20px;
    background-color: #FFF;
    display: flex;
    flex-direction: column;
    align-items: center;

}

.wch_right .wch_right_content .counters .count .count_no>span {
    font-size: 35px;
    font-weight: 800;
    font-family: "Orbitron", sans-serif;
    color: #9d0208;
}

/* @media screen and (max-width:1100px) {
    .wch_right.sec {
        min-height: 350px;
    }
}

@media screen and (max-width:420px) {
    .wch_right.sec {
        min-height: 300px;
    }
} */

@media screen and (max-width:350px) {
    .wch_right.sec {
        min-height: 100%;
    }
}

/* FOOTER */
.footer-area {
    position: relative;
    background-color: #001f36;
    width: 100%;
    height: 100%;
}


.footer-area .ftr_ptr {
    position: absolute;
    bottom: 0;
    width: 100%;
    max-height: 50%;
    /* height: 50%; */
    object-fit: cover;
    left: 0;
    filter: opacity(25%);
}

.footer-area>.container {
    position: relative;
    z-index: 5;

}

footer {
    margin-top: -6px;
    position: relative;
    overflow: hidden;
}


footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    background-image: url(../asset/floor-coverings.png);
    z-index: 1;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    filter: opacity(0.05);

}

@media (max-width:999px) {
    footer::before {

        height: 50%;
        width: 100%;

        background-size: contain;

    }
}

footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 0 400px 400px;
    border-color: transparent transparent #00233e transparent;
    transform: rotate(0deg);

}

.footer-title>h4 {
    color: #ffff !important;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 2px;
    padding-bottom: 39px;
}

.footer-area .footer-list .footer-title ul li {
    text-decoration: none;
}

.footer-area .footer-list .footer-title ul li a {
    color: #fff;
    font-weight: 200;
    text-decoration: none;
    line-height: 36px;
    transition: all 300ms linear;
    -webkit-transition: all 300ms linear;
}

.footer-area .footer-list .footer-title ul li a:hover {
    color: #fff;
}

.footer-area .footer-copyright {
    margin-top: 50px;
    border-top: 1px solid #ffffff2c;
}

.footer-area .footer-copyright p {
    color: #fff;
    opacity: 0.2;
    font-weight: 200;

}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-socials li a {
    padding: 13px 10px;
    border-radius: 50%;
    background-color: #fff;
}

.adrs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.adrs-icon {
    color: #FFF;
    margin-right: 12px;
}

.adrs-text a,
.adrs-text {
    color: #FFF;
    font-weight: 300;
}

.adrs-text>ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-socials li a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    padding: 14px;
    background-color: #FFF;
}

.footer-socials li a i {
    color: #14213d;
    font-size: 1.25rem;
}

@media (max-width:999px) {

    .footer-about,
    .footer-list {
        margin-bottom: 30px;
    }
}

.footer-prd_links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.footer-copyright a {
    color: #FFF;

}

.sct_4 {
    position: relative;
    background-color: #f8f9fa;

}

.sct_4 .hw_w {
    position: relative;
    z-index: 2;
}

.step {
    padding: 10px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    background-color: #FFF;
    margin-bottom: 18px;
}

.v-stepper {
    position: relative;
}


.step .circle {
    position: relative;
    background-color: white;
    border: 3px solid gray;
    border-radius: 100%;
    width: 20px;
    height: 20px;
    margin-top: 10px;
    display: inline-block;
    z-index: 1;
}

.step .line {
    top: 23px;
    left: 9px;
    height: 120%;
    position: absolute;
    border-left: 3px solid gray;
}

.step.completed .circle {
    visibility: visible;
    background-color: #b2b2b2;
    /* border-color: #343a40; */
    border: none;
}

.step.completed .line {
    border-left: 3px solid #d2d2d2;
}

.step.active .circle {
    visibility: visible;
    border-color: rgb(6, 150, 215);
}

.step.empty .circle {
    visibility: hidden;
}



@media screen and (min-width:992px) {
    .step:last-child .line {
        border-left: 3px solid white;
        z-index: -1;
    }
}

.step-desc {
    color: #343a40;
    font-weight: 300;
}

.step .content {
    padding-left: 20px;
}

.step_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    background-color: #00233e;
    border-radius: 100%;
    margin-bottom: 0.75rem;
}

.step_icon>img {
    padding: 6px;
}

.step_title {
    display: block;
    font-size: 22px;
    font-weight: 500;
    color: #001f36;
    transition: all 0.3s ease;
}

.step_title:hover {
    color: #003f88;
}

@media screen and (max-width:991px) {
    .step.sec .line {
        border-left: 3px solid #d2d2d2;
    }

    .step.completed.last .line {
        border-left: 3px solid #ffffff;
    }
}


/* TESTIMONIAL */
.testimonial {
    position: relative;

}

.testimonial::after {
    content: '';

}


.testimonial .wrapper {
    position: relative;
    z-index: 5;
}


.testi-content {
    background-color: #fff;
    height: 100%;
    min-height: 200px;
    padding: 60px 30px 20px 30px;
}

.testimonial>.container {
    position: relative;
    z-index: 2;
}

.testimonial-carousel {

    max-height: none !important;
    display: flex !important;
    height: 100% !important;
}

.testimonial .owl-carousel .owl-stage-outer {
    height: max-content !important;

    max-height: none !important;
    height: 100% !important;
}

.testimonial .item {
    height: max-content;
}

.testimonial .owl-item {
    padding: 20px 0 20px 0;
}

.testimonial .testi-content {
    position: relative;
    margin: 16px;
    margin-top: 0 !important;
    -webkit-box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.07);
    height: fit-content;
    z-index: 10;
}

.testimonial .testi-content::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    background-image: url(../asset/quote.png);
    height: 50%;
    width: 100%;
    background-repeat: no-repeat;
    z-index: 1;
    background-position: center center;
    background-size: contain;
    opacity: 0.1;
}

.testimonial .testi-content .quote {
    position: absolute;
    z-index: 20;
    height: 90px;
    width: 90px;
    top: -50px;
    right: 0;
}

.athr-text {
    font-style: italic;
    color: rgb(113, 113, 113);
}

.athr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.place {
    color: rgb(113, 113, 113);
    font-size: 14px;
    margin-left: 10px;
}

.athr .athr-img {
    height: 50px;
    width: 50px;
}

.testimonial .rating i {
    font-size: 19px;
    color: #f48c06;
}


@media(max-width:999px) {
    .testimonial .testi-content {

        margin: 0;

    }

    .testimonial-carousel {
        padding: 0;

    }
}



/* GALLERY */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    grid-template-rows: repeat(6, 5vw);
    grid-gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    width: 100%;
    border-radius: 17px;
    box-sizing: border-box;
}

.gallery-item .glry-overlay {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    transform: translateY(100%);
    background-color: #000000ab;
    border-radius: 17px;
    transition: all 0.3s ease;
}

.gallery-item .glry-overlay a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    border-radius: 100%;
    background-color: #ffc300;
    color: #FFF;
    font-weight: 600;
}


.gallery-item .glry-overlay a:hover {
    background-color: #bf953f;
}

.gallery-item:hover .glry-overlay {
    transform: translateY(0);
}

.gallery-title {
    position: relative;
    color: #FFF;
    font-size: 22px;
    display: block;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: "Playfair Display", serif;

}

.gallery-title::before {
    position: absolute;
    content: '';
    height: 1px;
    width: 40px;
    left: -50px;
    top: 50%;
    background-color: #FFF;
}

.gallery-title::after {
    position: absolute;
    content: '';
    height: 1px;
    width: 40px;
    right: -50px;
    top: 50%;
    background-color: #FFF;
}

.gallery-item .gallery-cont {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 50%;
    width: 100%;
    background: linear-gradient(#00000000, #000000b3);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: all 300ms linear;

}

.gallery-item-1 {
    grid-column-start: 1;
    grid-column-end: 4;
    grid-row-start: 1;
    grid-row-end: 7;
}

.gallery-item-2 {
    grid-column-start: 4;
    grid-column-end: 7;
    grid-row-start: 1;
    grid-row-end: 4;
}

.gallery-item-3 {
    grid-column-start: 4;
    grid-column-end: 7;
    grid-row-start: 4;
    grid-row-end: 7;
}

.gallery-item-4 {
    grid-column-start: 7;
    grid-column-end: 10;
    grid-row-start: 1;
    grid-row-end: 7;
}


.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}


@media (min-width:700px) and (max-width:1000px) {
    .gallery-container {
        display: flex !important;
        flex-wrap: wrap;
        width: 100%;
    }

    /* .gallery-item {
        width: calc(50% - 7.5px);
        grid-column: auto !important;
        grid-row: auto !important;
    } */

}

@media (max-width:700px) {
    .gallery-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        max-width: 95%;
        margin: 0 auto;
    }

    .gallery-img {
        width: 100%;
        max-height: 400px;
        object-fit: cover;
    }

    .gallery-item-1,
    .gallery-item-2,
    .gallery-item-3,
    .gallery-item-4 {
        grid-column-start: 1;
        grid-column-end: 2;
        grid-row-start: auto;
        grid-row-end: auto;
    }
}

.fs_5 {
    font-size: 14px;
}

/* breadcrump */
.breadcrump {
    position: relative;
    top: 0;
    min-height: 300px;
    background-image: url(../asset/trueland-tourism-providers.jpg);
    background-position: 100% 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    overflow: hidden;
}



.breadcrump-inner>.row {
    height: 100%;
}

.breadcrump-overlay {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.767);
}

.breadcrump-inner {
    /* display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center; */
    height: 100%;
    text-align: center;
    color: white;
}

.breadcrump .sub_title {
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 2px;
    font-size: 0.75rem;
}

.bread_link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.bread_link a {
    color: #FFF;
}

.bread_link .active {
    color: #ffc300;
}

.bd_title {
    color: var(--pri-title);
}

.breadcrump h1 {
    margin: 0 auto;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: "Gilda Display", serif;
    padding: 0 15px;
}


.breadcrump-inner {
    position: relative;
    z-index: 15;
}

@media screen and (max-width:999px) {
    .breadcrump::before {
        width: 100%;
    }

    .breadcrump .ptr-1 {
        width: 100%;
    }

}


/* contact page */

.contact {
    background-color: #f8f9fa;
}

.contact-body {
    height: 100%;

}

.contact-body-inner {
    position: relative;
    height: 100%;
    background-image: radial-gradient(circle 815px at 23.4% -21.8%, #001d3d 0.2%, #001d3d 100.2%);
    border-radius: 10px;
    padding: 40px 30px 20px 30px;

    color: #FFF;
    transition: all 0.3s linear;

}

.cnt-head-desc {
    font-weight: 200;
    filter: opacity(0.9);
}

.cnt {
    display: flex;
    align-items: center;

}

.cnt-text {
    padding: 10px;
}

.cnt-icon {
    padding: 10px;
    margin-right: 10px;
}

.cnt-icon i {
    color: #ddb321;
}

.cnt-header {
    border-bottom: 1px solid #ffffff31;
}

.cnt-text {
    color: #FFF;
    font-weight: 200;
    border-radius: 10px;
}


.cnt-text a {
    color: #FFF;
}

@media (max-width:999px) {
    .contact-body-inner {

        padding: 40px 20px 20px 20px;


    }
}

.cnt-text:hover {
    background-color: rgba(255, 255, 255, 0.153);
    font-weight: 300;
    color: var(--sec-color);
}

/* GALLERY  */
:root {
    --card_width: 350px;
    --row_increment: 10px;
    --card_border_radius: 16px;
    --card_small: 26;
    --card_med: 33;
    --card_large: 45;
}

.gallery {
    display: block;
    position: relative;
}

.pin_container {
    margin: 0;
    padding: 0;
    width: 95vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: repeat(auto-fill, var(--card_width));
    grid-auto-rows: var(--row_increment);
    justify-content: center;
}

.pin_container>.card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 100%;
    background-color: #00000092;
    z-index: 1;
    transition: all 0.3s linear;
}

.pin_container>.card:hover .overlay {
    height: 100%;
}

.pin_container>.card .cd_text {
    position: absolute;
    text-align: center;
    z-index: 2;
    height: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--pri-link);
    opacity: 0;
    transition: all 0.3s linear;
}

.pin_container>.card .cd_text>.text {
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pin_container .card:hover .cd_text {
    height: 100% !important;
    opacity: 1;
}

.card {
    position: relative;
    padding: 0;
    margin: 15px 10px;
    border-radius: var(--card_border_radius);
    border: none !important;
    overflow: hidden;
    border-radius: 15px;
}

.pin_container .card:hover img {
    transform: scale(1.1);
}

.card img {
    object-fit: cover;
    transition: transform 0.3s ease-out;
}

.card_small {
    grid-row-end: span var(--card_small);
}

.card_medium {
    grid-row-end: span var(--card_med);
}

.card_large {
    grid-row-end: span var(--card_large);
}


.services.sec {
    background-color: #f8f9fa;
}


.service_card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border-bottom: 4px solid #ffffff;
    transition: all 0.5s ease;
    background-color: #FFF;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    height: 100%;
}


.service_card:hover {
    border-bottom: 4px solid #001d3d;
}

.service_thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background-color: #FFF;
}


.service_card .service_thumbnail img {
    transition: all 0.5s ease;
}

.service_card:hover .service_thumbnail img {
    transform: scale(1.05);
}

/* .service_thumbnail::before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 100px 100px 0 0;
    border-color: #f8f9fa transparent transparent transparent;
    transform: rotate(0deg);
    z-index: 20;
} */

.service_title {
    display: block;
    font-size: 22px;
    font-weight: 600;
    color: #001f36;
}

.service_title:hover {
    color: #003f88;
}

.service-icon {
    position: relative;
    height: 70px;
    width: 70px;
    border-radius: 100%;
    border: 2px solid #FFF;
    background-color: #FFF;
    margin-left: 20px;
    z-index: 2;
}

.service-inner-content {
    position: relative;
    padding-top: 30px;
    margin-top: -28px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 35px;

    background-color: #FFF;
}


.service-inner-content {
    position: relative;
    padding-top: 0;
    margin-top: 0;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 35px;

    background-color: #FFF;
}

.service_des {
    color: #343a40;
    font-weight: 400;
    font-size: 15px;
}

.service_btn a {
    font-size: 15px;
}

.serv-cnt-imgolv {
    position: absolute;
    right: 10%;
    top: 10%;
    height: 100px;
    width: 100px;
    filter: opacity(10%);

}

.service-icon img {
    padding: 9px;
    object-fit: contain;
}

.service_content {
    display: flex;
    flex-direction: column;
    margin-top: -50px;
}

.service_content.sec {
    margin-top: 0;

}

.serv_title_sec{
    font-size: 15px;
    color: #bf953f;
}

.serv_highlights {
    max-height: 100px;
    overflow-y: auto;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding-top: 18px;
    padding-left: 15px;

    &::-webkit-scrollbar {
        width: 5px;
    }

    &::-webkit-scrollbar-track {
        background: #f1f1f1; 
        border-radius: 10px; 
    }

    &::-webkit-scrollbar-thumb {
        background: #adb5bd;
        border-radius: 10px; /* Rounded scroll thumb */
    }

    &::-webkit-scrollbar-thumb:hover {
        background: #ffc300;
    }

    &::-webkit-scrollbar-button {
        display: none;
    }
}

.serv_highlights ul {
    display: flex;
    column-gap: 16px;
    flex-wrap: wrap; 
    align-items: center; 
    list-style: none; 
    padding-left: 0; 
}

.serv_highlights ul li {
    position: relative;
    list-style: none; 
    white-space: nowrap;
    padding-left: 5px; 
    margin-right: 15px; 
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 400;
}

.service_content.th{
    margin-top: -40px !important;
    margin: 0 10px;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px ;
    overflow: hidden;
}

.serv_highlights ul li::before{
    content: '';
    position: absolute;
    top: 50%;
    left: -5px;
    transform: translateY(-50%);
    height: 5px;
    width: 5px;
    border-radius: 100%;
    background-color: #000;
}

.badge-custom{
    position: relative;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 10px;
    background-color: #ffc300;
}


.logo-slider {
    overflow: hidden;
    padding: 30px 0 0 0;
    white-space: nowrap;
    position: relative;
}

.logo-slider:hover .logos-slide {
    animation-play-state: paused;
}

.logos-slide {
    display: inline-block;
    animation: 45s slide infinite linear;
}

.logos-slide img {
    width: 183px;
    height: 100%;
    margin: 0 40px;
}


@keyframes slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}