/* common css ******************************************************************************/

@import url("https://use.typekit.net/ias5uxk.css");

@font-face {
    font-family: 'Amandine';
    src: url('../fonts/Amandine/Amandine-Light.eot');
    src: url('../fonts/Amandine/Amandine-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Amandine/Amandine-Light.woff2') format('woff2'),
        url('../fonts/Amandine/Amandine-Light.woff') format('woff'),
        url('../fonts/Amandine/Amandine-Light.ttf') format('truetype'),
        url('../fonts/Amandine/Amandine-Light.svg#Amandine-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Urbane';
    src: url('../fonts/Urbane/Urbane-Light.eot');
    src: url('../fonts/Urbane/Urbane-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Urbane/Urbane-Light.woff2') format('woff2'),
        url('../fonts/Urbane/Urbane-Light.woff') format('woff'),
        url('../fonts/Urbane/Urbane-Light.ttf') format('truetype'),
        url('../fonts/Urbane/Urbane-Light.svg#Urbane-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir';
    src: url('../fonts/Avenir/Avenir-Medium.eot');
    src: url('../fonts/Avenir/Avenir-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Avenir/Avenir-Medium.woff2') format('woff2'),
        url('../fonts/Avenir/Avenir-Medium.woff') format('woff'),
        url('../fonts/Avenir/Avenir-Medium.ttf') format('truetype'),
        url('../fonts/Avenir/Avenir-Medium.svg#Avenir-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

:root {
    --white: #fff;
    --black: #000;
    --theme-black: #00000f;
    --french-grey:#bfbebb;
    --judge-grey: #524e3e;
}
.white {
    color: var(--white);
}
.black {
    color: var(--black);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
*::before,
*::after {
    box-sizing: border-box;
}
.common::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000;
}
body {
    background: var(--white);
    font-family: "avenir-lt-pro", sans-serif;
    font-weight: 300;
    font-style: normal;
}
body.show {
    position: fixed;
    top: 0;
    width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    margin-bottom: 15px;
    line-height: 1.2;
    color: var(--theme-black);
    font-family: 'Amandine';
    font-weight: 300;
    font-style: normal;
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
    margin-bottom: 0;
}
h1 {
    font-size: 95px;
}
h2 {
    font-size: 90px;
}
h3 {
    font-size: 36px;
}
h4 {
    font-size: 28px;
}
h5 {
    font-size: 24px;
}
h6 {
    font-size: 20px;
}
p {
    margin: 0;
    padding: 0;
    font-size: 20px;
    line-height: 40px;
    margin-bottom: 25px;
    letter-spacing: 2px;
    color: var(--black);
}
p:last-child {
    margin-bottom: 0;
}
.small {
    font-size: 16px;
}
ul,
ol {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
    display: inline-block;
    line-height: 1.2;
    color: inherit;
    font-family: inherit;
}
span {
    display: inline-block;
}
.section-heading {
	text-align: center;
	margin-bottom: 50px;
}
.btn-common {
	font-size: 20px;
	padding: 12px 40px;
	background: transparent;
	font-size: 22px;
    letter-spacing: 5px;
    border: 1px solid var(--black);
    display: inline-flex;
	align-items: center;
	justify-content: center;
    text-transform: uppercase;
    overflow: hidden;
    position: relative;
}
.btn-common:after{
    width: 100%;
    height: 100%;
    content: "";
    background: var(--black);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transform: scale(0);
    -moz-transition: all 0.4s ease-out 0.0s;
    -ms-transition: all 0.4s ease-out 0.0s;
    -o-transition: all 0.4s ease-out 0.0s;
    -webkit-transition: all 0.4s ease-out 0.0s;
    transition: all 0.4s ease-out 0.0s;
}
.btn-common:hover {
    color: var(--white);
}
.btn-common:hover:after {
    transform: scale(1);
}
.white-bg-btn {
    background-color: var(--white);
    border: 1px solid var(--white);
    position: relative;
    z-index: 2;  /* Keep content above the overlay */
    -moz-transition: all 0.4s ease-out 0.0s;
    -ms-transition: all 0.4s ease-out 0.0s;
    -o-transition: all 0.4s ease-out 0.0s;
    -webkit-transition: all 0.4s ease-out 0.0s;
    transition: all 0.4s ease-out 0.0s;
}
.white-bg-btn:hover {
    background-color: var(--black);
    border-color: var(--black);
}
.btn-common img {
    max-width: 30px;
    margin-right: 10px;
}
section {
	padding-bottom: 100px;
	overflow: hidden;
}
.padding-top{
    padding-top: 100px;
}
.bg {
    padding: 100px 0;
}
.mobile {
    display: none !important;
}
.desktop {
    display: block !important;
}
img,
video {
    max-width: 100%;
}
.button-box {
	padding-top: 20px;
}
.button-box ul {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}
.owl-theme .owl-dots .owl-dot span {
    background: var(--black);
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--white);
    outline: 2px solid var(--white);
    outline-offset: 3px;
}
.owl-nav {
    margin-top: 0;
}
.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.owl-nav button.owl-prev {
    left: 0;
}
.owl-nav button.owl-next {
    right: 0;
}
.form-control-common {
	background: var(--white);
    opacity: .7;
	border: 1px solid var(--white);
	font-size: 20px;
	padding: 15px 50px 15px 20px;
	width: 100%;
	appearance: textfield;
	color: var(--black);
	border-radius: 0;
	box-shadow: none;
	resize: none;
    outline: none;
}
.input-group {
	padding-bottom: 30px;
}
input[type="email"] {
    text-transform: lowercase !important;
}

input[type="email"]::placeholder {
    text-transform: capitalize !important;
}
label{
    font-size: 20px;
    letter-spacing: 2px;
}

/* header css start ******************************************************************************/
@keyframes smoothScroll {
    0% {
        transform: translateY(-60px);
        opacity: 0;
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}
#header.show {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: smoothScroll 1s forwards;
    z-index: 1000;
    box-shadow: 0 0 10px 2px #00000052;
}
#header {
	background: var(--white);
	padding: 15px 0;
	transition: .5s all;
	position: relative;
}
#header .header-box {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
#header .logo-box img {
    height: 60px;
    object-fit: contain;
    width: 100%;
    max-width: 80px;
}
#header .logo-box{
    text-align: left;
}
#header .main-nav .click-menu,
#header .main-nav .cancel-menu {
    display: none;
    cursor: pointer;
    position: relative;
    z-index: 11;
    width: 30px;
    height: 30px;
}
#header .main-nav .click-menu span,
#header .main-nav .cancel-menu span {
    width: 25px;
    height: 3px;
    background: var(--black);
    transition: .5s all ease-in-out;
    position: relative;
    border-radius: 5px;
}
#header .main-nav .cancel-menu span {
    position: absolute;
    height: 4px;
}
#header .main-nav .cancel-menu span:first-child {
    transform: rotate(45deg);
}
#header .main-nav .cancel-menu span:last-child {
    transform: rotate(-45deg);
}
#header .main-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding-left: 20px;
    justify-content: flex-end;
}
#header .button-box {
	margin-left: 20px;
	padding-top: 0;
}
#header .main-nav nav ul li {
	display: inline-block;
	position: relative;
	margin-right: 10px;
}
#header .main-nav nav ul li a {
	color: var(--theme-black);
	padding: 5px;
    text-transform: uppercase;
	font-size: 18px;
    letter-spacing: 3px;
    position: relative;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}
#header .main-nav nav ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--french-grey);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
#header .main-nav nav ul li a:hover:after{
    width: 100%;
}
#header .main-nav nav ul li .instagram-icon:after{
    content: none;
}
#header .main-nav nav ul li .instagram-icon:hover{
    transform: scale(1.2);
}

/* homeBanner css ******************************************************************************/
#homeBanner .homeBanner-part {
    background: url("../images/home-banner.png") no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 615px;
    position: relative;
}
.homeBanner-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 0 15px;
}
.banner-text p {
    color: var(--white);
    letter-spacing: 3px;
}
.banner-text-img {
    margin-bottom: 20px;
}
.banner-text-img img {
    max-width: 400px;
    width: 100%;
}

/* two-col-text-img-section css */
.two-col-text-img-section{
    position: relative;
}
.two-col-text-img-section .section1-box .box1 .text-box {
    margin-left: 48%;
    width: 100%;
    position: relative;
    z-index: 1;
    padding: 20px 0;
}
.two-col-text-img-section .section1-box .text-box p {
    max-width: 400px;
    width: 100%;
    padding-right: 20px;
}
.two-col-text-img-section .section1-box .box1 .text-box h1 {
    margin-bottom: 60px;
}
.two-col-text-img-section .section1-box .box2 .img-box img {
    width: 100%;
    height: 900px;
    object-fit: cover;
}
.two-col-text-img-section.our-studio-two-col-section .section1-box .box2 .img-box img{
    height: 700px;
}
.two-col-text-img-section .section1-box .box2 .img-box {
    width: 100%;
}
.two-col-text-img-section .section2-box .box2 .text-box {
    position: relative;
    margin-left: -20%;
    margin-top: 30px;
}
.two-col-text-img-section .section2-box .box2 .text-box p {
    max-width: 540px;
    width: 100%;
    margin-bottom: 60px;
}
.two-col-text-img-section .section2-box .box2 .text-box h2 {
    margin-left: -20%;
    margin-bottom: 80px;
}
.our-studio-section{
    padding-bottom: 100px;
}
.our-studio-two-col-section  .section1-box .box1 .text-box{
    margin-left: 55%;
}
.our-spaces-two-col-section .section1-box .box1 .text-box {
    margin-left: 55%;
}

/* quote-section css */
.quote-section{
    background: url("../images/quote-background.png") no-repeat;
    background-size: cover;
    background-position: center;
    padding: 180px 0;
}
.quote-box {
    opacity: 0.922;
    background-color: var(--judge-grey);
    padding: 70px;
}
.quote-box h3{
    font-family: "lindsey-signature", sans-serif;
    font-weight: 400;
}
.quote-box p{
    line-height: 45px;
    font-weight: 500; 
    margin-bottom: 40px;
    font-family: 'Avenir';
}

/* signature-process-section css */
.accordion-item .accordion-button {
    font-size: 24px;
    font-weight: 500;
    font-family: 'Avenir';
    letter-spacing: 2px;
    padding: 30px 0;
    color: var(--theme-black);
}
.accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
}
.accordion-item {
    border: 0;
    color: var(--theme-black);
}
.accordion-button:focus{
    box-shadow:none;
}
.accordion-button:not(.collapsed)::after{
    content: "\f068";
    font-family: "Font Awesome 6 free";
    font-weight: 900;
    background: none;
}
.accordion-button::after{
    content: "\f067";
    font-family: "Font Awesome 6 free";
    font-weight: 900;
    background: none;
    width: auto;
    height: inherit;
}
.accordion-item {
    border-radius: 0;
}
.accordion-item:not(:last-child){
    border-bottom: 1px solid var(--theme-black);
}
.accordion-item:last-of-type>.accordion-header .accordion-button.collapsed,
.accordion-item:last-of-type{
    border-radius: 0;
}
.accordion-body{
    padding: 10px 0 30px;
}
.faq-accordion, .signature-process-accordion {
    padding-left: 50px;
}

/* inspired-spaces-section css ******************************************************************************/
.inspired-spaces-img img {
    width: 100%;
}

/* imgs-section */
.imgs-wrapper{
    margin-bottom: 80px;
}
.imgs-section .img-block,
.imgs-section .text-block{
    margin-bottom: 25px;
}
.img-block-col{
    position: relative;
    height: 100%;
}
.imgs-section .img-block img{
    width: 100%;
}
.imgs-section .text-block-col .text-block h3{
    font-family: "lindsey-signature", sans-serif;
    font-weight: 400;
}
.imgs-section .text-block-col .text-block p {
    max-width: 90%;
    margin: 0 auto 30px;
    width: 100%;
    font-size: 26px;
    line-height: 53px;
}
.img-block-col-content {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    z-index: 2;
    display: flex;
    text-align: center;
    flex-direction: column;
}
.img-block-col-content h3{
    font-size: 45px;
}
.img-block-col-content h3, .img-block-col-content .btn-common{
    color: var(--white);
}
.img-block-col-content .btn-common{
    border-color: var(--white);
    margin-top: 60px;
}
.img-block-col-content .btn-common:hover{
    color: var(--black);
}
.img-block-col-content .btn-common::after{
    background-color: var(--white);
}

/* about-two-col-section css ******************************************************************************/
.about-two-col-section{
    background-color: var(--judge-grey);
}
.about-two-col-section .text-box p{
    color: var(--white);
}
.about-two-col-section .img-box:not(:last-child){
    margin-bottom: 50px;
}
.text-content-box{
    max-width: 80%;
    width: 100%;
}

/* our-approach-two-col-section css*/
.our-approach-two-col-section.two-col-text-img-section .section1-box .box1 .text-box{
    margin-left: 57%;
    width: 100%;
    position: relative;
    z-index: 1;
}
.our-approach-two-col-section .padding-top {
    padding-top: 180px;
}


/* instagram-feed-section css ******************************************************************************/
.instagram-feed-block img {
    width: 100%;
    object-fit: cover;
    height: 615px;
}
.instagram-feed-block a{
    display: block;
    transition: all .5s ease;
}
.instagram-feed-block a:hover {
    transform: translateY(-10px);
}
.instagram-feed-section .section-heading {
    margin-bottom: -15px;
    z-index: 1;
    position: relative;
}
.instagram-feed-section {
    padding-bottom: 10px;
}
.instagram-feed-col {
    padding: 0 5px 10px;
}
.inspired-spaces-wrapper {
    padding-bottom: 80px;
}
.inspired-spaces-wrapper .heading {
    position: relative;
    margin-left: 50%;
}
.inspired-spaces-img {
    margin-bottom: 24px;
}

/* bottom-form-section css ******************************************************************************/
.bottom-form-section{
    background: url("../images/form-bg.png") no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 615px;
    scroll-margin-top: 90px;
}
/* Add this to each section */
.bottom-form-section::before {
    content: "";
    display: block;
    height: 90px; /* same as your sticky header */
    margin-top: -90px;
    visibility: hidden;
}
.form-box .heading h2 {
    color: var(--white);
}
.form-box .input-group label{
    color: var(--white);
    padding-left: 20px;
    margin-bottom: 10px;
}
.bottom-form-section .form-box.common-form {
    max-width: 578px;
    width: 100%;
    margin-left: auto;
}
.bottom-form-section .input-group .btn-common.white-bg-btn {
    padding: 12px 70px;
}
#section-offset {
    height: 1px;
    position: relative;
    top: -90px;
    visibility: hidden;
}

/* footer css ******************************************************************************/
#footer {
    background-color: var(--french-grey);
    padding: 60px 0;
    font-family: 'Urbane';
    font-weight: 300;
    font-size: 18px;
}
#footer p{
    font-size: 18px;
}
#footer .blank-box{
    padding: 30px 0;
}
#footer .top-box .logo-box img {
    max-width: 250px;
    margin-bottom: 40px;
    object-fit: contain;
}
#footer .top-box h6 {
    margin-bottom: 40px;
    font-family: 'Urbane';
}
