body {
    background-image: url('/img/bg2.png');
    background-size: cover;
    font-family: 'SF-Pro-Display';
    font-weight: normal;
    background-color: #0F131D;
    color: #FFFFFF;
    margin: 0;
    padding: 0;
}
.content__wrapper {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    padding: 40px;
    height: calc(100vh - 80px);
    gap: 24px;
}
@media screen and (max-width: 960px) {
    .content__wrapper {
        height: auto;
        padding: 24px 24px 300px 24px;
    }
}
@media screen and (max-width: 475px) {
    .content__wrapper {
        padding: 16px 16px 300px 16px;
    }
}
.leftside, .rightside {
    flex: 1 1 0;
}
@media screen and (max-width: 960px) {
    .leftside, .rightside {
        flex: 1 1 100%;
    }
}
.leftside {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media screen and (max-width: 960px) {
    .leftside {
        order: 2;
    }
}
@media screen and (max-width: 960px) {
    .rightside {
        margin: 0 0 40px 0;
    }
}
.logo {
    margin: 0 0 40px 0;
}
.title {
    color: #ffffff;
    font-size: 64px;
    margin: 0 0 32px 0;
}
.desc {
    color: #ffffff;
    font-size: 24px;
    margin: 0 0 32px 0;
}
.dop__list {
    color: #F5F5F5;
    font-size: 22px;
    margin: 0 0 32px 0;
}
.dop__item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 12px 0;
}
.ico {
    margin: 0 8px 0 0;
}
.image {
    overflow: hidden;
    background-image: url('/img/img.png');
    background-size: cover;
    border-radius: 32px;
    width: 100%;
    height: 100%;
}
@media screen and (max-width: 960px) {
    .image {
        min-height: 637px;
    }
}
@media screen and (max-width: 475px) {
    .image {
        min-height: 288px;
    }
}
.back {
    position: absolute;
    color: #ffffff;
    font-size: 18px;
}
@media screen and (max-width: 960px) {
    .back {
        position: relative;
    }
}