*,
*::after,
*::before {
    padding: 0;
    margin: 0;
}

body {
    font-family: 'Lato', sans-serif;
}

.header {
    background-image: url(../img/header_bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 800px;
}

.header__container {
    max-width: 630px;
    margin: 0 auto;
    padding-top: 35px;
    padding-left: 20px;
    padding-right: 20px;
}

.header__menu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.header__menu-items {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    list-style-type: none;
}

.header__menu-item {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.08em;
    color: #4d4959;
}

.header__menu-item:nth-child(1) {
    margin-right: 32px;
}

.header__menu-item:nth-child(1)::after {
    content: ".";
    margin-left: 40px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.08em;
    color: #4d4959;
}

.header__menu-link {
    text-decoration: none;
    color: #4d4959;
}

.header__menu-img {
    padding-left: 20px;
    padding-right: 20px;
}

@media (max-width: 930px) {
    .header {
        max-height: 70vh;
    }
}

@media (max-width: 640px) {
    .header {
        max-height: 50vh;
    }

    .header__container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Сделать меню-бургер!! */

.about {
    background-color: #f7f7f7;
}

.about__container {
    display: block;
    padding-top: 115px;
    padding-bottom: 136px;
    padding-left: 20px;
    padding-right: 20px;
    max-width: 1122px;
    margin: 0 auto;
    text-align: center;
}

.about__icon,
.vintage__icon {
    margin-bottom: 28px;
}

.about__h2,
.vintage__h2 {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 18px;
    color: #353738;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
}
.about__text {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.9;
    color: #848789;
    letter-spacing: 0.001em;
}

.vintage {
}

.vintage__flex {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.vintage__col1 {
    min-height: 600px;
    overflow: hidden;
    flex-grow: 2;
    position: relative;
    z-index: 0;
    transition: all 0.3s ease-out;
}

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

.vintage__col1:hover:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #64c29e;
    opacity: 0.5;
    z-index: 1;
}

.vintage__logo {
    position: absolute;
    z-index: 5;
    top: calc(50% - 118px/2);
    left: calc(50% - 113px/2);
}


.vintage__logo.section-2 {
    position: absolute;
    z-index: 5;
    top: calc(50% - 152px/2);
    left: calc(50% - 177px/2);
}

.vintage__col2 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.vintage__description {
    padding-top: 70px;
    padding-bottom: 51px;
    padding-left: 25px;
    padding-right: 25px;
    text-align: center;
    max-width: 430px;
}

.vintage__text::after {
    content: "";
    display: block;
    margin: 32px auto 0;
    width: 55px;
    height: 1px;
    background-color: #ebebeb;
}

.vintage__icon {
    margin-bottom: 22px;
}

.vintage__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: #848789;
    letter-spacing: 0.001em;
    text-align: justify;
}

.vintage__bg-small {
    min-height: 200px;
    overflow: hidden;
}

.vintage__bg-img-small {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Добавить медиазапросы для мобилки */

@media (max-width: 640px) {
    .vintage__flex {
        flex-wrap: wrap;
    }

    .vintage__flex.section-2 {
        flex-wrap: wrap-reverse;
    }

    .vintage__bg-small {
        max-height: 200px;
        overflow: hidden;
    }

    .vintage__bg-img-small {
        width: 100vw;
        height: auto;
        object-fit: cover;
    }
}

