:root {
    --dark: #122620;
    --primary: #9c6b50;
    --font_marcellus: 'Marcellus', serif;
    --font_montserrat: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font_montserrat);
    font-size: 14px;
    line-height: 1.2em;
    font-weight: 400;
    width: 100%;
    overflow-x: hidden;

}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

.theme-btn {
    display: inline-block;
    font-size: 10px;
    text-transform: uppercase;
    line-height: 1;
    position: relative;
    font-weight: 500;
    color: var(--dark);
    padding: 13px 28px 13px 50px;
    transition: .5s;
    border: none;
    background: none;
}

.theme-btn::before {
    content: '';
    position: absolute;
    width: 1px;
    height: 14px;
    background: var(--dark);
    right: 0;
    top: -4px;
    transform-origin: bottom;
    transform: rotate(-45deg);
    transition: .5s;
}

.theme-btn::after {
    content: '';
    height: 1px;
    width: 45px;
    position: absolute;
    left: -12px;
    top: 50%;
    margin-top: -1px;
    background: var(--dark);
    transition: .5s;
}

.theme-btn span {
    width: 100%;
    height: 100%;
    border-left: 1px solid var(--dark);
    border-bottom: 1px solid var(--dark);
    bottom: 0;
    left: 0;
    position: absolute;
    transition: .5s;
}

.theme-btn span::after,
.theme-btn span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 1px;
    width: calc(100% - 10px);
    background: var(--dark);
    transition: .5s;
}

.theme-btn span::after {
    width: 1px;
    height: calc(100% - 10px);
    left: auto;
    right: 0;
    top: auto;
    bottom: 0;
    transition: .5s;
}

.theme-btn:hover::after {
    left: calc(100% - 33px);
}

.theme-btn:hover span {
    border-color: var(--primary);
}

.theme-btn:hover:before,
.theme-btn:hover:after,
.theme-btn:hover span:before,
.theme-btn:hover span:after {
    background: var(--primary);
}

.theme-btn:hover {
    color: var(--primary);
    padding-left: 28px;
    padding-right: 50px;
}

.border-gradient-shape {
    position: absolute;
    right: 19px;
    top: 19px;
    height: calc(100% - 156px);
    width: calc(100% - 38px);
    z-index: -1;
}

.title {
    font-size: 31px;
    line-height: 41.4px;
    color: var(--dark);
    font-family: var(--font_marcellus);
}

.border-gradient-shape::after,
.border-gradient-shape::before {
    content: '';
    position: absolute;
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, transparent 20%, var(--primary));
    right: 0;
    top: 0;
    pointer-events: none;
}

.border-gradient-shape::after {
    width: 1px;
    height: 100%;
    background: linear-gradient(0deg, transparent 20%, var(--primary));
}

.coming-soon {
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.coming-soon >img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    object-fit: cover;
    height: 100%;
    z-index: -1;
    animation: zoomInAnim 35s infinite linear;
}

.coming-soon .content {
    background: #fff;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translatey(-50%);
    max-width: 1250px;
    width: 100%;
    padding: 54px 63px;
    z-index: 4;
    margin-left: auto;
    margin-right: auto;
}

.coming-soon .content .border-gradient-shape {
    height: calc(100% - 38px);
}

.coming-soon .content .title {
    font-size: 34px;
    margin: 0 0 22px;
}

.coming-soon .content p {
    font-size: 14px;
    line-height: 26.6px;
    margin: 0 0 36px;
}

.coming-soon .content #countdown {
    margin-bottom: 36px;
}

.coming-soon .content #countdown ul {
    display: flex;
    align-items: center;
    gap: 63px;
}

.coming-soon .content #countdown ul li {
    font-size: 11px;
    color: var(--dark);
}

.coming-soon .content #countdown ul li span {
    display: block;
    color: var(--primary);
    font-family: var(--font_marcellus);
    line-height: 1;
    font-size: 31px;
}

.video-bg iframe {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    transform: scale(1.5);
}

.hero-slide-gradient {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .75);
    z-index: 3;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.social-icons li a {
    display: block;
    color: var(--primary);
    width: 46px;
    height: 46px;
    text-align: center;
    line-height: 46px;
    border: 1px solid var(--primary);
    font-size: 22px;
    transition: .5s;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 20px;
}

.social-icons li a span {
    font-size: 17px;
    margin-left: 10px;
}

.social-icons li a:hover {
    border-color: var(--dark);
    color: var(--dark);
}

img {
    max-height: 150px;
    margin-bottom: 20px;
}

.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.flex-1 {
    flex: 1;
}

@media (max-width:991px) {
    .coming-soon {
        height: 100vh;
    }
    .video-bg iframe {
        transform: scale(2);
        height: calc(100vh - 360px);
    }
    .coming-soon .content {
        position: absolute;
        top: 0;
        transform: translatey(0%);
        padding: 40px;
    }
    .mobile-block {
        display: block !important;
    }
    .social-icons {
        margin-bottom: 30px;
    }
    .social-icons li a span {
        font-size: 15px;
    }
}
