@import "style.css";

.about {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 20px;
}

.about__container {
    position: relative;
    max-width: 1330px;
    width: 100%;
    padding: 30px 10px 24px;
    margin: 0 auto;
}

.about__container::after {
    content: '';
    display: block;
    width: 7px;
    right: -30px;
    position: absolute;
    height: 423px;
    top: 0;
    background-color: #DFAA5B;
}

.about__inner {
    display: flex;
    justify-content: space-between;
    column-gap: 30px;
}

.about__possibilities {
    max-width: 570px;
    width: 100%;
    position: relative;
}

.about__possibilities-sub {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
}

.about__possibilities-sub::before {
    content: '';
    display: block;
    height: 1px;
    max-width: 392px;
    position: absolute;
    width: 100%;
    background: #957554;
    top: -12px;
    left: 0;
}

.about__vline {
    background-color: #DFAA5B;
    max-height: 529px;
    width: 4px;
    margin-top: 64px;
}

.about__info {
    max-width: 504px;
    width: 100%;
}

.about__info-title {
    position: relative;
    font-size: 32px;
    font-weight: 300;
    line-height: 37px;
    margin-bottom: 20px;
}

.about__possibilities-list::before,
.about__info-title::after {
    content: '';
    display: block;
    height: 1px;
    max-width: 392px;
    position: absolute;
    width: 100%;
    background: #957554;
}

.about__info-title::after {
    bottom: -6px;
    left: 0;
}

.about__info-subtitle {
    font-weight: 400;
}

.about__possibilities-list {
    position: relative;
    margin-left: 20px;
}

.about__possibilities-list::before {
    left: -20px;
    top: -14px;
}

.about__info-contacts {
    margin-bottom: 12px;
}

.about__info-text a {
    font-weight: 400;
    color: #000000;
    white-space: nowrap;
}

.about__info-list {
    margin-left: 40px;
}

.how-to-find__container {
    padding: 0 10px;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}

.hot-to-find__title {
    margin-bottom: 18px;
}

.how-to-find__inner {
    display: flex;
    justify-content: space-between;
    row-gap: 16px;
}

.reservation {
    padding: 18px 10px 28px;
}

@media screen and (max-width: 1410px) {
    .about__container::after {
        display: none;
    }
}

@media screen and (max-width: 1092px) {
    .invisible,
    .about__vline {
        display: none;
    }

    .about__inner {
        flex-direction: column;
    }

    .about__possibilities-list {
        margin-bottom: 16px;
    }

    .about__possibilities-sub {
        position: relative;
    }

    .about__possibilities {
        margin-bottom: 32px;
    }

    .how-to-find__container {
        padding: 0;
    }

    .how-to-find__inner {
        flex-direction: column-reverse;
        align-items: center;
    }

    .how-to-find__inner iframe {
        width: 100%;
        margin-bottom: 16px;
    }
}