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

:root {
    --title-gray: #858585;
    --secondary-gray: #686868;
    --primary-red: #005CFF;
    --border-gray: #cccccc;
    --bg-gray: #D9D9D9;
    --primary-green: #73DE59;
    --hover-red: #0150d8;
}

@font-face {
    font-family: 'Mustica-Semibold';
    src: url('../fonts/MusticaPro-SemiBold.otf');
}

@font-face {
    font-family: 'SFUI-Light';
    src: url('../fonts/SFUIText-Light.ttf');
}

@font-face {
    font-family: 'SFUI-Regular';
    src: url('../fonts/SFUIText-Regular.ttf');
}

@font-face {
    font-family: 'SFUI-SemiBold';
    src: url('../fonts/SFUIText-Semibold.ttf');
}

@font-face {
    font-family: 'SFUI-Medium';
    src: url('../fonts/SFUIText-Medium.ttf');
}

@font-face {
    font-family: 'SFUI-Bold';
    src: url('../fonts/SFUIText-Bold.ttf');
}

.logo-bg {
    height: 15vh;
    position: fixed;
    bottom: 40px;
    left: 100px;
    z-index: -100;
}

.top-box-bg {
    height: 35vh;
    position: fixed;
    top: 60px;
    left: 100px;
    z-index: -100;
}

.bottom-box-bg {
    height: 70vh;
    position: fixed;
    bottom: -20vh;
    right: 100px;
    z-index: -100;
}

.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hide {
    display: none !important;
}

.footer-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'SFUI-Medium';
    font-size: 10px;
    padding: 20px;
    width: -webkit-fill-available;
}

.footer-container img {
    width: 170px;
}

@media (max-width: 1000px) {
    .logo-bg {
        height: 10vh;
        left: 20px;
    }

    .top-box-bg {
        height: 20vh;
        top: 20px;
    }

    .bottom-box-bg {
        right: -40px;
        height: 50vh;
    }
      
}

@media (max-width: 768px) {
    .logo-bg {
        height: 10vh;
        left: 20px;
    }

    .top-box-bg {
        height: 20vh;
        top: 20px;
    }

    .bottom-box-bg {
        height: 40vh;
        right: -140px;
    }
}