/***** 
    ANIMATION
 *****/
@keyframes semicircle {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes bounce-glow {

    0%,
    100% {
        transform: translateY(0) scale(0.8);
        text-shadow: 0 0 3px #fff, 0 0 5px #ff4d4d, 0 0 8px #ff4d4d;
    }

    50% {
        transform: translateY(0) scale(1.0);
        text-shadow: 0 0 3px #fff, 0 0 5px #ff4d4d, 0 0 8px #ff4d4d;
    }
}

/***** 
    ANIMATION
 *****/
/***** 
    GLOBAL
 *****/
html {
    font-size: calc(0.0075 * 100vw);
}

html[device="mobile"] {
    font-size: calc(100vw * 0.02);
}

body {
    font-size: 1.2rem;
    overflow: hidden;
    background-image: url("../imgs/bg-8xx.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    width: 100vw;
    height: 100vh;
}

html[device="mobile"] body {
    background-image: url("../imgs/bg-8xx-mb.jpg");
}

img {
    width: auto;
    height: auto;
    object-fit: contain;
    cursor: pointer;
}

a {
    text-decoration: none;
}

.main-image {
    width: 85%;
}

.redirect-link-item {
    width: 11.66rem;
    height: 20vh;
    background: linear-gradient(180deg, #C8F0FF 0%, #00B9FF 100%);
    border: 1px solid #FFFFFF;
    border-radius: 1.04rem;
    margin: .5rem auto;
    position: relative;
}

.main-container .redirect-link .redirect-link-item .redirect-link-no {
    position: absolute;
    background: linear-gradient(360deg, #0EBAFB 0%, #0088FF 100%);
    width: 2.54rem;
    height: 2.2rem;
    border-top-left-radius: .555rem;
    border-bottom-right-radius: .555rem;
    font-family: Roboto;
    font-weight: 900;
    font-size: 1.72rem;
    line-height: 100%;
    text-align: center;
    color: #FFFFFF;
    padding-top: .2rem;
}

.redirect-link-item .redirect-link-circle {
    position: relative;
    margin: 3rem auto 1.2rem auto;
    background: #033368;
    width: 6.52rem;
    height: 6.52rem;
    border-radius: 50%;
    display: flex;
}

.redirect-link-item .redirect-link-circle .semicircle {
    position: relative;
    width: 5.83rem;
    height: 5.83rem;
    border-radius: 50%;
    margin: auto;

}

.redirect-link-item .redirect-link-circle .semicircle.active {
    animation: semicircle 2s;
}

.redirect-link-item .redirect-link-circle .semicircle img {
    width: 2.91rem;
    height: 5.83rem;
    float: right;
}

.redirect-link-item .redirect-link-speed {
    position: absolute;
    color: #FFFFFF;
    left: 2rem;
    top: 1.6rem;
    z-index: 2;
    cursor: pointer;
}

.redirect-link-item .redirect-link-speed b {
    font-family: Roboto;
    font-weight: 900;
    font-size: 2.08rem;
    line-height: 100%;
    text-align: center;
    border-radius: 50%;
}

.redirect-link-item .redirect-link-speed p {
    font-family: Roboto;
    font-weight: 900;
    font-size: 1.18rem;
    line-height: 100%;
    text-align: center;
}

.redirect-link-item .backdrop {
    height: 5.47rem;
    width: 5.47rem;
    position: absolute;
    left: .5rem;
    top: .4rem;
    z-index: 1;
}

.redirect-link-item .redirect-link-button {
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.25);
    width: 6.41rem;
    height: 1.8rem;
    border-radius: 1rem;
    display: flex;
}

.redirect-link-item .redirect-link-button:hover {
    transform: scale(1.2);
}

.redirect-link-item .redirect-link-button-inside {
    margin: auto;
    background: radial-gradient(50% 91.59% at 50% 50%, #1C88FF 0%, #0050A8 100%);
    border-radius: 1rem;
    width: 6rem;
    height: 1.38rem;
}

.redirect-link-item .redirect-link-button-inside p {
    font-family: Roboto;
    font-weight: 700;
    font-size: .8rem;
    text-align: center;
    text-transform: capitalize;
    color: #FFFFFF;
    margin-top: .15rem;
}

.style_appDownloadBtn__RPvKY {
    background: linear-gradient(90deg, #1f70d2 -.02%, #0050b1 99.98%);
    border: 1.15px solid #fff;
    border-radius: 10px;
    box-shadow: 0 4.61724px 4.61724px #00000040;
    font-size: 1rem;
    font-weight: 700;
}

.links-title {
    width: 100%;
}

.redirect-link {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(1, 1fr);
}

.redirect-links {
    margin-top: 6rem;
}

@media screen and (max-width: 768px) {
    .top-logo {
        width: 31rem;
    }

    .redirect-link-item {
        width: 15.2rem;
        height: 12vh;
    }

    .style_appDownloadBtn__RPvKY {
        font-size: 1.2rem !important;
    }

    .main-image {
        width: 100%;
    }

    .redirect-link-item .backdrop {
        display: none;
    }

    .main-container {
        flex-direction: column-reverse;
    }

    .redirect-links {
        margin-top: 0;
    }

    .links-title {
        display: none;
    }
}