/* @import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap'); */

@font-face {
    font-family: 'Inter Tight';
    font-style: normal;
    src: url('../fonts/InterTight-VariableFont_wght.ttf') format('woff2');
}

@font-face {
    font-family: 'Inter Tight';
    font-style: italic;
    src: url('../fonts/InterTight-Italic-VariableFont_wght.ttf') format('woff2');
}

@font-face {
    font-family: 'Rubik';
    font-style: normal;
    src: url('../fonts/Rubik-VariableFont_wght.ttf') format('woff2');
}

@font-face {
    font-family: 'Rubik';
    font-style: italic;
    src: url('../fonts/Rubik-Italic-VariableFont_wght.ttf') format('woff2');
}

@font-face {
    font-family: 'Source Serif 4';
    font-style: normal;
    src: url('../fonts/SourceSerif4-VariableFont_opsz_wght.ttf') format('woff2');
}

@font-face {
    font-family: 'Source Serif 4';
    font-style: italic;
    src: url('../fonts/SourceSerif4-Italic-VariableFont_opsz_wght.ttf') format('woff2');
}

* {
    box-sizing: border-box;
    scroll-behavior: smooth;
    color: #4A4A49;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: var(--font-inter-t);
}

sup {
    font-size: 60%;
    color: inherit;
}

b {
    color: inherit;
}

.hidden {
    display: none !important;
}

#loader, #auth {
    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 #09A1A4;
    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: #4A4A49;
}

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

.auth-text {
    font-size: clamp(0.875rem, 0.713rem + 1.2963vw, 1.75rem);
    color: #4A4A49;
    text-align: center;
    font-weight: bold;
}

.auth-btn {
    background: #09A1A4;
    background: linear-gradient(90deg,rgba(9, 161, 164, 1) 0%, rgba(110, 208, 210, 1) 100%);
    border-radius: 100px;
    color: #FFFFFF;
    font-size: clamp(0.875rem, 0.713rem + 1.2963vw, 1.75rem);
    text-decoration: none;
    padding: 20px 50px;
}

.auth-loader {
    background-color: rgba(255, 255, 255, .8) !important;
}

#head {
    width: 100%;
    background-image: url('../images/head-bg.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

#navbar {
    width: clamp(200px, 100%, 1200px);
    margin: 0 auto;
    background: #09A1A4;
    background: linear-gradient(90deg,rgba(9, 161, 164, 1) 0%, rgba(110, 208, 210, 1) 100%);
    display: flex;
	justify-content: space-between;
	align-items: center;
	align-content: center;
    border-radius: 0 0 20px 20px;
    padding: 15px 30px;
}

#navbar > div:last-child {
    text-align: right;
}

.navbar-logo {
    height: 25px;
    display: block;
}

.navbar-link {
    font-size: clamp(0.875rem, 0.85rem + 0.2vw, 1rem);
    color: var(--color-white);
    margin: 0;
    line-height: 1;
}

.navbar-erid {
    font-size: clamp(0.875rem, 0.85rem + 0.2vw, 1rem);
    color: var(--color-white);
    margin: 0 20px 0 0;
    line-height: 1;
}

#footer {
    width: clamp(200px, 100%, 1200px);
    margin: 40px auto 20px auto;
}

.footer-hr {
    width: 100%;
    margin: 20px 0;
    border: 0;
    border-top: 1px solid #0FB4BC;
}

.footer-copy {
    display: flex;
}

.footer-copy > div:first-child {
    padding-right: 40px;
}

.footer-copy-text {
    font-size: clamp(0.75rem, 0.725rem + 0.2vw, 0.875rem);
    font-weight: 300;
    margin: 0;
}

.footer-copy-link {
    color: #0FB4BC;
}

.footer-copy-info {
    display: flex;
    margin: 20px 0 0 0;
}

.footer-copy-info > div:not(:last-child) {
    margin-right: 30px;
}

.footer-disclaimer {
    font-size: clamp(1.25rem, 1rem + 2vw, 2.5rem);
    font-weight: 200;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
    background: #8292CA;
    background: linear-gradient(to right, #8292CA 0%, #0FB4BC 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#refs {
    width: 100%;
    padding: 40px;
}

.refs-title {
    font-size: clamp(1.125rem, 0.9rem + 1.8vw, 2.25rem);
    font-family: var(--font-source-s);
    font-weight: 500;
    color: #0FB4BC;
    text-transform: uppercase;
    margin: 0 0 20px 0;
}

.refs-list {
    margin: 0;
    font-size: clamp(0.75rem, 0.725rem + 0.2vw, 0.875rem);
    font-family: var(--font-rubik);    
    padding-left: 25px;
}

.refs-list > li {
    color: #999999;
}

.refs-list > li:not(:last-child) {
    line-height: 1.2;
    margin-bottom: 5px;
}

:root {
    --color-white: #ffffff;

    --font-rubik: "Rubik", sans-serif;
    --font-inter-t: "Inter Tight", sans-serif;
    --font-source-s: "Source Serif 4", serif;
}

@media (max-width: 1200px) {
    #head {
        padding: 0 15px 0 15px;
    }

    #navbar {
        border-radius: 0 0 10px 10px;
        padding: 10px 20px;
    }

    .navbar-logo {
        height: 25px;
    }

    .navbar-erid {
        display: block;
        margin: 0;
    }

    #footer {
        margin: 10px auto;
        padding: 0 15px;
    }

    .footer-copy {
        flex-direction: column;
    }

    .footer-copy > div:first-child {
        padding-right: 0;
        margin-bottom: 15px;
    }

    .footer-copy-info {
        flex-direction: column;
    }

    .footer-copy-info > div:not(:last-child) {
        margin-right: 0;
        margin-bottom: 5px;
    }

    #refs {
        width: 100%;
        padding: 20px 0 0 0;
    }
}
