*,
*::before,
*::after {
    box-sizing: border-box;
    border-style: none;
    list-style: none;
    margin: 0;
    padding: 0;
    text-decoration: none;
}

:root {
    --theme-color-black: #333333;
    --theme-color-brown: #423A3A;
    --theme-color-red: #f7aa47;
    --theme-color-white: #FEFFFF;
}

/* ---------- MAIN BODY DECLERATIONS ---------- */

@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Marcellus&display=swap');

html,
body {
    background-color: #000;
    font-size: 14px;
    height: 100%;
    width: 100%;
    font-family: "Be Vietnam Pro", sans-serif;
    color: #fff;
}

.mobile-container {
    margin: 0 auto;
    max-width: 500px;
    min-width: 300px;
    padding: 30px 15px 0;
}

.hero-banner {
    align-items: center;
    display: flex;
    flex-direction: column;
}

.hero-banner .logo-wrapper {
    height: auto;
    margin: 30px auto 10px;
    width: auto;
}

.logo-wrapper img {
    display: block;
    margin: 0 auto;
    width: 100%;
}

.text-info {
    align-items: center;
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 100%;
}

.text-info h2:nth-child(1) {
    font-weight: 800;
}

.text-info h2 {
    font-size: 2rem;
    color: #fff;
    letter-spacing: 1px;
    font-weight: 200;
    line-height: 1.3;
}

.loading-dots {
    text-align: center;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.loading-dots h1 {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 600;
    margin: 0 5px 0 0;
    font-family: "Marcellus", serif;
    letter-spacing: 2px;
}

.loading-dots .dot {
    display: inline-block;
    position: relative;
    opacity: 0;
    -webkit-animation: showHideDot 2.5s ease-in-out infinite;
    animation: showHideDot 2.5s ease-in-out infinite;
    width: 6px;
    min-width: 6px;
    height: 6px;
    min-height: 6px;
    max-width: 6px;
    border-radius: 6px;
    background: #fff;
    margin-right: 7px;
}

.loading-dots .dot.one {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.loading-dots .dot.two {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.loading-dots .dot.three {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    margin-right: 0;
}

@-webkit-keyframes showHideDot {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    60% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes showHideDot {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    60% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.contact-info ul {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0 0 50px;
    flex-wrap: wrap;
}

.contact-info ul li {
    margin: 0 5px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
}

.contact-info ul li a {
    color: #fff;
    opacity: 1;
    transition: all 0.5s linear;
}

.contact-info ul li a:hover {
    opacity: 0.5;
}

@media only screen and (min-width: 768px) {
    body {
        display: flex;
        flex-direction: row;
        height: 100%;
        overflow: hidden;
    }

    main {
        display: flex;
        flex-direction: column;
        height: inherit;
        max-width: 100%;
    }

    .mobile-container {
        width: 45vw;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .hero-banner .logo-wrapper {
        width: 100%;
        display: flex;
        align-items: start;
        flex-direction: column;
    }

    .logo-wrapper img {
        margin: 0 auto;
    }

    .hero-image {
        display: none;
    }

    .text-info {
        text-align: center;
        align-items: center;
    }

    .text-info h2 {
        font-size: 2.2rem;
    }
}

@media (max-width:767px) {
    .text-info {
        margin: 20px 0;
    }

    .mobile-container {
        padding: 30px 15px 0;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }
    .contact-info ul{
        margin: 0 auto 40px;
    }
    .contact-info ul li{
        font-size: 15px;
    }
    .loading-dots h1{
        font-size: 23px;
        font-weight: 500;
    }
    .loading-dots .dot{
        width: 4px;
        height: 4px;
        max-width: 4px;
        min-width: 4px;
        min-height: 4px;
    }
    .text-info h2{
        font-size: 1.6rem;
        line-height: 1.3;
    }
    .hero-banner .logo-wrapper{
        margin: 0 auto;
    }
}