.main-section{
    /*background-image: url(../images/main-bg.png);*/
    background-image: url(../images/main-desktop-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    gap: 1.3vw;
}

.left-empty{
    flex: 1;
}

.main-section .content-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    margin-top: 100px;
}

.main-section .content-wrap h3{
    font-family: 'Circe ExtraBold', sans-serif;
    font-weight: 800;
    font-size: 50px;
    color: #fff;
}

.main-section .content-wrap p{
    font-family: 'Circe Regular', sans-serif;
    font-weight: 400;
    font-size: 25px;
    color: #fff;
}

.main-section .content-wrap h1,
.main-section .content-wrap h2{
    font-family: 'Circe ExtraBold', sans-serif;
    font-weight: 800;
    font-size: 59px;
    color: #fff;
}

.main-section .content-wrap a{
    font-family: 'Circe ExtraBold', sans-serif;
    font-weight: 800;
    font-size: 23px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;

    padding: 25px 4.5vw;
    background-color: #E30613;
    border-radius: 15px
}

.main-section .left-empty img{
    display: none;
}

@media screen and (max-width: 480px) {
    .main-section{
        min-height: 100vh;
        height: auto;
        background-image: url(../images/mob-main-bg.png);
        flex-direction: column;
    }

    .main-section .content-wrap{
        text-align: center;
    }

    .main-section .content-wrap *{
        margin: 0 auto;
    }

    .main-section .content-wrap a{
        width: calc(100% - 10vw);
    }

    .main-section .content-wrap{
        margin-top: 10px;
    }

    .main-section .left-empty{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .main-section .left-empty img{
        display: block;
    }
}
