@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
    background-image: url(/images/bg.png);
}

.container {
    font-family: "Inter", sans-serif;
    font-weight: 400;

    max-width: 1300px;
    margin: 0 auto;

    display: flex;
    text-align: center;
}

.mobile-br {
    display: none;
}

.logo {
    margin: 120px 0 0 0;
}

.title {
    font-size: 52px;
    font-weight: 700;
    margin-top: 124px;
    color:#005399;
}

.descr {
    font-size: 24px;
    margin-top: 20px;
}

.descr a  {
    color: red;
    font-weight: 600;
}

.info-block {
    text-align: center;
}

.info-block-item {
    margin-top: 12px;
    text-align: center;
}

.info-block-item a {
    font-weight: 600;
    color: red;
}

.info-block {
    margin-top: 60px;
    font-size: 20px;
}

.copywrite {
    margin-top: 190px;
    color: #9498A0;
}


.image-wrapper {
    margin: 270px 0 0 20px;
}




@media (max-width: 768px) {
    .title {
        display: flex;
        flex-direction: column;
        font-size: 30px;
        margin-top: 40px;
        text-align: center;
    }

    .mobile-h1 {
        margin-top: 10px;
    }

    .descr {
        font-size: 24px;
        text-align: center;
    }

    .container {
        max-width: 320px;
    }

    .right-side {
        display: none;
    }

    .logo {
        display: flex;
        justify-content: center
    }

    .info-block {
        margin-top: 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .copywrite {
        margin-top: 74px;
        text-align: center;
    }

    

  .mobile-br {
    display: block;
}
}