/********** Template CSS **********/
:root {
    --primary: #c49345;
    --secondary: #FDBE33;
    --light: #F4F6F8;
    --dark: #040F28;
}

* {
    scroll-behavior: smooth;
}

.pt-6 {
    padding-top: 90px;
}

.pb-6 {
    padding-bottom: 90px;
}

.py-6 {
    padding-top: 90px;
    padding-bottom: 90px;
}

.social-links a:hover {
    color: #FFFFFF;
    transition: .4s all;
}

.social-links a {
    margin-bottom: 10px;
    display: block;
}

.header-logo {
    height: 75px;
}

.footer-logo {
    height: 75px;
}

.btn {
    position: relative;
    font-weight: 600;
    text-transform: uppercase;
    transition: .5s;
}

.btn::after {
    position: absolute;
    content: "";
    width: 0;
    height: 5px;
    bottom: -1px;
    left: 50%;
    background: var(--primary);
    transition: .5s;
}

.btn.btn-primary::after {
    background: var(--dark);
}

/* .btn:hover::after,
.btn.active::after {
    width: 50%;
    left: 25%;
} */

.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    left: 50%;
    bottom: 0;
    margin-left: -22px;
    border-radius: 0;
    z-index: 99;
}

.bg-dark-radial {
    background-image: -webkit-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 100%);
    background-image: -moz-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 100%);
    background-image: -ms-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 100%);
    background-image: -o-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 100%);
    background-image: repeating-radial-gradient(center center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 100%);
    background-size: 3px 3px;
}

.bg-light-radial {
    background-image: -webkit-repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: -moz-repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: -ms-repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: -o-repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
    background-size: 3px 3px;
}

.navbar-dark .navbar-nav .nav-link {
    position: relative;
    padding: 35px 15px;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--light);
    outline: none;
    transition: .5s;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(4, 15, 40, .7);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h4 {
        font-size: 18px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.page-header {
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(4, 15, 40, .7), rgba(4, 15, 40, .7)), url(../images/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.service-item .service-icon {
    margin-top: -50px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}

.service-item .service-icon i {
    transition: .2s;
}

.service-item:hover .service-icon i {
    font-size: 60px;
}

.portfolio-item {
    margin-bottom: 60px;
}

.portfolio-title {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 120px;
    padding: 0 30px;
    right: 30px;
    left: 30px;
    bottom: -60px;
    background: #FFFFFF;
    z-index: 3;
}

.portfolio-btn {
    position: absolute;
    display: inline-block;
    top: 50%;
    left: 50%;
    margin-top: -60px;
    margin-left: -60px;
    font-size: 120px;
    line-height: 0;
    transition: .1s;
    transition-delay: .3s;
    z-index: 2;
    opacity: 0;
}

.portfolio-item:hover .portfolio-btn {
    opacity: 1;
}

.portfolio-box::before,
.portfolio-box::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    transition: .5s;
    z-index: 1;
    background: rgba(4, 15, 40, .7);
}

.portfolio-box::before {
    left: 0;
}

.portfolio-box::after {
    right: 0;
}

.portfolio-item:hover .portfolio-box::before {
    left: 0;
    width: 50%;
}

.portfolio-item:hover .portfolio-box::after {
    right: 0;
    width: 50%;
}

.portfolio-box {
    transition: .4s all;
}

.portfolio-box:hover {
    transform: scale(1.1);
}


/* Floor Plan Start */
.discover-table {
    border-collapse: separate;
    border-spacing: 0px 7px;
    width: 100%;
}

.floor-click {
    cursor: pointer;
}

.discover-table thead tr th {
    color: #000000;
    font-weight: 600;
}

.active-tr {
    background-color: #c49345b9;
    border-bottom: none !important;

}

.active-tr+tr {
    background-color: #c49345b9;
    border-top: none !important;
    border: 1.61px solid #0000001A;
    transform: translateY(-7px);
}

.active-tr span {
    color: #FFFFFF !important;
}

.discover-table tbody tr {
    border-radius: 10px;
    transition: .4s all;
}

.discover-table tbody tr td span {
    font-weight: 600;
}

.discover-table thead tr th {
    padding: 17px 10px;
    font-size: 16px;
}

.nested-td {
    display: none;
}

.discover-table tbody tr td .nested-td {
    width: 100%;
    padding: 15px;
}

.discover-table tbody tr td {
    border: 1.61px solid #0000001A;
    border-radius: 10px;
    font-size: 16px;
    padding: 20px 15px;
    text-transform: capitalize;
}

.discover-table tbody tr td:nth-child(1) {
    border-right: none;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

.discover-table tbody tr td:nth-child(2) {
    border-left: none;
    border-right: none;
    border-radius: 0px;
}

.discover-table tbody tr td:nth-child(3) {
    border-left: none;
    border-right: none;
    border-radius: 0px;
}

.discover-table tbody tr td:nth-child(4) {
    border-left: none;
    border-right: none;
    border-radius: 0px;
}

.discover-table tbody tr td:nth-child(5) {
    border-left: none;
    /* border-right: none; */
    border-radius: 0px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.discover-table tbody tr td:nth-child(6) {
    border-left: none;
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
}

.discover-table tbody tr td[colspan='6'] {
    border: none;
}

.discover-table tbody .active-tr+tr td[colspan='6'] {
    border: 1.61px solid #0000001A !important;
    border-top-left-radius: 0px !important;
    border-top-right-radius: 0px !important;
    border-top: none !important;
    border-bottom-right-radius: 10px !important;
}

.discover-table tbody .active-tr td {
    border-bottom: none !important;
    border-bottom-right-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
}

.discover-table tbody tr td .nested-td img {
    width: 40%;
    display: block;
    margin: auto;
}

/* Floor Plan End */

.hero-bg-img {
    background-image: url('../images/overview.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.hero-content-wrapper {
    background-color: rgba(4, 15, 40, .7);
    padding: 100px 0;
}

.form {
    background-color: #c4934581;
    padding: 30px;
}

.form h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #FFFFFF;
}
.iti{
    width: 100%;
    margin-bottom: 10px;
}
.form input {
    width: 100%;
    padding: 10px;
    border: 1px solid lightgrey;
    margin-bottom: 10px;
    transition: .4s all;
}

.form input:focus {
    outline: 0;
    border-color: var(--primary);
}

.form button {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--primary);
    background-color: var(--primary);
    font-weight: 600;
    color: #FFFFFF;
    transition: .4s all;
}

.form button:hover {
    background-color: #FFFFFF;
    color: var(--primary);
}

.top-bar-box {
    line-height: 17px;
}

.top-bar-box span {
    font-size: small;
}

.top-bar-box h6 {
    margin-bottom: 5px;
}

.slider-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.slider-buttons button {
    border-radius: 50%;
    border: 1px solid var(--primary);
    color: #FFFFFF;
    background-color: var(--primary);
    font-size: small;
    font-weight: 400;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s all;
    cursor: pointer;
}

@media (min-width: 992px) {

    .testimonial,
    .contact-form {
        margin-left: -90px;
    }
}

@media (min-width: 992px) {
    .footer::after {
        position: absolute;
        content: "";
        width: 1px;
        height: 100%;
        top: 0;
        left: 50%;
        background: var(--primary)
    }
}

.footer-shape::before {
    position: absolute;
    content: "";
    width: 80px;
    height: 100%;
    top: 0;
    left: -40px;
    background: var(--primary);
    transform: skew(40deg);
}

@media(max-width:768px){
    .header-logo {
        height: 55px;
    }
    .footer-logo {
        height: 55px;
    }
    .px-5 {
        padding-right: 2rem !important;
        padding-left: 2rem !important;
    }
    #features div:nth-child(1){
        padding-top: 0 !important;
    }
    .lightbox {
        position: fixed;
        top: 50% !important;
        transform: translateY(-50%);
    }
}