.about-block {
    position: relative;
    padding-top: 60px;
    background: linear-gradient(180deg, #111B47 0%, #61AED8 100%);
}

.about-block .about-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

.about-block .about-content .about-title {
    width: 50%;
    color: #fff;
    font-size: 60px;
    font-weight: 900;
    line-height: 100%;
}

.about-block .about-content .about-text {
    width: 50%;

}
.about-block .about-content .about-text .btn {
    color: #fff;
}

.about-block .about-content .about-text,
.about-block .about-content .about-text p,
.about-block .about-content .about-text ul li {
    color: #fff;
    font-size: 16px;
    line-height: 135%;
}

.about-block .about-content .about-text ul li {
    display: flex;
    align-items: start;
    gap: 10px;
}

.about-block .about-content .about-text ul li::before {
    content: "";
    background-color: var(--main);
    width: 10px;
    height: 10px;
    border-radius: 100%;
    display: flex;
    flex-shrink: 0;
    margin-top: 8px;
}

.about-block .about-image {
    max-width: 100%;
    max-height: 700px;
    display: flex;
}

.about-block .about-image img {
    max-width: 100%;
}

@media only screen and (max-width: 1000px) {
    .about-block .about-content .about-title {
        font-size: 42px;
        width: 100%;
    }
    .about-block .about-content {
        flex-direction: column;
    }
    .about-block .about-content .about-text {
        width: 100%;
    }
    .about-block {
        padding-top: 30px;
    }
}

@media only screen and (max-width: 800px) {
    .about-block .about-content .about-title {
        font-size: 42px;
    }
}

@media only screen and (max-width: 480px) {
    .about-block .about-content .about-title {
        font-size: 32px;
    }
}