.splash-welcome {
    position: fixed;
    top: 0;
    left: 0;
    overflow: auto;
    background-color: #000;
    background-image: url("../img/splash_bg.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: none;
    color: #fff;
    width: 100%;
    height: 100%;
    z-index: 999999999;
    padding: 20px;
    font-family: "Comfortaa";
}

.splash-welcome-show {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
}

.splash-welcome-hide {
    overflow: hidden;
    transition: opacity 0.5s ease-out;
    -webkit-transition: opacity 0.5s ease-out;
    -moz-transition: opacity 0.5s ease-out;
    opacity: 0;
}

.splash-welcome-hide .splash-welcome-wrapper {
    transition: transform 0.4s ease-out;
    -webkit-transition: transform 0.4s ease-out;
    -moz-transition: transform 0.4s ease-out;
    transform: translateY(-100%);
}

.splash-welcome-wrapper {
    margin: auto;
    max-width: 1440px;
    width: 100%;
    position: relative;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    padding-top: 32px;
}

.splash-welcome-content {
    max-width: 1349px;
    width: 100%;
    border-radius: 200px 200px 400px 250px;
    background-color: #000;
    color: #fff;
    margin: auto;
    padding: 83px calc(4em + 2.5vw);
    position: relative;
}

.splash-welcome-content h1 {
    font-size: calc(0.7em + 4vw);
    line-height: calc(22px + 4vw);
    font-weight: bold;
    margin-bottom: calc(0.3em + 0.9vw);
}

.splash-welcome-content p {
    font-size: calc(0.76em + 0.9vw);
    line-height: 1.3;
}

.splash-welcome-btn {
    padding: 16px 31px;
    margin-top: calc(1.4em + 0.8vw);
    display: inline-block;
    text-decoration: none;
    text-align: center;
    color: #fff;
    background-color: #a56f1d;
    border: 2px solid #fff;
    border-radius: 70px 80px 45px 80px;
    font-size: calc(1.05em + 0.5vw);
    font-family: "semibold";
}

.splash-welcome-closeBtn {
    width: 65px;
    min-width: 65px;
    height: 65px;
    display: inline-block;
    background-color: #000;
    border: 2px solid #fff;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 60px 65px 45px 50px;
    text-decoration: none;
    display: flex;
    position: absolute;
    right: 0;
    top: 0;
}

.splash-welcome-closeBtn .fa-xmark {
    width: 22px;
    height: 31px;
    color: #fff;
    font-size: 35px;
    margin: auto;
}

@media screen and (min-width: 1921px) {
    .splash-welcome-content h1 {
        font-size: 90px;
        line-height: 1.1;
    }

    .splash-welcome-content p {
        font-size: 28px;
    }

    .splash-welcome-btn {
        margin-top: 50px;
    }
}

@media screen and (max-width: 580px) {
    .splash-welcome-wrapper {
        padding-top: 46px;
    }

    .splash-welcome-content {
        text-align: center;
        border-radius: 150px 200px 250px 200px;
        padding: 15% 6vw;
    }

    .splash-welcome-btn {
        padding: 11px 23px;
    }

    .splash-welcome-closeBtn {
        width: 50px;
        min-width: 50px;
        height: 50px;
    }

    .splash-welcome-closeBtn .fa-xmark {
        width: 16px;
        height: 23px;
        font-size: 26px;
    }
}

@media screen and (max-width: 375px) {
    .splash-welcome-content h1 {
        font-size: calc(0.7em + 3vw);
        line-height: calc(22px + 3vw);
    }
}
