@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    font-family: "Roboto", sans-serif;
    background: url(../images/bg.png) no-repeat center center;
    background-size: cover;
    min-height: 100vh;
}
img {
    max-width: 100%;
}

a {
    text-decoration: none;
}
.bg-popup {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 10, 10, 0.9);
    opacity: 0;
    transition: all 0.5s ease;
}
.box-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 23px 0px 52px 57px;
    width: 100%;
    max-width: 834px;
    border-radius: 34px;
    background: #fff;
    transition: all 1s ease;
}
.content {
    display: flex;
    align-items: end;
    gap: 0 25px;
}
.left {
    width: 334px;
}
.logo img {
    margin-bottom: 8px;
}
h1 {
    color: #014165;
    font-family: Roboto;
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 18px;
    height: 177px;
}
h1 span {
    color: #278ba2;
    font-weight: 800;
}
.box {
    max-width: 300px;
    text-align: center;
}
p {
    color: #014165;
    text-align: center;
    font-family: Roboto;
    font-size: 26px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin-bottom: 8px;
}
.btn {
    margin-top: 10px;
    padding: 8px 38px;
    border-radius: 8px;
    border: 2px solid #fff;
    background: #fca905;
    color: #014165;
    text-align: center;
    font-family: Roboto;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    display: inline-block;
	width: 100%;
}
.btn:hover {
    background: #278ba2;
    color: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    transition: 0.3s linear;
}
.close {
    position: absolute;
    top: 18px;
    right: 21px;
}
.mb {
    display: none;
}

@media screen and (max-width: 768px) {
    .pc {
        display: none;
    }
    .mb {
        display: block;
    }
    body {
        font-family: "Roboto", sans-serif;
        background: url(../images/bg-mb.png) no-repeat center center;
        background-size: cover;
        min-height: 100vh;
    }
    .box-popup {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 13px 14px 20px;
        width: 100%;
        max-width: 362px;
        border-radius: 23px;
        background: #fff;
        transition: all 1s ease;
        text-align: center;
    }
    .content {
        display: flex;
        align-items: end;
        gap: 0 25px;
    }
    .left {
        width: 100%;
    }
    .logo img {
        margin-bottom: 15px;
        max-width: 96px;
    }
    h1 {
        font-size: 37px;
        margin-bottom: 5px;
        height: 129px;
    }
    .money img {
        max-width: 255px;
    }
    .box {
        max-width: 217px;
        margin: 0 auto;
    }
    p {
        margin-bottom: 8px;
        font-size: 21px;
    }
    .btn {
        border-radius: 8px;
        border: 2px solid #fff;
        background: #fca905;
        font-size: 29px;
        padding: 7px 38px;
    }
    .close img {
        max-width: 15px;
    }
    .close {
        top: 10px;
        right: 12px;
    }
}
