@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

* {
    box-sizing: border-box;
    font-family: "Inter Tight", serif;
    font-optical-sizing: auto;
}

html, body {
    margin: 0;
    padding: 0;
    min-width: 100%;
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    padding: 20px 20px 50px 20px;
}

.hidden {
    display: none !important;
}

.no-scroll {
    height: 100vh;
    overflow-y: hidden;
}

.no-desktop, .no-desktop-f {
    display: none !important;
}

sup {
    font-size: 60%;
    font-weight: normal !important;
}

.font-rubik {
    font-family: "Rubik", serif;
}

.font-inter {
    font-family: "Inter", serif;
}

.font-inter-tight {
    font-family: "Inter Tight", serif;
}

hr {
    border: none;
    color: var(--color-blue-light);
    background-color: var(--color-blue-light);
    height: 2px;
    margin: 50px 0;
    width: 100%;
}

#loader {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--color-white);
    z-index: 5000;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid var(--color-main-light);
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

#loader > p {
    color: var(--color-gray);
}

#video-overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, .9);
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-content: center;
    z-index: 1;
    cursor: pointer;
    overflow: auto;
}

.video-player {
    position: relative;
    width: 90%;
    max-width: 1200px;
    box-sizing: border-box;
    padding: 40px;
    border-radius: 20px;
    background-color: var(--color-white);
    cursor: default;
}

.video-player > iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 10px;
}

.video-close {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

.video-close > img {
    width: 25px;
    height: 25px;
}

#logo-bar {
    width: clamp(200px, 100%, 1152px);
    margin: 0 auto 20px auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    align-content: stretch;
}

.logo-bar-erid {
    font-size: clamp(0.75rem, 0.5897rem + 0.5698vw, 1rem);
}

#head {
    width: 100%;
    background: rgb(96,0,57);
    background: linear-gradient(180deg, rgba(96,0,57,1) 0%, rgba(207,0,97,1) 100%);
    border-radius: 40px;
}

#refs, #footer {
    width: clamp(200px, 100%, 1152px);
    margin: 50px auto 0 auto;
}

.refs-title {
    font-size: clamp(1.25rem, 0.609rem + 2.2792vw, 2.25rem);
    color: var(--color-blue-light);
    text-transform: uppercase;
    font-family: var(--font-inter-tight);
    font-weight: 500;
}

.refs-list {
    font-family: var(--font-rubik);
    font-size: clamp(0.6875rem, 0.5673rem + 0.4274vw, 0.875rem);
    color: var(--color-gray);
    padding-left: 25px;
}

.refs-list > li {
    margin-bottom: 5px;
}

.disclaimer-1 {
    color: var(--color-blue-dark);
    font-size: clamp(0.75rem, 0.5897rem + 0.5698vw, 1rem);
    font-weight: 300;
    font-family: var(--font-rubik);
}

.disclaimer-2 {
    color: var(--color-blue);
    font-size: clamp(1rem, 0.4391rem + 1.9943vw, 1.875rem);
    text-transform: uppercase;
    font-weight: 300;
}

#copy {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
    align-content: stretch;
}

#copy > div {
    color: var(--color-blue-dark);
    font-size: clamp(0.75rem, 0.6699rem + 0.2849vw, 0.875rem);
    font-weight: 300;
    flex: 1 1 auto;
}

.copy-logo {
    max-width: 300px;
    flex: 0 1 auto;
}

.copy-num {
    text-align: right;
}

:root {
    --color-main-dark: #600039;
    --color-main-light: #CF0061;
    --color-blue: #006BBA;
    --color-blue-light: #15A4E6;
    --color-blue-dark: #003372;
    --color-blue-bg: #EFF8FF;
    --color-white: #FFFFFF;
    --color-gray: #999999;
    --color-btn-main: rgba(96, 0, 57, .5);
    --color-btn-good: #15A4E6;
    --color-btn-bad: rgba(255, 255, 255, .2);
    --font-rubik: "Rubik", serif;
    --font-inter: "Inter", serif;
    --font-inter-tight: "Inter Tight", serif;
}

@media (width < 1280px) {
    .no-desktop {
        display: block !important;
    }

    .no-desktop-f {
        display: flex !important;
    }

    .no-mobile {
        display: none !important;
    }

    hr {
        margin: 30px 0;
    }

    #head {
        border-radius: 20px;
    }

    #footer {
        margin: 30px auto 0 auto;
    }

    #copy {
        flex-direction: column;
    }

    .copy-logo {
        max-width: 100%;
    }

    .copy-logo > img {
        max-width: 50%;
    }

    .copy-addr {
        padding: 20px 0;
    }

    .copy-num {
        text-align: left;
    }
}
