/* Font Links  */

@import url(https://db.onlinewebfonts.com/c/155c3fcab90ff316f2afaf56be1b86b4?family=PP+Editorial+Old);
@font-face {
    font-family: "Clash Display Variable";
    src: url('fonts/ClashDisplay-Light.woff2') format('woff2'), url('fonts/ClashDisplay-Light.woff') format('woff'), url('fonts/ClashDisplay-Light.ttf') format('truetype');
    font-weight: 300;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: "Clash Display Variable";
    src: url('fonts/ClashDisplay-Regular.woff2') format('woff2'), url('fonts/ClashDisplay-Regular.woff') format('woff'), url('fonts/ClashDisplay-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: "Clash Display Variable";
    src: url('fonts/ClashDisplay-Medium.woff2') format('woff2'), url('fonts/ClashDisplay-Medium.woff') format('woff'), url('fonts/ClashDisplay-Medium.ttf') format('truetype');
    font-weight: 500;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: "Clash Display Variable";
    src: url('fonts/ClashDisplay-Semibold.woff2') format('woff2'), url('fonts/ClashDisplay-Semibold.woff') format('woff'), url('fonts/ClashDisplay-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-display: swap;
    font-style: normal;
}

/*
========================
GOBAL CSS START
========================
*/

*,
*::before,
*::after {
    box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

body {
    margin: 0;
    font-family: "Clash Display Variable";
    font-size: 16px;
    font-weight: 400;
    background: #fff;
    color: #333333;
}

:root {
    --pp-editor-font: "PP Editorial Old";
    --selection-bg: #0078d7;
    --selection-color: #fff;
    --scroll-top-bg: #0078d7;
    --scroll-top-color: #fff;
}

html,
body,
header,
footer,
main,
nav,
section,
div,
menu,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
button {
    margin: 0;
    padding: 0;
}

ol,
ul {
    list-style: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

a:visited,
a:hover,
a:active {
    text-decoration: none;
}

img {
    max-width: 100%;
}

::selection {
    color: var(--selection-color);
    background: var(--selection-bg);
}

::-webkit-selection {
    color: var(--selection-color);
    background: var(--selection-bg);
}

::-moz-selection {
    color: var(--selection-color);
    background: var(--selection-bg);
}

/*===============
 GOBAL CSS END  
 ============== */

.main-area {
    height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.header-area {
    padding: 35px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-toggler {
    background: transparent;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: end;
    cursor: pointer;
    padding-block: 5px;
    gap: 4px;
}

.menu-toggler span {
    width: 60px;
    height: 2px;
    display: block;
    background: #2A251F;
    transition: 0.3s;
}

.menu-toggler span:nth-child(2) {
    max-width: 40px;
}

.menu-toggler:hover span:nth-child(2) {
    max-width: 100%;
}

.logo a {
    display: flex;
    max-width: 336px;
}

.coming-soon-content {
    padding-inline: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1094px;
    gap: 50px;
    margin-left: 100px;
}

.coming-soon-content h2 {
    color: #2A251F;
    text-align: center;
    font-family: var(--pp-editor-font);
    font-size: 145px;
    font-style: normal;
    font-weight: 400;
    line-height: 96.552%;
    letter-spacing: -2.8px;
    text-transform: uppercase;
    max-width: 1100px;
}

.social-media {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.social-media a {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #000;
    transition: 0.3s;
}

.social-media a:hover {
    background: #000;
}
.social-media a:hover svg path {
    fill: #fff;
}
.social-media a:nth-child(2):hover svg path {
    fill: unset;
    stroke: #ffff;
}

.slider-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    padding-bottom: 40px;
}

.slider-navigation button {
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    color: #2A251F;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    gap: 4px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}


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

.background-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.background-slider {
    width: 100%;
    height: 100%;
}

.background-video {
    width: 100%;
    height: 100%;
}

/*=========== contact form section style start hare ============ */

.contact-form-area {
    position: fixed;
    left: 0;
    top: -110dvh;
    width: 100%;
    background: #F8F8F8;
    z-index: 100;
    transition: 0.3s;
}

.contact-form-wrapper {
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    overflow: hidden;
    overflow-y: auto;
    justify-content: space-between;
}

.contact-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 25px 60px;
    position: sticky;
    top: 0;
    z-index: 22;
    background: #F8F8F8;
}

.menu-close {
    background: transparent;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form-top {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 1120px;
}

.contact-form-top h2 {
    color: #1D0409;
    text-align: center;
    font-family: var(--pp-editor-font);
    font-size: 145px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -3.6px;
    text-transform: uppercase;
}

.contact-form-top p {
    color: #1D0409;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.48px;
}

.input-row {
    display: flex;
    gap: 20px;
}

.input-row-full {}

.input-group {
    flex: 1;
    position: relative;
    border: 1px solid #000;
    padding: 16px;
    box-sizing: border-box;
    background-color: #fff;
}

.input-group label {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    color: #2A251F;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    pointer-events: none;
    transition: top 0.3s, font-size 0.3s;
}

.input-group input {
    width: 100%;
    border: none;
    outline: none;
    padding-top: 15px;
    font-size: 20px;
}

.input-group input:focus+label,
.input-group input:not(:placeholder-shown)+label {
    top: 10px;
    font-size: 12px;
}

.input-group.full {
    width: 100%;
}

.button-row {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.button-group {
    flex: 1;
    border: 1px solid #000;
    padding: 15px;
    box-sizing: border-box;
    background-color: #fff;
    text-align: center;
    cursor: pointer;
    text-transform: uppercase;
    color: #2A251F;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.button-group.selected {
    background-color: #000;
    color: #fff;
}

.contact-form-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1120px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.terms-privacy p {
    font-size: 24px;
    letter-spacing: 0.48px;
    color: #585858;
}

.terms-privacy p a {
    text-decoration: underline;
    font-weight: 500;
}

.submit-button {
    text-align: center;
}

.submit-button button {
    display: inline-flex;
    padding: 16px 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: #1C160E;
    border: none;
    color: #E9E4DE;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid transparent;
}

.submit-button button:hover {
    border-color: #1C160E;
    background: transparent;
    color: #1C160E;
}

.contact-form-footer {
    display: flex;
    align-items: end;
    gap: 70px;
    padding-bottom: 20px;
    padding-inline: 20px;
}

.copyright-text p {
    color: #2A251F;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.56px;
    text-transform: uppercase;
    border-top: 1px solid #000;
    padding-top: 5px;
}

.footer-links ul {
    display: flex;
    align-items: center;
    padding-top: 5px;
    border-top: 1px solid #000;
    gap: 20px;
    padding-left: 20px;
}

.footer-links ul li a {
    color: #2A251F;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.56px;
    text-transform: uppercase;
    position: relative;
}

.contact-form-area.show-form {
    top: 0;
}

.main-section {
    display: none;
}

#Prelader {
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    color:#000;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:9999;
    overflow:hidden;
    font-family: var(--pp-editor-font);
    font-size: 90px;
    letter-spacing: 5px;
    text-transform: uppercase;
    opacity:1;
    transition:opacity 0.3s ease-in-out;
}
#Prelader.fade-out {
    opacity:0;
    pointer-events:none;
}

#Prelader ul {
    list-style:none;
    padding:0;
    margin:0;
    display:flex;
    gap:30px;
}
#Prelader li {
    opacity:0;
    transform:translateY(20px);
    transition:opacity 0.4s ease, transform 0.4s ease;
    color:#fff;
    font-size:40px;
}

.footer-links ul li a::before {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    background: #000;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    transition: 0.3s;
}
.footer-links ul li a:hover::before {
    width: 100%;
}

.menu-close:hover {
    transform: rotate(90deg);
}
.slider-navigation button::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #2A251F;
    position: absolute;
    left: 0;
    transition: 0.4s;
    top: calc(100% - 1px);
    z-index: 20;
}

.slider-navigation button::before {
    content: "";
    display: block;
    width: 20%;
    height: 1px;
    background: #fff;
    position: absolute;
    left: -100%;
    transition: 0.6s;
    top: calc(100% - 1px);
    z-index: 22;
}
.slider-navigation button:hover::before {
    left: 100%;
}