/*body {*/
/*        margin: 0;*/
/*        padding: 0;*/
/*height: 100%;*/
/*width: 100%;*/
/*font-family: 'Cormorant', serif;*/
/*background: #262626;*/
/*    }*/

html {
    overflow-x: hidden;
}

.container-fluid {
    margin-top: 200px !important;
}

p {
    /*font-size: 20px;*/
    line-height: 33px !important;
    /* color: #fff; */

}

.small {
    letter-spacing: 0.5px !important;
}

/* default-heading */

.sec-heading h2 {
    font-size: 30px;
    text-transform: uppercase;
    line-height: 1.2;
    font-weight: 500;
    display: inline-block;
    padding-bottom: 14px;
    border-bottom: 1px solid #f37022;
    position: relative;
}

.sec-heading h2:after {
    content: "";
    position: absolute;
    width: 100px;
    height: 5px;
    bottom: -3px;
    left: 0;
    right: 0;
    margin: auto;
    background-color: #000000;
}

/* default-heading */


/* slick-slider */

.slick-dots li button:before {
    font-size: 10px;
    /* content: '•'; */
}

/* slick-slider */

.card {
    box-shadow: 0px 5px 16px #ce3439;
    transition: 0.8s;
    background: #ce3439;
    margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden;
    border-radius: 7px !important;
}

.card-header,
.card-footer {
    border-radius: 7px !important;
}

.card:after {
    position: absolute;
    top: 0;
    left: -50%;
    width: 100%;
    z-index: 9999;
    height: 100%;
    pointer-events: none;
}

.card-title img {
    z-index: 99999 !important;
}

.card .layer {
    position: absolute;
    top: calc(100% - 5px);
    width: 100%;
    height: 100%;
    /* background: linear-gradient(#f37022, #1c2c02); */
    background: linear-gradient(#f37022, #000000);
    left: 0;
    z-index: 1;
    transition: 0.5s;
}


.card:hover {
    box-shadow: -5px 50px 100px #ce3439;
}


.card:hover hr {
    background-color: #fff;

}

/*.card:hover h4   {*/
/*    font-weight: 600;*/
/*}*/
/*.card:hover p  {*/
/*    font-weight: 600;*/
/*}*/
.card:hover small {
    font-weight: 600;
}

.card:hover .layer {
    top: 0;
}

.card .content {
    position: relative;
    z-index: 2;
}

.card .content .img-1 {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid white !important;

}

.card h4 {
    color: #fff;
    font-weight: 500;
}

hr {
    background-color: rgb(117, 117, 117);
    width: 100% !important;
    transition: 1s;
}


.bold {
    font-weight: 500;
}

#quotes {
    opacity: 0.1;
    filter: alpha(opacity=40);
}

/* .header.header-transparent {
    background: #fff !important;
    border-bottom: 1px solid #eee !important;
    box-shadow: 0 -3px 7px 0 #00000078 !important;
}
.header.header-transparent .nav-menu > li > a{
    color: #022f5d !important;
} */

@media (max-width: 479px) {
    p {
        padding: 0 !important;
    }

    .img-1 {
        margin-right: 0 !important;
    }

}




.home-banner-wrap{
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    background: #fff;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
}

.home-banner.banner {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    /* z-index: 999999; */
    background: #fff;
    overflow: hidden;
}

.marquee {
    width: 100% ! important;
    -webkit-animation: mark 20s linear infinite !important;
    animation: mark 20s linear infinite !important;
}

@-webkit-keyframes mark {
    0% {
        -webkit-transform: translateY(40rem);
        transform: translateY(40rem)
    }

    50% {
        -webkit-transform: translateY(-15rem);
        transform: translateY(-15rem)
    }

    to {
        -webkit-transform: translateY(40rem);
        transform: translateY(40rem)
    }
}

@keyframes mark {
    0% {
        -webkit-transform: translateY(40rem);
        transform: translateY(40rem)
    }

    50% {
        -webkit-transform: translateY(-15rem);
        transform: translateY(-15rem)
    }

    to {
        -webkit-transform: translateY(40rem);
        transform: translateY(40rem)
    }
}

.marquee:hover {
    -webkit-animation-play-state: paused!important;
    animation-play-state: paused!important
}


.grid-wrapper {
    display: grid;
    grid-gap: 10px;
    /*grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));*/
    /*grid-auto-rows: 200px;*/
    width: 100% !important;
    grid-template-columns: 2fr 2fr !important;
    grid-auto-rows: 300px !important;
    grid-auto-flow: dense;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin-left: -2px;
}

.grid-wrapper>a {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 5px;
}
.grid-wrapper .tall {
    grid-row: span 2;
}
.property {
    position: relative;
    display: inline-block !important;
    overflow: hidden;
}
.property::after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 40%;
    height: 40%;
    background-color: #8cc63c36;
    border-radius: 8px;
    opacity: 0;
    transition: 0.4s ease-in-out;
    color: #fff;
}

.property:hover::after{
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: 0.4s ease-in-out;
}

.property .tooltiptext {
    font-size: 14px;
    padding: 10px 20px ! important;
    font-family: 'Lato', sans-serif;
    visibility: hidden;
    width: auto;
    background-color: #f37022;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 50%;
    left: 50%;
    margin-left: -60px;
}

.property:hover .tooltiptext {
    visibility: visible;
}

.property .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #f37022 transparent transparent transparent;
}
.grid-wrapper>a>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform .9s;
    background: #eee;
}

.home-banner.banner .banner-box {
    display: flex;
    align-items: center;
}

.home-banner.banner .banner-text-box {
    margin-top: -40px;
    margin-left: 30px;
}

.home-banner.banner h1 {
    font-size: 45px;
    line-height: 85px;
    text-transform: none;
    margin-bottom: 15px;
    text-align: left;
    color: #24247a;
    font-weight: 600;
    display: inline-block;
    position: relative;
    /* background: #fff; */
}

.home-banner.banner h1 span {
    text-transform: uppercase;
    font-size: 58px;
    position: relative;
    /* background: #fff; */
    z-index: 1;
    padding: 0px 10px;
}

/* .home-banner.banner h1 span:before {
    content: "";
    position: absolute;
    bottom: -2px;
    right: -2px;
    border-bottom: 75px solid #f37022;
    border-right: 40px solid #f37022;
    border-top: none;
    border-left: none;
    z-index: -1;
}

.home-banner.banner h1 span:after {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    border-top: 75px solid #f37022;
    border-left: 40px solid #f37022;
    border-bottom: none;
    border-right: none;
    z-index: -1;
} */

.home-banner.banner p {
    font-size: 28px;
    line-height: 1.5 !important;
    text-transform: none;
    margin-bottom: 20px;
    text-align: left;
    color: #05264e;
    font-weight: 400;
    max-width: 100%;
}


.know-more-btn {
    background: #022f5d;
    width: auto;
    border-radius: 4px;
    color: #fff;
    font-weight: 500;
    transition: .5s;
    padding: 10px 20px;
    margin-top: 10px;
    display: inline-block;
    text-transform: uppercase;
    font-size: 16px;
}
.know-more-btn:hover{
    text-decoration: none;
    color: #f37022;
    transition: .5s;
}


@media (min-width: 1900px){
    /*.grid-wrapper {*/
    /*    width: 100% !important;*/
    /*    grid-template-columns: 2fr 2fr !important;*/
    /*    grid-auto-rows: 300px !important;*/
    /*}*/

    .home-banner.banner .banner-text-box {
        margin-top: -80px !important;
        margin-left: 80px !important;
    }

    .home-banner.banner p {
        font-size: 34px !important;
    }

    .know-more {
        font-size: 18px !important;
        margin-top: 5px !important;
    }
}

@media only screen and (max-width:1399px){
    .home-banner.banner h1 {
        font-size: 40px;
        line-height: 80px;
    }
    .home-banner.banner h1 span {
        font-size: 48px;
        padding: 5px 10px;
    }
    .home-banner.banner p {
    font-size: 24px;
    margin-bottom: 10px;
    max-width: 100%;
}
}

@media only screen and (max-width:1280px){
    .container-fluid {
    margin-top: 130px !important;
    }
}

@media only screen and (max-width:1199px){
    .home-banner.banner h1 span {
        font-size: 40px;
        padding: 12px 10px;
    }
    .home-banner.banner p {
        font-size: 20px;
        margin-bottom: 10px;
        max-width: 100%;
    }
}

@media only screen and (max-width:991px){
    .home-banner.banner h1 span:before,
    .home-banner.banner h1 span::after{
        display: none;
    }
    .home-banner.banner h1{
        font-size: 30px;
        line-height: 50px;
    }
    .home-banner.banner h1 span {
        font-size: 30px;
        padding: 0px;
    }
    .container-fluid {
        margin-top: 0px !important;
    }
    .home-banner.banner p {
        font-size: 18px;
    }
}


@media only screen and (max-width: 961px){
    .grid-wrapper {
        width: 95% !important;
        grid-template-columns: 2fr 2fr !important;
    }
    .banner p {
        max-width: 100% !important;
        font-size: 18px !important;
        margin-bottom: 6px;
    }

    .home-banner.banner {
        height: 670px !important;
    }
    .home-banner.banner .banner-text-box {
        margin-top: -290px !important;
        margin-left: 0px !important;
    }
}

@media only screen and (max-width: 900px){
    .home-banner.banner h1 {
        font-size: 26px !important;
        line-height: 40px;
        margin-bottom: 6px;
    }
    .home-banner.banner h1 span {
        font-size: 26px;
    }
}

@media (max-width: 767px){
    .grid-wrapper {
        width: 100% !important;
        grid-template-columns: 1fr 1fr !important;
        margin-left: 0px !important;
    }

    .banner .banner-box {
        display: flex !important;
        align-items: center !important;
        padding: 16px 15px !important;
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        text-align: center !important;
    }

    .home-banner.banner .banner-text-box {
        margin-top: -100px !important;
        margin-left: 0px !important;
        background: rgb(255 255 255 / 100%) !important;
        padding: 30px 20px !important;
        border-radius: 10px !important;
    }

    .home-banner.banner {
        height: 100vh !important;
    }

    .banner p {
        font-size: 16px !important;
        max-width: 100% !important;
        margin-bottom: 0px !important;
        text-align: center !important;
    }
    .home-banner.banner h1 {
        font-size: 35px !important;
        text-align: center !important;
    }

    /* .marquee {
        animation: none ! important;
    } */
}



@media only screen and (max-width: 575px){
    .home-banner.banner h1 {
        font-size: 22px !important;
        text-align: center !important;
    }
}

/* signature-dev-start */

.siganture-dev-wrap{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    position: relative;
    background-attachment: fixed;
}

.signature-dev-wrap-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: radial-gradient(circle, rgb(241 106 36) -40%, rgb(0 0 0 / 34%) 100%); */
    background: radial-gradient(circle, rgb(241 106 36 / 67%) -40%, rgb(0 0 0 / 34%) 100%);
}

.signature-dev-wrap .sec-heading h2 {
    color: #fff;
}
/* signature-dev-end */

/* association-start */

.association-wrap{
    background-color: #f7f7f7;
}

/* association-end */

/*assist-start*/

.assist-wrap {
    background-color: #f7f7f7;
}

.assist-grid {
    background-color: #ffffff;
    padding: 0px;
    border-radius: 0px;
    border: 2px solid #000000;
    -webkit-box-shadow: 0 4px 15px rgb(12 35 34 / 20%);
    box-shadow: 0 4px 15px rgb(12 35 34 / 20%);
    transition: 0.4s ease-in-out;
}

.assist-img {
    width: 100%;
    height: 150px;
    background-image: linear-gradient(to right bottom, #e6333a -50%, #f37022);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.figure-inner {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    transition: 0.4s ease-in-out;
    position: relative;
    border: 2px solid #000;
}

.assist-img img {
    transform: scale(0.8);
    width: 69%;
    transition: 0.4s ease-in-out;
}

.assist-texts {
    padding: 5px 12px 25px;
}

.assist-grid h5 {
    color: #e43339;
    font-size: 24px;
    transition: 0.4s ease-in-out;
}

.assist-grid p {
    height: 198px;
    text-align: justify;
    transition: 0.4s ease-in-out;
    overflow-y: auto;
    color: #022f5d;
    padding-right: 6px;
}

.assist-grid p::-webkit-scrollbar {
    width: 3px;
}

/* Handle */
.assist-grid p::-webkit-scrollbar-thumb {
    /*    background: #00acfd;*/
    /*    background: linear-gradient(to left bottom, #fc2e78 20%, #008fdb 50%);*/
    background: linear-gradient(to left bottom, #f37022, #f37022);
}

/* Handle on hover */
.assist-grid p::-webkit-scrollbar-thumb:hover {
    /*    background: #00acfd;*/
    background: linear-gradient(to left bottom, #f37022, #f37022);
}

/* .assist-grid:hover {
    border-bottom-color: #ed3b37;
    border-left-color: #f37022;
    border-top-color: #f37022;
    border-right-color: #ed3b37;
    border-radius: 10px;
    transition: 0.4s ease-in-out;
} */

.assist-grid:hover h5 {
    color: #f37022;
    transition: 0.4s ease-in-out;
}
.assist-grid:hover p {
    /*    color: #fff;*/
    transition: 0.4s ease-in-out;
}

.assist-grid:hover img {
    /*    fill: #00215c;*/
    transform: scale(1);
    transition: 0.4s ease-in-out;
}

@media only screen and (max-width:1199px){
    .assist-grid h5 {
        color: #e43339;
        font-size: 21px;
        transition: 0.4s ease-in-out;
    }
    .assist-texts {
        padding: 5px 10px 25px;
    }
}

@media only screen and (max-width:767px) {
    /* .assist-texts h5 {
        font-size: 18px;
    } */

    /* .assist-grid {
        padding: 16px 10px;
    } */
}

@media only screen and (max-width:767px) and (min-width:576px){
    .assist-grid p {
        height: auto;
    }
    .assist-grid h5 {
        font-size: 22px;
    }
    .assist-texts {
        padding: 5px 10px 15px;
    }
}

@media only screen and (max-width:575px) and (min-width:415px){
    .assist-grid{
        width: 80%;
        margin: 0 auto;
    }
}

@media only screen and (max-width:575px){
    .assist-grid p {
        height: auto;
    }

    .assist-texts {
        padding: 5px 10px 15px;
    }

    .assist-grid h5 {
        font-size: 19px;
    }
}

.spl-anchor {
    font-weight: 600;
    font-size: 16px;
    padding-bottom: 4px;
    position: relative;
    color: #022f5d;
}

.spl-anchor:after {
    content: "";
    position: absolute;
    height: 1px;
    width: 0%;
    background-color: #8cc63c;
    right: 0;
    bottom: 0;
    transition: 0.4s ease-in-out;
}

.spl-anchor:hover::after {
    width: 100%;
    left: 0;
    text-decoration: none;
    transition: 0.4s ease-in-out;
}

.spl-anchor:hover {
    color: #f37022;
    text-decoration-color: #0083b9;
    text-decoration-line: underline;
    text-underline-offset: 3px;
    transition: 0.4s ease-in-out;
}

/*assist-end*/

/* signature-developments */
.slick-dots {
    bottom: -45px !important;
}

@media only screen and (max-width:991px){
    .slick-dots {
        bottom: -60px !important;
    }
}

.similar-slide .slick-prev {
    left: 0px;
    top: 52%;
    width: 35px;
    height: 35px;
    border: 0px solid #e6ebf1;
    z-index: 1;
}

.similar-slide .slick-next {
    right: 0px;
    top: 52%;
    width: 35px;
    height: 35px;
    border: 0px solid #e6ebf1;
    z-index: 1;
}

.similar-slide .slick-prev:before,
.similar-slide .slick-next:before {
    color: #f37022;
}


.similar-slide .slick-next:hover:before, .similar-slide .slick-next:focus:before, .similar-slide .slick-next:active:before, .similar-slide .slick-prev:hover:before, .similar-slide .slick-next:focus:before, .similar-slide .slick-next:active:before {
    color: #ffffff;
}

@media only screen and (min-width:768px){
    .testimonial-page-section .testimonial-p{
        height: 41px !important;
        display: block;
    }

    .testimonial-page-section .card h4.Elizabeth {
        font-size: 21px !important;
    }
    
    .testimonial-page-section .card-footer .col {
        padding: 0px;
    }
}


/* certificate-section-start */
.certificate-wrap{
    background-color: #f7f7f7;
}
.certificate-wrap-card{
    padding: 20px 15px;
    border-radius: 0px;
    background-color: #fff;
    box-shadow: 1px 1px 7px 0px #bbb;
}

.certificate-img-box {
    border: 2px solid #f37022;
    overflow: hidden;
    border-radius: 0px;
    box-shadow: 1px 1px 11px rgb(12 35 34 / 46%);
}
.certificate-img-box img{
    transition: transform 0.3s ease-in-out;
}

.certificate-img-box:hover img{
    transform: scale(1.05);
}
/* certificate-section-end */


    /*testimonial-start*/



    .testimonial-new-wrap {
        padding: 70px 0;
        background-size: cover;
        background-repeat: no-repeat;
        position: relative;
        background-attachment: fixed;
        background-position: right;
        /* background-image: url(../img/testimonial-bg2.jpg); */
    }

    /* #owl-carousel3.owl-carousel .item {
        margin: 15px 0;
    } */

    .testimonial-upper {
        position: relative;
        padding: 20px 15px 40px;
        overflow: hidden;
        background-image: linear-gradient(to right bottom, #e6333a -110%, #f37022);
        margin-bottom: -30px;
        text-align: center;
        color: #fff;
    }

    .testimonial-upper img {
        width: 100px !important;
        padding: 10px;
        margin: 0 auto;
        border-radius: 50%;
        border: 3px solid #fff;
    }

    .testimonial-upper h5 {
        color: #fff;
    }

    .testimonial-upper h6 {
        color: #fff;
        margin-bottom: 0px;
        height: 39px;
        font-weight: 400;
    }

    .testimonial-lower {
        position: relative;
        overflow: hidden;
        background: #fff;
        padding: 25px 12px 20px 12px;
        /* border-top-left-radius: 20px; */
        /* border-top-right-radius: 20px; */
        border-bottom: 5px solid #f37022;
        box-shadow: 0px 0px 7px 0px #979797;
    }

    .testimonial-lower h2 i {
        color: #f37022;
        font-size: 40px;
    }

    .testimonial-text p {
        color: #000;
        margin-bottom: 0px;
        padding-right: 8px !important;
        text-align: justify;
    }

    /* .testimonial-lower:before {
        content: "\f10d";
        font-family: FontAwesome;
        position: absolute;
        left: 22px;
        bottom: 0;
        right: 0;
        top: 22px;
        margin: auto;
        color: #f37022;
        font-size: 30px;
    } */


    .testimonial-text {
        position: relative;
        height: 165px;
        z-index: 5;
        overflow-y: auto;
        color: #000;
    }

    .testimonial-text::-webkit-scrollbar {
        width: 3px;
    }

    /* Handle */
    .testimonial-text::-webkit-scrollbar-thumb {
        /*    background: #00acfd;*/
        /*    background: linear-gradient(to left bottom, #fc2e78 20%, #008fdb 50%);*/
        background: linear-gradient(to left bottom, #f37022, #f37022);
    }

    /* Handle on hover */
    .testimonial-text::-webkit-scrollbar-thumb:hover {
        /*    background: #00acfd;*/
        background: linear-gradient(to left bottom, #f37022, #f37022);
    }


    /*testimonial-end*/


/* page-form-start */

.page-form-wrap{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    position: relative;
    background-attachment: fixed;
}

.page-form-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: radial-gradient(circle, rgb(241 106 36) -40%, rgb(0 0 0 / 34%) 100%); */
    background: radial-gradient(circle, rgb(241 106 36 / 67%) -40%, rgb(0 0 0 / 34%) 100%);
}

.page-form-div {
    padding: 20px 15px;
    border: 2px solid #f37022;
    border-radius: 0px;
    position: relative;
    background: #000000bf;
    z-index: 5;
    box-shadow: 5px 5px 15px rgb(12 35 34 / 20%);
}

.page-form-div .form-group label {
    margin-bottom: 4px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

.page-form-div .form-control {
    border-radius: 0px;
    border-color: #f37022;
}
.page-form-div button.btn.btn-primary{
    width: 100%;
    text-transform: uppercase;
    background-image: linear-gradient(to right, #e6333a, #f37022);
    border: 0px solid #f37022;
}

.page-form-div button.btn.btn-primary:hover{
    background-image: linear-gradient(to left, #e6333a, #f37022) !important; 
}

.page-form-div .sec-heading h2 {
    color: #fff;
}

.page-form-div .sec-heading h2:after {
    background-color: #ffffff;
}
.form-control:focus{
    border-color: #f37022;
    box-shadow: inset 0 1px 1px rgba(45, 45, 45, 0.07), 0 0 8px rgba(129, 129, 129, 0.6);
}
/* page-form-end */


/* about-us-start */

.spl-about h2 {
    font-size: 36px;
    background-image: linear-gradient(to right bottom, #e6333a -110%, #f37022);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media only screen and (max-width:991px){
    .spl-about h2 {
        font-size: 30px;
    }
}
@media only screen and (max-width:767px){
    .spl-about h2 {
        font-size: 26px;
    }
}

@media only screen and (max-width:575px){
    .spl-about h2 {
        font-size: 24px;
    }
}

/* about-us-end */

/* our-team-start */

.our-team-wrap{
    background-color: #f7f7f7;
}

.our-team-wrap p{
    color: #000;
}

.our-team-wrap .team-grid {
    border-radius: 0px;
    box-shadow: 0px 0px 7px 0px #979797;
}

.our-team-wrap .teamgrid-content {
    border-bottom: 3px solid #f37022;
}

.our-team-wrap .teamgrid-user {
    border-radius: 0px;
}

.our-team-wrap .teamgrid-user img{
    border-radius: 0px;
}

/* our-team-end */

/* seller-corner-start */

.seller-corner-wrap{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    position: relative;
}
.seller-corner-wrap .sec-heading p {
    color: #fff;
}
.seller-corner-wrap-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: radial-gradient(circle, rgb(241 106 36) -40%, rgb(0 0 0 / 34%) 100%); */
    background: radial-gradient(circle, rgb(241 106 36 / 67%) -40%, rgb(0 0 0 / 34%) 100%);
}

.seller-corner-wrap #second-dropdown, .seller-corner-wrap #first-dropdown {
    font-size: 16px !important;
    border: 1px solid #f37022 !important;
    border-radius: 0px !important;
}

.seller-corner-wrap .nice-select {
    font-size: 16px;
    border: 1px solid #f37022;
    border-radius: 0px;
    padding-left: 14px;
    line-height: 24px;
    width: 100%;
    float: initial;
    height: 38px;
}

/* .seller-corner-wrap .nice-select span{
    line-height: 36px;
} */

/* seller-corner-end */

/* testimonial-page-start */

.testimonial-page-wrap{

}

.testimonial-page-wrap .testimonial-upper h6 {
    font-size: 14px;
}

@media only screen and (max-width:1199px){
    .testimonial-page-wrap .testimonial-upper {
        padding: 20px 4px 40px;
    }

    .testimonial-page-wrap .testimonial-upper h6 {
        font-size: 13px;
    }
}

@media only screen and (max-width:767px){
    .testimonial-page-wrap .testimonial-upper h6 {
        font-size: 14px;
        height: auto;
    }

}

.video-wrap{
    background-color: #f7f7f7;
}

.video-wrap .veshm-grid-blog {
    justify-content: center;
    border-radius: 0px;
    background: #ffffff;
    border: 2px solid #f37022;
    box-shadow: 0px 0px 7px 0px #979797;
}

.video-wrap .veshm-grid-blog .veshm-grid-blog-thumb {
    padding: 0px;
    border-radius: 0px;
}


@media only screen and (max-width:767px){
    .video-wrap .veshm-grid-blog-thumb video {
        width: 236px !important;
    }
}

@media only screen and (max-width:475px){
    .video-wrap .veshm-grid-blog-thumb video {
        width: 286px!important;
    }
}

/* testimonial-page-end */

/* contact-us-start */

.map-wrap{
    height: 100%;
    border: 2px solid #f37022;
    box-shadow: 5px 5px 15px rgb(12 35 34 / 20%);
}

.contact-wrap .page-form-div {
    background: #ffffff;
}

.contact-wrap .page-form-div .sec-heading h2 {
    color: #ed3b39;
}

.contact-wrap .page-form-div .sec-heading h2:after {
    background-color: #000000;
}

.contact-wrap .page-form-div .form-control {
    border: 1px solid rgb(236 83 45);
}

.contact-wrap .page-form-div .form-group label {
    margin-bottom: 4px;
    font-size: 16px;
    font-weight: 500;
    color: #000;
}

@media only screen and (max-width:767px) {
    .map-wrap {
        height: 350px;
    }
}

@media only screen and (max-width:475px){
    .map-wrap {
        height: 300px;
    }
}

/* contact-us-end */

/* property-details-start */

.spl-form-border .form-control {
    height: auto;
    border-color: #f37022;
    border-radius: 0px !important;
}

.spl-form-border .form-control:focus {
    height: auto;
    border-color: #f37022;
}

.spl-form-border button.btn.btn-primary {
    width: 100%;
    text-transform: uppercase;
    background-image: linear-gradient(to right, #e6333a, #f37022);
    border: 0px solid #f37022;
}

.spl-form-border button.btn.btn-primary:hover {
    background-image: linear-gradient(to left, #e6333a, #f37022) !important;
}

.spl-form-border .form-group label {
    margin-bottom: 4px;
    font-size: 16px;
    font-weight: 500;
}

.similar-slide.similar-slide-2 .slick-dots{
    display: none !important;
}

.ilio-icon {
    font-size: 30px;
    height: 48px;
    width: 48px;
    margin-top: 6px;
    overflow: hidden;
  }
  
  .ilio-icon img {
    width: 100%;
    height: auto;
  }
  
  .ilio-text {
    font-size: 12px;
    font-weight: 500;
    color: #00594c;
    margin-top: 6px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .veshm-list-ftr786{
    padding-right: 6px;
  }
  
  @media only screen and (max-width:1199px) and (min-width:992px) {
    .ilio-icon-wrap {
      height: 125px;
    }
  
    .ilio-text {
      height: 60px;
    }
  }
  
  @media only screen and (max-width:767px) {
    .ilio-icon-wrap {
      height: 116px;
    }
  
    .ilio-text {
      font-size: 11px;
      height: 50px;
    }
  }

  .vesh-detail-bloc:last-of-type{
    margin-bottom: 0px;
  }

/* property-details-end */



.like_share_list {
    padding: 1rem 1rem;
}

.pg-side-block-head {
    padding: 1rem;
}

.spl-form-border .form-group label {
    display: none;
}


/* search-form-section */

.serach-form-section.min{
    background-color: #cdcdcd;
}

/* search-form-section */

/* details-page-loan-partner */

.loan-form-wrap{

}

.loan-box {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #f37022;
    height: 100%;
    min-height: 70px;
    background: #fff;
    box-shadow: 0px 0px 3px 0px #979797;
}

/* details-page-loan-partner */


.form-control:focus {
    border-color: #ed562c !important;
    box-shadow: inset 0 1px 1px rgba(45, 45, 45, 0.07), 0 0 8px rgba(129, 129, 129, 0.6);
}

/* about-owner-card */

.about-owner-wrap.min {
    background: #e7e7e7;
}

.about-owner-card{
    padding: 20px 15px;
    border-radius: 0px;
    background-color: #fff;
    box-shadow: 1px 1px 7px 0px #bbb;
}

.about-owner-text{

}

.about-owner-text h4 {
    font-size: 28px;
    color: #000;
    text-decoration: underline;
    text-underline-offset: 10px;
    text-decoration-color: #ed3b39;
}

.about-owner-text h4 span{
    color: #ed3b39;
}

.about-owner-text p{
    font-size: 18px;
    text-align: justify;
}

.about-owner-img{
    border: 2px solid #ef6127;
}

.about-owner-img img{

}

@media only screen and (max-width:575px){
    .about-owner-text h4 {
        font-size: 24px;
    }
}

/* about-owner-card */



/* gallery-slider */

.featured_slick_gallery.project-details-gallery img{
    width: 100%;
    height: 600px;
    object-fit: cover;
}

@media only screen and (max-width:1920px){
    .featured_slick_gallery.project-details-gallery img {
        height: 550px;
    }
}

@media only screen and (max-width:1600px){
    .featured_slick_gallery.project-details-gallery img {
        height: 480px;
    }
}

@media only screen and (max-width:1199px){
    .featured_slick_gallery.project-details-gallery img {
        height: 420px;
    }
}

@media only screen and (max-width:991px){
    .featured_slick_gallery.project-details-gallery img {
        height: 360px;
    }
}

@media only screen and (max-width:767px){
    .featured_slick_gallery.project-details-gallery img {
        height: 300px;
    }
}

@media only screen and (max-width:575px){
    .featured_slick_gallery.project-details-gallery img {
        height: 250px;
    }
}

@media only screen and (max-width:475px){
    .featured_slick_gallery.project-details-gallery img {
        height: 280px;
    }
}

@media only screen and (max-width:410px){
    .featured_slick_gallery.project-details-gallery img {
        height: 230px;
    }
}

@media only screen and (max-width:359px){
    .featured_slick_gallery.project-details-gallery img {
        height: 230px;
    }
}

/* gallery-slider */

.bakkal-testimonial-one{
        border-top: 2px solid #ef5d29;
        padding-top: 8px;
}

.bakkal-testimonial-one h6{
    margin-bottom: 0px;
    height: 40px;
}

.google-rev-but{
    text-align:center;
}

@media only screen and (min-width:1200px){
    .nav-brand img {
       padding: 10px 0;
}
}

.hira-box{
    padding-top: 15px;
    margin-top: 10px;
    border-top: 1px solid #f37022;
    text-align: center;
}

.hira-box span{
        font-size: 19px;
    text-transform: capitalize;
    font-weight: 500;
}

.hira-box span b{
        color: #f37022;
}

.hira-box a{
        font-size: 18px;
    text-transform: capitalize;
    color: #ffffff;
    font-weight: 500;
    padding: 5px 8px;
    border: 2px solid #f37022;
    background: #f37022;
    margin: 0px 5px;
}

@media only screen and (max-width:991px){
    .hira-box a {
    display: inline-block;
    margin-top: 10px;
}
}



#owl-carousel3.owl-carousel .item {
    padding: 0 15px;
    margin: 10px 0 10px 0;
}

/* print-page-start */

#main-wrapper.print-wrapper{

}

#main-wrapper.print-wrapper .featured_slick_padd a img {
    height: 340px;
}

#main-wrapper.print-wrapper section.gray-simple{
    padding: 50px 0 30px;
}

#main-wrapper.print-wrapper .vesh-detail-bloc-body p {
    margin: 0px 0 4px;
    line-height: 20px !important;
}

.page-break-after{
    page-break-after: always;
}

#main-wrapper.print-wrapper .floor-thumb {
    height: 195px;
    overflow: hidden;
}

#main-wrapper.print-wrapper .floor-thumb img{
    object-fit: cover;
}

#main-wrapper.print-wrapper .vesh-detail-bloc .vesh-detail-bloc-body {
    padding: 0rem 1rem 1rem;
}

#main-wrapper.print-wrapper .vesh-detail-headup {
    padding: 1rem 1rem;
}

#main-wrapper.print-wrapper .vesh-detail-bloc .vesh-detail-bloc_header {
    padding: 1rem 1rem 0.5rem;
}

@media (max-width: 767px){
    #main-wrapper.print-wrapper  .vesh-detail-headup-first {
        margin-bottom: 0.2rem;
    }
}

#main-wrapper.print-wrapper .row>* {
    margin-top: 12px !important;
}


/* print-page-end */

/* quick-view-start */
/* .fixedcall a p,
.fixedwhatapp a p {
    height: 45px;
    line-height: 45px !important;
} */

.vesh-detail-bloc-body.quick-view-box {}

.quick-view-wrap {
    text-align: center;
    padding: 10px 0 10px 0;
    box-shadow: 0 4px 15px rgba(12, 35, 34, 0.2);
    /* border: 2px solid #f37022; */
}

.quick-view-icon {
    height: 60px;
    width: 60px;
    padding: 5px;
    overflow: hidden;
    margin: 0 auto;
    margin-bottom: 0px;
}

.quick-view-icon img {
    width: 100%;
    filter: invert(44%) sepia(23%) saturate(4195%) hue-rotate(346deg) brightness(98%) contrast(92%);
}

.quick-view-heading {
    height: 54px;
    font-size: 14px;
    line-height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.quick-view-heading span {
    display: block;
    font-size: 14px;
    line-height: 18px;
}

.quick-view-text {
    font-size: 14px;
    font-weight: 600;
    color: #ef5e29;
}

@media only screen and (max-width:1199px) and (min-width:992px) {
    .quick-view-heading {
        height: 54px;
        font-size: 12px;
        line-height: 18px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .quick-view-heading span {
        display: block;
        font-size: 12px;
        line-height: 18px;
    }

    .quick-view-text {
        font-size: 12px;
        font-weight: 600;
        color: #ef5e29;
    }
}

@media only screen and (max-width:575px) {
    .quick-view-heading {
        height: auto;
        font-size: 14px;
        line-height: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
}

/* quick-view-end */

/* download-brochure-button */
.brochure-div {
    width: 100%;
    padding: 0px 1rem 1rem;
}

a.btn.btn-download-brochure {
    display: block;
    width: 100%;
    background-image: linear-gradient(to right, #e6333a, #f37022);
    border-radius: 0px;
    line-height: 34px;
    font-weight: 500;
    color: #fff;
    transition: 0.3s ease-in-out;
}

a.btn.btn-download-brochure:hover {
    background-image: linear-gradient(to left, #e6333a, #f37022);
    transition: 0.3s ease-in-out;
}

.like_share_list .btn.btn-light-success {
    background: #f37022 !important;
    border-color: #f37022 !important;
    color: #ffffff !important;
    border-radius: 0px !important;
}

.like_share_list .btn.btn-light-primary {
    background: #017efa !important;
    border-color: #017efa !important;
    color: #ffffff !important;
    border-radius: 0px
}

/* download-brochure-button */

/* builder-details-start */

.vesh-detail-bloc-body.builder-details-block {}

.builder-img {}

.builder-img img {
    width: 100%;
}

.builder-text {}

.builder-text h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}

.builder-text p {
    line-height: 20px !important;
    font-size: 14px;
    text-align: justify;
}

@media only screen and (max-width:767px){
    .vesh-detail-bloc-body.builder-details-block .nerb-lists-single{
        overflow: hidden;
    }
    .builder-text h4 {
        font-size: 24px;
        margin-bottom: 8px;
        text-align: center;
    }
}

/* builder-details-end */



.what-section-break{
    margin-bottom:30px;
}

.what-box .vesh-detail-bloc-body{
     height: 354px;
    overflow-x: auto;   
}

.what-box.what-box-1 {
}

.what-box.what-box-2 .vesh-detail-bloc .vesh-detail-bloc-body {
    min-height:100%;
}

/*scrollbar-start*/
/* width */
.what-box .vesh-detail-bloc-body::-webkit-scrollbar {
    width: 4px;
}

/* Track */
.what-box .vesh-detail-bloc-body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #fff;
}

/* Handle */
.what-box .vesh-detail-bloc-body::-webkit-scrollbar-thumb {
    /*    background: #00acfd;*/
    /*    background: linear-gradient(to left bottom, #fc2e78 20%, #008fdb 50%);*/
    background: linear-gradient(to left bottom, #e63639, #f37022);
}

/* Handle on hover */
.what-box .vesh-detail-bloc-body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to left bottom, #e63639, #f37022);
}


@media only screen and (max-width:767px){
    .what-box .vesh-detail-bloc-body{
    height: auto;
    overflow-x: auto;
}

.what-box.what-box-1 {
    margin-bottom: 30px;
}

}





