@font-face {
    font-family: 'Shatoshi';
    src: url('./assets/font/Satoshi-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Shatoshi';
    src: url('./assets/font/Satoshi-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Shatoshi';
    src: url('./assets/font/Satoshi-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Shatoshi';
    src: url('./assets/font/Satoshi-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

:root {
    --primary: #AC94D2;
    --white: #FFFFFF;
    --black: #0D0D0D;
}



html, body {
    height: 100%;
    overflow: hidden;
}
* {
    margin: 0;
    padding: 0;
    color: white;
    box-sizing: border-box;
    font-family: 'Shatoshi';
}

h1 {
    font-size: 86px;
}
h3 {
    font-size: 38px;
}

h1 span {
    color: var(--primary);
}

h6 {
    font-size: 14px;
    font-weight: 500;
}

.button {
    position: relative;
    margin-top: 40px;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    padding: 10px;
    padding-left: 20px;
    border-radius: 60px;
    cursor: pointer;
    border: none;
    background-color: var(--white);
    text-decoration: none;
    text-align: center;
    color: var(--black);
    transition-duration: 0.4s;
    width: fit-content;
}

.btn-icon {
    transition-duration: 0.4s;
    background-color: var(--primary);
    padding: 7px;
    border-radius: 100px;
}

a {
    text-decoration: none;
}

.button:hover .btn-icon {
    transform: rotate(-50deg);
}

.button:hover {
    gap: 30px;
}

.main-container {
    height: 100vh;
    background-image: url("./assets/backgorund.png");
    background-repeat: no-repeat;
    background-size: cover;
}


.container {
    display: flex;
    flex-direction: column;
    padding: 4rem;
    height: 100%;
    justify-content: space-between;
}

.title-container {

}

.logo {
    width: 227px;
    height: 50px;
}

.info-logo {
    width: 165px;
    height: 36px;
}

.row {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 17px;
}

.row-1 {
    justify-content: space-between;
}

.info-cr {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.row-2 {
    justify-content: flex-end;
}

.icon {
    height: 16px;
    width: 16px;
}

.badge {
    width: 116.01px;
    height: 114.16px;
}

.info-item {
    display: flex;
    flex-direction: row;
    gap: 12px;
    cursor: pointer;
}

.footer-info-container {
    display: flex;
}

footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.bold-button {
    display: none;
}

.dropdown {
    display: flex;
    width: fit-content;
    flex-direction: column;
    gap: 10px;
    top: 60px;
    position: absolute;
}
.hide {
    display: none;
}

.btn-container {
    position: relative;
}

.dropdown-button {
    min-width: fit-content;
    gap: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: var(--primary);
    padding: 10px 20px;
    border-radius: 60px;
    color: var(--white);
    animation-name: show;
    animation-duration: 0.4s;
}


@keyframes show {
    0%   {transform: translateY(-10px);}
    100% {transform: translateY(0);}
  }

@media only screen and (max-width: 580px) {
    .logo {
        width: 173px;
        height: 38px;
    }

    .container {
        padding: 3rem 1.9rem;
    }

    .badge {
        display: none;
    }

    .row-1 {
        display: none;
    }

    .row-2 {
        display: none;
    }

    .row-3 {
        flex-direction: row;
        flex-wrap: wrap;
    }

    h1 {
        font-size: 38px;
    }
    h3 {
        font-weight: 500;
        font-size: 28px;
    }

    header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .bold-button {
        display: flex;
        gap: 10px;
    }

    .main-container {
        background-image: url("./assets/background-mobile.png");
        background-position-x: 50%;
        background-position-y: -5rem;
        background-color: #211F1E;
    }

    .title-container {
        margin-top: 190px;
    }

    .button {
        margin-top: 30px;
    }
}