.banner {
    width: 100vw;
    max-height: 400px;
    height: 50vh;
    background-color: #7e7e7e;

    background-image: url(/images/page_immovables-baner.png);
    background-size: cover;
    background-repeat: no-repeat;

    border-bottom: 4px solid #29325a;
    animation: background-image-scroll 20s;
}

.banner__info {
    max-width: 1400px;
    width: 81%;
    height: 50%;

    margin: 0 auto;

    display: flex;
    justify-content: end;
    align-items: center;

    color: #29325a;
}

.banner__title {
    text-transform: uppercase;
    font-size: 46px;

}

.valuation-text__point-head {
    font-size: 20px;
    font-weight: bold;

    color: #29325a;
}

.valuation-text__point-info {
    font-size: 16px;

    color: #29325a;

    margin-bottom: 10px;
}

.valuation-text {
    display: flex;
    flex-direction: column;

    max-width: 1400px;
    width: 81%;

    margin: 0 auto;
    padding: 20px 0;

    color: #29325a;
}

.valuation-text__head-line {
    font-size: calc(14px + (26 - 14) * ((100vw - 320px) / (1920 - 320)));
    font-weight: bold;
}

.valuation-text__short-info {
    text-align: justify;
    font-size: 18px;
    font-weight: lighter;
}

.valuation-text__make-order-button {
    align-self: start;

    padding: 10px;
    margin-top: 10px;

    border: 1px solid white;
    background-color: #29325a;
    color: white;

    text-decoration: none;
    font-size: calc(14px + (20 - 14) * ((100vw - 320px) / (1920 - 320)));
}

.valuation-text__make-order-button:hover {
    background-color: white;
    color: #29325a;
    border: 1px solid #29325a;
}

.accordion {
    width: 81%;
    max-width: 1400px;
    margin: 0 auto;
}

.accordion__title {    
    color: #29325a;

    margin-bottom: 10px;
}
.accordion__title-header {
    font-weight: bold;
    font-size: calc(14px + (24 - 14) * ((100vw - 320px) / (1920 - 320)));
}
.accordion__title-content {
    font-size: calc(12px + (18 - 12) * ((100vw - 320px) / (1920 - 320)));
}

.accordion__item {
    background-color: #e3e8fd88;
    border-bottom: 1px solid #29325a;
}

.accordion__header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 10px;

    background-color: white;
    color: #29325a;
    cursor: pointer;
    
    font-size: calc(12px + (18 - 12) * ((100vw - 320px) / (1920 - 320)));
    transition: background-color 0.3s;
}

.accordion__header:hover {
    background-color: #dbe1ff;
}

.accordion__dropdown-icon {
    height: 10px;
    transition: all ease .3s;
}

.accordion__dropdown-icon--active {
    transform: rotate(180deg);
}

.accordion__content {
    overflow: hidden;
    height: 0;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding: 0 10px;
}

.accordion__content p {
    margin: 0;
    
    color: #29325a;
    font-size: calc(12px + (18 - 12) * ((100vw - 320px) / (1920 - 320)));
}

.accordion__content--active {
    height: 100px;
    padding: 10px;
}



@keyframes background-image-scroll {
    0% {
        background-position: top;
    }

    50% {
        background-position: bottom;
    }

    100% {
        background-position: top;
    }
}

.slider-container {
    margin: 30px auto;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background-color: whitesmoke;
}

.slider {
    max-width: 1400px;
    width: 81%;

    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;

    color: #29325a;
}

.slider__top-info-wrapper {
    width: 100vw;
    padding: 20px 0;

    display: flex;
    justify-content: center;

    background-color: #29325a;
}

.slider__top-info {
    width: 81%;

    display: flex;
    flex-direction: column;
    align-items: center;

    background-color: #29325a;
}

.slider__title {
    color: white;
}

.slider__selection-buttons {
    margin-top: 30px;

    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.slider__selection-button {
    margin: 8px;
    padding: 8px;

    color: #29325a;
    background-color: white;

    transition: all 0.5s ease;
    cursor: pointer;

    font-size: calc(12px + (18 - 12) * ((100vw - 320px) / (1920 - 320)));
}

.slider__selection-button:hover {
    color: white;
    background-color: #29325a;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25), 0 5px 5px rgba(0, 0, 0, 0.22);
}

.slider__selection-button--active {
    margin: 8px;
    padding: 8px;

    transition: all 0.5s ease;
    cursor: pointer;

    color: white;
    background-color: #29325a;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25), 0 5px 5px rgba(0, 0, 0, 0.22);
    font-size: calc(12px + (18 - 12) * ((100vw - 320px) / (1920 - 320)));
}

.slider__button-icon {
    display: none;
}

.slider__button-title {
    text-align: center;
    font-weight: lighter;
}

.slide {
    padding: 30px 0;

    justify-content: space-between;
    align-items: center;

    display: none;
}

.slide.active {
    display: flex;
}

.slide__text {
    width: 50%;

    display: flex;
    flex-direction: column;
    justify-content: space-evenly;

    box-sizing: border-box;
}

.slide__text h2 {
    font-size: calc(16px + (30 - 16) * ((100vw - 320px) / (1920 - 320)));
}

.slide__text p {
    margin-top: 15px;

    font-size: calc(12px + (20 - 12) * ((100vw - 320px) / (1920 - 320)));
}

.slide__image {
    width: 40%;
    padding: 15px;

    background-color: #29325a;
}

button.prev,
button.next {
    width: 50px;
    height: 50px;

    background-color: #29325a8f;
    color: white;

    border: none;
    border-radius: 50%;

    cursor: pointer;
    font-size: 18px;
}

button:hover {
    background-color: #29325a;
}

.slider-container__buttons {
    display: flex;
    align-items: center;
}

.slider-container__selector {
    display: flex;

}

.slider-container__selector-circle {
    width: 10px;
    height: 10px;

    transform: scale(1);

    margin: 0 3px;

    border-radius: 50%;
    background-color: #29325a8f;
}


.slider-container__selector-circle--active {
    width: 10px;
    height: 10px;

    transform: scale(1.5);

    margin: 0 3px;

    border-radius: 50%;
    background-color: #29325a;
}