.about {
    margin-top: 145px;
}

.about-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about__title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 40px;
}

.about-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 25px;
}

.about-content__grey {
    background-color: #F6F7FE;
    border-radius: 30px;
    padding: 37px 20px 40px 20px;
    height: 330px;
}

.about-content-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 60%;
}

.about-content__wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.about-content__wrapper:not(:last-of-type) {
    margin-bottom: 20px;
}

.about-content__img-wrapper {
    width: 500px;
    height: 500px;
}

.about-content__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    border-radius: 30px;
}

.about-content__text {
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
}

.about-content__title {
    font-size: 26px;
    font-weight: 700;
    color: #0D1229;
}

.about-content__description {
    font-size: 16px;
    font-weight: 500;
    line-height: 21px;
    color: #4A4C58;
}

.about-content__item {
    width: 50%;
}

.about-content-img__tablet {
    display: none;
}

@media (max-width: 1400px) {
    .about-content__title-long {
        word-break: break-all;
    }

    .about-content__grey {
        height: 390px;
    }
}

@media (max-width: 1200px) {
    .about-content__img-wrapper {
        width: 100%;
        height: 470px;
        border-radius: 30px;
    }

    .about-content-container {
        width: 100%;
    }

    .about-content__img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 50% 50%;
        border-radius: 30px;
    }
    
    .about-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .about-content__title-long {
        word-break: normal;
    }

    .about-content__grey {
        height: 290px;
    }

    .about-content-img__tablet {
        display: block;
    }

    .about-content-img__desctop {
        display: none;
    }
}

@media (max-width: 992px) {
    .about {
        margin-top: 100px;
    }

    .about-content__grey {
        padding: 40px 20px;
    }

    .about-content__wrapper {
        width: 100%;
    }

    .about-content__item {
        width: 48%;
    }

    .about-content__grey {
        height: 370px;
    }

    .about-content__title-long {
        word-break: break-all;
    }
}

@media (max-width: 768px) {
    .about {
        margin-top: 90px;
    }

    .about-content__wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .about-content__item {
        width: 100%;
    }

    .about-content__title {
        font-size: 22px;
        font-weight: 700;
    }

    .about-content__text {
        margin: 0;
    }

    .about-content__img-wrapper {
        height: 365px;
    }

    .about-content__wrapper:not(:last-of-type) {
        margin-bottom: 20px;
    }

    .about-content__grey {
        height: fit-content;
    }

    .about-content__title-long {
        word-break: normal;
    }

    .about-content-img__tablet {
        display: none;
    }

    .about-content-img__desctop {
        display: block;
    }
}