* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --pri-font: "Poppins", sans-serif;
    --pri-sub_title: #ff7900;

    --pri-link: #ff7900;
    --sec-btn: #ff7900;
    --ac-link: #ff7900;
    --link-hover: #ff7900;

    --btn-hover: #ff6d00;
    --sec-bg: #f8f9fa;

    --pri-text: #212529;
}

body {
    font-family: var(--pri-font);
    overflow-x: hidden !important;
}

.f-s {
    color: #ff7900;
}

a {
    text-decoration: none;
}

.f-2 {
    font-family: "Kaushan Script", cursive;
}


.sub_title {
    display: inline-block;
    color: var(--pri-sub_title);
    text-transform: uppercase;
    position: relative;

    letter-spacing: 3px;
}

@media screen and (max-width:600px) {
    .sub_title {
        font-size: 0.813rem;
    }

    .sub_title::before {
        width: 19px !important;
        left: -25px !important;
    }
}

.sub_title::before {
    position: absolute;
    content: '';
    top: 50%;
    width: 30px;
    height: 1px;
    background-color: var(--pri-sub_title);
    left: -35px;
}



/* breadcrump */
.breadcrump {
    position: relative;
    top: 0;
    min-height: 300px;
    background-image: url(../asset/sl_2.jpg);
    background-position: 100% 100%;
    background-size: cover;
    background-position: bottom 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.7);
}

.breadcrump-inner {
    /* display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center; */
    height: 100%;
    text-align: center;
    color: white;
}

.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%;
    }

}



/* BUTTONS */
.butn {
    display: inline-flex;
    align-items: center;
    padding: 0.563rem 1rem;
    color: var(--pri-btn-text);
    border-radius: 100px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.butn:hover {
    background-color: var(--btn-hover);
    color: #FFF;
    transform: scale(0.9);
}

.nav_butn {
    background-color: #ff7900;
    color: #FFF;
    transition: all 0.3s ease;

}



.butn_1 {
    background-color: #FFF;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.03px;
}

.butn_2 {
    background-color: var(--sec-btn);
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.03px;
    color: #FFF;
    width: 100%;
    justify-content: center;
}


/* BANNER------------------------------------------- */
.banner-slider {
    height: 100vh;
}

.banner-slider .slider_img,
.banner-slider .slider_img img {
    height: 100%;
    object-fit: cover;
}

.swiper-slide {
    position: relative;

}

.swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #00000083;
}

.slider-content {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.slider_subtitle {
    color: var(--pri-sub_title);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
}

.slider_title {
    color: #FFF;
}

.slider_desc {
    color: #FFF;
    font-weight: 300;
    opacity: 0.7;
}

.cl_caro {
    position: absolute;
    width: 100%;
    bottom: 3rem;
    display: flex;
    margin-bottom: 1rem;
    z-index: 20;
}

.cl_header {
    color: #FFF;
    text-align: center;
}

@media screen and (max-width:1000px) {
    .slider-content {
        top: 40%;
        width: 80%;
    }

    .cl_caro {

        margin-bottom: 3rem;

    }
}


@media screen and (max-width:600px) {
    .slider-content {
        top: 45%;
        width: 95%;
    }

}


/* NAVBAR--------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}


.navbar-toggler {
    color: #1c6758;
    background-color: #FFF;
    outline: none;
    border: none;
}

.navbar-toggler:focus {

    box-shadow: none;
}

.navbar .nav-item .nav-link {
    color: #FFF;
    font-weight: 400;
}

.navbar .nav-item .nav-link.active {
    color: var(--ac-link);
}

.navbar .nav-item .nav-link:hover {
    color: var(--link-hover);
}

.navbar .navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
}


@media screen and (max-width:992px) {
    .navbar .nav-item .nav-link {
        color: var(--pri-text) !important;
    }
}


/* NAVBAR SEC------------------------------------------------------------- */

.navbar.sec {
    position: relative !important;
}

.navbar.sec .nav-item .nav-link {
    color: var(--pri-text);

}

.navbar.sec .nav-item .nav-link.active {
    color: var(--ac-link);
}

.navbar.sec .nav-item .nav-link:hover {
    color: var(--link-hover);
}


/* sticky-navbar */
.navbar.sticky {
    background-color: #FFF;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.navbar.sticky .navbar-brand .lg_1 {
    display: none !important;
}

.navbar.sticky .navbar-brand .lg_2 {
    display: block !important;
}

.navbar.sticky .nav-link {
    color: var(--pri-text);
}

@media screen and (max-width:992px) {
    .navbar.sticky .navbar-brand img {}
}


/* SERVICES */
.sc-2.services {
    position: relative;
    background-color: var(--sec-bg);
}

.sc-2.services .ptr_2 {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    filter: brightness(0) saturate(100%) invert(48%) sepia(10%) saturate(427%) hue-rotate(167deg) brightness(90%) contrast(82%) opacity(25%);
}

.sc_2-box {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s ease;
}


.sc_2-box:hover .sc2_thumbnail>img {
    transform: scale(1.1);
}

.sc_2-box:hover .ser_ti {
    background-color: #1c6657;
    color: #FFF;
}

.sc2_thumbnail img {
    transition: all 0.5s ease;

}

.ser_header {
    position: relative;
    z-index: 3;
}

.ser_ti {
    font-size: 1.25rem;
    color: var(--pri-text);
    border-radius: 100px;
    padding: 0.563rem 0.75rem;
    background-color: #FFF;
    /* width: 90%; */
    margin: 0 auto;
    margin-top: -50px;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: all 0.5s ease;
}

.ser_body .body_inner {
    position: relative;
    z-index: 5;
}

/* .sc-2.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 25%;
    background-image: url(../asset/bg-1.jpg);
    background-repeat: no-repeat;
    z-index: 1;
    background-position: left center;
    background-size: cover;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    background-attachment: fixed;
} */

.ser_body {
    position: relative;
    padding: 30px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    margin-top: -30px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: 2;
}

.ser_body .ser_desc {
    font-weight: 300;
}

.wch.sc {
    position: relative;
}

.wch.sc .ptr_3 {
    position: absolute;
    top: 0;
    left: 0;
    background-position: center center;
    object-fit: cover;
    background-repeat: repeat;
    height: 100%;
    width: 100%;
    filter: brightness(0) saturate(100%) invert(48%) sepia(10%) saturate(427%) hue-rotate(167deg) brightness(90%) contrast(82%) opacity(12%);
    z-index: -1;
}


.wch.sc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background:
        linear-gradient(217deg, rgba(255, 255, 255, 0.8), rgba(255, 0, 0, 0) 70.71%),
        linear-gradient(127deg, rgba(255, 255, 255, 0.8), rgba(0, 255, 0, 0) 70.71%),
        linear-gradient(336deg, rgba(255, 255, 255, 0.8), rgba(0, 0, 255, 0) 70.71%);
}

.wch-wrapper {
    position: relative;
}

.wch-wrapper .ptrn-1 {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
    object-position: left center;
    object-fit: cover;
    z-index: -1;
    opacity: 0.3;
}

.wch-desc {
    font-weight: 300;
}

.wch-wrapper::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 50px;
    width: 100%;
    background: linear-gradient(#00000000, #ffffff);

}


.item .sc_2-box .ser_body::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.408);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(4px);
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    z-index: 1;
}

.wch-left-wrapper {
    display: flex;
    justify-content: center;
}

.wch-left-wrapper .wch-inner {
    position: relative;
    width: 90%;
    /* overflow: hidden; */
}


.wch-images {
    columns: 2;
    position: relative;

}

.wch-inner .cld_1{
    position: absolute;
    bottom: 0;
    right: 0;
    animation: move-left 20s linear infinite alternate ;
    max-width: 300px;
    /* z-index: -; */
}

.wch-inner .cld_2{
    position: absolute;
    top: 10%;
    right: 0;
    z-index: -1;
    max-width: 180px;
    animation: move-right 25s linear infinite alternate;

}

@keyframes move-right{
    0%{
        transform: translateX(0);
    }
    100%{
        transform: translateX(-200%);
    }
}

@keyframes move-left{
    0%{
        transform: translateX(-100%);
    }
    100%{
        transform: translate(0);
    }
}

.col_box {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #FFF;
    padding: 30px;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    background-image: linear-gradient(109.6deg, rgba(61, 131, 97, 1) 11.2%, #1c6758 91.1%);
    transition: all 0.3s ease;
}



.col_box .col_txt {
    font-size: 1.25rem;
    font-weight: 500;
}

.col_box>.em_lg {
    position: absolute;
    top: 0;
    left: 60%;
    width: 50%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7436%) hue-rotate(180deg) brightness(121%) contrast(93%) opacity(25%);
}



.experience {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    top: 65%;
    left: 40%;
    background-image: linear-gradient(109.6deg, rgba(61, 131, 97, 1) 11.2%, rgba(28, 103, 88, 1) 91.1%);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    padding: 0.625rem 0.938rem;
    border-radius: 10px;
    color: #FFF;
}

.experience h2 {
    font-weight: 600;
}

.wch-images {
    border-radius: 10px;
    overflow: hidden;
}

.wch-images img {
    display: block;
    margin-bottom: 10px;
    justify-content: center;
    border-radius: 10px;
}


.wch-images .wch-img1,
.wch-images .wch-img2 {
    /* max-width: 280px; */
    height: 100%;
    object-fit: cover;
    object-position: left center;
    transition: all 0.5s linear;
}

.wch-images .wch-img1:hover,
.wch-images .wch-img2:hover {
    transform: scale(1.05);
}

.wch-images .wch-img3 {
    width: fit-content;
    max-height: 320px;
    object-fit: contain;
    transform: translateY(30px);
}

.wch_list {
    list-style: none;
    padding-left: 1rem;
}

.wch_list li {
    display: flex;
    align-items: center;
    gap: 6px;
}

.wch_list .li_text {
    font-weight: 400;
    margin-bottom: 0;
}

.wch_list .li_icon {
    display: inline-block;
    width: 35px;
    height: 35px;
    flex-shrink: 0;
}


.wch_list .li_icon img {
    display: inline-block;
    object-fit: contain;
}

@media screen and (max-width:999px) {

    .wch-left-wrapper .wch-inner {
        width: 80%;
    }

    .wch_list {
        padding-left: 0;
    }

    .ser_ti {
        width: 100%;
    }
}

@media screen and (max-width:600px) {

    .wch-left-wrapper .wch-inner {
        width: 100%;
    }

    .col_box .col_txt {
        font-size: 1.125rem;

    }


    .ser_body {
        padding: 25px;

    }
}



/* mission and vision */
.msv-wrapper {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-row: 1;
}

.msv-img {
    grid-column: 1 / span 6;
    grid-row: 1;
    z-index: 1;
}

.msv-content {
    position: relative;
    background-color: #f8f8f8;
    grid-column: 6 /span 12;
    grid-row: 1;
    z-index: 2;
    margin-top: 10%;
    padding: 40px 30px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    overflow: hidden;
}



.msv-content::before {
    content: '';
    position: absolute;
    right: -20%;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: url(../asset/solar.png);
    object-fit: contain;
    background-position: left center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
    filter: opacity(25%);
}


.msv_title {
    font-weight: 600;
}

.ms_text {
    color: var(--pri-text);
    font-weight: 400;
}



@media screen and (max-width:1000px) {
    .msv-wrapper {
        display: flex;
        flex-direction: column;
    }

    .msv-content {

        margin-top: -100px !important;
        width: 95%;
        margin: 0 auto;
    }
}

@media screen and (max-width:600px) {

    .msv-content {

        margin-top: -50px !important;

    }

    .msv_title {
        text-align: center;
    }

}

/* 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);
}



/* TESTIMONIAL------------------------------------------------- */
.sct_3.testimonial {
    position: relative;
    z-index: 3;
    background-image: url(../asset/grid_bg.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    overflow: hidden;
}

.ptr-2 {
    position: absolute;
    bottom: -20%;
    left: 0;
    width: 50%;
    object-fit: contain;
    background-position: center center;
    z-index: 1;
    filter: brightness(0) saturate(100%) invert(46%) sepia(13%) saturate(310%) hue-rotate(167deg) brightness(94%) contrast(89%) opacity(50%);
}

.sct_3.testimonial>.wrapper {
    position: relative;
    height: 100%;
}


.sct_3.testimonial>.wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: var(--section-bg);
}


.sct_3.testimonial>.wrapper>.container,
.sct_3.testimonial>.wrapper>.container .testimonial_inner,
.sct_3.testimonial>.wrapper>.container .row {
    height: 100%;
}


.sct_3.testimonial .sct_3-box {
    background-color: #FFF;
    padding: 30px;
    border-radius: 30px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}


.sct_3-box .testi-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sct_3-box .athr {
    color: var(--pri-text);
    font-weight: 300;
}

.sct_3-box .rating i {
    color: #ec9937;
}

.sct_3-box .athr_img {
    height: 45px;
    width: 45px;
}

.sct_3-box .test_text {
    color: var(--pri-text);
    font-weight: 200;
    opacity: 0.8;
}



@media screen and (max-width:999px) {
    .sct_3.testimonial {
        position: relative;
        height: 100%;

    }


    .sct_3.testimonial>.wrapper::before {
        width: 100%;
        height: 50%;
        background-color: var(--section-bg);
    }

}


/* footer -------------------------------------------------------------------*/
.footer {
    position: relative;
    z-index: 1;
    background-color: #1f2437;
    background-image: url(../images/footer-bg.png);
    background-position: center center;
    background-attachment: scroll;
    margin-top: -8px;

}

@media(max-width:767px) {
    .footer {

        padding-bottom: 50px;
    }

    .footer-bottom {

        text-align: center;
    }
}

.ftr-desc-sec {
    color: #FFF;
}


.footer .widget {
    padding: 40px 0 0;
    height: 100%;
    overflow: hidden;
}

@media (max-width:500px) {
    .footer .widget {
        padding: 20px 0 0;

    }
}


.footer .widget .widget-title {
    font-size: 19PX;
    line-height: 16px;
    font-weight: 500;
    margin-bottom: 25px;
    display: inline-block;
    position: relative;
    color: #FFF;
}

.footer .textwidget p {
    color: #ffffff5e;
    font-weight: 400;
    font-size: 15px;
}

footer .widget-text {
    color: #FFF;
}


.footer .social-icons li>a {
    display: block;
    height: 50px;
    width: 50px;
    line-height: 36px;
    border-width: 1px;
    border-style: solid;
    text-align: center;
    transition: all .3sease-in-out;
    -webkit-transition: all .3sease-in-out;
    color: var(--pri-link);
}

.social-icons ul {
    display: flex;
    gap: 10px;

}

.social-icons.circle li>a {
    border-width: 1px;
    border-style: solid;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    display: block;
    background-color: transparent;
    font-size: 19px;
    border-radius: 50%;
}

.menu .menu-link a {
    display: block;
    padding: 0 0 11px 0;
    position: relative;
    color: #FFF;
    padding-left: 22px;
    font-weight: 200;
}

.widget .menu .menu-link a:before {
    position: absolute;
    content: "";
    top: 12px;
    left: 0;
    height: 1px;
    width: 10px;
    background-color: #ffffff5e;
}

.footer .widget .widget-title:before {
    position: absolute;
    content: '';
    bottom: -14px;
    left: 0;
    width: 18px;
    height: 2px;
    display: block;
    background-color: var(--sec-clr);
}



.frt-footer .widget-area:not(:nth-child(2)) .widget {
    background-color: #1a1f31;
}


.frt-footer .widget-area:nth-child(2) .widget {
    background-color: var(--sec-clr);
}

.frt-footer .widget-area:nth-child(2) .widget .featured-icon-box .featured-desc {
    color: #FFF !important;

}


.featured-icon-box .featured-desc {
    color: #FFF;
    font-weight: 200;
    opacity: 0.6;
}

.frt-footer .widget-area .widget {
    padding: 17px 30px;
    position: relative;
}

.frt-footer .featured-icon-box {
    display: flex;
    align-items: center;
}

.frt-footer .featured-icon-box .featured-content {
    padding-left: 15px;
}

.frt-footer .featured-icon-box .featured-icon .cmt-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    line-height: 46px;
    color: var(--pri-link);
    background-color: rgba(255, 255, 255, .07);
    box-shadow: 0 0 10px 0px rgba(0, 0, 0, .08);
}


.frt-footer .featured-icon-box .featured-title h5 {
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;
    text-wrap: wrap;
    margin-bottom: 0;
    color: #FFF;
}

.footer .adrs .adrs-icon {
    border-width: 1px;
    border-style: solid;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    display: block;
    background-color: transparent;
    font-size: 19px;
    border-radius: 50%;
    color: var(--pri-link);
}


.widget-adrs {
    position: relative;
    height: 100%;
    width: 100%;

}

.widget-adrs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: url(../images/map.png);
    background-size: contain;
    background-repeat: no-repeat;
    filter: opacity(50%);
    z-index: -1;

}


.adrs {
    display: flex;
    align-items: center;

}

.adrs .adrs-text {
    height: 100%;
    color: #FFF;
}

.adrs .adrs-text a {
    color: #FFF;
}

.adrs .adrs-icon {
    margin-right: 9px;
}

.adrs:nth-child(2) {
    padding-top: 18px;
}

.footer-bottom {
    padding-top: 40px;
    padding-bottom: 30px;
    border-top: 1px solid #ffffff1c;
}

.footer-bottom .copyright {
    color: #ffffff40;
    font-size: 12px;
}

.footer-bottom .design {
    color: #ffffff40;
    font-size: 12px;
}

.footer-bottom .design a {
    color: #ffffff8f;
}


/* STICKY SOCIAL ICON */

.sticky-social {
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 12px;
    top: 50%;
    right: 0;
    z-index: 9000;
    margin-right: 12px;
}



.pulse i {
    position: relative;
    z-index: 20;
    top: 16px;
    font-size: 30px;
}

.pulse {

    cursor: pointer;
    display: block;
    width: 60px !important;
    color: white;
    border-radius: 50px;
    text-align: center;
    transition: all 0.3s ease;

}


.pulse.btn-fb {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    bottom: 120px;
    right: 40px;
    color: #FFF;
    background-color: #4267B2;
}


.pulse.btn-inst {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    bottom: 190px;
    right: 40px;
    color: #FFF;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.pulse.btn-inst i {
    top: 0;
}

.pulse.btn-fb i {
    top: 0;
}

.pulse.btn-fb a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pulse.pulse.btn-whats:hover {
    background-color: rgba(0, 150, 0, 1);
    color: white;
}

.my-float {
    margin-top: 15px;
}

@keyframes pulse-btn {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 200, 0, 1);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(0, 200, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 200, 0, 0);
    }
}


@-webkit-keyframes pulse-btn {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(0, 200, 0, 1);
    }

    70% {
        -webkit-box-shadow: 0 0 0 20px rgba(0, 200, 0, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(0, 200, 0, 0);
    }
}

.pulse a {
    color: #fff;
}

#close {
    text-align: center;
    font-size: 20px;
    height: 3.125rem;
    width: 3.125rem;
    border-radius: 50%;
    background-color: #FFF;
    outline: none;
    border: none;
    transition: opacity 0.3s ease;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}


.i_open.show {
    opacity: 1;
}

.i_open.hide {
    opacity: 0;
}

.pulse.hide {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}


/* .ftrs {
    overflow-x: hidden;
} */


.ftr_box {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: #01563fc9;
    padding: 20px;
    border-radius: 20px;
    height: 100%;
    z-index: 5;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}



.ftr_box:hover {
    background-color: #1c6657;
    transform: translateY(-20px);
}

.ftr_box:hover .ftr-icon {
    background-color: #ffffff;
}

.ftr_box:hover .ftr-icon img {
    filter: brightness(0) saturate(100%) invert(27%) sepia(83%) saturate(369%) hue-rotate(118deg) brightness(98%) contrast(89%);
}

@media screen and (max-width:1000px) {
    .ftr_box:hover {
        transform: translateY(0) scale(1.03);
    }
}

.ftr_box .ftr-title {
    font-weight: 500;
    color: #FFF;
    font-size: 22px;
    text-align: center;
    width: 100% !important;
}

.ftr_box .ftr-icon {
    height: 60px;
    width: 60px;
    background-color: #1c6657;
    padding: 12px;
    border-radius: 50%;
    margin-bottom: 0.625rem;
}

.ftr-desc {
    color: #FFF;
    font-weight: 300;
    font-size: 15px;

}

.ftr_list {
    position: relative;
    z-index: 3;
}

.wch_bnr {
    background-color: var(--sec-bg);
    margin-top: -70px;
}

.wch_bnr img {
    max-width: 860px;
    max-height: 300px;
    object-fit: cover;
    object-position: top center;
}


/* contact page */
.contact .map {
    overflow: hidden;
    border-radius: 20px;
}

.contact_list {
    background-color: var(--sec-bg);
}

.cnt {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    border-radius: 14px;
    height: 100%;
    background-image: linear-gradient(109.6deg, rgba(61, 131, 97, 1) 11.2%, #1c6657 91.1%);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.cnt:hover {
    transform: scale(1.03);
}

.cnt_icon {
    width: 60px;
    height: 60px;
    background-color: #1c6657;
    padding: 12px;
    border-radius: 50%;
}

.cnt_icon img {
    filter: brightness(0) saturate(100%) invert(84%) sepia(79%) saturate(1%) hue-rotate(124deg) brightness(112%) contrast(101%);
}

.cnt_body {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.cnt_title {
    position: relative;
    display: inline-flex;
    color: #FFF;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1px;
}


.cnt_title::before {
    content: '';
    position: absolute;
    left: -35px;
    top: 50%;
    height: 1px;
    width: 30px;
    background-color: #dadada;
}

.cnt_title::after {
    content: '';
    position: absolute;
    right: -35px;
    top: 50%;
    height: 1px;
    width: 30px;
    background-color: #dadada;
}

.cnt_body .txt {
    color: #f8f9fa;
    font-weight: 200;
}