* {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Poppins", sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

.main-slider {

    img {
        width: 100%;
        height: 100vh;
        object-fit: cover;
        float: left;
    }
}

.content {
    background: #0000001A;
    border: 1px solid #FFFFFF1A;
    backdrop-filter: blur(24px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 32px 48px;
    border-radius: 32px;
    text-align: center;

    .logo img {
        height: 5.5vw;
    }

    .title {
        font-weight: 600;
        font-size: 4vw;
        text-align: center;
        color: #fff;
        margin-bottom: 22px;
        margin-top: 22px;
        line-height: normal;
    }

    .mini-title {
        font-weight: 300;
        font-size: 1.3vw;
        text-align: center;
        color: #fff;
        margin-bottom: 32px;
    }

    .cont-box {
        font-weight: 300;
        font-size: 1vw;
        text-align: center;
        color: #fff;
        margin-bottom: 22px;


        a:nth-of-type(2){
            padding-left: 10px;
            margin-left: 10px;
            border-left: 1px solid #FFFFFF1A;
        }
    }
}
@media(max-width: 769px){
    .content {
        .logo img {
            height: 15.5vw;
        }
        .title {
            font-weight: 600;
            font-size: 10vw;
            text-align: center;
            color: #fff;
            margin-bottom: 22px;
            margin-top: 22px;
            line-height: 12vw;
        }
        .mini-title {
            font-size: 4vw;
        }
        .cont-box {
            font-size: 4vw;
        }

    }
}