/* About */
.about {}

.about__title {
    font-size: 40px;
    text-align: center;
    color: #F9F9F9;
    font-weight: 400;
    margin-bottom: 80px;
}

.about__descriptions {
    display: flex;
    justify-content: space-between;
    margin-bottom: 85px;
    list-style: none;
}

.about__desc {
    width: 49%;
}

.about__desc > p {
    font-size: 20px;
    font-weight: 300;
    color: #9F9F9F;
    margin-bottom: 16px;
}

.about__desc > p:nth-last-of-type(1) {
    margin-bottom: 0;
}

.about__list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 215px;
}

.about__item {
    width: calc(100% / 3 - 40px / 3);
    margin-bottom: 20px;
    position: relative;
    cursor: pointer;
}

.about__item:hover .about__hover {
    opacity: 1;
    pointer-events: initial;
}

.about__img {
    width: 100%;
}

.about__hover {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(15, 27, 44, 0.3);
    backdrop-filter: blur(2px);
    padding: 47px 40px 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all .3s;
    opacity: 0;
    pointer-events: none;
}

.about__heading {
    font-size: 24px;
    color: #F9F9F9;
    opacity: 0.6;
}

.about__description {}

.about__main-heading {
    font-size: 32px;
    font-weight: 500;
    color: #F9F9F9;
    margin-bottom: 34px;
}

.about__author {
    font-size: 20px;
    font-weight: 500;
    color: #F9F9F9;
}
/* \About */

.footer__socials {
    left: 75px;
}

/* Adaptive */
@media (max-width: 1290px) {
    .container-max {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .about__item {
        width: calc(50% - 10px);
    }
}

@media (max-width: 520px) {
    .about__descriptions {
        flex-direction: column;
    }
    .about__desc {
        width: 100%;
        margin-bottom: 16px;
        text-align: center;
    }
    .about__item {
        width: 100%;
    }
    .about__list {
        margin-bottom: 75px;
    }
}

@media (max-width: 400px) {
    .about__title {
        font-size: 32px;
    }
}
/* /Adaptive */