@font-face {
    font-family: "Poppins";
    src: url(../assets/fonts/Poppins-Light.ttf);
    font-weight: 300;
    font-display: swap
}

@font-face {
    font-family: "Poppins";
    src: url(../assets/fonts/Poppins-Regular.ttf);
    font-weight: 400;
    font-display: swap
}

@font-face {
    font-family: "Poppins";
    src: url(../assets/fonts/Poppins-Medium.ttf);
    font-weight: 500;
    font-display: swap
}

@font-face {
    font-family: "Poppins";
    src: url(../assets/fonts/Poppins-SemiBold.ttf);
    font-weight: 600;
    font-display: swap
}

@font-face {
    font-family: "Aeonik";
    src: url(../assets/fonts/Aeonik-Regular.ttf);
    font-weight: 400;
    font-display: swap
}

@font-face {
    font-family: "Aeonik";
    src: url(../assets/fonts/Aeonik-Medium.ttf);
    font-weight: 500;
    font-display: swap
}

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

body {
    height: 100vh;
    height: 100dvh;
    min-height: 400px;
    font-size: 16px
}

body.dropdown-active {
    min-height: calc(560px + 32px + 48px + 80px)
}

.page {
    display: flex;
    width: 100%;
    height: 100%;
    overflow: hidden
}

#obat-video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%
}

.content {
    position: relative;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    color: #f1f1f1;
    width: 100%;
    height: 100%;
    padding: 90px 80px;
    background: linear-gradient(229deg, rgba(0, 0, 0, .00) 13.24%, rgba(0, 0, 0, .40) 73.29%), linear-gradient(0deg, rgba(0, 0, 0, .40) 0%, rgba(0, 0, 0, .40) 100%)
}

.ellipse {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 2919px;
    height: 617px;
    flex-shrink: 0;
    border-radius: 2919px;
    opacity: .6;
    background: linear-gradient(180deg, #23C8F6 19.79%, #5B15F0 100%, #1591F0 100%);
    filter: blur(218px);
    z-index: 0
}

.content_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    height: 100%;
    position: relative;
    z-index: 1
}

.content-top {
    display: flex;
    justify-content: center;
    width: 100%
}

.content-middle {
    display: flex;
    width: 654px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    transition: opacity .3s ease
}

.content-bottom {
    width: 100%;
    display: flex;
    justify-content: center
}

.logo {
    width: 162px;
    height: auto
}

.content-title {
    color: var(--Brand-White, #FFF);
    text-align: center;
    font-family: Aeonik;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: .45px
}

.obat-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: Poppins;
    font-size: inherit;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -.16px;
    text-decoration: none;
    position: relative;
    transition: background-color 525ms, border-color 525ms
}

.medium-secondary-white {
    padding: 20px 56px 20px 40px;
    border: 1px solid var(--Brand-White);
    background: var(--Brand-White);
    color: var(--Brand-Black);
    border-radius: 60px;
    border: 1.5px solid var(--Brand-White, #FFF)
}

.obat-button span {
    position: relative;
    white-space: nowrap;
    display: flex
}

.obat-button span svg {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    transition: right 300ms
}

.medium-secondary-white:hover {
    background: rgba(255, 255, 255, .40);
    color: var(--Brand-White)
}

.obat-button:hover svg {
    right: -24px
}

.countries-dropdown {
    position: relative;
    width: 240px
}

.dropdown-btn {
    width: 100%;
    background: rgba(255, 255, 255, .2);
    backdrop-filter: blur(10px);
    border: none;
    padding: 9px 15px 9px 9px;
    border-radius: 24px;
    font-size: 16px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    cursor: pointer;
    color: var(--Brand-White, #FFF);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -.16px;
    position: relative;
    z-index: 2
}

.dropdown-btn img {
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-radius: 50%
}

.dropdown-btn .arrow {
    transition: transform .3s ease;
    margin-left: auto;
    display: flex
}

.dropdown-menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, .2);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    overflow: hidden;
    list-style: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity .3s ease, transform .3s ease;
    pointer-events: none;
    padding-top: 51px;
    z-index: 1
}

.dropdown-menu li {
    padding: 10px 15px;
    display: flex;
    gap: 10px;
    align-items: center;
    color: white;
    cursor: pointer;
    transition: background .2s ease;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -.16px
}

.dropdown-menu li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, .2)
}

.dropdown-menu li img {
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-radius: 50%
}

.dropdown-menu li:hover {
    background: rgba(255, 255, 255, .3)
}

.dropdown-menu .selected {
    background: rgba(255, 255, 255, .4)
}

.countries-dropdown.active .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto
}

.countries-dropdown.active .arrow {
    transform: rotate(180deg)
}

.country_name.hidden {
    display: none !important
}

.contact-us-btn {
    display: none
}

body.dropdown-active .content-middle {
    opacity: 0
}

body.dropdown-active .stay-tuned-btn {
    display: none
}

body.dropdown-active .contact-us-btn {
    display: flex
}

@media (max-width:600px) {
    .content {
        padding: 68px 13px 92px 13px;
    }

    .content-title {
        font-size: 20px;
        letter-spacing: .2px
    }

    .countries-dropdown {
        width: 100%
    }

    .content-bottom {
        width: 100%;
        display: flex;
        flex-direction: column
    }

    .obat-button {
        width: 100%;
        justify-content: center
    }
}