﻿/*==============header Css start===================*/


.sidebar-open {
    overflow: hidden;
    background: azure;
}

.img-wid-logo {
    width: 90px;
}

.dwn-brc {
    background: black;
    padding: 10px 12px !important;
    font-size: 14px !important;
    border-radius: 8px;
}

.animated {
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
}

    .animated.infinite {
        animation-iteration-count: infinite;
        -webkit-animation-iteration-count: infinite;
    }

.slideInDown {
    animation-name: slideInDown;
    -webkit-animation-name: slideInDown;
}

@keyframes slideInDown {
    0% {
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
    }
}



.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}

.sidebar-open .overlay {
    opacity: 1;
    visibility: visible;
}

.header {
    padding: 0px 0;
    /* box-shadow: 3px 3px 3px #ccc; */
    z-index: 9999;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
}

    .header.active {
        opacity: 100;
        position: fixed;
        z-index: 1000;
        top: 0;
        width: 100%;
        background: linear-gradient(to right, #161616, #83570a);
        -webkit-box-shadow: -5px 0 5px 0 rgba(26,34,93,0.74);
        -moz-box-shadow: -5px 0 5px 0 rgba(26,34,93,0.74);
        border-bottom: 2px solid #e7cd7d;
        box-shadow: -5px 0 5px 0 rgba(26,34,93,0.74);
        -webkit-animation-duration: 1s;
        animation-duration: 1s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        animation-name: fadeInDown;
        backdrop-filter: blur(10px);
    }

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.logo {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
}



.row-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.nav-list {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    list-style: none;
}

    .nav-list li {
        padding: 0px 15px;
        /* font-size: 17px; */
    }

        .nav-list li a {
            color: white;
            font-size: 16px;
            text-decoration: none;
            /* padding: 7px 11px; */
            position: relative;
            display: block;
        }

            .nav-list li a::after {
                content: "";
                /* background: #1ca6d7; */
                width: 0;
                background: linear-gradient(to right, #e2c673, #ba882d);
                height: 2px;
                position: absolute;
                left: 0;
                bottom: -2px;
                transition: all 0.3s linear;
            }

        .nav-list li .dwn-brc::after {
            content: none;
        }

        .nav-list li a:hover::after {
            width: 100%;
        }

        .nav-list li.active a::after {
            width: 100%;
        }

        .nav-list li.with-submenu {
            position: relative;
            cursor: pointer;
            display: flex;
            align-items: center;
        }

            .nav-list li.with-submenu > a {
                margin-right: 10px;
            }

            .nav-list li.with-submenu::after {
                content: "";
                border-bottom: 2px solid #fff;
                border-right: 2px solid #fff;
                position: absolute;
                width: 5px;
                height: 5px;
                transform: rotate(45deg);
                right: 0;
                margin-bottom: 5px;
                transition: all 0.3s;
            }

            .nav-list li.with-submenu:hover::after {
                transform: rotate(225deg);
                margin-top: 10px;
            }

            .nav-list li.with-submenu .submenu {
                position: absolute;
                left: 50%;
                top: 100%;
                background: #ffffff;
                border-radius: 10px;
                transform: translateX(-50%);
                box-shadow: 2px 2px 1px 2px #ccc;
                overflow: hidden;
                opacity: 0;
                visibility: hidden;
                transition: all 0.5s ease-in-out;
            }

            .nav-list li.with-submenu:hover .submenu {
                opacity: 1;
                visibility: visible;
            }

            .nav-list li.with-submenu .submenu li {
                padding: 0;
            }

            .nav-list li.with-submenu .submenu a {
                color: #000000;
                display: block;
                padding: 8px 15px;
                transition: all 0.3s;
            }

                .nav-list li.with-submenu .submenu a:hover {
                    background-color: rgba(49, 20, 50, 0.3);
                }
            /* .nav-list li.with-submenu .submenu a::after {
	display: none;
} */
            .nav-list li.with-submenu > a {
                position: relative;
                z-index: 1;
            }

.hamburger {
    display: none;
    z-index: 99;
}

    .hamburger .line {
        width: 31px;
        height: 3.5px;
        background-color: #ffffff;
        display: block;
        margin: 5px 0;
        -webkit-transition: all 0.3s ease-in-out;
        opacity: 1;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

        .hamburger .line:nth-child(2) {
            width: 15px;
        }

    .hamburger:hover {
        cursor: pointer;
    }

    .hamburger.is-active .line {
        background-color: white;
    }

        .hamburger.is-active .line:nth-child(2) {
            opacity: 0;
        }

        .hamburger.is-active .line:nth-child(1) {
            -webkit-transform: translateY(6.5px) rotate(45deg);
            -ms-transform: translateY(6.5px) rotate(45deg);
            -o-transform: translateY(6.5px) rotate(45deg);
            transform: translateY(6.5px) rotate(45deg);
        }

        .hamburger.is-active .line:nth-child(3) {
            -webkit-transform: translateY(-6.5px) rotate(-45deg);
            -ms-transform: translateY(-6.5px) rotate(-45deg);
            -o-transform: translateY(-6.5px) rotate(-45deg);
            transform: translateY(-6.5px) rotate(-45deg);
        }

.bg-color-new {
    background: linear-gradient(to right, #161616, #83570a);
    /* position: fixed; */
}

@media screen and (max-width: 991px) {
    .header {
        padding: 0px 0;
    }

    .hamburger {
        display: block;
    }

    .nav-wrap {
        position: fixed;
        top: 0;
        right: -100%;
        transform: translateX(100%);
        background: linear-gradient(to right, #161616, #83570a);
        transition: all 0.5s linear;
        max-width: 300px;
        width: 100%;
        height: 100vh;
        /* box-shadow: 2px -5px 5px 3px #ccc; */
        opacity: 0;
        visibility: hidden;
        z-index: 0;
    }

        .nav-wrap.is-open {
            transform: translateX(0);
            opacity: 1;
            visibility: visible;
            right: 0;
            z-index: 9;
        }

    .nav-list {
        flex-direction: column;
        align-items: unset;
        opacity: 0;
        visibility: hidden;
        transition-delay: 0.5s;
        transition-duration: 1s;
        transition-property: all;
        padding: 10px;
    }

    .nav-wrap.is-open .nav-list {
        opacity: 1;
        visibility: visible;
    }

    .nav-list li {
        padding: 7px 10px;
    }

        .nav-list li a {
            color: white;
            text-align: left;
            display: inline-block;
            padding: 2px 0;
        }

            .nav-list li a::after {
                background-color: #311432;
            }

        .nav-list li.with-submenu {
            display: block;
        }

            .nav-list li.with-submenu::after {
                border-color: #311432;
                right: 10px;
                top: 12px;
            }

            .nav-list li.with-submenu:hover::after {
                transform: rotate(45deg);
                margin-top: 0;
            }

            .nav-list li.with-submenu.is-open::after {
                transform: rotate(225deg);
                margin-top: 5px;
            }

            .nav-list li.with-submenu .submenu {
                position: static;
                transform: translateX(0);
                opacity: 1;
                visibility: visible;
                box-shadow: none;
                border-radius: 0;
                border-top: 1px solid #ccc;
                display: none;
                transition: auto;
                margin: 10px 0;
            }

                .nav-list li.with-submenu .submenu li {
                    padding: 7px 10px;
                }

                    .nav-list li.with-submenu .submenu li:hover a {
                        background-color: transparent;
                    }

                    .nav-list li.with-submenu .submenu li a {
                        display: inline-block;
                        padding: 2px 0;
                    }

                        .nav-list li.with-submenu .submenu li a::after {
                            display: block;
                        }
}
/*==============header Css End===================*/



/*==============Banner Css Start===================*/
.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    left: 0;
    right: 0;
    background: linear-gradient(to right, rgb(0 0 0), transparent);
}

.service_banner_text {
    width: 100%;
    position: relative;
    width: 100%;
    border: 2px solid #ded9d9;
    border-radius: 0 100px 14px 0;
    border-left: 0;
    padding: 30px 40px;
}

    .service_banner_text:before {
        width: 2px;
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        height: 68px;
        background: #ded9d9;
    }

.list {
    display: flex;
    padding: 0px;
    list-style: none;
    font-size: 19px;
    margin-bottom: 7px;
}

    .list li {
        color: #c77d0e;
        margin-right: 25px;
    }

.service_banner_text h1 {
    font-weight: 700;
    font-size: 37px;
    display: inline-block;
    letter-spacing: 0.5px;
    margin-top: 0;
    color: #fff;
    margin-bottom: 15px;
    line-height: 40px;
}

.service_banner_text p {
    color: #ded9d9;
    font-size: 15px;
    line-height: 25px;
    letter-spacing: 0.3px;
    margin: 0 0 10px 0;
}

.service_banner_text:after {
    width: 2px;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 68px;
    background: #ded9d9;
}

.inner-details {
    position: relative;
}

.main-div {
    position: absolute;
    z-index: 99;
    width: 48%;
    left: 113px;
    top: 165px;
}

@keyframes fadeSlideIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-div.animate {
    animation: fadeSlideIn 2s ease-in-out;
}
/*==============Banner Css End=====================*/

/*==============About Css Start=====================*/
.about-wrap-5 {
    padding: 62px 0px 40px 0px;
    background-color: color-mix(in srgb, #c77d0e, transparent 96%);
    position: relative;
}

.about-box-9 {
    position: relative;
    z-index: 1;
}

.about-box-10 {
    margin-left: 15px;
    /* padding-right: 85px; */
}

.item-heading-left.mb-bottom.mb-10 {
    margin-bottom: 20px;
}

.item-heading-left {
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
}

    .item-heading-left .section-subtitle {
        color: #c77d0e;
        font-size: 17px;
        font-weight: 800;
        font-family: "Ubuntu", sans-serif;
        text-transform: uppercase;
        /* line-height: 30px; */
        letter-spacing: 3px;
        /* padding-left: 15px; */
        /* z-index: 2; */
        display: block;
        margin-bottom: 9px;
        position: relative;
    }

=
/*   .item-heading-left .section-subtitle:after {
            content: "";
            height: 7px;
            width: 7px;
            background: #c77d0e;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            left: 0;
            border: none;
            border-radius: 50%;
            z-index: 2;
        }*/
.about-box-10 .item-heading-left .section-title {
    color: #0E2E50;
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.2;
    z-index: 2;
    position: relative;
}

.about-box-10 .item-heading-left .bg-title-wrap {
    top: 50px;
}

.item-heading-left .bg-title-wrap {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
}

    .item-heading-left .bg-title-wrap .background-title {
        display: inline-block;
        font-family: "Quentin";
        font-size: 100px;
        line-height: 130px;
        color: #ca831921;
        pointer-events: none;
    }

.about-box-10 .about-svg-shape {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

    .about-box-10 .about-svg-shape .item-content {
        margin-left: 0;
        margin-top: 15px;
    }

        .about-box-10 .about-svg-shape .item-content .item-content__text .item-k {
            color: #0E2E50;
            font-size: 36px;
            font-weight: 700;
        }

            .about-box-10 .about-svg-shape .item-content .item-content__text .item-k .counterUp {
                color: #0E2E50;
                font-size: 36px;
                font-weight: 700;
                margin-bottom: 7px;
            }

.left-img-item {
    width: 50%;
    margin-right: 6px;
}

.right-img-item {
    display: flex;
    width: 50%;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
}

.item-img {
    display: flex;
}

.img-wid-new {
    height: 230px;
    width: 94%;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 10px;
    object-position: top;
}

.img-new-h {
    height: 306px !important;
}

.ab-logo-wid {
    width: 148px;
}

.b-rad-50 {
    border-radius: 50%;
    background: black;
    padding: 7px;
    width: 127px;
}

.section-title {
    font-weight: 700;
    font-size: 30px;
}

.box-shadow {
    box-shadow: 4px 4px 13px 0 rgb(1 1 1 / 20%);
}
/*==============About Css End=====================*/

/*==============Amenties Css Start=====================*/

/*.amenities {
    background-image: url(../images/ameniries-bg.jpg);
    padding: 50px 0px 32px 0px;
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

    .amenities:before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: #000000d9;
        z-index: 9;
    }*/
.amenities {
    background: linear-gradient(to right, #161616, #83570a);
    padding: 50px 0px;
}

.title-new {
    color: white;
    font-size: 46px;
}

.z-index-9 {
    z-index: 99;
}

.font-size {
    font-size: 39px;
}


.amenities .col-md-2 {
    width: 14% !important;
    padding: 0px 3px;
}

.commu {
    display: inline-block;
    margin-bottom: 30px;
    margin-top: 9px;
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}

    .commu .icon-commu {
        height: 90px;
        width: 90px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 2px auto;
        transition-timing-function: ease-in-out;
        -ms-transition-timing-function: ease-in-out;
        -moz-transition-timing-function: ease-in-out;
        -webkit-transition-timing-function: ease-in-out;
        -o-transition-timing-function: ease-in-out;
        transition-duration: .2s;
        -ms-transition-duration: .2s;
        -moz-transition-duration: .2s;
        -webkit-transition-duration: .2s;
        -o-transition-duration: .2s;
        box-shadow: 0px 0px 15px -5px #786c6c;
        background: linear-gradient(to right, #161616, #83570a);
    }

.icon-commu {
    border: 3px solid #fff;
}

.commu .icon-commu img {
    width: 50px;
    /* margin: 21px; */
    transition-timing-function: ease-in-out;
    -ms-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-duration: .2s;
    -ms-transition-duration: .2s;
    -moz-transition-duration: .2s;
    -webkit-transition-duration: .2s;
    -o-transition-duration: .2s;
}

.commu .commu-topic {
    font-weight: 600;
    margin: 0 auto;
    color: white;
    text-transform: uppercase;
    font-size: 14px;
}

.commu:hover .icon-commu {
    border: 3px solid black;
}

    .commu:hover .icon-commu img {
        transform: scale(1.1);
    }
/*==============Amenties Css End=====================*/
/*==============Photo Css Start=====================*/
.gallery {
    background-color: color-mix(in srgb, #c77d0e, transparent 96%);
    padding: 68px 0px 50px 0px;
}

.elementor-heading-title {
    color: #242323;
    font-size: 35px;
    /* line-height: 1.1em; */
    letter-spacing: -0.02em;
}

    .elementor-heading-title strong {
        font-weight: 800;
    }

.cl-cmm {
    color: #c77d0e;
}

.make-apt {
    width: 100%;
}

    .make-apt p {
        background: linear-gradient(to right, #161616, #83570a);
        display: block;
        width: 100%;
        text-align: center;
        color: white;
        font-size: 17px;
        border-style: none;
        border-radius: 0px 0px 0px 0px;
        padding: 12px 20px 12px 20px;
    }

.pfs-list li {
    box-sizing: border-box;
    padding-left: 5px;
    padding-right: 5px;
}

.pfs-list .hpfs-iteam {
    display: block;
    width: 100%;
    height: 284px;
    line-height: 0;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    color: #fff;
}

    .pfs-list .hpfs-iteam img {
        width: 100%;
        height: 293px;
        object-fit: cover;
        transition: all 0.3s ease;
    }

.pfs-list .hpfs-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    padding: 60px 15px 20px 15px;
    color: #fff !important;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
    font-size: 14px;
    font-weight: 600;
}

.pfs-list .hpfs-iteam:hover {
    color: #fff;
}

    .pfs-list .hpfs-iteam:hover img {
        transform: scale(1.1);
    }
/*==============Photo Css End=====================*/

/*==============Floor plan Css Start=====================*/
section.ugui_tri {
    position: relative;
    /* background: #e0e6ee; */
    padding: 40px 0 60px;
}

    section.ugui_tri:before {
        background-image: url(../images/top_arrow.png);
        content: "";
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 29%;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: bottom;
    }

.rtdrtd_tri {
    color: #fff;
    margin-bottom: 18px;
    text-align: center;
}

.gradient-heading {
    font-size: 38px;
    /* line-height: 30px; */
    font-weight: 700;
    text-align: center;
    background: linear-gradient(to right, #161616, #83570a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.grdf_tri {
    position: relative;
    margin-top: 25px;
}

.WhyBox {
    background: #fff;
    box-shadow: 0px 2px 18px -3px rgb(1 1 1 / 20%);
    /* border-bottom: 0px solid #088654; */
    /* margin-bottom: 10px; */
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    /* padding: 10px; */
}

    .WhyBox img {
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        border-bottom:1px solid gray;
    }

.awards-txtt {
    padding: 15px 2px;
}

.company_name {
    font-size: 13px;
    color: #000;
    font-weight: 600;
    text-transform: capitalize;
    text-align: center;
    margin-bottom: 0px;
    padding: 0px 0px 0px;
    font-style: italic;
}

.news-thumb {
    padding: 10px;
}

.WhyBox a {
    text-decoration: none;
}
/*==============Floor plan Css End=====================*/

/*==============Location Css Start=====================*/
.locationList {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

    .locationList li {
        position: relative;
        background-image: url(../images/tri.svg);
        background-repeat: no-repeat;
        background-position: left center;
        font-size: 15px;
        padding: 3px 0px;
        margin-bottom: 5px;
        padding-left: 20px;
        transition: .3s;
    }

        .locationList li span {
            position: absolute;
            right: 0px;
            top: 0px;
            font-weight: var(--font-weight-700);
        }

.location {
    padding: 50px 0px 69px 0px;
    background-color: #bb7e1438;
}

.locationList li:hover {
    margin-left: 3px;
}

.single-sec {
    border-bottom: 3px solid #054860;
    padding: 12px 9px;
    height: 178px;
    background-color: #ffffff;
    position: relative;
    top: -49px;
    z-index: 9;
    box-shadow: 0 8px 17px rgb(0 0 0 / 12%);
}

.sub-title-new {
    font-size: 18px;
    text-align: center;
    color: #054860;
}

.single-sec p {
    text-align: center;
    /* color: #054860; */
}

.flt {
    width: 100%;
    font-size: 13px;
    flex-direction: column;
    display: flex;
    text-transform: uppercase;
    margin-top: 9px;
}

.Services_sec_in {
    text-align: center;
    position: relative;
    top: -49px;
}

    .Services_sec_in .new-a .img {
        display: inline-block;
        /* margin-top: -58px; */
        /* display: block; */
        border: 2px solid white;
        position: absolute;
        top: -47px;
        background: #4b3610;
        /* text-align: center; */
        left: 31%;
        height: 95px;
        width: 98px;
        /* display: flex; */
        /* padding: 30px; */
        border-radius: 50%;
        /* right: 50%; */
    }

    .Services_sec_in .new-a {
        width: 100%;
        border: 1px solid white;
        background: #ebe2cb;
        /* background: linear-gradient(41deg, #ff61006b 30%, #faccb0 100%); */
        text-align: center;
        height: 298px;
        position: relative;
        color: black;
        padding-bottom: 14px;
        border-radius: 0 0 7px 7px;
        box-shadow: 0px 10px 18px -10px transparent;
        text-decoration: none;
        transition: 0.2s;
        transform: scale(1);
        /* min-height: 100%; */
    }

        .Services_sec_in .new-a .img img {
            width: 65px;
        }

        .Services_sec_in .new-a .disc {
            padding-left: 8px;
            padding-right: 8px;
            font-size: 13px;
            margin-top: 48px;
        }

            .Services_sec_in .new-a .disc .head {
                font-size: 18px;
                font-weight: 900;
                text-transform: capitalize;
            }

.inner-text-new {
    display: flex;
    height: 95px;
    font-weight: 700;
    color: white;
    /* position: absolute; */
    width: 98px;
    justify-content: center;
    align-items: center;
}

.all-location-add .col-md-2 {
    width: 20%;
}

.new-a strong {
    font-size: 12px;
}
/*==============Location Css End=====================*/

footer {
    padding: 1px 0 21px 0;
    position: relative;
    /* background-image: url(..../images/footer-bg.jpg); */
    /* width: 100%; */
    /* background-position: top; */
    /* background-attachment: fixed; */
}

    footer:before {
        content: "";
        background: black;
        position: absolute;
        top: 0;
        width: 100%;
        /* height: 100%; */
        bottom: 0;
    }

#footer-logo {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 101%;
    margin: auto;
}

.dhidoj-am {
    width: 150px;
    /* margin-bottom: 10px; */
    padding: 21px 9px;
    /* background: white; */
}

#footer-logo p {
    font-size: 14px;
    line-height: 23px;
    text-align: center;
    color: white;
    margin: 10px 0px 0px;
}

#footer-social {
    float: left;
    margin-top: 10px;
}

.hddd-ami-new {
    font-size: 18px;
    text-transform: uppercase;
    text-align: center;
    padding: 0 0px 5px 0;
    color: white;
    cursor: default;
    display: block;
    font-weight: bold;
}

.bg_blue_dark2 {
    /* background-color: #054860; */
    position: relative;
    /* border-top: 1px solid #e9e9e959; */
    width: 84%;
    margin: 12px auto 0;
}

.copyright p {
    margin: 0;
    font-size: 13px;
    color: #ffffff;
}

.credits {
    /* margin-top: 6px; */
    color: white;
    font-size: 13px;
}

.ytftyfyt_tri {
    text-decoration: none;
    color: white !important;
}

.company {
    color: #c77d0e !important;
    font-weight: 900;
}

/*==============Contact Us Css Start=====================*/
.ps-contect-head-view, .ps-footer-about {
    padding: 40px 0;
}

    .ps-contect-head-view h2 {
        font-size: 30px;
        font-weight: 500;
        color: black;
        margin-top: 0;
        margin-bottom: 0;
    }

.ps-contect-info-view {
    padding: 30px 0;
}

.ps-contect-info-view {
    background-image: url(../images/contact-bg.jpg);
    position: relative;
    width: 100%;
    height: 100%;
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
}

section.ps-contect-info-view .elementor-background-overlay {
    background-color: transparent;
    background: #000000f7;
    opacity: 0.8;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
}

.prompt_equip {
    font-weight: 600;
    font-size: 16px;
    color: #FFFFFF;
    text-transform: uppercase;
}

.contect-info-left address, .contect-info-left span, .contect-info-left p, .contect-info-left address a {
    font-weight: normal;
    font-size: 14px;
    color: #ffffff;
}

p:last-of-type {
    margin-bottom: 0;
}

.contect-info-left span a, .contect-info-left p a {
    color: #ffffff;
}

.contect-info-right {
    background: #FFFFFF;
    border: 1px solid #F5F5F5;
    box-shadow: 0px 4px 10px rgb(0 0 0 / 8%);
}

.contect-info-right {
    margin-top: -150px;
    padding: 40px 45px 20px 45px;
}

    .contect-info-right .row {
        margin: 0 -15px;
    }

        .contect-info-right .row .col-md-6 {
            padding: 0 10px;
        }

        .contect-info-right .row .form-group {
            margin-bottom: 15px;
        }

.form-group label {
    font-size: 12px;
}

textarea.form-control {
    min-height: calc(1.6em + .75rem + 2px);
}

.contect-info-right .row .col-md-12 {
    padding: 0 10px;
}

.btn.btn-primary {
    background: linear-gradient(to right, #161616, #83570a);
    color: #FFFFFF;
    border-color: SNOW;
}

.footer_product_section_tri {
    display: flex;
    justify-content: center;
    background: #000000b3;
    padding: 15px;
}

a.footer_product_sec_tri {
    display: block;
    height: 45px;
    object-fit: cover;
    object-position: center;
    margin-right: 15px;
}

    a.footer_product_sec_tri img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

.contect-info-left h4 {
    font-weight: 600;
    font-size: 25px;
    color: #FFFFFF;
    margin-bottom: 20px;
    /* opacity: 0.9; */
}

.information {
    display: flex;
    color: #555;
    align-items: center;
    margin: 0px 0px 13px 0px;
    align-items: baseline;
    font-size: 0.95rem;
}

    .information i {
        font-size: 14px;
        color: white;
        height: 35px;
        width: 35px;
        background: #5e4311;
        padding: 11px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50px;
        transition: all 0.3s ease-in-out;
        margin-right: 15px;
    }

.nkf-ami {
    color: white;
    text-decoration: none;
}

    .nkf-ami:hover {
        color: white;
    }

.social-media {
    padding: 1rem 0 0 0;
}

    .social-media p {
        color: #fff;
        margin-bottom: 20px;
    }

.social-icons {
    display: flex;
    margin-top: 0.5rem;
}

    .social-icons a {
        width: 35px;
        height: 35px;
        border-radius: 5px;
        background: linear-gradient(45deg, #054860, #149279);
        color: #fff;
        text-align: center;
        line-height: 35px;
        margin-right: 0.5rem;
        transition: 0.3s;
    }

.facebook-bg {
    background: #2a68b1 !important;
}

.instagram-bg {
    background: #ae1ba0 !important;
}

.linkedin-bg {
    background: #0077B5 !important;
}
/*==============Contact Us Css End=====================*/
/**----------whats app icon Css-----------*/
.btn-whatsapp-pulse {
    background: #25d366;
    color: white;
    position: fixed;
    z-index: 9999;
    bottom: 0px;
    right: 20px;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 30px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

    .btn-whatsapp-pulse i {
        font-size: 35px;
    }

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    80% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}

.btn-whatsapp-pulse-border {
    bottom: 15px;
    right: 32px;
    animation-play-state: paused;
}

    .btn-whatsapp-pulse-border::before {
        content: "";
        position: absolute;
        border-radius: 50%;
        padding: 25px;
        border: 5px solid #25d366;
        opacity: 0.75;
        animation-name: pulse-border;
        animation-duration: 1.5s;
        animation-timing-function: ease-out;
        animation-iteration-count: infinite;
    }

    .btn-whatsapp-pulse-border:hover {
        color: white;
    }

@keyframes pulse-border {
    0% {
        padding: 25px;
        opacity: 0.75;
    }

    75% {
        padding: 50px;
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}
/*----------whats app icon Css end-----------*/
.iframe {
    width: 100%;
    padding-left: 25px;
}

.information strong {
    margin-right: 20px;
    text-transform: uppercase;
    white-space: nowrap;
}

.w-24 {
    width: 24px;
}
.is-active .line {
    height: 1.5px !important;
}
.w-new-464 {
    width: 127px;
}
/*================Responsive CSS=================*/
@media screen and (max-width:991px) {
    .service_banner_text {
        padding: 16px 23px;
    }
    .contect-info-right {
        margin-top: 0px;
    }

    .iframe {
        padding-left: initial;
        margin-top: 32px;
    }

    .pfs-list .hpfs-iteam {
        height: 210px;
    }

    .ps-contect-info-view {
        background-position: 20% -12%;
        background-attachment: fixed;
    }

    .contect-info-right {
        padding: 40px 20px 20px 20px;
    }

    .main-div {
        width: 74%;
        left: 57px;
        top: 101px;
    }
}

@media (min-width: 768px) {
    .hidden-desktop {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .hidden-mobile {
        display: none !important;
    }
}

.errorspan_tri {
    font-size: 10.6px;
    font-weight: 400;
    color: red;
    position: absolute;
}
