:root {
    --primary: #453550;
    --secondary: #988485;
    --bg: #FBF5F4;
}

@font-face {
    font-family: 'BIG CASLON CC';
    src: url('../fonts/Big-Caslon-CC.otf') format('opentype');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Sofia Pro';
    src: url('../fonts/Sofia-Pro-Regular-Az.otf') format('opentype');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Sofia Pro';
    src: url('../fonts/Sofia-Pro-Light-Az.otf') format('opentype');
    font-weight: 300;
    font-display: swap;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    height: 100%;
}

body {
    position: relative;
    line-height: 1.6;
    font-size: 14px;
    font-weight: 300;
    font-family: "Sofia Pro", sans-serif;
    color: #988485;
    background-color: #FFF;
    overflow-x: hidden;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'BIG CASLON CC', serif;
}

h6 {
    font-family: "Sofia Pro", sans-serif;
}

p {
    font-family: "Sofia Pro", sans-serif;
    font-size: 14px;
}

a {
    text-decoration: none;
    color: var(--theme);
    -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    -moz-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    -ms-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    --bs-gutter-x: 2.5rem;
}

.form-control, .wpcf7-form-control {
    font-size: 14px;
    border: 0;
	width: 100%;
    color: var(--primary);
    font-weight: 300;
    border-bottom: 1px solid var(--secondary);
    border-radius: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    background-color: transparent;
    margin-bottom: 40px;
}
 
.form-control:focus,
.wpcf7-form-control:focus,
.wpcf7-form-control:focus-visible{
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
	outline: none;
}
.modal .btn-close:focus {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.py-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.py-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pt-80 {
    padding-top: 80px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pt-30 {
    padding-top: 30px;
}

.my-60 {
    margin-top: 60px;
    margin-bottom: 60px;
}

.theme-bg-color {
    background-color: #FBF5F4;
}

.section-title {
    position: relative;
    margin-bottom: 20px;
}

.section-title .sub-title {
    color: var(--secondary);
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title .main-title {
    color: var(--primary);
    font-size: 28px;
    letter-spacing: 5px;
    line-height: 46px;
    text-transform: uppercase;
    font-weight: 400;
}

.section-title .main-title.text-md {
    font-size: 20px;
}

.short-content {
    color: var(--secondary);
    font-size: 14px;
    font-weight: 300;
    line-height: 28px;
}

@media screen and (max-width: 768px) {

    .py-100 {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .section-title .sub-title {
        font-size: 14px;
    }

    .section-title .main-title {
        font-size: 24px;
        line-height: 38px;
        letter-spacing: 3px;
    }

}

/* Owl Carousel - Dots */

.owl-theme .owl-dots .owl-dot span {
    background: var(--primary);
    width: 32px;
    height: 1px;
    opacity: 50%;
    border-radius: 0;
    margin: 5px 12px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.owl-theme .owl-dots .owl-dot.active span {
    background: var(--primary);
    width: 80px;
    opacity: 100%;
}

.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--primary);
    opacity: 100%;
}

/* Button */

.primary-btn {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: var(--primary);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 50%;
    border: none;
    background-color: transparent;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.primary-btn:focus-visible {
    outline: 0;
}

.primary-btn::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    opacity: 50%;
    background-color: #44354F;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.primary-btn:hover::after {
    width: 100%;
    left: 0;
    right: 0;
    -webkit-transform: none;
    -ms-transform: none;
    -moz-transform: none;
    -o-transform: none;
    transform: none;
    opacity: 100%;
}

.primary-btn:hover {
    opacity: 100%;
}

.line-section {
    position: relative;
}

.line-section .horizontal-line {
    margin: 0;
    opacity: 50%;
    color: var(--secondary);
    border: 0;
    width: 100%;
    height: 1px;
    background-color: #988485;
}

.btn:first-child:active:focus-visible{
    box-shadow: none;
}

@media screen and (max-width: 787.98px) {

    .owl-theme .owl-dots .owl-dot span {
        width: 25px;
    }

    .owl-theme .owl-dots .owl-dot.active span {
        width: 60px;
    }
}

#preloader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #101010;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    overflow: hidden;
    text-align: center;
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}

#preloader.hide {
    opacity: 0;
    visibility: hidden;
    width: 0%;
}

#preloader .hide-loader {
    position: absolute;
    left: 15px;
    top: 15px;
    background-color: #2E2E2E;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    z-index: 3;
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}

#preloader.hide .hide-loader {
    opacity: 0;
    visibility: hidden;
}

#preloader .preloader-inner {
    position: absolute;
    z-index: 100;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#preloader .preloader-inner h4 {
    color: #fff;
     margin-top: 20px;
    font-size: 16px;
}

#preloader .preloader-inner h4 .dot-pulse {
    position: relative;
    display: inline-block;
    left: -9999px;
    top: 2px;
    width: 5px;
    height: 5px;
    margin-left: 12px;
    border-radius: 5px;
    background-color: #fff;
    color: #fff;
    box-shadow: 9999px 0 0 -5px;
    -webkit-animation: dot-pulse 1.5s infinite linear;
    -moz-animation: dot-pulse 1.5s infinite linear;
    -o-animation: dot-pulse 1.5s infinite linear;
    animation: dot-pulse 1.5s infinite linear;
    -webkit-animation-delay: 0.25s;
    -moz-animation-delay: 0.25s;
    -o-animation-delay: 0.25s;
    animation-delay: 0.25s;
}

#preloader .preloader-inner h4 .dot-pulse::before,
#preloader .preloader-inner h4 .dot-pulse::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    width: 5px;
    height: 5px;
    border-radius: 5px;
    background-color: #FFF;
    color: #FFF;
}

#preloader .preloader--inner h4 .dot-pulse::before {
    box-shadow: 9988px 0 0 -5px;
    -webkit-animation: dot-pulse-before 1.5s infinite linear;
    -moz-animation: dot-pulse-before 1.5s infinite linear;
    -o-animation: dot-pulse-before 1.5s infinite linear;
    animation: dot-pulse-before 1.5s infinite linear;
    -webkit-animation-delay: 0s;
    -moz-animation-delay: 0s;
    -o-animation-delay: 0s;
    animation-delay: 0s;
}

#preloader .preloader-inner h4 .dot-pulse::after {
    box-shadow: 10010px 0 0 -5px;
    -webkit-animation: dot-pulse-after 1.5s infinite linear;
    -moz-animation: dot-pulse-after 1.5s infinite linear;
    -o-animation: dot-pulse-after 1.5s infinite linear;
    animation: dot-pulse-after 1.5s infinite linear;
    -webkit-animation-delay: 0.5s;
    -moz-animation-delay: 0.5s;
    -o-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

@keyframes dot-pulse-before {
    0% {
        box-shadow: 9988px 0 0 -5px;
    }

    30% {
        box-shadow: 9988px 0 0 2px;
    }

    60%,
    100% {
        box-shadow: 9988px 0 0 -5px;
    }
}

@keyframes dot-pulse {
    0% {
        box-shadow: 9999px 0 0 -5px;
    }

    30% {
        box-shadow: 9999px 0 0 2px;
    }

    60%,
    100% {
        box-shadow: 9999px 0 0 -5px;
    }
}

@keyframes dot-pulse-after {
    0% {
        box-shadow: 10010px 0 0 -5px;
    }

    30% {
        box-shadow: 10010px 0 0 2px;
    }

    60%,
    100% {
        box-shadow: 10010px 0 0 -5px;
    }
}


/*=============================================
   - MAIN HEADER      
=============================================*/

.main-header {
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;
    right: 0;
}

.main-header.bg-custom {
    position: relative;
    width: 100%;
    -webkit-box-shadow: 12px 14px 30px 0 rgba(0, 0, 0, 5%);
    -moz-box-shadow: 12px 14px 30px 0 rgba(0, 0, 0, 5%);
    box-shadow: 12px 14px 30px 0 rgba(0, 0, 0, 5%);
}

.main-header .navbar {
    background: transparent;
    padding: 10px 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.main-header .navbar.fixed-top {
    padding: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-animation-duration: 2s;
    -moz-animation-duration: 2s;
    -o-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-name: fadeInDown;
    -moz-animation-name: fadeInDown;
    -o-animation-name: fadeInDown;
    animation-name: fadeInDown;
}
/* Only for onsale page */
.main-header.fixed-header .navbar {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  background: rgb(251, 245, 244, 0.5);
  padding: 0 !important;
}

.main-header .navbar .navbar-brand{
    z-index: 1;
}

.main-header .navbar .navbar-brand:focus-visible {
    outline: none !important;
}

.main-header .navbar .navbar-nav .nav-item .nav-link {
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
    padding: 18px 28px;
    color: #FFF;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.main-header .navbar .navbar-nav .nav-item:hover .nav-link,
.main-header .navbar .navbar-nav .nav-item:focus .nav-link,
.main-header .navbar .navbar-nav .nav-item .nav-link.active {
    color: var(--primary);
    font-weight: 400;
}

.main-header .navbar .navbar-nav .nav-item:hover .nav-link,
.main-header .navbar .navbar-nav .nav-item:focus .nav-link {
    padding-left: 30px;
}

/* Light theme */
.main-header .navbar.navbar-light .nav-link {
  color: #000 !important;
}

/* Dark theme */
.main-header .navbar.navbar-dark .nav-link {
  color: #fff !important;
}

.main-header .navbar .navbar-toggler {
    border: none;
    z-index: 1046;
}

.main-header .navbar .navbar-toggler:focus {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.main-header .navbar .navbar-toggler span {
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 400;
    font-size: 14px;
}

.main-header .navbar .navbar-toggler span:focus-visible {
    outline: none;
}

.main-header .navbar .offcanvas {
    border: none;
    background-color: transparent;
    -webkit-transition: transform 0.5s ease-in-out;
    -ms-transition: transform 0.5s ease-in-out;
    -moz-transition: transform 0.5s ease-in-out;
    -o-transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
}

@media (min-width: 1200px) {
    
    .navbar-expand-xl .navbar-nav {
        margin-left: -140px;
    }
}

@media screen and (max-width: 1024px) {
    
     .main-header .navbar .navbar-brand img {
        width: 100px;
    }
    
    .main-header .navbar .offcanvas-body {
        padding-top: 80px;
    }

    .main-header .navbar .navbar-nav .nav-item .nav-link {
        padding: 15px 15px;
        text-align: right;
        color: var(--secondary);
        font-size: 14px;
        font-weight: 400;
        opacity: 0;
        -webkit-transition: all 0.5s ease-in-out;
        -ms-transition: all 0.5s ease-in-out;
        -moz-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
    }

    .main-header .navbar .offcanvas .nav-link.hide {
        display: none;
    }

    .main-header .navbar .navbar-nav .nav-link:hover,
    .main-header .navbar .navbar-nav .nav-link:focus,
    .main-header .navbar .navbar-nav .nav-link.active {
        color: var(--secondary);
    }
}

@media screen and (max-width: 768px) {

    .main-header .navbar .navbar-brand img {
        width: 90px;
    }

    .main-header .navbar .offcanvas-body {
        padding-top: 80px;
    }

    .main-header .navbar .navbar-nav .nav-item .nav-link {
        padding: 15px 15px;
        text-align: right;
        color: var(--secondary);
        font-size: 14px;
        font-weight: 400;
        opacity: 0;
        -webkit-transition: all 0.5s ease-in-out;
        -ms-transition: all 0.5s ease-in-out;
        -moz-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
    }

    .main-header .navbar .offcanvas .nav-link.hide {
        display: none;
    }

    .main-header .navbar .navbar-nav .nav-link:hover,
    .main-header .navbar .navbar-nav .nav-link:focus,
    .main-header .navbar .navbar-nav .nav-link.active {
        color: var(--secondary);
    }

}

/* ==========================================
 - Banner Section
 ============================================ */

.banner-section {
    position: relative;
    overflow: hidden;
}

.banner-section .banner-carousel {
    position: relative;
    z-index: 1;
}

.banner-section .banner-carousel .banner-item {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    color: #FFF;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: end;
    -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    height: 100vh;
	height: 100dvh;
}

.banner-section .banner-carousel .banner-item .banner-content {
    padding-bottom: 40px;
}

.banner-section .banner-carousel .banner-item .banner-content p {
    color: #EAE1EF;
}

.banner-section .owl-theme .owl-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    z-index: 1;
}

.banner-section .owl-theme .owl-dots .owl-dot span {
    background-color: #EFE5F3 !important;
    opacity: 50%;
}

.banner-section .owl-theme .owl-dots .owl-dot.active span {
    opacity: 1;
}

.banner-section .banner-carousel .owl-nav button.owl-prev,
.banner-section .banner-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    opacity: 0;
    border-radius: 0;
    text-align: center;
    cursor: pointer;
    color: #FFF;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px auto;
    width: 40px;
    height: 40px;
    border: none;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.banner-section .banner-carousel .owl-nav button.owl-prev span,
.banner-section .banner-carousel .owl-nav button.owl-next span {
    display: none;
}

.banner-section .banner-carousel .owl-nav button.owl-prev {
    background-image: url('../images/left-arrow.svg');
    left: -40px;
}

.banner-section .banner-carousel .owl-nav button.owl-next {
    background-image: url('../images/right-arrow.svg');
    right: -40px;
}

.banner-section .banner-carousel:hover .owl-nav .owl-prev {
    left: 20px;
    opacity: 1;
}

.banner-section .banner-carousel:hover .owl-nav .owl-next {
    right: 20px;
    opacity: 1;
}

.banner-section .banner-carousel .owl-nav button.owl-prev:hover,
.banner-section .banner-carousel .owl-nav button.owl-next:hover {
    background-color: transparent;
}

/* =============================================
- Launch Section
============================================= */

.launch-section {
    position: relative;
    overflow: hidden;
}

.launch-section .launch-carousel {
    position: relative;
    margin-top: 50px;
    padding-left: 100px;
}

.launch-section .launch-carousel .owl-stage-outer {
    overflow: visible;
}

.launch-section .launch-carousel .owl-stage {
    padding-left: 0 !important;
}

.launch-section .project-item {
    position: relative;
}

.launch-section .project-item .image-box {
    position: relative;
    -webkit-box-shadow: 24px 12px 30px 0px rgb(68 53 79 / 15%);
    -moz-box-shadow: 24px 12px 30px 0px rgb(68 53 79 / 15%);
    box-shadow: 24px 12px 30px 0px rgb(68 53 79 / 15%);
}

.launch-section .project-item .image-box .img {
    position: relative;
    overflow: hidden;
}

.launch-section .project-item .image-box .img img {
    width: 100%;
    aspect-ratio: 16 / 10;
    transition: 1.5s all ease-in-out;
    -moz-transition: 1.5s all ease-in-out;
    -webkit-transition: 1.5s all ease-in-out;
    -ms-transition: 1.5s all ease-in-out;
    -o-transition: 1.5s all ease-in-out;
}

.launch-section .project-item:hover .image-box .img img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    -moz-transform: scale(1.05);
    transform: scale(1.05);
}

.launch-section .project-item .image-box .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(35 34 34 / 25%);
    opacity: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.launch-section .project-item .image-box:hover .overlay {
    opacity: 1;
}

.launch-section .project-item .image-box .overlay h6 {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #FFF;
    font-weight: 300;
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    /*background-color: rgb(255 255 255 / 18%);*/
    width: 80px;
    height: 80px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-bottom: 0;
}

.launch-section .project-item .detail {
    position: relative;
    margin-top: 25px;
}

.launch-section .project-item .detail h5 {
    color: #606060;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.launch-section .project-item .detail h5 span {
    font-family: 'Sofia Pro';
    font-size: 14px;
    letter-spacing: 1.5px;
}

.launch-section .owl-item.active .project-item .detail h5 {
    color: var(--primary);
}

.launch-section .project-item .detail p {
    font-weight: 300;
    color: #554743;
    margin-bottom: 0;
}

.launch-section .launch-carousel.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 30px;
}

@media screen and (max-width: 768px) {

    .launch-section .launch-carousel {
        margin-top: 40px;
        padding-left: 0;
    }
}


/* ================================
- Philosophy Section
=================================== */

.philosophy-section {
    position: relative;
}

.philosophy-section .watch-video {
    position: relative;
}

.philosophy-section .watch-video .image-box {
    position: relative;
    -webkit-box-shadow: 12px 24px 30px 0px rgb(0 0 0 / 25%);
    -moz-box-shadow: 12px 24px 30px 0px rgb(0 0 0 / 25%);
    box-shadow: 12px 24px 30px 0px rgb(0 0 0 / 25%);
}

.philosophy-section .watch-video .image-box .img {
    overflow: hidden;
}

.philosophy-section .watch-video .image-box .img img {
    position: relative;
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.philosophy-section .watch-video .image-box:hover .img img {
    -webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    -o-transform: scale(1.02);
    -moz-transform: scale(1.02);
    transform: scale(1.02);
}

.philosophy-section .watch-video .image-box .watch-btn {
    overflow: hidden;
    position: absolute;
    inset: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    pointer-events: none;
}

.philosophy-section .watch-video .image-box .watch-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #564743;
    opacity: 50%;
    z-index: -1;
}

.philosophy-section .watch-video .image-box .watch-btn a{
    pointer-events: auto;
}

.philosophy-section .watch-video .image-box .watch-btn h6 {
    color: #FFF;
    font-weight: 300;
    font-size: 22px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 1;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.philosophy-section .watch-video .watch-btn h6:hover {
    letter-spacing: 3px;
}

/* Custom Control */

.philosophy-section .watch-video .video-container {
    position: relative;
}

.philosophy-section .watch-video .video-container video {
    width: 100%;
    display: block;
}

.philosophy-section .watch-video .video-container .custom-controls {
    position: absolute;
    bottom: 15px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    min-width: 30%;
    padding: 5px 15px;
    border-radius: 0;
    -webkit-transition: opacity 0.5s ease;
    -ms-transition: opacity 0.5s ease;
    -moz-transition: opacity 0.5s ease;
    -o-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
}

.philosophy-section .watch-video .video-container .custom-controls.hidden {
    opacity: 0;
   pointer-events: none;
}

.philosophy-section .watch-video .video-container .custom-controls .control-buttons {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.philosophy-section .watch-video .video-container .custom-controls .control-buttons button {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--primary);
}

.philosophy-section .watch-video .video-container .custom-controls .control-buttons .time-display {
    font-size: 14px;
    min-width: 60px;
    text-align: center;
}

.philosophy-section .watch-video .video-container .custom-controls .progress-container {
    width: 100%;
    height: 5px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
}

.philosophy-section .watch-video .video-container .custom-controls .progress-container .progress-bar {
    height: 100%;
    background: var(--primary);
    width: 0%;
}

@media screen and (max-width: 768px) {

    .philosophy-section .watch-video .image-box .watch-btn h6 {
        font-size: 16px;
    }
}

/* ==================================
- Project Section
===================================== */

.project-section {
    position: relative;
    overflow: hidden;
}

/* Mobile  */

.project-section .mobile-scroll-wrapper {
    position: relative;
    margin-right: 10px;
    text-align: right;
}

.project-section .mobile-scroll-wrapper::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    height: 1px;
    background-color: #979797;
    z-index: 1;
}

.project-section .mobile-scroll-wrapper .btn-group .dropdown-toggle {
    background: transparent;
    color: var(--primary);
    border: none;
    border-radius: 0;
    padding: 12px 0;
    padding-top: 0;
    font-size: 20px;
}

.project-section .mobile-scroll-wrapper .btn-group .dropdown-menu {
    border-radius: 0;
    background-color: rgb(255 255 255 / 50%);
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(-10px);
}

.project-section .mobile-scroll-wrapper .btn-group .dropdown-menu.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.project-section .mobile-scroll-wrapper .btn-group .dropdown-menu .dropdown-item {
    font-size: 18px;
}

.project-section .mobile-scroll-wrapper .btn-group .dropdown-menu .dropdown-item.active,
.project-section .mobile-scroll-wrapper .btn-group .dropdown-menu .dropdown-item:active {
    background-color: var(--primary);
}

.project-section .mobile-scroll-wrapper .button {
    position: relative;
    min-height: 50px;
    width: 100%;
    border: none;
    background-color: transparent;
    cursor: pointer;
    font-size: 15px;
    color: var(--primary);
    font-weight: 400;
    text-align: right;
    padding-right: 25px;
}

.project-section .vertical-carousel .owl-nav {
    position: absolute;
    right: 0;
    top: 14px;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.project-section .vertical-carousel .owl-nav button {
    font-size: 14px;
    color: var(--secondary);
}

/* Desktop */

.project-section .project-filter-buttons button {
    color: var(--secondary);
    background-color: transparent;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 50%;
    border: none;
    margin: 0 10px;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.project-section .project-filter-buttons button:hover,
.project-section .project-filter-buttons button.active {
    opacity: 100%;
}

.project-section .project-wrapper {
    margin-top: 30px;
}

.project-section .project-wrapper .project-item .image-box {
    position: relative;
    -webkit-box-shadow: 24px 12px 30px 0px rgb(68 53 79 / 15%);
    -moz-box-shadow: 24px 12px 30px 0px rgb(68 53 79 / 15%);
    box-shadow: 24px 12px 30px 0px rgb(68 53 79 / 15%);
}

.project-section .project-wrapper .project-item .image-box .img {
    position: relative;
    overflow: hidden;
}

.project-section .project-wrapper .project-item .image-box .img img {
    width: 100%;
    aspect-ratio: 3 / 4;
    -o-object-fit: cover;
    object-fit: cover;
    transition: 1.5s all ease-in-out;
    -moz-transition: 1.5s all ease-in-out;
    -webkit-transition: 1.5s all ease-in-out;
    -ms-transition: 1.5s all ease-in-out;
    -o-transition: 1.5s all ease-in-out;
}

/* Project Page Only */
.project-section .project-wrapper.project-list .project-item .image-box .img img {
    aspect-ratio: 16 / 10;
}

/* End */

.project-section .project-wrapper .project-item:hover .image-box .img img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    -moz-transform: scale(1.05);
    transform: scale(1.05);
}

.project-section .project-wrapper .project-item .image-box .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(35 34 34 / 25%);
    opacity: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.project-section .project-wrapper .project-item .image-box:hover .overlay {
    opacity: 1;
}

.project-section .project-wrapper .project-item .image-box .overlay h6 {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #FFF;
    font-weight: 300;
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    /*background-color: rgb(255 255 255 / 15%);*/
    width: 80px;
    height: 80px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-bottom: 0;
}

.project-section .project-wrapper .project-item .detail {
    position: relative;
    margin-top: 25px;
}

.project-section .project-wrapper .project-item .detail h5 {
    color: var(--primary);
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.project-section .project-wrapper .project-item .detail h5 span {
    font-family: 'Sofia Pro';
    font-size: 14px;
    letter-spacing: 1.5px;
}

.project-section .project-wrapper .project-item .detail p {
    font-weight: 300;
    color: #554743;
    margin-bottom: 0;
}

.project-section .project-wrapper .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 30px;
}

@media screen and (max-width: 1024px) {

    .project-section .mobile-scroll-wrapper::after {
        width: 195px;
    }

    .project-section .mobile-scroll-wrapper .button {
        font-size: 24px;
    }
}

@media screen and (max-width: 768px) {

    .project-section .mobile-scroll-wrapper::after {
        width: 195px;
    }

    .project-section .mobile-scroll-wrapper .button {
        font-size: 20px;
    }
}

@media screen and (max-width: 767.98px) {

    .project-section .section-title .main-title {
        font-size: 22px;
    }

    .project-section .owl-carousel .owl-stage {
        padding-left: 0 !important;
    }
}


/* ==================================
- Enquiry Section
===================================== */

.enquiry-section {
    position: relative;
}

.enquiry-section .image-box {
    position: absolute;
    left: 0;
    right: 0;
    top: 80px;
    bottom: 80px;
    z-index: -1;
}

.enquiry-section .image-box img {
    width: 45%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-box-shadow: 24px 12px 30px 0px rgba(0, 0, 0, 15%);
    -moz-box-shadow: 24px 12px 30px 0px rgba(0, 0, 0, 15%);
    box-shadow: 24px 12px 30px 0px rgba(0, 0, 0, 15%);
    transition: 0.5s all ease-in-out;
    -moz-transition: 0.5s all ease-in-out;
    -webkit-transition: 0.5s all ease-in-out;
    -ms-transition: 0.5s all ease-in-out;
    -o-transition: 0.5s all ease-in-out;
}

.enquiry-section .form-wrap {
    padding: 30px 0;
}

.enquiry-section .form-wrap .form-label {
    color: var(--primary);
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
}
.enquiry-section .form-wrap form.wpcf7-form p {
	text-align: center;
}
.enquiry-section .form-wrap .form-control,
.enquiry-section .form-wrap .wpcf7-form-control{
    border: 0;
    color: var(--primary);
	width: 100%;
    font-weight: 300;
    border-bottom: 1px solid var(--secondary);
    border-radius: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    background-color: transparent;
    margin-bottom: 30px;
	text-align: left;
}

.enquiry-section .form-wrap .form-control::placeholder,
.enquiry-section .form-wrap .wpcf7-form-control::placeholder{
    color: var(--secondary);
    opacity: 50%;
    font-weight: 300;
    text-transform: uppercase;
}

.enquiry-section .form-wrap form.wpcf7-form .wpcf7-submit {
    position: relative;
    display: inline-block;
    width: fit-content;
    border: 0;
    border-bottom: 1px solid #44354F;
    background-color: transparent;
    text-decoration: none;
    color: var(--primary);
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    opacity: 50%;
    -webkit-transition: all 0.5s 
ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s 
ease-in-out;
}
.enquiry-section .form-wrap form.wpcf7-form .wpcf7-submit:hover {
    opacity: 100%;
}
.enquiry-section .form-wrap .screen-reader-response {
	display: none;
}
.enquiry-section .form-wrap span.wpcf7-not-valid-tip {
	text-align: left;
}
.enquiry-section .form-wrap .wpcf7-spinner {
	display: none;
}

/* Button */
.enquiry-section .primary-btn {
    position: relative;
    border: 0;
    background-color: transparent;
    display: inline-block;
    text-decoration: none;
    color: var(--primary);
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    opacity: 80%;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.enquiry-section .primary-btn::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    -webkit-transform: translate(-50%);
    -ms-transform: translate(-50%);
    -moz-transform: translate(-50%);
    -o-transform: translate(-50%);
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    opacity: 80%;
    background-color: #44354F;
    letter-spacing: 2px;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.enquiry-section .primary-btn.start-line::after {
    left: 0px;
    -webkit-transform: none;
        -ms-transform: none;
        -moz-transform: none;
        -o-transform: none;
        transform: none;
}
.enquiry-section .primary-btn:hover::after {
    width: 100%;
    left: 0;
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    -moz-transform: none;
    -o-transform: none;
    transform: none;
}
.enquiry-section .primary-btn:hover {
    opacity: 100%;
}

@media screen and (max-width: 768px) {

    .enquiry-section .image-box {
        position: relative;
        inset: auto;
    }

    .enquiry-section .image-box img {
        width: 100%;
    }
}

/* ==================================
- CTA Section
===================================== */

.cta-section {
    position: relative;
}

.cta-section .cta-content h6 {
    color: var(--primary);
    font-weight: 300;
    font-size: 14px;
    line-height: 32px;
}

/* ===================================
- Footer Section
====================================== */

.footer-section {
    position: relative;
}

.footer-section .footer-wrap {
    position: relative;
    border-top: 1px solid #979797;
    border-bottom: 1px solid #979797;
}

.footer-section .footer-logo img {
    width: 140px;
}

.footer-section .footer-menu ul li {
    font-weight: 300;
    text-transform: uppercase;
    color: #4A4A4A;
    margin-bottom: 20px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.footer-section .footer-menu ul li:last-child {
    margin-bottom: 0;
}

.footer-section .footer-menu ul li:hover {
    font-weight: 400;
    padding-left: 2px;
}

.footer-section .connect-links {
    margin-bottom: 30px;
    text-align: right;
}

.footer-section .connect-links h6:first-child {
    margin-bottom: 20px;
}

.footer-section .connect-links h6 a {
    color: var(--primary);
    font-weight: 300;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.footer-section .connect-links h6 a:hover {
    letter-spacing: 0.8px;
}

.footer-section .social-links {
    margin-bottom: 30px;
    text-align: right;
}

.footer-section .social-links a span {
    font-size: 24px;
    color: #000;
    opacity: 90%;
    margin: 0 10px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.footer-section .social-links a:hover span {
    opacity: 50%;
}

@media screen and (max-width: 768px) {

    .footer-section .footer-logo {
        text-align: center;
    }
}

@media screen and (max-width: 767.98px) {

    .footer-section {
        text-align: center;
    }

    .footer-section .social-links {
        text-align: center;
    }

    .footer-section .connect-links {
        text-align: center;
    }
}

/* ====================================
-Copyright Section
====================================== */

.copyright-section {
    position: relative;
    padding: 30px 0;
}

.copyright-section h6 {
    color: #333333;
    font-weight: 300;
    margin-bottom: 0;
}

/* ===================================
- Breadcrumb Section
====================================== */

.breadcrumb-section {
    position: relative;
}

.breadcrumb-section .breadcrumb-image {
    position: relative;
    overflow: hidden;
}

.breadcrumb-section .breadcrumb-image img {
    width: 100%;
    height: 100vh;
	height: 100dvh;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.breadcrumb-section .breadcrumb-image:hover img {
    -webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    -o-transform: scale(1.02);
    -moz-transform: scale(1.02);
    transform: scale(1.02);
}

/* ===================================
- Achieve Section
====================================== */

.achievements-section {
    position: relative;
}

.achievements-section .achievements-wrap {
    position: relative;
    background-color: #FFF;
    padding: 70px 70px;
    -webkit-box-shadow: 12px 14px 30px 0 rgba(0, 0, 0, 10%);
    -moz-box-shadow: 12px 14px 30px 0 rgba(0, 0, 0, 10%);
    box-shadow: 12px 14px 30px 0 rgba(0, 0, 0, 10%);
    margin-top: -120px;
    z-index: 1;
}

.achievements-section .achievements-wrap .section-title {
    margin-bottom: 50px;
}

.achievements-section .achievements-wrap .achievements-list .item {
    position: relative;
    margin-bottom: 40px;
}

.achievements-section .achievements-wrap .achievements-list .item h5 {
    color: var(--primary);
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 10px;
}

.achievements-section .achievements-wrap .achievements-list .item h6 {
    font-weight: 300;
    font-size: 16px;
    margin-bottom: 0;
}

.achievements-section .achievements-wrap .image-box {
    position: relative;
    overflow: hidden;
}

.achievements-section .achievements-wrap .image-box img {
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.achievements-section .achievements-wrap .image-box:hover img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    -moz-transform: scale(1.05);
    transform: scale(1.05);
}

.odometer.odometer-auto-theme, .odometer.odometer-theme-default{
    font-family: 'BIG CASLON CC', serif;
    letter-spacing: 1px;
}

@media screen and (max-width: 768px) {

    .achievements-section .achievements-wrap {
        padding: 50px 30px;
    }

    .achievements-section .achievements-wrap .achievements-list .item {
        position: relative;
        margin-bottom: 30px;
    }
}

/* ===================================
- Core Value Section
====================================== */

.core-value-section {
    position: relative;
}

.core-value-section .core-value-list .core-item {
    position: relative;
    text-align: center;
    background-color: #FFF;
    padding: 80px 60px;
    margin-bottom: 30px;
    height: 100%;
    -webkit-box-shadow: 12px 24px 30px 0 rgba(0, 0, 0, 10%);
    -moz-box-shadow: 12px 24px 30px 0 rgba(0, 0, 0, 10%);
    box-shadow: 12px 24px 30px 0 rgba(0, 0, 0, 10%);
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.core-value-section .core-value-list .core-item .image-box {
    position: relative;
    width: 70px;
    height: 70px;
    background-color: #f8f9fb;
    display: inline-block;
    line-height: 70px;
    margin-bottom: 40px;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.core-value-section .core-value-list .core-item .image-box img {
    width: 40px;
    height: 40px;
}

.core-value-section .core-value-list .core-item .title {
    position: relative;
}

.core-value-section .core-value-list .core-item h5 {
    position: relative;
    color: #000;
    font-size: 18px;
    margin-bottom: 20px;
    display: inline-block;
    text-transform: uppercase;
    padding-bottom: 8px;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.core-value-section .core-value-list .core-item .title h5::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 0;
    background-color: #988485;
}

.core-value-section .core-value-list .core-item:hover .title h5::after {
    animation: underlineIn 0.5s forwards;
}

.core-value-section .core-value-list .core-item:not(:hover) .title h5::after {
    animation: underlineOut 0.5s forwards;
}

.core-value-section .core-value-list .core-item p {
    color: #000;
    margin-bottom: 0;
}

.core-value-section .core-value-list .core-item:hover {
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
}

@keyframes underlineIn {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes underlineOut {
    from {
        width: 100%;
        left: 0;
    }

    to {
        width: 0;
        left: 100%;
    }
}

@media screen and (max-width: 768px) {

    .core-value-section .core-value-list .core-item {
        padding: 50px 40px;
    }
}

/*========================================
 Team Section
======================================== */

.team-section {
    position: relative;
}

.team-section .team-list .team-member-card {
    position: relative;
    margin: 0 20px;
    margin-bottom: 20px;
}

.team-section .team-list .team-member-card .team-block {
    position: relative;
    margin-bottom: 40px;
    -webkit-box-shadow: 12px 24px 30px 0 rgba(0, 0, 0, 10%);
    -moz-box-shadow: 12px 24px 30px 0 rgba(0, 0, 0, 10%);
    box-shadow: 12px 24px 30px 0 rgba(0, 0, 0, 10%);
}

.team-section .team-list .team-member-card .team-block .image-box {
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.team-section .team-list .team-member-card .team-block .image-box img {
    width: 100%;
    height: 100%;
    aspect-ratio: 3 / 4;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.team-section .team-list .team-member-card .team-block:hover .image-box img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    -moz-transform: scale(1.05);
    transform: scale(1.05);
}

.team-section .team-list .team-member-card .team-block .detail {
    position: absolute;
    left: -20px;
    bottom: -20px;
    padding: 20px 22px;
    width: 75%;
    background-color: rgb(86 71 67 / 90%);
    z-index: 2;
}

.team-section .team-list .team-member-card .team-block .detail h5 {
    font-size: 16px;
    color: #FFF;
    text-transform: uppercase;
}

.team-section .team-list .team-member-card .team-block .detail p {
    color: #BFBFBF;
    margin-bottom: 0;
    text-transform: uppercase;
}

.team-section .team-list .team-member-card .team-block .overlay-box {
    background-color: rgb(86, 71, 67, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.team-section .team-list .team-member-card .team-block:hover .overlay-box {
    opacity: 1;
}

.team-section .team-list .team-member-card .team-block .overlay-box .social {
    position: relative;
    text-align: center;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    flex-direction: column;
    top: 60%;
    transform: translateY(60%);
    -webkit-transform: translateY(-60%);
    -moz-transform: translateY(-60%);
    -ms-transform: translateY(-60%);
    -o-transform: translateY(-60%);
}

.team-section .team-list .team-member-card .team-block .overlay-box .social a {
    color: #FFF;
}

.team-section .team-list .team-member-card .team-block .overlay-box .social a i {
    font-size: 20px;
}

.team-section .team-list .team-member-card .short-description p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
}

.team-section .team-list .team-member-card .short-description p.expanded {
    -webkit-line-clamp: unset;
}

.team-section .team-list .team-member-card .short-description .read-more-btn {
    font-weight: 300;
    cursor: pointer;
    display: inline-block;
    margin-top: 5px;
}

.team-section .team-list .see-more-btn {
    display: inline-block;
}

.team-section .team-list .see-more-btn h6 {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 300;
    cursor: pointer;
}

.team-section .team-list .see-more-btn #SeeMoreIcon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
}

.team-section .team-list .see-more-btn #SeeMoreIcon.up-arrow {
    background-image: url('../images/down-arrow.svg'); 
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform:rotate(180deg);
    -o-transform: rotate(180deg);
}
 
.team-section .team-list .see-more-btn #SeeMoreIcon.down-arrow {
    background-image: url('../images/down-arrow.svg'); 
}

@media screen and (max-width: 786px) {

    .team-section .team-list .team-member-card .team-block .detail {
        width: 85%;
    }

    .team-section .team-list .team-member-card {
        margin: 0;
        margin-left: 20px;
    }

    .team-section .team-list .team-member-card .team-block .overlay-box .social {
        top: 50%;
        transform: translateY(50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
    }
}

/*============================================== 
    Testimonial Section 
===============================================*/

.testimonial-section {
    position: relative;
    overflow: hidden;
}

.testimonial-section .testimonial-item {
    position: relative;
    text-align: center;
    background-color: #FFF;
    padding: 100px 60px;
	margin: 5px 30px 60px 0;
    -webkit-box-shadow: 12px 24px 30px 0 rgba(0, 0, 0, 7%);
    -moz-box-shadow: 12px 24px 30px 0 rgba(0, 0, 0, 7%);
    box-shadow: 12px 24px 30px 0 rgba(0, 0, 0, 7%);
}

.testimonial-section .testimonial-item img {
    width: 16px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.testimonial-section .testimonial-item p {
    color: var(--primary);
    font-weight: 300;
    line-height: 32px;
    margin-bottom: 20px;
}

.testimonial-section .testimonial-item h5 {
    color: var(--primary);
    font-size: 18px;
    font-weight: 300;
}

.testimonial-section .testimonial-item h5 span {
    font-family: 'Sofia Pro';
}

.testimonial-section .owl-carousel .owl-nav button.owl-prev,
.testimonial-section .owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    border-radius: 0;
    text-align: center;
    cursor: pointer;
    color: #FFF;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px auto;
    width: 40px;
    height: 40px;
    border: none;
    background-color: transparent;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.testimonial-section .owl-carousel .owl-nav button.owl-prev span,
.testimonial-section .owl-carousel .owl-nav button.owl-next span {
    display: none;
}

.testimonial-section .owl-carousel .owl-nav button.owl-prev {
    background-image: url('../images/left-arrow.svg');
    left: -90px;
}

.testimonial-section .owl-carousel .owl-nav button.owl-next {
    background-image: url('../images/right-arrow.svg');
    right: -90px;
}


.testimonial-section .owl-carousel .owl-nav button.owl-prev:hover,
.testimonial-section .owl-carousel .owl-nav button.owl-next:hover {
    background-color: transparent;
}

@media screen and (max-width: 1024px) {

    .testimonial-section .owl-carousel .owl-nav button.owl-prev {
        left: -60px;
    }

    .testimonial-section .owl-carousel .owl-nav button.owl-next {
        right: -60px;
    }
}

@media screen and (max-width: 768px) {

    .testimonial-section .testimonial-item {
        padding: 60px 40px;
    }
}

/* ===================================
- Achieve Section
====================================== */

.amenities-section {
    position: relative;
}

.amenities-section .amenities-wrap {
    position: relative;
    background-color: #FFF;
    padding: 70px 70px;
    -webkit-box-shadow: 12px 14px 30px 0 rgba(0, 0, 0, 10%);
    -moz-box-shadow: 12px 14px 30px 0 rgba(0, 0, 0, 10%);
    box-shadow: 12px 14px 30px 0 rgba(0, 0, 0, 10%);
    margin-top: -120px;
    z-index: 1;
}

.amenities-section .amenities-wrap .section-title {
    margin-bottom: 50px;
}

.amenities-section .amenities-wrap .amenities-list .item {
    position: relative;
    margin-bottom: 40px;
}

.amenities-section .amenities-wrap .amenities-list .item h5 {
    color: var(--primary);
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 10px;
}

.amenities-section .amenities-wrap .amenities-list .item h6 {
    font-weight: 300;
    font-size: 16px;
    margin-bottom: 0;
}

.amenities-section .amenities-wrap .image-box {
    position: relative;
    overflow: hidden;
}

.amenities-section .amenities-wrap .image-box img {
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.amenities-section .amenities-wrap .image-box:hover img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    -moz-transform: scale(1.05);
    transform: scale(1.05);
}

@media screen and (max-width: 768px) {

    .amenities-section .amenities-wrap {
        padding: 50px 20px;
    }
    
     .amenities-section .amenities-wrap .amenities-list{
         margin-top: 20px;
     }

    .amenities-section .amenities-wrap .amenities-list .item {
        position: relative;
        margin-bottom: 0;
    }
}

/* ========================================
- Blogs Section
=========================================== */

.blog-section {
    position: relative;
}

.blog-section .inner-wrap {
    position: relative;
    background-color: #FFF;
    padding: 70px 70px;
    -webkit-box-shadow: 12px 14px 30px 0 rgba(0, 0, 0, 10%);
    -moz-box-shadow: 12px 14px 30px 0 rgba(0, 0, 0, 10%);
    box-shadow: 12px 14px 30px 0 rgba(0, 0, 0, 10%);
    margin-top: -120px;
    z-index: 1;
}

.blog-section .blog-list-wrap .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    z-index: 1;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.blog-section .blog-list-wrap .blog-item .blog-img img {
    width: 100%;
    height: 320px;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.blog-section .blog-list-wrap .blog-item:hover .blog-img img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    -moz-transform: scale(1.05);
    transform: scale(1.05);
}

.blog-section .blog-list-wrap .blog-item .detail {
    margin-top: 20px;
    margin-bottom: 20px;
}

.blog-section .blog-list-wrap .blog-item .detail h5 {
    color: #606060;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 8px;
}

.blog-section .blog-list-wrap .blog-item:hover .detail h5 {
    color: var(--primary);
}

.blog-section .blog-list-wrap .blog-item .detail p {
    color: #606060;
    margin-bottom: 0;
}

.blog-section .blog-carousel .owl-nav button.owl-prev,
.blog-section .blog-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    border-radius: 0;
    text-align: center;
    cursor: pointer;
    color: #FFF;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.blog-section .blog-carousel .owl-nav button.owl-prev {
    left: -80px;
}

.blog-section .blog-carousel .owl-nav button.owl-next {
    right: -80px;
}

.blog-section .blog-carousel .owl-nav button.owl-prev img,
.blog-section .blog-carousel .owl-nav button.owl-next img {
    width: 20px;
}

.blog-section .blog-carousel .owl-nav button.owl-prev:hover,
.blog-section .blog-carousel .owl-nav button.owl-next:hover {
    background: transparent;
}

@media screen and (max-width: 768px) {

    .blog-section .blog-carousel .owl-nav button.owl-prev,
    .blog-section .blog-carousel .owl-nav button.owl-next {
        top: 40%;
    }

    .blog-section .blog-carousel .owl-nav button.owl-prev {
        left: 0;
    }

    .blog-section .blog-carousel .owl-nav button.owl-next {
        right: 0;
    }

    .blog-section .blog-carousel .owl-nav button.owl-prev img,
    .blog-section .blog-carousel .owl-nav button.owl-next img {
        width: 16px;
    }

    .blog-section .blog-list-wrap .blog-item img {
        height: 100%;
    }
}

@media screen and (max-width: 767.98px) {

    .blog-section .inner-wrap {
        padding: 50px 20px;
    }
}

/* ========================================
- Onsale Project Section
=========================================== */

.onsale-project-section .project-item {
    position: relative;
}

.onsale-project-section .project-item .image-box {
    position: relative;
    -webkit-box-shadow: 24px 12px 30px 0px rgb(68 53 79 / 15%);
    -moz-box-shadow: 24px 12px 30px 0px rgb(68 53 79 / 15%);
    box-shadow: 24px 12px 30px 0px rgb(68 53 79 / 15%);
}

.onsale-project-section .project-item .image-box .img {
    position: relative;
    overflow: hidden;
}

.onsale-project-section .project-item .image-box .img img {
    width: 100%;
    aspect-ratio: 16 / 10;
    transition: 1.7s all ease-in-out;
    -moz-transition: 1.7s all ease-in-out;
    -webkit-transition: 1.7s all ease-in-out;
    -ms-transition: 1.7s all ease-in-out;
    -o-transition: 1.7s all ease-in-out;
}

.onsale-project-section .project-item:hover .image-box .img img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    -moz-transform: scale(1.05);
    transform: scale(1.05);
}

.onsale-project-section .project-item .image-box .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(35 34 34 / 25%);
    opacity: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.onsale-project-section .project-item .image-box:hover .overlay {
    opacity: 1;
}

.onsale-project-section .project-item .image-box .overlay h6 {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #FFF;
    font-weight: 300;
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    width: 80px;
    height: 80px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-bottom: 0;
}

.onsale-project-section .project-item .detail {
    position: relative;
    margin-top: 25px;
}

.onsale-project-section .project-item .detail h5 {
    color: var(--primary);
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.onsale-project-section .project-item .detail h5 span {
    font-family: "Sofia Pro", sans-serif;
    font-size: 14px;
    letter-spacing: 1.5px;
}

.onsale-project-section .project-item .detail p {
    font-weight: 300;
    color: #554743;
    margin-bottom: 0;
}

.onsale-project-section .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 50px;
}

/* ===============================================
- Blog Detail Section
================================================== */

.blog-detail-section {
    position: relative;
}

.blog-detail-section .inner-wrap {
    position: relative;
    background-color: #FFF;
    padding: 70px 70px;
    -webkit-box-shadow: 12px 14px 30px 0 rgba(0, 0, 0, 10%);
    -moz-box-shadow: 12px 14px 30px 0 rgba(0, 0, 0, 10%);
    box-shadow: 12px 14px 30px 0 rgba(0, 0, 0, 10%);
    margin-top: -120px;
    z-index: 1;
}

.blog-detail-section .inner-wrap .meta-tag h6 {
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.blog-detail-section .inner-wrap .blog-inner-content {
    position: relative;
    padding-top: 50px;
}

.blog-detail-section .inner-wrap .blog-inner-content h6 {
    text-transform: uppercase;
    color: #564743;
    margin-bottom: 20px;
}

.blog-detail-section .inner-wrap .blog-inner-content p {
    color: #564743;
    margin-bottom: 20px;
}

.blog-detail-section .inner-wrap .blog-inner-content ul {
    margin-bottom: 20px;
}

.blog-detail-section .inner-wrap .blog-inner-content ul li {
    color: #564743;
    margin-bottom: 20px;
}

.blog-detail-section .inner-wrap .quotes-box {
    position: relative;
    padding-top: 50px;
}

.blog-detail-section .inner-wrap .quotes-box .image-box {
    position: relative;
}

.blog-detail-section .inner-wrap .quotes-box .image-box img {
    margin: 0 20px;
    width: 22px;
}

.blog-detail-section .inner-wrap .quotes-box .image-box .quote-01 {
    margin-bottom: 80px;
}

.blog-detail-section .inner-wrap .quotes-box .content p {
    color: #564743;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 0;
}

.blog-detail-section .inner-wrap .image-gallery {
    position: relative;
    padding-top: 50px;
}

.blog-detail-section .inner-wrap .image-gallery .image-item {
    position: relative;
    -webkit-box-shadow: rgba(68, 53, 79, 0.15) 24px 12px 30px 0px;
    -moz-box-shadow: rgba(68, 53, 79, 0.15) 24px 12px 30px 0px;
    box-shadow: rgba(68, 53, 79, 0.15) 24px 12px 30px 0px;
}

.blog-detail-section .inner-wrap .image-gallery .image-item img {
    position: relative;
    overflow: hidden;
}

.blog-detail-section .inner-wrap .image-gallery .image-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(35 34 34 / 25%);
    opacity: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.blog-detail-section .inner-wrap .image-gallery .image-item .overlay h6 {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #FFF;
    font-weight: 300;
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    width: 80px;
    height: 80px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-bottom: 0;
}

.blog-detail-section .inner-wrap .image-gallery .image-item:hover .overlay {
    opacity: 1;
}

.blog-detail-section .inner-wrap .social-links {
    padding-top: 80px;
    position: relative;
    text-align: center;
    padding-bottom: 80px;
    border-bottom: 1px solid #979797;
}

.blog-detail-section .inner-wrap .social-links h6 {
    color: var(--primary);
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.blog-detail-section .inner-wrap .social-links ul li {
    display: inline-block;
    padding: 0 10px;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

.blog-detail-section .inner-wrap .social-links ul li span {
    font-size: 22px;
    color: var(--primary);
    margin: 0 5px;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.blog-detail-section .inner-wrap .social-links ul li:hover span {
    opacity: 50%;
}

@media screen and (max-width: 767px) {

    .blog-detail-section .inner-wrap .blog-inner-content {
        padding: 30px 0;
    }

    .blog-detail-section .inner-wrap .quotes-box {
        padding: 30px 0;
    }
}

@media screen and (max-width: 767.98px) {

    .blog-detail-section .inner-wrap {
        padding: 50px 30px;
    }
}


/* ========================================
- Contact Page
=========================================== */

.enquiry-section {
    position: relative;
}

.enquiry-section .contact-wrap {
    position: relative;
    background-color: rgb(255, 255, 255);
    -webkit-box-shadow: rgba(0, 0, 0, 0.1) 12px 14px 30px 0px;
    -moz-box-shadow: rgba(0, 0, 0, 0.1) 12px 14px 30px 0px;
    box-shadow: rgba(0, 0, 0, 0.1) 12px 14px 30px 0px;
    margin-top: -120px;
    z-index: 1;
    padding: 70px 100px;
}

.enquiry-section .contact-wrap .contact-item {
    position: relative;
    margin-bottom: 20px;
}

.enquiry-section .contact-wrap .contact-item h6 {
    color: #564743;
    font-size: 16px;
    font-weight: 300;
    text-transform: uppercase;
    margin: 20px 0;
}

.enquiry-section .contact-wrap .contact-item p {
    margin-bottom: 10px;
}

.enquiry-section .contact-wrap .contact-item .link:hover {
	letter-spacing: 0.8px;
}

.enquiry-section .contact-wrap .contact-item .title {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.enquiry-section .contact-wrap .contact-item .title h6 {
    color: var(--primary);
    opacity: 50%;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    .enquiry-section .contact-wrap {
        padding: 40px 50px;
    }
}

/* ==========================================
- Connect Section
============================================= */

.connect-section {
    position: relative;
}

.connect-section .connect-item {
    background-color: #FFF;
    -webkit-box-shadow: rgba(0, 0, 0, 0.1) 12px 24px 30px 0px;
    -moz-box-shadow: rgba(0, 0, 0, 0.1) 12px 24px 30px 0px;
    box-shadow: rgba(0, 0, 0, 0.1) 12px 24px 30px 0px;
    padding: 40px 40px;
    text-align: center;
    margin: 0 20px;
    z-index: 1;
	-webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.connect-section .connect-item:hover {
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
}

.connect-section .connect-item h5 {
	position: relative;
	display: inline-block;
    color: #000;
    font-size: 18px;
	margin-bottom: 20px;
    text-transform: uppercase;
    padding-bottom: 8px;
}

.connect-section .connect-item h5::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 0;
    background-color: #988485;
}

.connect-section .connect-item:hover h5::after {
    animation: underlineIn 0.5s forwards;
}

.connect-section .connect-item:not(:hover) h5::after {
    animation: underlineOut 0.5s forwards;
}

.core-value-section .core-value-list .core-item p {
    color: #000;
    margin-bottom: 0;
}

.connect-section .connect-item p {
    color: #000;
    font-weight: 300;
    margin-bottom: 0;
}

/* ==================================================
- NRI CORNER
===================================================== */

.full-content-section {
    position: relative;
}

.full-content-section .inner-wrap {
    position: relative;
    background-color: #FFF;
    padding: 70px 70px;
    -webkit-box-shadow: 12px 14px 30px 0 rgba(0, 0, 0, 10%);
    -moz-box-shadow: 12px 14px 30px 0 rgba(0, 0, 0, 10%);
    box-shadow: 12px 14px 30px 0 rgba(0, 0, 0, 10%);
    margin-top: -120px;
    z-index: 1;
}

.full-content-section .inner-wrap .content-wrap .top-description {
    color: #564743;
    line-height: 30px;
}

.full-content-section .inner-wrap .content-wrap .image-box {
    position: relative;
    overflow: hidden;
}

.full-content-section .inner-wrap .content-wrap .image-box img {
    width: 100%;
    -webkit-box-shadow: 24px 12px 30px 0 rgba(0, 0, 0, 10%);
    -moz-box-shadow: 24px 12px 30px 0 rgba(0, 0, 0, 10%);
    box-shadow: 24px 12px 30px 0 rgba(0, 0, 0, 10%);
    transition: all 0.7s ease-in-out;
    -webkit-transition: all 1.7s ease-in-out;
    -ms-transition: all 1.7s ease-in-out;
    -moz-transition: all 1.7s ease-in-out;
    -o-transition: all 1.7s ease-in-out;
}

.full-content-section .inner-wrap .content-wrap .image-box:hover img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.full-content-section .inner-wrap .content-wrap .text-box p {
    font-size: 16px;
    font-weight: 400;
    color: #564743;
    line-height: 36px;
    margin-bottom: 0;
}

.full-content-section .inner-wrap .content-wrap .upper-text-wrap {
    position: relative;
}

.full-content-section .inner-wrap .content-wrap .upper-text-wrap h6 {
    font-size: 16px;
    color: #564743;
    line-height: 30px;
	text-transform: uppercase;
    margin-bottom: 25px;
}

.full-content-section .inner-wrap .content-wrap .upper-text-wrap p {
    color: #564743;
    margin-bottom: 25px;
}

@media screen and (max-width: 768px) {
    .full-content-section .inner-wrap {
        padding: 50px 50px;
    }
}
@media screen and (max-width: 576px) {
    .full-content-section .inner-wrap {
        padding: 50px 20px;
    }
}

/* ==================================================
- Privacy Policy
===================================================== */

.policy-section {
    position: relative;
}

.policy-section .inner-wrap {
    position: relative;
    background-color: #FFF;
    padding: 70px 70px;
    -webkit-box-shadow: 12px 14px 30px 0 rgba(0, 0, 0, 10%);
    -moz-box-shadow: 12px 14px 30px 0 rgba(0, 0, 0, 10%);
    box-shadow: 12px 14px 30px 0 rgba(0, 0, 0, 10%);
    margin-top: -120px;
    z-index: 1;
}

.policy-section .inner-wrap .privacy-wrap {
    position: relative;
}

.policy-section .inner-wrap .privacy-wrap h6 {
    font-size: 14px;
    color: #564743;
    text-transform: uppercase;
    line-height: 30px;
    font-weight: 400;
    margin-bottom: 10px;
}

.policy-section .inner-wrap .privacy-wrap h6 span {
    color: #564743;
    text-transform: none;
    line-height: 30px;
    font-weight: 300;
    margin-bottom: 10px;
}

.policy-section .inner-wrap .privacy-wrap p {
    color: #564743;
    line-height: 30px;
    margin-bottom: 10px;
}

.policy-section .inner-wrap .privacy-wrap ul {
    margin-bottom: 10px;
}

.policy-section .inner-wrap .privacy-wrap ul li {
    color: #564743;
    line-height: 30px;
    margin-bottom: 10px;
}

/* ===============================================
- Booking Form Section
================================================== */

.booking-form-section {
    position: relative;
    background-color: #FFF;
    overflow: hidden;
}

.booking-form-section .bg{
     height: 120px;
    background-color: #FBF5F4;
}

.booking-form-section .image-box {
    position: relative;
}

.booking-form-section .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 1.7s ease-in-out;
    -webkit-transition: all 1.7s ease-in-out;
    -ms-transition: all 1.7s ease-in-out;
    -moz-transition: all 1.7s ease-in-out;
    -o-transition: all 1.7s ease-in-out;
}

/* .booking-form-section .image-box:hover img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    -moz-transform: scale(1.05);
    transform: scale(1.05);
} */
.booking-form-section .image-box .item {
	width: 100%;
	height: 100%;
}
.booking-form-section .image-box .owl-carousel .owl-stage {
	display: flex;
	height: 100%;
}
.booking-form-section .image-box .owl-theme .owl-nav{
	margin-top: 0;
}
.booking-form-section .image-box .owl-carousel .owl-nav button.owl-prev,
.booking-form-section .image-box .owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    border-radius: 0;
    text-align: center;
    cursor: pointer;
    color: #FFF;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px auto;
    width: 40px;
    height: 40px;
    border: none;
    background-color: transparent;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.booking-form-section .image-box .owl-carousel .owl-nav button.owl-prev span,
.booking-form-section .image-box .owl-carousel .owl-nav button.owl-next span {
    display: none;
}

.booking-form-section .image-box .owl-carousel .owl-nav button.owl-prev {
    background-image: url('../images/left-arrow.svg');
    left: 0;
}

.booking-form-section .image-box .owl-carousel .owl-nav button.owl-next {
    background-image: url('../images/right-arrow.svg');
    right: 0;
}


.booking-form-section .image-box .owl-carousel .owl-nav button.owl-prev:hover,
.booking-form-section .image-box .owl-carousel .owl-nav button.owl-next:hover {
    background-color: transparent;
}
/* .booking-form-section .image-box .price-overlay {
	position: absolute;
	background-color: #FBF5F4;
	padding: 10px 30px;
	display: inline-block;
	border-radius: 20px;
	bottom: 50px;
	left: 50px;
	z-index:2;
}
.booking-form-section .image-box .price-overlay h5 {
	margin-bottom: 0
} */
/* .booking-form-section .logo-container {
	position: absolute;
	top: 50px;
	right: 50px;
	z-index:2;
} */
.booking-form-section .logo-container img{
	width: 150px;
	margin-bottom: 20px;
}

.booking-form-section .logo-container p {
    text-transform: uppercase;
    letter-spacing: 2px;
}
/* .booking-form-section .image-box .enquire-button {
	position: absolute;
	bottom: 50px;
	right: 50px;
	z-index:2;
}
.booking-form-section .image-box .enquire-button button {
	border: none;
	background-color: #FBF5F4;
	padding: 10px 30px;
	display: inline-block;
	border-radius: 20px;
}
.booking-form-section .image-box .enquire-button button span {
	transform: rotate(45deg);
	-webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.booking-form-section .image-box .enquire-button button:hover span {
	transform: rotate(0deg);
} */
.booking-form-section .form-wrap {
    padding: 40px 80px;
    text-align: center;
}

.booking-form-section .form-wrap .form-control,
.booking-form-section .form-wrap .wpcf7-form-control {
    border: 0;
	display: inline-block;
    color: var(--primary);
    font-weight: 300;
    border-bottom: 1px solid var(--secondary);
    border-radius: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    background-color: transparent;
    margin-bottom: 50px;
    text-align: center;
	width: 100%;
}
.booking-form-section .form-wrap .form-control::placeholder,
.booking-form-section .form-wrap .wpcf7-form-control {
    color: var(--secondary);
    opacity: 50%;
    font-weight: 300;
    text-transform: uppercase;
}
.booking-form-section .form-wrap form.wpcf7-form .wpcf7-submit {
    position: relative;
	display: inline-block;
	width: fit-content;
    border: 0;
	border-bottom: 1px solid #44354F;
    background-color: transparent;
    text-decoration: none;
    color: var(--primary);
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    opacity: 50%;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.booking-form-section .form-wrap form.wpcf7-form .wpcf7-submit:hover {
    opacity: 100%;
}
.booking-form-section .form-wrap .screen-reader-response {
	display: none;
}
.booking-form-section .form-wrap span.wpcf7-not-valid-tip {
    position: relative;
    top: -48px;
}
.booking-form-section .form-wrap .wpcf7-spinner {
	display: none;
}

@media screen and (max-width: 1024px) {
    .booking-form-section .image-box {
        width: 50%;
    }
}
@media screen and (max-width: 768px) {

    .booking-form-section .form-wrap {
        padding: 40px 20px;
    }

    .booking-form-section .image-box {
        position: relative;
        width: 100%;
		top: 0;
    }
}

/* ===============================================
- Embrace Section
================================================== */

.embrace-section {
    position: relative;
}

.embrace-section .image-box {
    position: relative;
    overflow: hidden;
}

.embrace-section .image-box img {
    width: 100%;
    transition: all 1.7s ease-in-out;
    -webkit-transition: all 1.7s ease-in-out;
    -ms-transition: all 1.7s ease-in-out;
    -moz-transition: all 1.7s ease-in-out;
    -o-transition: all 1.7s ease-in-out;

}

.embrace-section .image-box:hover img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    -moz-transform: scale(1.05);
    transform: scale(1.05);
}

.embrace-section .right-content {
    padding: 40px 60px;
}

.embrace-section .address-wrap {
    padding: 40px 0;
}

.embrace-section .address-wrap h6 {
    color: var(--primary);
    opacity: 80%;
    text-transform: uppercase;
    font-size: 18px;
    margin-bottom: 30px;
    letter-spacing: 2.2px;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

.embrace-section .address-wrap h6:hover {
    letter-spacing: 3.0px;
}

.embrace-section .content-wrap p {
    line-height: 28px;
    margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
    .embrace-section .address-wrap {
        padding: 20px 0;
    }
}
@media screen and (max-width: 576px) {

    .embrace-section .right-content {
        padding: 40px 20px;
    }
}

/* ===============================================
- About Project Section
================================================== */

.about-project-section {
    position: relative;
    overflow: hidden;
}

.about-project-section .image-box {
    position: relative;
    margin: 50px 0;
    overflow: hidden;
}

.about-project-section .image-box:after {
    position: absolute;
    content: "";
    display: block;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.25)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.25) 100%);
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    z-index: 1;
}

.about-project-section .image-box:hover:after {
    -webkit-animation: imgShine 1.5s;
    animation: imgShine 1.5s;
}

.about-project-section .image-box img {
    width: 100%;
    -webkit-box-shadow: 12px 24px 30px 0px rgb(0 0 0 / 10%);
    -moz-box-shadow: 12px 24px 30px 0px rgb(0 0 0 / 10%);
    box-shadow: 12px 24px 30px 0px rgb(0 0 0 / 10%);
}

@-webkit-keyframes imgShine {
    100% {
        left: 125%
    }
}

@keyframes imgShine {
    100% {
        left: 125%
    }
}

/* ===============================================
- Nearby Location Section
================================================== */

.project-nearby-section {
    position: relative;
}

.project-nearby-section .map-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    -webkit-cursor: zoom-in;
    -moz-cursor: zoom-in;
}

.project-nearby-section .map-container img {
    width: 100%;
    transform-origin: center center;
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -ms-transform-origin: center center;
    -o-transform-origin: center center;
    transition: transform 0.5s ease-in-out;
    -webkit-transition: transform 0.5s ease-in-out;
    -ms-transition: transform 0.5s ease-in-out;
    -moz-transition: transform 0.5s ease-in-out;
    -o-transition: transform 0.5s ease-in-out;
}

.project-nearby-section .nearby-location h6 {
    color: var(--primary);
    margin-bottom: 30px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

.project-nearby-section .nearby-location h6 span {
    opacity: 50%;
}

.project-nearby-section .nearby-location h6:hover {
    letter-spacing: 3.0px;
}

@media screen and (max-width: 576px) {

    .project-nearby-section .nearby-location h6 {
        margin-bottom: 40px;
    }
}

/* =============================================
- Common Amenities Section
============================================= */

.common-amenities-section {
    position: relative;
    overflow: hidden;
}

.common-amenities-section .ongoing-project-amenities-carousel {
    position: relative;
    margin-top: 50px;
    padding-left: 100px;
}

.common-amenities-section .ongoing-project-amenities-carousel .owl-stage-outer {
    overflow: visible;
}

.common-amenities-section .ongoing-project-amenities-carousel .owl-stage {
    padding-left: 0 !important;
}

.common-amenities-section .amenities-item {
    position: relative;
}

.common-amenities-section .amenities-item .image-box {
    position: relative;
    -webkit-box-shadow: 24px 12px 30px 0px rgb(68 53 79 / 15%);
    -moz-box-shadow: 24px 12px 30px 0px rgb(68 53 79 / 15%);
    box-shadow: 24px 12px 30px 0px rgb(68 53 79 / 15%);
}

.common-amenities-section .amenities-item .image-box .img {
    position: relative;
    overflow: hidden;
}

.common-amenities-section .amenities-item .image-box .img img {
    width: 100%;
    aspect-ratio: 16 / 10;
    transition: 1.7s all ease-in-out;
    -moz-transition: 1.7s all ease-in-out;
    -webkit-transition: 1.7s all ease-in-out;
    -ms-transition: 1.7s all ease-in-out;
    -o-transition: 1.7s all ease-in-out;
}

.common-amenities-section .amenities-item:hover .image-box .img img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    -moz-transform: scale(1.05);
    transform: scale(1.05);
}

.common-amenities-section .amenities-item .image-box .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(35 34 34 / 25%);
    opacity: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.common-amenities-section .amenities-item .image-box:hover .overlay {
    opacity: 1;
}

.common-amenities-section .amenities-item .image-box .overlay h6 {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #FFF;
    font-weight: 300;
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    width: 80px;
    height: 80px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-bottom: 0;
}

.common-amenities-section .amenities-item .detail {
    position: relative;
    margin-top: 25px;
}

.common-amenities-section .amenities-item .detail h5 {
    color: #606060;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.common-amenities-section .owl-item.active .amenities-item .detail h5 {
    color: var(--primary);
}

.common-amenities-section .amenities-item .detail p {
    font-weight: 300;
    color: #554743;
    margin-bottom: 0;
}

.common-amenities-section .ongoing-project-amenities-carousel.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 30px;
}

@media screen and (max-width: 768px) {

    .common-amenities-section .ongoing-project-amenities-carousel {
        margin-top: 40px;
        padding-left: 0;
    }
}

/* =============================================
- Architecture Plan Section 
============================================= */

.architecture-plan-section {
    position: relative;
}

.architecture-plan-section .architecture-wrapper {
    padding: 50px 0px;
    margin-top: 40px;
    background-color: #FFF;
    -webkit-box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    -moz-box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

.architecture-plan-section .architecture-wrapper .architecture-item .plan-location {
    display: flex;
    align-items: center;
}

.architecture-plan-section .architecture-wrapper .architecture-item .plan-location img {
    width: 50px;
}

.architecture-plan-section .architecture-wrapper .architecture-item .plan-location h6 {
    color: var(--primary);
    letter-spacing: 2.5px;
    font-weight: 600;
    margin-bottom: 0;
}

.architecture-plan-section .architecture-wrapper .architecture-item .image-box img {
    width: 100%;
}

.architecture-plan-section .architecture-wrapper .architecture-item .floor-info {
    position: relative;
    padding-top: 30px;
}

.architecture-plan-section .architecture-wrapper .architecture-item .floor-info h6 {
    color: var(--primary);
    opacity: 50%;
    text-transform: capitalize;
    letter-spacing: 2px;
    margin-bottom: 30px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.architecture-plan-section .architecture-wrapper .architecture-item .floor-info h6:hover {
    letter-spacing: 2.8px;
}

/* =============================================
- Project Highlight Section
============================================= */

.project-highlight-section {
    position: relative;
    margin-top: -120px;
}

.project-highlight-section .highlight-box {
    position: relative;
    background-color: #fff;
    box-shadow: 12px 14px 30px 0 rgba(0, 0, 0, 10%);
    -webkit-box-shadow: 12px 14px 30px 0 rgba(0, 0, 0, 10%);
    -moz-box-shadow: 12px 14px 30px 0 rgba(0, 0, 0, 10%);

}

.project-highlight-section .highlight-box .image-box {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50%;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out
}

.project-highlight-section .highlight-box .image-box img {
    width: 100%;
    height: 100%;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out
}

.project-highlight-section .highlight-box .image-box:hover img {
    transform: scale(1.05);
}

.project-highlight-section .highlight-box .highlight-content {
    padding: 60px 50px;
}

.project-highlight-section .highlight-box .highlight-content img {
    width: 300px;
    margin-bottom: 30px;
}

.project-highlight-section .highlight-box .highlight-content .text-box {
    position: relative;
    padding-bottom: 100px;
}

.project-highlight-section .highlight-box .highlight-content h6 {
    color: var(--primary);
    letter-spacing: 2px;
    line-height: 21px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.project-highlight-section .highlight-box .highlight-content .text-box p {
    line-height: 32px;
    margin-bottom: 20px;
}

@media screen and (max-width: 1024px) {

    .project-highlight-section .highlight-box .highlight-content .text-box {
        padding-bottom: 20px;
    }
}

@media screen and (max-width: 768px) {

    .project-highlight-section .highlight-box .highlight-content {
        padding: 40px 30px;
    }
    .project-highlight-section .highlight-box .image-box {
        position: relative;
        width: 100%;
    }
}

@media screen and (max-width: 576px) {

    .project-highlight-section .highlight-box {
        padding-top: 30px;
    }
}

/* =============================================
- Project completed Section
============================================= */

.completed-project-section {
    position: relative;
    overflow: hidden;
}

.completed-project-section .completed-project-carousel {
    position: relative;
    margin-top: 50px;
    padding-left: 100px;
}

.completed-project-section .completed-project-carousel .owl-stage-outer {
    overflow: visible;
}

.completed-project-section .completed-project-carousel .owl-stage {
    padding-left: 0 !important;
}

.completed-project-section .project-item {
    position: relative;
}

.completed-project-section .project-item .image-box {
    position: relative;
    -webkit-box-shadow: 24px 12px 30px 0px rgb(68 53 79 / 15%);
    -moz-box-shadow: 24px 12px 30px 0px rgb(68 53 79 / 15%);
    box-shadow: 24px 12px 30px 0px rgb(68 53 79 / 15%);
}

.completed-project-section .project-item .image-box .img {
    position: relative;
    overflow: hidden;
}

.completed-project-section .project-item .image-box .img img {
    width: 100%;
    aspect-ratio: 16 / 10;
    transition: 1.5s all ease;
    -moz-transition: 1.5s all ease;
    -webkit-transition: 1.5s all ease;
    -ms-transition: 1.5s all ease;
    -o-transition: 1.5s all ease;
}

.completed-project-section .project-item:hover .image-box .img img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    -moz-transform: scale(1.05);
    transform: scale(1.05);
}

.completed-project-section .project-item .image-box .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(35 34 34 / 25%);
    opacity: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.completed-project-section .project-item .image-box:hover .overlay {
    opacity: 1;
}

.completed-project-section .project-item .image-box .overlay h6 {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff;
    font-weight: 300;
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    /*background-color: rgb(255 255 255 / 18%);*/
    width: 80px;
    height: 80px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-bottom: 0;
}

.completed-project-section .completed-project-carousel.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 30px;
}

@media screen and (max-width: 768px) {
    .completed-project-section .completed-project-carousel {
        margin-top: 40px;
        padding-left: 0;
    }
}

/* =======================================
- Project Amenities Section
========================================== */

.project-amenities-section {
    position: relative;
}

.project-amenities-section .title h5 {
    font-size: 18px;
    color: var(--primary);
    text-transform: uppercase;
    line-height: 30px;
    letter-spacing: 4px;
    margin-bottom: 0;
}

.project-amenities-section .short-content {
    padding-left: 20px;
}

.project-amenities-section .short-content p {
    margin-bottom: 0;
}

.project-amenities-section .image-box {
    position: relative;
    overflow: hidden;
}

.project-amenities-section .image-box:after {
    position: absolute;
    content: "";
    display: block;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.25)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.25) 100%);
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    z-index: 2;
}

.project-amenities-section .image-box:hover:after {
    -webkit-animation: imgShine 1.5s;
    animation: imgShine 1.5s;
}

@-webkit-keyframes imgShine {
    100% {
        left: 125%
    }
}

@keyframes imgShine {
    100% {
        left: 125%
    }
}

.project-amenities-section .image-box img {
    width: 100%;
    -webkit-box-shadow: 12px 24px 30px 0px rgb(0 0 0 / 10%);
    -moz-box-shadow: 12px 24px 30px 0px rgb(0 0 0 / 10%);
    box-shadow: 12px 24px 30px 0px rgb(0 0 0 / 10%);
}

.architecture-section .items .floor-info {
    position: relative;
    padding-top: 30px;
}

.architecture-section .items .floor-info h6 {
    color: var(--primary);
    opacity: 50%;
    text-transform: capitalize;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

@media screen and (max-width: 576px) {

    .project-amenities-section .short-content {
        padding-left: 0;
    }
}

/* Form Redirect Button - ONSALE PAGE  */
.form-sticky-box {
	position: fixed;
	width: 50px;
	height: 50px;
	bottom: 35px;
	right: 16px;
	border-radius: 50px;
	z-index: 9999;
	opacity: 0;
	transition: all 0.3s linear;
}
.form-sticky-box.show {
    opacity: 1;
    visibility: visible;
}

.form-sticky-box .icon {
	height: 50px;
	position: relative;
}

.form-sticky-box .icon a {
	color: #fff;
	display: block;
	height: 100%;
	width: 100%;
	line-height: 54px;
	border-radius: 50px;
	padding-left: 25%;
	background: linear-gradient(180deg, var(--primary) 0%, var(--primary) 100%) no-repeat;
	border-bottom: 1px solid rgba(0, 0, 0, .4);
	transition: all .5s linear;
	position: absolute;
	right: 0; 
	z-index: 1;
	width: 150px;
	right: 0; 
	overflow: hidden;
	cursor: pointer;
}

.form-sticky-box .icon a i {
	position: absolute;
	top: 20px;
	left: 15px;
	width: 25px;
	font-size: 20px;
	transform: rotate(45deg);
	-webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.form-sticky-box .icon a:hover i {
	transform: rotate(0deg)
}
.form-sticky-box .icon a span {
	font-weight: 500;
	font-size: 15px;
	padding-left: 20%;
	display: block;
	text-transform: capitalize;
	white-space: nowrap;
}
 
/*  Thank you Page  */
.thank-you-content {
    text-align: center;
    padding: 30px 30px;
}
.thank-you-content .icon {
    font-size: 60px;
    color: var(--primary);
	margin-bottom: 10px;
}
.thank-you-content p {
	margin-bottom: 40px
}
/* Download Modal */
.download-modal form.wpcf7-form p {
	text-align: center;
}
.download-modal  .form-control,
.download-modal .wpcf7-form-control{
	text-align: left;
}

.download-modal .form-control::placeholder,
.download-modal .wpcf7-form-control::placeholder{
    color: var(--secondary);
    opacity: 50%;
    font-weight: 300;
    text-transform: uppercase;
}

.download-modal form.wpcf7-form .wpcf7-submit {
    position: relative;
    display: inline-block;
    width: fit-content;
    border: 0;
    border-bottom: 1px solid #44354F;
    background-color: transparent;
    text-decoration: none;
    color: var(--primary);
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    opacity: 50%;
    -webkit-transition: all 0.5s 
ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s 
ease-in-out;
}
.download-modal form.wpcf7-form .wpcf7-submit:hover {
    opacity: 100%;
}
.download-modal .screen-reader-response {
	display: none;
}
.download-modal span.wpcf7-not-valid-tip {
	text-align: left;
}
.download-modal .wpcf7-spinner {
	display: none;
}
/* =========================================
 * - Sreyan Landing Page
 * ========================================= */

.booking-form-section.landing-section .image-box  {
	width: 100%;
	height: 100vh;
}
.booking-form-section.landing-section .image-box .item img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    transition: all 1.7s ease-in-out;
    -webkit-transition: all 1.7s ease-in-out;
    -ms-transition: all 1.7s ease-in-out;
    -moz-transition: all 1.7s ease-in-out;
    -o-transition: all 1.7s ease-in-out;
}

.booking-form-section.landing-section .image-box .price-overlay {
	position: absolute;
	background-color: rgba(255, 255, 255, 70%);
	padding: 15px 30px;
	display: inline-block;
	border-radius: 10px;
	bottom: 50px;
	left: 50px;
	z-index:1;
}

.booking-form-section.landing-section .image-box .price-overlay h5 {
	margin-bottom: 10px;
}

.booking-form-section.landing-section .image-box .price-overlay h3 {
	color: var(--primary);
    font-size: 30px;
    margin-bottom: 0;
    font-family: "Sofia Pro", sans-serif;
    text-transform: uppercase;
}

.booking-form-section.landing-section .image-box .logo-container {
	position: absolute;
	top: 50px;
	right: 50px;
	z-index:2;
}

.booking-form-section.landing-section .image-box  .logo-container img{
	width: 150px;
	margin-bottom: 20px;
}

.booking-form-section.landing-section .image-box .logo-container p {
    text-transform: uppercase;
    letter-spacing: 2px;
}

.booking-form-section.landing-section .image-box .enquire-button {
	position: absolute;
	bottom: 50px;
	right: 50px;
	z-index:2;
}

.booking-form-section.landing-section .image-box .enquire-button button {
	border: none;
	background-color: #FBF5F4;
	padding: 10px 30px;
	display: inline-block;
	border-radius: 20px;
}

.booking-form-section.landing-section .image-box .enquire-button button span {
	transform: rotate(45deg);
	-webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.booking-form-section.landing-section .image-box .enquire-button button:hover span {
	transform: rotate(0deg);
}

.enquire-section .form-wrap {
    padding: 20px 40px;
    text-align: center;
}

.enquire-section .form-wrap .form-control,
.enquire-section .form-wrap .wpcf7-form-control {
    border: 0;
	display: inline-block;
    color: var(--primary);
    font-weight: 300;
    border-bottom: 1px solid var(--secondary);
    border-radius: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    background-color: transparent;
    margin-bottom: 50px;
    text-align: center;
	width: 100%;
}

.enquire-section .form-wrap .form-control::placeholder,
.enquire-section .form-wrap .wpcf7-form-control {
    color: var(--secondary);
    opacity: 50%;
    font-weight: 300;
    text-transform: uppercase;
}

.enquire-section .form-wrap form.wpcf7-form .wpcf7-submit {
    position: relative;
	display: inline-block;
	width: fit-content;
    border: 0;
	border-bottom: 1px solid #44354F;
    background-color: transparent;
    text-decoration: none;
    color: var(--primary);
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    opacity: 50%;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.enquire-section .form-wrap form.wpcf7-form .wpcf7-submit:hover {
    opacity: 100%;
}

.enquire-section .form-wrap .screen-reader-response {
	display: none;
}

.enquire-section .form-wrap span.wpcf7-not-valid-tip {
    position: relative;
    top: -48px;
}

.enquire-section .form-wrap .wpcf7-spinner {
	display: none;
}

@media (max-width: 768px) {
	
	.booking-form-section.landing-section .image-box .price-overlay {
		padding: 10px 15px;
		bottom: auto;
		left: auto;
		top: 25px;
		right: 25px;
		text-align: right;
	}
	
	.booking-form-section.landing-section .image-box .price-overlay h5 {
    	font-size: 18px;
	}
	
	.booking-form-section.landing-section .image-box .price-overlay h3 {
    	font-size: 24px;
	}
	
	.booking-form-section.landing-section .image-box .enquire-button {
    	bottom: 25px;
		right: 25px;
	}
}

/* =======================================
- Onsale Gallery Section
========================================== */

.onsale-gallery-section {
	position: relative;
}

.onsale-gallery-section .masonry-gallery {
    column-count: 3;
    column-gap: 20px;
}

.onsale-gallery-section .masonry-box {
	position: relative;
    break-inside: avoid;
    margin-bottom: 20px;
    overflow: hidden;
}

.onsale-gallery-section .masonry-gallery .image-box .img {
    position: relative;
    overflow: hidden;
}

.onsale-gallery-section .masonry-gallery .image-box .img img {
    width: 100%;
    transition: 1.5s all ease;
    -moz-transition: 1.5s all ease;
    -webkit-transition: 1.5s all ease;
    -ms-transition: 1.5s all ease;
    -o-transition: 1.5s all ease;
}

.onsale-gallery-section .masonry-gallery .image-box:hover .img img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    -moz-transform: scale(1.05);
    transform: scale(1.05);
}

.onsale-gallery-section .masonry-gallery .image-box .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(35 34 34 / 25%);
    opacity: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.onsale-gallery-section .masonry-gallery .image-box:hover .overlay {
    opacity: 1;
}

.onsale-gallery-section .masonry-gallery .image-box .overlay h6 {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff;
    font-weight: 300;
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    width: 80px;
    height: 80px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-bottom: 0;
}

.onsale-gallery-section .masonry-box .image-box .img img {
    width: 100%;
    display: block;
}

@media (max-width: 992px) {
	
    .onsale-gallery-section .masonry-gallery { column-count: 2; }
}

@media (max-width: 576px) {
	
    .onsale-gallery-section .masonry-gallery { column-count: 1; }
}


/*=============================================
   - WHATSAPP SECTION
=============================================*/

.whatsapp-info,
.pulse {
    display: inline-block;
    color: #fff;
    background: #1ab744;
    position: fixed;
    bottom: 40px;
    left: 35px;
    font-size: 25px;
    text-align: center;
    z-index: 199;
    border-radius: 90%;
    height: 45px;
    width: 45px;
    line-height: 50px;
    cursor: pointer;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(.1);
        transform: scale(.1);
        opacity: 0
    }

    50% {
        opacity: .3
    }

    100% {
        -webkit-transform: scale(2);
        transform: scale(2);
        opacity: 0
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(.1);
        transform: scale(.1);
        opacity: 0
    }

    50% {
        opacity: .3
    }

    100% {
        -webkit-transform: scale(2);
        transform: scale(2);
        opacity: 0
    }
}

.pulse:nth-child(2) {
    -webkit-animation: pulse 2s infinite .3s;
    animation: pulse 2s infinite .3s
}

.pulse:nth-child(3) {
    -webkit-animation: pulse 2s infinite .6s;
    animation: pulse 2s infinite .6s
}
