
body{
    background-image: url("./bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    margin: 0;
}
.mainWrap{
    background-color:#0d0f0f99;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.main{
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 1024px;
    width: 100%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: white;
    border-radius: 40px;
    -webkit-box-shadow: 14px 14px 8px 0px rgba(34, 60, 80, 0.8);
    box-shadow: 14px 14px 8px 0px rgba(34, 60, 80, 0.8);
}

.infoBlock{
    width: 45%;
    padding: 20px;
}
.infoBlock h3{
    line-height: 55px;
    text-align: center;
    font-size: 50px;
}
.infoBlock h3 a{
    color: #2185db;
}
.imgBlock{
    width: 45%;
}
.imgWrap img{
    width: 100%;
}

@media screen and (max-width: 1200px){
    .infoBlock h3{
        font-size: 45px;
    }
}

@media screen and (max-width: 1024px){
    .main{
        width: 90%;
    }
    .infoBlock h3{
        font-size: 35px;
        line-height: 43px;
    }
}

@media screen and (max-width: 860px){
    .infoBlock h3 {
        font-size: 30px;
        line-height: 35px;
    }
    .infoBlock {
        width: 52%;
        padding: 20px;
    }
    .imgBlock {
        width: 42%;
    }
}

@media screen and (max-width: 660px){
    .main{
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
    .infoBlock{
        width: 90%;
    }
    .imgBlock {
        width: 50%;
    }
    .infoBlock h3{
        margin-top: 0;
    }
}

@media screen and (max-width: 480px){
    .imgBlock {
        width: 75%;
    }
    .main {
        width: 96%;
    }
    .infoBlock h3 {
        font-size: 25px;
        line-height: 30px;
    }
}