/* About Head */


.about-head__title {
    margin-bottom: 16px;
}

.about-head__nav {
    display: flex;
    gap: 16px;
    color: var(--blue);
    padding-left: 0;
    background-color: #ffffff;
    width: 100%;
}
.about-head__nav.is-fixed {
    position: fixed;
    width: 100%;
    left: 0;
    top: var(--about-head-nav-top, 74px);
    padding-left: 40px;
    padding-bottom: 16px;
    z-index: 99;
    @media (max-width: 767px) {
        padding-left: 15px;
    }
}

.about-head__wrapper {
    height: 470px;
    margin-top: 56px;
}

.about-head__nav-link {
    text-decoration: none;
}

.about-head__img {
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1100px) {
    .about-head__wrapper {
        height: 376px;
    }
}

@media (max-width: 767px) {
    .about-head__wrapper {
        margin-top: 24px;
    }
    .about-head__nav {
        font-size: 14px;
    }
    .about-head__wrapper {
        height: 300px;
    }
}

@media (max-width: 575px) {
    .about-head__wrapper {
        height: 220px;
    }
}


/* About Workshop */

.about-workshop__wrapper {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.about-workshop__content {
    max-width: 880px;
}

.about-workshop__title {
    margin-bottom: 16px;
}

.about-workshop__text {
    margin-bottom: 16px;
}

.about-workshop__quote {
    font-size: 24px;
    font-weight: 600;
    font-family: "Playfair Display", serif;
    color: var(--blue);
}

.about-workshop__gallery {
    display: flex;
    gap: 6px;
    margin-top: 56px;
}

.about-workshop__gallery--item {
    width: calc(100% / 3);
    height: 560px;
}

.about-workshop__gallery--item img {
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1100px) {
    .about-workshop__wrapper {
        flex-direction: column;
    }
    .about-workshop__content {
        max-width: 100%;
    }
    .about-workshop__gallery {
        flex-wrap: wrap;
    }
    .about-workshop__gallery--item {
        width: calc(50% - 3px);
        height: 420px;
    }
    .about-workshop__gallery--item:last-child {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .about-workshop__quote {
        font-size: 18px;
    }
    .about-workshop__gallery--item {
        height: 320px;
    }
    .about-workshop__gallery {
        margin-top: 24px;
    }
}

@media (max-width: 575px) {
    .about-workshop__wrapper {
        gap: 4px;
    }
    .about-workshop__gallery {
        gap: 2px;
    }
    .about-workshop__gallery--item {
        height: 160px;
        width: calc(50% - 1px);
    }
}


/* About Team */

.about-team h3 {
    font-weight: 400;
    margin-bottom: 16px;
}

.about-team__inner--content.desk {
    display: block;
}

.about-team__inner--content.mob {
    display: none;
}

.about-team__inner--content {
    margin-left: 22px;
    margin-right: 56px;
    height: 232px;
}

.about-team__title {
    margin-bottom: 16px;
}

.about-team__wrapper {
    display: flex;
    gap: 6px;
}

.about-team__content {
    max-width: 476px;
    width: 100%;
    height: 668px;
    position: relative;
}

.about-team__content img {
    height: 100%;
    object-fit: cover;
}

.about-team__info {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    padding: 24px;
    background-color: #ffffff;
    border-radius: 6px;
}

.about-team__inner {
    width: 100%;
}

.about-team__list {
    display: flex;
    gap: 6px;
    padding-left: 0;
}

.about-team__item {
    width: calc(100% / 3);
}

.about-team__item-img {
    height: 395px;
}

.about-team__item img {
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1100px) {
    .about-team__wrapper {
        flex-direction: column;
    }
    .about-team__inner--content.desk {
        display: none;
    }
    .about-team__inner--content.mob {
        display: block;
        height: inherit;
        margin-bottom: 56px;
        margin-left: 0;
        margin-right: 0;
    }
    .about-team__content {
        max-width: 100%;
        height: auto;
    }
    .about-team__item {
        display: flex;
        flex-direction: column-reverse;
        gap: 12px;
    }
    h3.about-team__item-title {
        margin-bottom: 0;
        text-align: center;
    }
    .about-team__item-img {
        height: auto;
    }
}

@media (max-width: 767px) {
    .about-team__inner--content.mob {
        margin-bottom: 24px;
    }
}

@media (max-width: 575px) {
    .about-team__wrapper,
    .about-team__list {
        gap: 2px;
    }
    .about-team__info {
        padding: 16px;
        left: 8px;
        right: 8px;
        bottom: 8px;
    }
    .about-team__item {
        gap: 6px;
    }
    .about-team .about-team__info-title {
        font-size: 14px;
        margin-bottom: 8px;
    }
    .about-team__info-text {
        font-size: 14px;
    }
    .about-team__item-title {
        font-size: 12px;
    }
}

/* About Thanks */

.about-thanks {
    padding: 80px 0;
    background-color: var(--blue);
}

.about-thanks__title {
    text-align: center;
    max-width: 656px;
    margin: 0 auto;
    font-size: 24px;
    color: #ffffff;
}

@media (max-width: 767px) {
    .about-thanks {
        padding: 40px 0;
    }
    .about-thanks__title {
        font-size: 18px;
    }
}


/* About Silk */

.about-silk__title {
    margin-bottom: 16px;
}

.about-silk__wrapper {
    display: flex;
    gap: 6px;
    justify-content: space-between;
    margin-bottom: 56px;
}

.about-silk__content {
    max-width: 880px;
}

.about-silk__items {
    display: flex;
    gap: 16px;
}

.about-silk__item {
    width: 100%;
    display: flex;
    gap: 12px;
}

.about-silk__item-img {
    min-width: 100px;
    height: 100px;
}

.about-silk__item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-silk__item-title {
    margin-bottom: 8px;
}

@media (max-width: 1100px) {
    .about-silk__wrapper {
        flex-direction: column;
    }
    .about-silk__content {
        max-width: 100%;
    }
    .about-silk__items {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .about-silk__wrapper {
        margin-bottom: 24px;
    }
}

@media (max-width: 575px) {
    .about-silk__wrapper {
        gap: 4px;
    }
    .about-silk__items {
        gap: 16px;
    }
    .about-silk__item {
        flex-direction: column;
        gap: 12px;
    }
    .about-silk__item-img {
        max-width: 100px;
    }
    .about-silk__item-title {
        font-size: 18px;
    }
}


/* About BG 2 */

.about-bg-2__wrapper {
    height: 812px;
}

.about-bg-2__img {
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1100px) {
    .about-bg-2__wrapper {
        height: 600px;
    }
}

@media (max-width: 767px) {
    .about-bg-2__wrapper {
        height: 400px;
    }
}

@media (max-width: 575px) {
    .about-bg-2__wrapper {
        height: 320px;
    }
}

/* About Approach */

.about-approach__wrapper {
    display: flex;
    gap: 6px;
    justify-content: space-between;
    margin-bottom: 56px;
}

.about-approach__content {
    max-width: 880px;
}

.about-approach__title {
    margin-bottom: 16px;
}

.about-approach__items {
    display: flex;
    gap: 16px;
}

.about-approach__item {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-approach__item-img {
    width: 100px;
    height: 100px;
}

.about-approach__item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-approach__item-title {
    margin-bottom: 8px;
}

@media (max-width: 1100px) {
    .about-approach__wrapper {
        flex-direction: column;
    }
    .about-approach__content {
        max-width: 100%;
    }
    .about-approach__items {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .about-approach__wrapper {
        margin-bottom: 24px;
    }
}

@media (max-width: 575px) {
    .about-approach__wrapper {
        gap: 4px;
    }
    .about-approach__items {
        gap: 16px;
    }
    .about-approach__item {
        flex-direction: column;
        gap: 12px;
    }
    .about-approach__item-img {
        max-width: 100px;
    }
}


/* About Certification */

.about-certification {
    padding: 80px 0;
    background-color: var(--blue);
    color: #ffffff;
}

.about-certification__img {
    width: 80px;
    height: 80px;
    margin: 0 auto 56px;
}

.about-certification__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-certification__wrapper {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.about-certification__title {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 16px;
}

@media (max-width: 767px) {
    .about-certification {
        padding: 40px 0;
    }
}

@media (max-width: 575px) {
    .about-certification__img {
        margin-bottom: 32px;
        width: 64px;
        height: 64px;
    }
    .about-certification__title {
        font-size: 18px;
    }
    .about-certification__text {
        font-size: 14px;
    }
}


/* About Solution */

.about-solution__wrapper {
    display: flex;
    gap: 6px;
    justify-content: space-between;
    margin-bottom: 56px;
}

.about-solution__content {
    max-width: 880px;
}

.about-solution__title {
    margin-bottom: 16px;
}

.about-solution__items {
    display: flex;
    gap: 6px;
}

.about-solution__item {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-solution__item-img {
    width: 100%;
    height: 240px;
}

.about-solution__item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-solution__item-title {
    margin-bottom: 8px;
}

@media (max-width: 1100px) {
    .about-solution__wrapper {
        flex-direction: column;
    }
    .about-solution__content {
        max-width: 100%;
    }
    .about-solution__items {
        flex-direction: column;
    }
    .about-solution__item-img {
        height: 480px;
    }
}

@media (max-width: 767px) {
    .about-solution__wrapper {
        margin-bottom: 24px;
    }
    .about-solution__item-img {
        height: 320px;
    }
}

@media (max-width: 575px) {
    .about-solution__wrapper {
        gap: 4px;
    }
    .about-solution__items {
        gap: 16px;
    }
    .about-solution__item {
        flex-direction: column;
        gap: 12px;
    }
    .about-solution__item-img {
        height: 240px;
    }
}

/* About Origin */

.about-origin {
    padding: 80px 0;
    background-color: var(--blue);
}

.about-origin__text {
    display: block;
    text-align: center;
    max-width: 656px;
    margin: 0 auto;
    color: #ffffff;
    font-weight: 500;
}

@media (max-width: 767px) {
    .about-origin {
        padding: 40px 0;
    }
}

@media (max-width: 575px) {
    .about-origin__text {
        font-size: 14px;
    }
}

