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

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    background: url(../images/bg.png) no-repeat top center;
    background-size: cover;
    min-height: 100vh;
}

img {
    max-width: 100%;
    vertical-align: top;
}

a {
    text-decoration: none;
}

.bg-popup {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(5, 28, 0, 0.7);
    opacity: 0;
    transition: all 0.5s ease;
}

.box-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 66px 50px 60px 285px;
    width: 100%;
    max-width: 796px;
    border-radius: 233px 20px 20px 20px;
    border: 1px solid #00661a;
    background: #fff;
    box-shadow: 4px 4px 7px 0 rgba(0, 0, 0, 0.37);
    background-size: 100%;
    transition: all 1s ease;
    text-align: center;
}

.box-popup::after {
    content: url("../images/money.png");
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -115px;
}

h1 {
    color: #000;
    font-family: Inter;
    font-size: 40.5px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 10px;
}

.text1 {
    color: #000;
    text-align: center;
    font-family: Inter;
    font-size: 30px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    border-radius: 20px;
    border: 2px solid #008e52;
    background: linear-gradient(180deg, #009259 0%, #005806 100%);
    box-shadow: 1px 4px 4px 0 rgba(0, 0, 0, 0.25);
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
    font-family: Inter;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 15px;
    padding: 8px 40px;
}

.btn:hover {
    filter: saturate(3);
    transition: 0.2s linear;
    transform: translateY(-3px);
}

.text2 {
    color: #000;
    text-align: center;
    font-family: Inter;
    font-size: 17px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

@media (max-width: 768px) {
    .box-popup {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 120px 40px 60px 26px;
        width: 80%;
        max-width: 796px;
        border-radius: 20px;
        border: 0.465px solid #00661a;
        background: #fff;
        box-shadow: 1.859px 1.859px 3.254px 0 rgba(0, 0, 0, 0.37);
        background-size: 100%;
        transition: all 1s ease;
        text-align: center;
    }

    .box-popup::after {
        content: url("../images/money.png");
        position: absolute;
        top: 0px;
        transform: translate(-50%, -50%) scale(0.5);
        left: 50%;
    }
}

@media (max-width: 500px) {
    body {
        font-family: "Inter", 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: 83px 20px 30px 20px;
        width: 100%;
        max-width: 340px;
        border-radius: 20px;
        border: 0.465px solid #00661a;
        background: #fff;
        box-shadow: 1.859px 1.859px 3.254px 0 rgba(0, 0, 0, 0.37);
        background-size: 100%;
        transition: all 1s ease;
        text-align: center;
    }

    .box-popup::after {
        content: url("../images/money.png");
        position: absolute;
        top: 0px;
        transform: translate(-50%, -50%) scale(0.4);
        left: 50%;
    }

    h1 {
        color: #000;
        font-family: Inter;
        font-size: 25px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        margin-bottom: 5px;
    }

    .text1 {
        color: #000;
        text-align: center;
        font-family: Inter;
        font-size: 18px;
        font-style: normal;
        font-weight: 300;
        line-height: normal;
        margin-bottom: 15px;
    }

    .btn {
        display: inline-block;
        border-radius: 20px;
        border: 2px solid #008e52;
        background: linear-gradient(180deg, #009259 0%, #005806 100%);
        box-shadow: 1px 4px 4px 0 rgba(0, 0, 0, 0.25);
        color: #fff;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
        font-family: Inter;
        font-size: 25px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        margin-bottom: 10px;
        padding: 8px 40px;
    }

    .btn:hover {
        filter: saturate(3);
        transition: 0.2s linear;
    }

    .text2 {
        color: #000;
        text-align: center;
        font-family: Inter;
        font-size: 15px;
        font-style: normal;
        font-weight: 300;
        line-height: normal;
    }
}
