.main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.main h1 {
    color: #394648;
    font-family: 'Inter', sans-serif;
    font-size: 64px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-top: 110px;
    margin-bottom: 45px;
}

.main h2 {
    color: #394648;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-top: 110px;
    margin-bottom: 45px;
}

.main .main-content{
    margin-top: 110px;
}

.main h1 span{
    color: #394648;
    font-family: 'Inter', sans-serif;
    font-size: 64px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-top: 110px;
    margin-bottom: 45px;
    position: relative;
}

.main h1 span:before{
    content: url(../../../assets/images/main-title.svg);
    position: absolute;
    left: -10px;
    top: 15%;
    z-index: -9;

}

.main p{
    color: #394648;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin-bottom: 30px;
}


.main a{
    color: #FFF;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
    text-align: center;

    display: block;
    width: fit-content;
    border-radius: 100px;
    background: #83CB31;
    padding: 20px 100px;
}

.main a:hover{
    background: #394648;
}

@media screen and (max-width: 1024px) {
    .main{
        grid-template-columns: 1fr;
    }
    .main .main-img{
        order: -1;
    }
}

@media screen and (max-width: 750px) {

    .main a{
        width: calc(100% - 200px);
    }
}