@import url('https://fonts.googleapis.com/css2?family=Marcellus+SC&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Marcellus+SC&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #1e3d69;
    --color-primary-1: #2659a1;
    --color-secondary: #fcb61a;
    --color-secondary-1: #fde2a8;
    --color-text: #828488;
    --color-baf1630: #6EC1E4;
    --color-5b0222ef: #4054B2;
    --color-black: #000;
    --color-white: #FFF;
    --primary-font-family: "Marcellus SC", serif;
    --primary-font-weight: 400;
    --secondary-font-family: "Montserrat", sans-serif;
    --secondary-font-weight: 400;
    --text-transform-uppercase: uppercase;
    --letter-spacing: 2px;
    --body-text-letter-spacing: .4px;
    --transition: 1s ease-in-out;
    --linear-transition: 500ms linear;
}

body {
    font-family: var(--secondary-font-family);
    font-weight: var(--secondary-font-weight);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--primary-font-family);
    font-weight: var(--primary-font-weight);
    text-transform: var(--text-transform-uppercase);
    color: var(--color-primary);
}

p {
    line-height: 26px;
    font-weight: 500;
    letter-spacing: var(--body-text-letter-spacing);
    color: var(--color-primary);
}

.dark {
    color: var(--color-black);
}

.light {
    color: var(--color-text);
}

.Btn {
    background-color: #fff;
    max-width: auto;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: 0px;
    font-size: 14px;
    text-transform: var(--text-transform-uppercase);
    font-weight: 500;
    letter-spacing: var(--letter-spacing);
    padding: 18px 28px;
}

.Btn:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: 2px solid var(--color-primary);
}

/* .section-container {
    width: 75%;
    margin: 0 auto;
    padding: 7rem 0;
} */

h4 {
    margin: 0 !important;
}

.heading img {
    width: 25px;
    margin-right: 15px;
}

.heading {
    padding-bottom: 40px;
    align-items: center;
}

.heading h4 {
    color: var(--color-primary);
    font-size: 35px;
    margin-bottom: 0;
}

/* NAVBAR */

.Navbar {
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .05);
    max-width: 100vw !important;
    height: 8rem;
}

.Navbar .main-nav {
    padding: 10px 50px;
}

.Navbar .navbar-brand img {
    width: 230px !important;
}

.Navbar .navbar-nav .nav-item {
    margin: 0 25px;
}

.Navbar .navbar-nav .nav-item>a {
    text-transform: var(--text-transform-uppercase);
    color: var(--color-primary);
    letter-spacing: var(--letter-spacing);
    font-size: 14px;
    font-weight: 500;
    padding-left: 0 !important;
}

.Navbar .dropdown-menu {
    background-color: var(--color-primary);
    border-radius: 0px;
    padding: 20px;
}

.Navbar .nav-item:hover .dropdown-menu {
    display: block;
}

.Navbar .dropdown-menu .dropdown-item {
    color: var(--color-white);
    text-transform: capitalize;
    letter-spacing: var(--letter-spacing);
    font-size: 14px;
    font-weight: 500;
}

.Navbar .dropdown-item:hover {
    background-color: var(--color-secondary);
}

.Navbar .navbar-nav {
    margin: 0 auto;
}

.Navbar .nav-item {
    position: relative;
}

.nav-item:hover a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    opacity: 1;
    width: 89%;
    display: block;
    background-color: var(--color-primary);
    margin-left: 0;
    transition: var(--transition);
}

.Navbar .nav-item .active::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    opacity: 1;
    width: 89%;
    display: block;
    background-color: var(--color-primary);
    margin-left: 0;
}

.Navbar .btn {
    border: 2px solid var(--color-primary);
    border-radius: 0px;
    font-size: 14px;
    font-weight: 500;
    padding: 10.5px 28px;
    color: var(--color-primary) !important;
    text-decoration: none !important;
}

.Navbar .btn:hover {
    background-color: var(--color-primary);
    border: 2px solid var(--color-primary);
    color: var(--color-white) !important;
}

/* HERO SLIDER SECTION */

.hero-section .slider {
    @media (min-width: 992px) {
        position: relative;
    }
}

.hero-section .slide {
    height: 100vh;
    position: absolute;
    top: 8rem;
    left: 0;
}

.hero-section .slide {
    position: relative;

    .slide__img {
        @media (min-width: 992px) {
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
        }

        width: 100%;

        img {
            width: 100%;
            height: 100vh;
            opacity: 1 !important;
            animation-duration: 3s;
            transition: all 1s ease;
            object-fit:cover;
        }
    }

    .slide__content {
        position: absolute;
        bottom: 25%;
        left: 5%;

        .animated {
            transition: all .5s ease;
        }
    }

    .slide__content h2 {
        font-size: 60px;
        color: var(--color-white);
        margin-bottom: 20px;
    }

    .slide__content h6 {
        font-size: 21px;
        /* color: var(--color-white); */
        color: var(--color-secondary);
    }

    .slide__content p {
        font-size: 16px;
        color: var(--color-white);
        text-transform: var(--text-transform-uppercase);
        font-weight: 400;
    }
}

/* Change animation presets */
.hero-section .slider [data-animation-in] {
    opacity: 0;
    animation-duration: 1.5s;
    transition: opacity 0.5s ease 0.3s;
}


/* /////////// IMAGE ZOOM /////////// */
@keyframes zoomInImage {
    from {
        transform: scale3d(1, 1, 1);
    }

    to {
        transform: scale3d(1.1, 1.1, 1.1);
    }
}

.zoomInImage {
    animation-name: zoomInImage;
}

@keyframes zoomOutImage {
    from {
        transform: scale3d(1.1, 1.1, 1.1);
    }

    to {
        transform: scale3d(1, 1, 1);
    }
}

.zoomOutImage {
    animation-name: zoomOutImage;
}

/* OVERVIEW SECTION */

.overview-section {
    padding: 100px 0;
}

.overview-section .overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    place-items: center;
}

.overview-section .overview-img img {
    width: 100%;
    height: 100%;

}

.overview-section .overview-info {
    margin: 0 110px 0 0;
    font-size: 16px;
}

.overview-section .overview-info .dark {
    padding: 0 0 30px 0;
    margin-bottom: 0;
}

/* PROPERTY SECTION */
.property-section .property-item {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

}

.property-section .heading {
    padding-bottom: 70px;
}

.property-section .property-single-item {

    position: relative;
    overflow: hidden;
}

.property-section .property-single-item img {
    width: 100%;
    transition: all ease-in-out .5s;
}

.property-section .property-single-item:hover img {
    transform: scale(1.07);
}

.property-section .property-single-item .property-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    background-image: -moz-linear-gradient(90deg, #3f4448 0%, rgba(37, 39, 40, 0) 100%);
    background-image: -webkit-linear-gradient(90deg, #3f4448 0%, rgba(37, 39, 40, 0) 100%);
    background-image: -ms-linear-gradient(90deg, #3f4448 0%, rgba(37, 39, 40, 0) 100%);
    margin-bottom: 0;
    padding-top: 85px;
    padding-bottom: 55px;
    max-height: 100%;
    z-index: 99;
}

.property-section .property-single-item .property-info h5 {
    color: var(--color-white);
    font-size: 20px;
}

.property-section .property-single-item .property-info p a {
    color: var(--color-secondary);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: .2em;
}

.property-section .property-single-item .property-info p a:hover {
    text-decoration: underline;
}


/* SERVICE SECTION */

.service-section {
    background: url(../IMG/bg-img.jpg);
    background-position: center right;
    background-repeat: no-repeat;
    padding: 8rem 0;
}

.service-section .heading {
    padding-bottom: 50px;
}

.service-section .services {
    background-color: var(--color-white);
}
.service-section .service {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
}
.service-section .single-service .service-divider {
    background-color: var(--color-primary);
    height: 1px;
    margin: 20px 0;
}

.service-section .single-service .service-item {
    align-items: center;
    padding-bottom: 15px;
}

.service-section .single-service .service-icon i {
    font-size: 40px;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.service-section .single-service h5 {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: .8px;
    font-weight: 700;
    color: var(--color-primary);
}

.service-section .single-service .service-item i {
    font-size: 14px;
    color: var(--color-secondary);
    margin-right: 15px;
}

.service-section .single-service .service-item p {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 0;
    color: var(--color-black);
}

/* AREA SLIDER SECTION */
.area-section .owl-carousel {
    /*background: url(../img/bg-apartment.png);*/
    background-color: var(--color-primary);
    height:80vh;
    overflow:hidden;
    .owl-stage {
        position: relative;

        .item {
            display: grid;
            grid-template-columns: 10rem 1fr 1.4fr;
            grid-gap: 30px;
        }

        .item-text {
            padding: 10vh;
            display: flex;
            align-content: flex-start;
            align-items: flex-start;
            justify-content: center;
            flex-direction: column;
        }

        .item-text h3 {
            font-size: 28px;
            margin-bottom: 30px;
            color: var(--color-white);
            letter-spacing: 2px;
            text-align: left !important;
        }

        .item-text p {
            color: var(--color-white);
            font-size: 17px;
            line-height: 1.6em;
            text-align: left !important;
            font-weight: 300;
        }

        .item-text p a {
            text-transform: uppercase;
            color: var(--color-secondary);
            font-size: 14px;
            text-decoration: none;
            font-weight: 500;
            letter-spacing: 2px;
            text-align: left !important;
        }
        .item-text ul
        {
            li
            {
                color: var(--color-white);
                font-size: 17px;
                line-height: 1.6em;
                text-align: left !important;
                font-weight: 300;
            }
        }

        .item-img {
            text-align: right;
            
        }

        .item-img img {
            width: 100%;
            height: 80vh;
            object-fit: cover;
        }
    }

    .owl-dots {
        transform: rotate(90deg);
        position: absolute;
        top: 40%;
        left: 4%;
    }

    .owl-dot {
        border-radius: 50%;
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0);
        -webkit-transition: box-shadow 0.3s ease;
        transition: box-shadow 0.3s ease;
        background: transparent;
        position: relative;
        margin: 20px 0;
        height: 25px;
        width: 25px;
    }

    .owl-dot.active {
        outline: 2px solid var(--color-secondary);
        outline-offset: -5px;
    }

    .owl-dot.active span {
        width: 5px;
        height: 5px;
        margin: 8px 10px;
        background: var(--color-secondary) !important;
    }
}

/* TEAM SECTION */

.team-section {
    padding: 7rem 0;
}

.team-section .team {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.team-section .team-member {
    border-right: 1px solid var(--color-secondary-1);
    padding: 20px;
}

.team-section .team-member:last-child {
    border-right: 0;
}

.team-section .team-member .team-img img {
    margin-bottom: 2rem;
    width: 130px;
    border-radius: 50%;
}

.team-section .team-info h6 {
    font-size: 17px;
    color: var(--color-primary);
}

.team-section .team-info p {
    font-size: 13px;
    font-weight: 700 !important;
    color: var(--color-secondary);
    letter-spacing: 1px;
    text-transform: var(--text-transform-uppercase);
    margin: 0;
    min-height: 70px;
}

.team-section .team-info>p {
    padding-bottom: 15px;
}

.team-section .team-info .light {
    font-size: 16px;
    font-weight: 400 !important;
    color: var(--color-text);
    text-transform: none;
    padding-bottom: 0;

}

/* APARTMENT SECTION */

.apartment-section {
    background: url(../img/bg-apartment.png) center/cover no-repeat;
    background-color: var(--color-primary);
    padding: 7rem 0;
}

.apartment-section .heading {
    padding-bottom: 20px;
}

.apartment-section .apartment-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    background-color: var(--color-white);
}

.apartment-section .apartment-contact-form {
    padding: 50px 40px 0 40px;
}

.apartment-section .apartment-contact-form p {
    margin-bottom: 30px;
    font-size: 15px;
    color: var(--color-text);
    font-weight: 400;
}

.apartment-section .apartment-contact-form .user-box input {
    width: 49%;
    float: left;
    padding: 10px 20px;
    font-size: 15px;
    color: var(--color-primary);
    margin-bottom: 1rem;
    border: none;
    outline: initial;
    border: 2px solid var(--color-primary);
    background: initial;
}

.apartment-section .apartment-contact-form .user-box-3 textarea {
    width: 100%;
    float: left;
    padding: 10px 20px;
    font-size: 14px;
    margin-bottom: 20px;
    border: none;
    outline: initial;
    border: 2px solid var(--color-primary);
    background: initial;
}

.apartment-section .apartment-contact-form .user-box-1 input {
    float: right;
}

.apartment-section .apartment-contact-form .user-box-2 input {
    width: 100%;
    padding: 10px 20px;
}

.apartment-section .apartment-contact-form .form-btn {
    padding: 10px 25px;
    width: 100%;
    background: var(--color-primary);
    transition: 0.3s;
}

.apartment-section .apartment-contact-form .form-btn a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
    letter-spacing: 2px;
}

.apartment-section .apartment-contact-form .form-btn:hover {
    background: transparent;
}

.apartment-section .apartment-contact-form .form-btn:hover a {
    color: var(--color-primary);
}

.apartment-section ::placeholder {
    color: var(--color-primary);
    opacity: 1;
}
.apartment-section .apartment-img img{
    height: 100%;
    width: 100%;
}

/* AVAILABLE SECTION */

.available-section {
    background: linear-gradient(rgba(252, 182, 26, 0.4), rgba(252, 182, 26, 0.4)), url(../img/bg-img-1.jpg) center/cover no-repeat;
    /*background: linear-gradient(rgba(252, 182, 26, 0.6), rgba(252, 182, 26, 0.6)), url(../IMG/bg-img-1.jpg) center/cover no-repeat;*/

}

.available-section {
    padding: 7rem 0;
}

.available-section .available {
    color: var(--color-white);
    text-align: center;
    text-transform: uppercase;
}

.available-section .available h3 {
    font-size: 52px;
    margin-bottom: 20px;
}

.available-section .available h2 {
    font-size: 72px;
}

.available-section .available .available-btn {
    margin: 35px auto 0 auto;
    /* background-color: var(--color-white); */
    max-width: 220px;
    letter-spacing: 2.4px !important;
    border: none;
    transition: 0.3s;
}

.available-section .available .available-btn a {
    color: var(--color-primary);
    text-decoration: none;
    transition: 0.3s;
}

.available-section .available .available-btn:hover a {
    color: var(--color-white);
    text-decoration: none;
}

/* GALLERY SECTION */

.gallery-section {
    padding: 7rem 0;
}

.gallery-section .gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr 1fr;
    grid-gap: 10px;
    grid-template-areas:
        "a b c d"
        "e f c g";
}

.gallery-section h4 {
    margin-bottom: 30px;
}

.gallery-section .single-gallery {
    width: 100%;
    position: relative;

}

.gallery-section .single-gallery .gallery-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-white);
    transition-duration: 0.3s, 0.4s;
    transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1), cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0s, 0s;
    transition-property: opacity, transform;
    transition: opacity .3s cubic-bezier(.22, .61, .36, 1), transform .4s cubic-bezier(.25, .46, .45, .94);
    opacity: 0;
}

.gallery-section .single-gallery:hover .gallery-icon {
    opacity: 99;
    cursor: pointer;
}

.gallery-section .single-gallery .gallery-icon i {
    color: var(--color-white);
    font-size: 30px;
}

.gallery-section .single-gallery img {
    width: 100%;
    transition: all .6s ease;
}

.gallery-section .single-gallery:hover img {
    opacity: 0.7;
    transform: scale(1.3);
    cursor: pointer;
}

.gallery-section .single-gallery .gallery-img {
    overflow: hidden;
    background-color: var(--color-secondary);
}

.gallery-section .gallery-1 {
    grid-area: a;
}

.gallery-section .gallery-2 {
    grid-area: b;
}

.gallery-section .gallery-3 {
    grid-area: c;
}

.gallery-section .gallery-4 {
    grid-area: d;
}

.gallery-section .gallery-5 {
    grid-area: e;
}

.gallery-section .gallery-6 {
    grid-area: f;
}

.gallery-section .gallery-7 {
    grid-area: g;
}

/* FOOTER SECTION */

.footer-section {
    background-color: var(--color-primary);
}

.footer-section .section-container {
    padding: 5rem 0 4rem 0;
}

.footer-section .footer-title {
    text-align: center;
    color: var(--color-white);
    margin-bottom: 90px;
}

.footer-section .footer-title h5 {
    font-size: 30px;
}

.footer-section .footer-title h3 {
    font-size: 48px;
}

.footer-section .footer-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.footer-section .footer-info .footer-info-title {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 2.4px;
    margin-bottom: 40px;
    color: var(--color-secondary);
}

.footer-section .footer-info p {
    color: var(--color-white);
}

/* footer-info-1 */

.footer-section .footer-info .footer-info-text {
    margin-bottom: 40px;
    letter-spacing: .4px;
    font-size: 16px;
    font-weight: 400;
}

.footer-section .footer-info-1 {
    /* padding-right: 88px; */
    padding-right: 80px;
}

.footer-section .footer-info-1 .footer-contact {
    display: flex;
    margin-bottom: 20px;
}

.footer-section .footer-info-1 .footer-contact p {
    font-size: 16px;
    letter-spacing: .4px;
    font-weight: 400;
    margin-bottom: 0;
}

.footer-section .footer-info-1 .footer-contact .footer-contact-text {
    color: var(--color-secondary-1);
    font-size: 15px;
    letter-spacing: .3px;
    width: 60px;
    margin-right: 15px;
}

/* footer-info-2 */

.footer-section {
    padding: 5rem 0 0 0;
}

.footer-section .footer-info-2 {
    max-width: 80%;
}

.footer-section .footer-info-2 .footer-people {
    display: flex;
    align-items: center;
    padding: 0 10px 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    margin-bottom: 40px;
}

.footer-section .footer-info-2 .footer-people img {
    margin-right: 20px;
    border-radius: 50%;
    width: 80px;
    border: 2px solid var(--color-white);
    height: 80px;
    border: 2px solid var(--color-white);
}

.footer-section .footer-info-2 .footer-people-text h5 {
    color: var(--color-white);
    font-size: 17px;
    margin-bottom: 8px;
}

.footer-section .footer-info-2 .footer-people-text p {
    font-size: 12px;
    margin-bottom: 0;
    color: var(--color-secondary-1);
    line-height: 15px;
    text-transform: var(--text-transform-uppercase);
}

.footer-section .footer-info-2 .footer-people-contact {
    display: flex;
    margin-bottom: 10px;

}

.footer-section .footer-info-2 .footer-icon i {
    color: var(--color-secondary);
    font-size: 16px;
    margin-right: 15px;
}

.footer-section .footer-info-2 .footer-people-contact p {
    margin-bottom: 0;
    font-size: 15px;
    padding-left: 10px;
}

/* footer-info-3 */


.footer-section .footer-contact-form .user-box input 
{
    width: 49%;
    float: left;
    padding: 10px 20px;
    font-size: 15px;
    color:var(--color-secondary-1) !important;
    margin-bottom: 1rem;
    border: none;
    outline: initial;
    border: 2px solid var(--color-secondary-1);
    background: initial;
}

.footer-section .footer-contact-form .user-box-3 textarea 
{
    width: 100%;
    float: left;
    padding: 10px 20px;
    font-size: 15px;
    margin-bottom: 20px;
    border: none;
    outline: initial;
    border: 2px solid var(--color-secondary-1);
    background: initial;
    color: var(--color-secondary-1) !important;
}

.footer-section .footer-contact-form .user-box-1 input 
{
    float: right;
}

.footer-section .footer-contact-form .user-box-2 input 
{
    width: 100%;
    padding: 10px 20px;
}

.footer-section .footer-contact-form .form-btn 
{
    padding: 10px 25px;
    width: 100%;
    background: var(--color-secondary);
    border: transparent;
    font-weight: 500;
    transition: 0.3s;
}

.footer-section .footer-contact-form .form-btn:hover {
    background: var(--color-secondary);
    transition: 0.3s;
}

.footer-section .footer-contact-form .form-btn a 
{
    color: var(--color-primary);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 2px;
    transition: 0.3s;
    &:hover
    {
        background:var(--color-secondary) !important;
    }
}

.footer-section ::placeholder {
    color: var(--color-secondary-1);
    opacity: 1;
}

.footer-section .footer-main {
    padding-bottom: 80px;
}

/* footer-copyright */
.footer-section .footer-copyright {
    margin-top: 25px;
}

.footer-section .footer-copyright p {
    color: var(--color-white);
    font-size: 14px;
    text-align: left;
    font-weight: 600;
    letter-spacing: .4px;
}

.footer-section .footer-copyright span {
    color: var(--color-secondary);
}

.footer-section .footer-copyright a {
    color: var(--color-white);
    text-decoration: none;
}

/* footer icons */

.footer-section .Footer-icons {
    display: flex;
    justify-content: flex-start;
}

.footer-section .Footer-icons .single-footer-icon i {
    color: var(--color-secondary);
    font-size: 20px;
    display: block;
}

.footer-section .Footer-icons .single-footer-icon {
    width: 3rem;
    height: 3rem;
    display: grid;
    place-items: center;
    margin-right: 10px;
    border-radius: 50%;
    background-color: rgba(158, 160, 166, 0.1);
}

.footer-section .Footer-icons .single-footer-icon:hover {
    background-color: rgba(158, 160, 166, 0.1);
    /* background-color: rgba(85, 89, 92, 0.5); */
    transform: scale(0.9);
}


.owl-carousel {
    display: block !important;
}


/* ==================== SERVICE PAGE ====================  */

/* SERVICE HOME SECTION */

.service-home-section {
    background: url(../img/service-bg.jpg) center/cover no-repeat;
    margin-top: 8rem;
}

.service-home-section .service-home h1 {
    color: var(--color-white);
    font-size: 25px;
    margin-bottom: 12px;
}

.service-home-section .service-home {
    padding: 80px 0 40px 0;
    text-align: center;
}

.service-home-section .service-list {
    justify-content: center;
}

.service-home-section .service-list li a {
    color: var(--color-secondary);
    font-size: 14px;
    text-decoration: none;
    letter-spacing: .4px;
    margin-right: 30px;
    font-family: var(--secondary-font-family);
}

.service-home-section .service-list a:hover {
    color: var(--color-white);
}

/* SERVICE SECTION */

.Service_section {
    background: url(../img/service-bg-2.png) center/cover no-repeat;
}

.Service_section .Services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background-color: var(--color-white);
    grid-gap: 30px;
}

.Service_section .Services .Single_service {
    padding: 45px;
    background-color: var(--color-secondary-1);
}

.Service_section .Single_service .Service_title {
    justify-content: center;
    margin-bottom: 15px;
}

.Service_section .Single_service .Service_title h5 {
    font-size: 18px;
    color: var(--color-primary);
}

.Service_section .Single_service .Service_icon i {
    color: var(--color-secondary);
    font-size: 40px;
    margin-right: 22px;
}

.Service_section .Single_service .Service_icon:hover {
    animation: shake 150ms 2 linear;
}

.Service_section .Single_service .Service_info p {
    font-size: 14px;
    color: var(--color-black);
    margin-bottom: 0;
}

@keyframes shake {
    0% {
        transform: translate(3px, 0);
    }

    50% {
        transform: translate(-3px, 0);
    }

    100% {
        transform: translate(0, 0);
    }
}

@-moz-keyframes shake {
    0% {
        -moz-transform: translate(3px, 0);
    }

    50% {
        -moz-transform: translate(-3px, 0);
    }

    100% {
        -moz-transform: translate(0, 0);
    }
}

@-webkit-keyframes shake {
    0% {
        -webkit-transform: translate(3px, 0);
    }

    50% {
        -webkit-transform: translate(-3px, 0);
    }

    100% {
        -webkit-transform: translate(0, 0);
    }
}

@-ms-keyframes shake {
    0% {
        -ms-transform: translate(3px, 0);
    }

    50% {
        -ms-transform: translate(-3px, 0);
    }

    100% {
        -ms-transform: translate(0, 0);
    }
}

@-o-keyframes shake {
    0% {
        -o-transform: translate(3px, 0);
    }

    50% {
        -o-transform: translate(-3px, 0);
    }

    100% {
        -o-transform: translate(0, 0);
    }
}




/* ================= SERVICE PAGE ================  */

/* SERVICE HOME SECTION */

.service-home-section {
    background: url(../img/service-bg.jpg) center/cover no-repeat;
    margin-top: 8rem;
}

.service-home-section .service-home h1 {
    color: var(--color-white);
    font-size: 25px;
    margin-bottom: 12px;
}

.service-home-section .service-home {
    padding: 80px 0 40px 0;
    text-align: center;
}

.service-home-section .service-list {
    justify-content: center;
}

.service-home-section .service-list p a {
    color: var(--color-secondary);
    font-size: 14px;
    text-decoration: none;
    letter-spacing: .4px;
    /* margin-right: 30px; */
    font-family: var(--secondary-font-family);
}

.service-home-section .service-list a:hover {
    color: var(--color-white);
}

.service-home-section .service-list span i {
    color: var(--color-secondary);
    margin: 0 15px;
    font-size: 11px;
}

/* SERVICE SECTION */

.Service_section {
    background: url(../img/bg-img.jpg);
    background-position: center right;
    background-repeat: no-repeat;
    padding: 6rem 0;
}

.Service_section {
    .section-container {
        padding: 0;
        width: 85%;
    }

    .heading {
        padding-bottom: 25px;
    }

    .heading h4 {
        font-size: 25px;
    }

    .Services {
        background-color: var(--color-white);
        /* background-color: var(--color-secondary-1); */
    }

    .Service_container {
        display: grid;
        grid-template-columns: 0.8fr 2fr;
        grid-gap: 50px;
        background-color: var(--color-white);

    }

    .section-container {
        padding: 0;
        width: 85%;
    }

    .container {
        padding-left: 0;
        padding-right: 0;
    }

    .heading {
        padding-bottom: 25px;
    }

    .heading h4 {
        font-size: 25px;
    }

    .Services {
        background-color: var(--color-white);
        border-radius: 10px;
        /* background-color: var(--color-secondary-1); */
    }

    .Service_info h3 {
        font-size: 35px;
        line-height: 50px;
        font-weight: 700;
    }

    .Service_info p {
        font-size: 15px;
        margin: 20px 0 0 0;
        color: var(--color-text);
    }

    .Service_item {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 40px 30px;
    }

    .Single_item {
        border-radius: 10px;
        box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.09);
    }

    .Single_item .Service_item_img img {
        width: 100%;
        height: 230px;
        object-fit: cover;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

    .Single_item .Service_item_img {
        position: relative;
    }

    .Single_item .Service_item_img .Service_line {
        position: absolute;
        bottom: -3px;
        left: 25%;
        right: 25%;
        height: 3px;
        background-color: var(--color-secondary);
    }

    .Single_item .Service_item_img .Service_icon {
        position: absolute;
        top: 85%;
        left: 50%;
        transform: translate(-50%);
        border-radius: 50%;
        height: 70px;
        width: 70px;
        display: grid;
        place-items: center;
        background-color: var(--color-white);
        box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.1);
    }

    .Single_item .Service_item_img .Service_icon i {
        color: var(--color-primary);
        font-size: 40px;
    }

    .Single_item .Service_item_info {
        padding: 50px 10px 20px 10px;
        text-align: center;
    }

    .Single_item .Service_item_info h3 {
        font-size: 22px;
        color: var(--color-primary);
    }

    .Single_item .Service_item_info p {
        font-size: 15px;
        color: var(--color-text);
        font-weight: 400 !important;
    }

    .Single_item:hover .Service_item_img .Service_line {
        left: 15%;
        right: 15%;
        transition: all .6s ease;
    }

    .Single_item:hover .Service_item_img .Service_icon i {
        transform: scale(0.9);
        transition: all .6s ease;
    }

    .Single_item:hover {
        box-shadow: 0px 5px 20px 8px rgba(0, 0, 0, 0.09);
        transition: all .6s ease;
    }


}

/* ================= PROJECTS PAGE ================  */

.page-container {
    padding-top: 10vh;
    padding-bottom: 10vh;
}

.project-grid {
    .property-item {
        grid-gap: 30px !important;
    }

    .property-info {
        padding-left: 5vh;
        padding-right: 5vh;
    }
}

/* =============== PROJECTS DETAILS PAGE ==============  */

.project_details_section {
    padding: 7rem 0;

    .project_deatail {
        display: grid;
        grid-template-columns: 1fr 350px;
        grid-gap: 40px;
    }

    .project_deatail .project_info h2 {
        font-size: 45px;
        color: var(--color-primary);
        margin-bottom: 25px;
        font-weight: 700;
    }

    .project_deatail .project_info p {
        font-size: 18px;
        color: var(--color-text);
        margin-bottom: 20px;
        font-weight: 400;
    }

    .project_deatail .project_contact {
        padding: 40px;
        box-shadow: 0px 4px 13px -2px rgba(19, 16, 34, 0.06), 0px 4.8px 24.4px -6px rgba(19, 16, 34, 0.10);
        align-content: center;
    }

    .project_deatail .single_project_contact {
        padding: 15px 0;
        border-bottom: 1px solid #E0E0E0;
    }

    .project_deatail .single_project_contact p {
        margin-bottom: 0 !important;
        font-size: 18px;
        color: var(--color-black);
    }

    .project_deatail .single_project_contact .light {
        color: var(--color-text);
    }

    .project_deatail .single_project_contact:last-child {
        border-bottom: none;
    }

    .project_img_container_1 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 20px;
        margin-top: 100px;
    }

    .project_img_container_2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
        margin-top: 100px;
    }

    .project_img {
        padding: 10px;
    }

    .project_img img {
        width: 100%;
        transition: transform .2s;
        border: 2px solid var(--color-primary) !important;
        padding: 10px;
    }

    .project_img img:hover {
        transform: scale(1.1);
    }
}

/* ================= ABOUT PAGE ================  */

.about_section {
    padding: 7rem 0;

    .about_us {
        display: grid;
        grid-template-columns: 1fr 1fr;
        place-items: start;
        grid-gap: 70px;
    }

    .about_img img {
        width: 100%;
    }

    .about_img {
        box-sizing: border-box;
        position: relative;
    }

    .about-border {
        position: absolute;
        top: 20px;
        left: 20px;
        height: 100%;
        width: 100%;
        border: 4px solid var(--color-secondary);
        z-index: -1;
    }

    .section-container {
        width: 80%;
    }

    .about_info .about {
        margin-bottom: 0;
        font-size: 20px;
        color: var(--color-secondary);
        font-weight: 500;
    }

    .about_info h1 {
        margin-bottom: 15px;
        font-size: 45px;
        color: var(--color-primary);
    }

    .about_info p {
        margin-bottom: 20px;
        font-size: 16px;
        color: var(--color-text);
        font-weight: 400;
    }

    .about_info h6 {
        margin-bottom: 3px;
        font-size: 17px;
        color: var(--color-black);
    }
}

/* ABOUT MISSION SECTION */

.about_mission_section {
    background: linear-gradient(rgba(252, 182, 26, 0.4), rgba(252, 182, 26, 0.4)), url(../img/bg-img-1.jpg) center/cover no-repeat;
}

.about_mission_section {
    .about_mission {
        padding: 8rem 0;
    }

    .about_mission_info {
        text-align: center;
        align-items: center;
    }

    .about_mission_info h2 {
        color: var(--color-primary);
        font-size: 50px;
        margin-bottom: 25px;
    }

    .about_mission_info p {
        font-size: 20px;
        max-width: 80%;
        margin: 0 auto;
        color: var(--color-white);
        font-weight: 400;
    }
}

/* ================= CONTACT US ================  */

.contact_section {
    padding: 7rem 0;

    .container {
        width: 70%;
    }

    .contact_item {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }

    .single_contact {
        text-align: center;
        border-right: 1px solid var(--color-secondary-1);
    }

    .single_contact:last-child {
        border-right: none;
    }

    .single_contact .contact_icon i {
        font-size: 60px;
        color: var(--color-secondary);
        margin-bottom: 25px;
    }

    .single_contact h6 {
        font-size: 17px;
        color: var(--color-primary);
        font-weight: 600;
        margin-bottom: 20px;
    }

    .single_contact p {
        font-size: 15px;
        color: var(--color-text);
        font-weight: 400;
    }
}

/* MAP SECTION */

/* CONTACT FORM SECTION */

.contact_form_section {
    width: 60%;
    margin: 0 auto;
    padding: 7rem 0;

    .footer-contact-form .user-box
    {
        width:49%;
        float: left;
    }
    .footer-contact-form  input {
        
        width:100%;
        padding: 10px 20px;
        font-size: 15px;
        color:#000;
        margin-bottom: 15px;
        border: none;
        outline: initial;
        border: 2px solid var(--color-secondary);
        background: initial;
    }

    .footer-contact-form textarea {
        width: 100%;
        float: left;
        padding: 10px 20px;
        font-size: 15px;
        margin-bottom: 15px;
        border: none;
        outline: initial;
        border: 2px solid var(--color-secondary);
        background: initial;
    }

    .footer-contact-form .user-box-2 input {
        float: right;
    }

    .footer-contact-form .form-btn {
        padding: 10px 25px;
        width: 100%;
        background: var(--color-secondary);
        border: 2px solid var(--color-secondary);
        font-weight: 500;
    }

    .footer-contact-form .form-btn:hover {
        background: var(--color-secondary);
    }

    .footer-contact-form .form-btn a {
        color: var(--color-primary);
        text-decoration: none;
        font-size: 14px;
        letter-spacing: 2px;
    }

    ::placeholder {
        color: var(--color-primary);
        opacity: 1;
    }

    .contact_title {
        margin-bottom: 50px;
        text-align: center;
    }

    .contact_title h3 {
        margin-bottom: 15px;
        color: var(--color-primary);
        font-size: 40px;
    }

    .contact_title p {
        color: var(--color-primary);
        font-size: 16px;
        color: var(--color-text);
        font-weight: 400;
    }

    .contact_checkbox {
        margin-top: 50px;
        text-align: center;
        color: var(--color-text);
    }
}



/* ================ SCHEDULE A VISIT SECTION ============  */

.Schedule_section {
    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        z-index: 1;
    }

    .footer-contact-form h2 {
        font-size: 30px;
        margin-bottom: 40px;
        text-align: center;
    }

    .popup {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: #fff;
        padding: 60px;
        width: 700px;
    }

    .close {
        position: absolute;
        top: 10px;
        right: 30px;
        cursor: pointer;
        font-size: 48px;
    }

    /*  */
    .footer-contact-form .user-box input {
        width: 49%;
        float: left;
        padding: 10px 20px;
        font-size: 15px;
        color: grey;
        margin-bottom: 15px;
        border: none;
        outline: initial;
        border: 2px solid var(--color-secondary);
        background: initial;
    }

    .footer-contact-form .user-box-3 textarea {
        width: 100%;
        float: left;
        padding: 10px 20px;
        font-size: 15px;
        margin-bottom: 15px;
        border: none;
        outline: initial;
        border: 2px solid var(--color-secondary);
        background: initial;
    }

    .footer-contact-form .user-box-2 input {
        float: right;
    }

    .footer-contact-form .form-btn {
        padding: 10px 25px;
        width: 100%;
        background: var(--color-secondary);
        border: 2px solid var(--color-secondary);
        font-weight: 500;
    }

    .footer-contact-form .form-btn:hover {
        background: white;
        transition: var(--transition-1);
    }

    .footer-contact-form .form-btn:hover a {
        color: var(--color-secondary);
    }

    .footer-contact-form .form-btn a {
        color: var(--color-white);
        text-decoration: none;
        font-size: 14px;
        letter-spacing: 2px;
    }

    ::placeholder {
        color: grey;
        opacity: 1;
        /* padding-left: 10px; */
    }
}


.viewbox-content {
    margin: 5px !important;
}

.viewbox-header,
.viewbox-footer {
    margin: 0 !important;
}

.viewbox-body {
    border-radius: 0 !important;
}





.apartment-img
{
    height:630px;
}
.apartment-img img
{
    width:100%;
    height:100%;
    object-fit:cover;
}



.gallery
{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    grid-gap:20px;
}
.gallery .gallery-item
{
    position:relative;
}
.gallery .gallery-item .gallery-img
{
    width:100%;
    height:250px;
}
.gallery .gallery-item .gallery-img img
{
    width:100%;
    height:100%;
    object-fit:cover;
}
.gallery .gallery-item .gallery-icon 
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-white);
    transition-duration: 0.3s, 0.4s;
    transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1), cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0s, 0s;
    transition-property: opacity, transform;
    transition: opacity .3s cubic-bezier(.22, .61, .36, 1), transform .4s cubic-bezier(.25, .46, .45, .94);
    opacity: 0;
}

.gallery .gallery-item:hover .gallery-icon 
{
    opacity: 1;
    cursor: pointer;
}

.gallery .gallery-item .gallery-icon i 
{
    color: var(--color-white);
    font-size: 30px;
}

.gallery .gallery-item img 
{
    width: 100%;
    transition: all .6s ease;
}

.gallery .gallery-item:hover img 
{
    opacity: 0.7;
    transform: scale(1.3);
    cursor: pointer;
}

.gallery .gallery-item .gallery-img 
{
    overflow: hidden;
    background-color: var(--color-secondary);
}

.navbar-expand-lg .navbar-collapse
{
    gap:20px;
}
.lang
{
    padding:10px 20px;
    font-family: var(--primary-font-family);
}