@import "font.css";

* {
    font-family: var(--font_default);
    /* font-size: var(--font_default_size); */
    color: var(--color_text);
}

*::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    display: none;
}

*::-webkit-scrollbar-track {
    background: #fafafa;
}

*::-webkit-scrollbar-thumb {
    background-color: var(--color_primary);
    border-radius: 20px;
    border: 1px solid #fafafa;
}

body::-webkit-scrollbar {
    width: 14px;
    height: 14px;
}

body::-webkit-scrollbar-thumb,
textarea::-webkit-scrollbar-thumb {
    border-width: 2px;
}

ul,
ol {
    list-style: none;
    margin: 0;
}

button:focus,
button:hover {
    outline: none;
}


body {
    --fs-title: 45px;
    --fs-content: 16px;
    --body-height: 100vh;
}

@media only screen and (max-width: 375px) {
    body {
        --fs-title: 40px;
        --fs-content: 14px;
    }
}

@media only screen and (min-width: 1440px) {
    body {
        --fs-title: 50px;
        --fs-content: 17px;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    overflow: visible;
}

@media only screen and (max-width: 960px) {
    body {
        overflow: hidden;
    }
}

body sup {
    font-family: inherit;
    font-size: 0.7em;
    color: inherit;
}

.mainpage-merger {
    background: #ffffff;
    min-height: 480px;
    display: block;
    position: relative;
    height: 100%;
}

.mainpage-merger,
.mainpage-merger * {
    -webkit-overflow-scrolling: touch;
}

.mainpage-merger .frame-primary {
    overflow: hidden;
    top: 0;
    left: 0;
    bottom: 0;
    position: fixed;
    width: 55%;
}

.mainpage-merger .frame-secondary {
    position: static;
    right: 0;
    background: #fff;
    width: 45%;
    margin-left: auto;
}

@media only screen and (min-width: 960px) and (max-width: 1400px) {

    .mainpage-merger .frame-secondary .video-gallery .inner .video-outer .video {
        width: 100%;
    }

}

@media only screen and (max-width: 960px) {

    .mainpage-merger .frame-primary {
        position: relative;
        width: 100%;
        display: none;
    }

    .mainpage-merger .frame-secondary {
        position: relative;
        width: 100%;
    }

}

.mainpage-merger .frame-primary .inner {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 15px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: absolute;
}

.mainpage-merger .frame-primary .inner::before {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.mainpage-merger .frame-primary .inner .details {
    position: absolute;
    /* bottom: 25px; */
    /* right: 25px; */
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 0px 10px;
    z-index: 2;
}

.mainpage-merger .frame-primary .inner .details h1 {
    padding: 0;
    margin-bottom: 10px;
    font-size: calc(var(--fs-title));
    line-height: 1.2;
    font-weight: normal;
    font-family: var(--dancing-script);
    color: "#fafafa";
}

.mainpage-merger .frame-primary .inner .details p {
    font-size: calc(var(--fs-content) + 5px);
    color: var("#fafafa");
    margin-left: 30px;
    margin-bottom: 5px;
}

.mainpage-merger .frame-primary .inner .highlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
}

.mainpage-merger .frame-primary .inner .highlight .preview-container {
    width: 100%;
    height: 100%;
    display: block;
}

.mainpage-merger .frame-primary .inner .highlight .preview-container .slick-list {
    width: 100% !important;
    height: 100% !important;
}

.mainpage-merger .frame-primary .inner .highlight .preview-container .slick-track {
    width: 100% !important;
    height: 100% !important;
    position: relative !important;
}

.mainpage-merger .frame-primary .inner .highlight .preview-container .picture {
    width: 100% !important;
    height: 100% !important;
    top: 0;
    left: 0;
    position: absolute !important;
}

.mainpage-merger .frame-primary .inner .highlight .preview-container .picture img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.mainpage-top {
    background-color: var(--color_primary);
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: var(--body-height);
    z-index: 999999;
    top: 0;
    /* top: -120%; */
    left: 0;
    padding: 0;

    transition: all 1.8s;
    transition-timing-function: cubic-bezier(.23, .56, .38, .78);
    -webkit-transition-timing-function: cubic-bezier(.23, .56, .38, .78);
    -moz-transition-timing-function: cubic-bezier(.23, .56, .38, .78);
    -o-transition-timing-function: cubic-bezier(.23, .56, .38, .78);

    display: flex;
    flex-direction: column;
    display: none;
}

@media only screen and (max-width: 960px) {
    .mainpage-top {
        display: flex;
    }
}

.mainpage-top.hide {
    top: -120%;
    bottom: 120%;
    pointer-events: none;
}

.mainpage-top .inner {
    padding: 15px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.mainpage-top .inner::before {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.35);
}

.mainpage-top .inner .details {
    text-align: center;
    padding: 10px;
    /* margin-top: auto;
    margin-bottom: 10vh; */
    position: relative;
    z-index: 1;
}

.mainpage-top .inner .details h1 {
    padding: 0;
    margin: 0 auto;
    margin-bottom: 10px;
    font-size: calc(var(--fs-title) + 10px);
    line-height: 1.2;
    font-weight: normal;
    font-family: var(--dancing-script);
    color: var(--color_primary);
}

.mainpage-top .inner .details p {
    margin-bottom: 5px;
}

.mainpage-top .inner .details a.link:hover {
    background-color: var(--color_primary);
}

/* Highlight */
.mainpage-top .inner .highlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
}

.mainpage-top .inner .highlight .preview-container {
    width: 100%;
    height: 100%;
    display: block;
}

.mainpage-top .inner .highlight .preview-container .slick-list {
    width: 100% !important;
    height: 100% !important;
}

.mainpage-top .inner .highlight .preview-container .slick-track {
    width: 100% !important;
    height: 100% !important;
    position: relative !important;
}

.mainpage-top .inner .highlight .preview-container .picture {
    width: 100% !important;
    height: 100% !important;
    top: 0;
    left: 0;
    position: absolute !important;
}

.mainpage-top .inner .highlight .preview-container .picture img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}


._content {
    background: var(--color_background);
    min-height: auto;
    position: relative;
    overflow: hidden;
    padding: 0;
    display: flex;
    flex-direction: column;
    /* background-image: var(--background_images); */
    /* background-size: cover; */
    /* height: 100%; */
    background-position: center;
}

._content_main {
    /* height: 100%; */
    /* width: 100%; */
    /* -webkit-background-size: cover; */
    /* background-size: cover; */
    /* background-color: var(--color_background); */
    /* background-color: transparent; */
    /* position: relative; */
    /* overflow: hidden; */
    /* z-index: 1; */
    padding: 7%;
}

/* ._alg_center {
    position: absolute;
    width: 60%;
}

._alg_middle {
    left: 50%;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
} */

.round_img {
    width: 150px;
    height: 150px;
    display: inline-block;
    margin: 0 auto 20px;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

._gallery_item {
    width: 100%;
    display: -webkit-inline-box;
    position: relative;
    max-width: 27%;
    margin: 5px;
}

._gallery_item img {
    width: 100%;
    border-radius: 10px;
}

._map {
    width: 100%;
    height: 450px;
}

._map iframe {
    border: 0;
    position: relative;
    pointer-events: auto;
}

.gla_image_bck {
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
}

.gla_music_icon {
    position: fixed;
    bottom: 55px;
    right: 20px;
    z-index: 2;
    font-size: 24px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
}

.gla_music_icon_cont {
    position: fixed;
    width: 400px;
    height: 300px;
    z-index: 2;
    bottom: 40px;
    right: 90px;
    display: none;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.gla_music_icon_cont iframe {
    width: 100%;
    height: 100%;
}

.countdown-section {
    display: inline-block;
    margin: 0 30px 0 0;
}

.text-center .countdown-section {
    margin: 0 30px;
}

.countdown-amount {
    font-family: var(--font_primary) !important;
    font-size: var(--font_primary_size) !important;
    font-weight: 500 !important;
    display: block;
}

/* .gla_countdown_gold .countdown-amount {
    height: 150px;
} */

.countdown-period {
    font: 15px Poppins, Arial !important;
}