body {
    background-color: #fcf8f5;
}

.wrapper {
    background: url(../images/bg.jpg) center no-repeat;
    background-size: cover;
    min-height: 100vh;
    position: relative;
}

img {
    width: 100%;
}

.wellcome-text {
    position: absolute;
    top: 8%;
    right: 45%;
    min-width: 550px;
}

.btn-group {
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 15%;
    top: 8%;
    align-items: center;
    /* max-width: 260px; */
}

.btn-group .logo {
    margin-bottom: 2rem;
}

.btn {
    /* background-color: #131313; */
    border-radius: 999px;
    display: inline-block;
}

li+li {
    margin-top: 10px;
}

.home-btn {
    position: relative;
}

.home-btn-bubble {
    width: 40px;
    position: absolute;
    top: 24px;
    right: 20px;
}

.btn-group li {
    position: relative;
}

.btn-group .jsBox {
    margin-left: -289px;
    width: 578px;
    position: absolute;
    left: 50%;
    top: 100%;
    box-sizing: border-box;
    display: none;
    z-index: 999;
}

.btn-group>li:hover .jsBox {
    display: block;
}

.btn-group .jsBox .ulList {
    padding: 15px;
    border-radius: 5px;
    border: 2px solid #efbc30;
    background: #fcf8f5;
    position: relative;
}

.ulList h2 {
    font-size: 1.2rem;
    font-weight: 600;
}

.ulList:after,
.ulList:before {
    bottom: 100%;
    left: 50%;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.ulList:after {
    border-color: rgba(255, 255, 255, 0);
    border-bottom-color: #fcf8f5;
    border-width: 10px;
    margin-left: -10px;
}

.ulList:before {
    border-color: rgba(163, 124, 60, 0);
    border-bottom-color: #efbc30;
    border-width: 13px;
    margin-left: -13px;
}

.btn-group .jsBox li {
    margin-bottom: 10px;
    overflow: hidden;
    zoom: 1;
    color: #414755;
    font-size: 16px;
    line-height: 40px;
    text-align: center;
}

.btn-group .jsBox li .ms {
    margin-right: 11px;
    width: 72px;
    display: block;
    float: left;
    border: 1px solid #bf9121;
    background: #fff;
    border-radius: 5px;
}

.btn-group .jsBox li img {
    margin: 14px 10px 0 0;
    display: block;
    float: left;
    width: 40px;
}

.btn-group .jsBox li .url {
    width: 47%;
    float: left;
    display: block;
    box-sizing: border-box;
    border: 1px solid #bf9121;
    background: #fff;
    border-radius: 5px;
}

.btn-group .jsBox li a {
    display: block;
    float: right;
    width: 136px;
    color: #bf9121;
    box-sizing: border-box;
    border: 2px solid #efbc30;
    background: #fcf8f5;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
}

.btn-group .jsBox li a:hover {
    border: 2px solid #fff;
    background: #bf9121;
    color: #fff;
}

.btn-group .jsBox li:last-child {
    margin-bottom: 0px;
}

.hidden {
    display: none;
}

.text-below {
    margin: 20px 0px 0px 10px;
}

.shake {
    animation: tilt-n-move-shaking 0.6s infinite linear;
}

.text-below:hover {
    animation: tilt-n-move-shaking 0.5s infinite linear;
}

@keyframes tilt-n-move-shaking {
    0% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

@media screen and (max-width: 1280px) {
    .btn-group {
        right: 8%;
    }
}

@media screen and (max-width: 750px) {
    .btn-group {
        top: 35vh;
    }
    .wellcome-text {
        min-width: 300px;
        top: 13%;
        right: 0%;
    }
    .btn-group .jsBox {
        margin-left: -43vw;
        width: 370px;
    }
    .btn-group .jsBox .ulList {
        padding: 10px;
    }
    .btn-group .jsBox li .ms {
        margin-right: 5px;
        width: 44px;
    }
    .btn-group .jsBox li img {
        margin: 14px 5px 0 0;
        width: 30px;
    }
    .btn-group .jsBox li .url {
        width: 45%;
    }
    .btn-group .jsBox li a {
        width: 90px;
    }
}