/* About */
.about {
    padding: 105px 0;
    overflow: hidden;
}

.about > .container {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.about__content {
    width: calc(50% - 93px);
    position: relative;
}

.about__content.full {
	width: 100%;
}

.about__title {
    text-transform: uppercase;
    color: var(--black);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 53px;
}

.about__content > p {
    font-size: 16px;
    color: var(--black);
    margin-bottom: 30px;
}

.about__img {
    width: 50%;
    position: relative;
}

.about__img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1550px) {
    .about > .container {
        max-width: 1200px;
    }
}

@media (max-width: 1030px) {
    .about {
        padding: 100px 0;
    }

    .about > .container {
        flex-direction: column;
        align-items: center;
    }

    .about__content {
        width: 100%;
        text-align: center;
    }

    .about__img {
        width: 80%;
    }
}

@media (max-width: 600px) {
    .about {
        padding: 40px 0 50px;
    }
    .about__title {
        margin-bottom: 30px;
    }
}

@media (max-width: 460px) {
    .about__img {
        width: 100%;
    }
}

/* \About */