* {
    box-sizing: border-box;

    --fs-regular: 17px;
    --fs-title-2: 36px;
    --fs-title-3: 30px;
    --fs-title-4: 24px;
    --fs-title-5: 20px;
    --fs-title-6: 17px;
    --fs-label: 13px;
    --fs-title-1: 80px;

    --color-dark: #2b343c;
    --color-med: #3e4b56;
    --color-accent-blue: #205799;
    --color-accent-light: #4381cb;
    --color-accent-dark: #113e74;
    --color-accent-bg: #f0f7fc;
    --color-accent-yellow: #fd8401;
    --color-black: #000;
    --color-white: #fff;

    --font-outfit: "Outfit", sans-serif;
    --font-playfair: "Playfair Display", serif;

    font-family: var(--font-outfit);
    font-weight: 400;

    scroll-behavior: smooth;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
img {
    display: block;
    height: fit-content;
}
a {
    display: block;
    width: fit-content;
    text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
p {
    padding: 0;
    margin: 0;
}
input {
    display: block;
}
.header__container {
    max-width: 1237px;
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
}
.container {
    max-width: 1190px;
    width: 100%;
    padding: 0 10px;
    margin: 0 auto;
}

.header {
    padding-top: 30px;
    padding-bottom: 117px;
    background: linear-gradient(360deg, rgba(0, 0, 0, 0) 0%, #353535 100%);
}
.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top {
    background-image: url(../content/top_background.png);
    background-size: cover;
    background-position: center;
    padding-bottom: 143px;
}
.header__menu-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header__menu-item {
    position: relative;
    font-size: 15px;
    line-height: 115%;
    text-transform: uppercase;
    color: var(--color-white);
    margin-right: 50px;
    padding: 20px 18px;
    cursor: pointer;
}
.header__menu-item::after {
    position: absolute;
    content: "";
    width: 9px;
    height: 5px;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-image: url(../content/menu_arrow.png);
}
.header__submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 11;
}
.header__menu-item:hover > .header__submenu {
    display: block;
}
.header__submenu-item {
}
.header__submenu-link {
    background-color: var(--color-white);
    width: 100%;
    padding: 15px 25px;
    text-wrap: nowrap;
    font-weight: 300;
    font-size: 15px;
    line-height: 115%;
    color: var(--color-black);
}
.header__menu-button {
    padding: 18px 30px;
    background-color: transparent;
    outline: none;
    border: 1px solid var(--color-white);
    font-size: 15px;
    line-height: 115%;
    text-transform: uppercase;
    color: var(--color-white);
}
.top__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.title {
    font-weight: 600;
    font-size: var(--fs-title-1);
    color: var(--color-white);
    padding-right: 129px;
}
.subtitle {
    display: block;
    margin: 0;
    padding: 0;
    font-family: var(--font-playfair);
    font-style: italic;
    font-weight: 400;
    font-size: 72px;
    text-align: right;
    color: var(--color-accent-yellow);
}
.subtitle__text {
    font-weight: 300;
    font-size: var(--fs-title-4);
    line-height: 138%;
    color: var(--color-white);
}
.top__box-link {
    font-weight: 500;
    font-size: var(--fs-regular);
    color: var(--color-white);
    padding: 20px 45px;
    margin-top: 28px;
    background: linear-gradient(90deg, #e85804 0%, #fd8401 100%);
}
.top__inner-line {
    height: 175px;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
}
.top__list {
    max-width: 302px;
    width: 100%;
    list-style: url(../content/top_list-arrow.png);
    padding-left: 23px;
}
.top__list-item {
    font-weight: 300;
    font-size: var(--fs-regular);
    line-height: 140%;
    color: var(--color-white);
    margin-bottom: 30px;
}
.top__list-item > span {
    font-weight: 500;
    color: var(--color-accent-yellow);
}
.skyline {
    padding: 139px 0 100px;
}
.skyline__inner {
    display: flex;
    gap: 80px;
    justify-content: space-between;
}
.label {
    font-weight: 600;
    font-size: var(--fs-label);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent-light);
    margin-bottom: 20px;
    line-height: 100%;
}
.second {
    font-weight: 400;
    font-size: var(--fs-title-2);
    line-height: 130%;
    color: var(--color-dark);
    margin-bottom: 35px;
}
.skyline__content-text {
    font-weight: 300;
    font-size: var(--fs-regular);
    line-height: 160%;
    color: var(--color-med);
    margin-bottom: 35px;
}
.skyline__content-text:last-of-type {
    margin-bottom: 40px;
}

.skyline__box {
    max-width: 670px;
    width: 100%;
    padding: 50px 35px;
    background-color: var(--color-accent-bg);
    display: flex;
    justify-content: space-between;
    gap: 33px;
}
.skyline__box-title {
    font-weight: 600;
    font-size: var(--fs-regular);
    line-height: 160%;
    text-transform: uppercase;
    color: var(--color-dark);
    margin-bottom: 20px;
}
.skyline__box-text {
    font-weight: 300;
    font-size: var(--fs-regular);
    line-height: 160%;
    color: var(--color-med);
    margin-bottom: 30px;
}

.skyline__box-item {
    font-weight: 300;
    font-size: var(--fs-regular);
    line-height: 110%;
    color: var(--color-med);
}
.skyline__box-list {
    list-style: url(../content/skyline_list-arrow.png);
    padding-left: 21px;
}
.collaborate {
    padding-bottom: 100px;
}
.collaborate__title {
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #898989;
    margin-bottom: 14px;
    text-align: center;
}
.collaborate__partners {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1177px;
    width: 100%;
    margin: 0 auto;
}
.solutions {
    padding-bottom: 140px;
}
.solutions__inner {
    display: flex;
    justify-content: space-between;
}
.solutions__content {
    max-width: 500px;
    width: 100%;
}
.solutions__content-text {
    font-weight: 300;
    font-size: var(--fs-regular);
    line-height: 160%;
    color: var(--color-med);
    margin-bottom: 40px;
}
.solutions__box {
    display: flex;
    gap: 15px;
    /* justify-content: space-between; */
    margin-bottom: 30px;
}
.solutions__box-title {
    font-size: 20px;
    color: var(--color-dark);
    margin-bottom: 20px;
}
.solutions__box-text {
    font-weight: 300;
    font-size: var(--fs-regular);
    line-height: 160%;
    color: var(--color-med);
}
.solutions__result {
    font-weight: 300;
    font-size: var(--fs-regular);
    line-height: 160%;
    color: var(--color-med);
}
.solutions__result > span {
    font-weight: 300;
    color: var(--color-accent-light);
}
.types {
    padding-bottom: 140px;
}
.types__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.types__box {
    display: flex;
    background: linear-gradient(222deg, #205799 0%, #0b1d33 100%);
    max-width: 570px;
    width: 100%;
}
.types__box-content {
    margin-top: 83px;
}
.types__box-title {
    font-size: 28px;
    line-height: 120%;
    color: var(--color-white);
    margin-bottom: 24px;
}
.types__box-link {
    font-size: var(--fs-regular);
    line-height: 130%;
    color: var(--color-accent-light);
}
.installation {
    padding-bottom: 129px;
}
.installation__boxes {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}
.installation__box {
    max-width: 270px;
    width: 100%;
}
.installation__text {
    font-weight: 300;
    font-size: var(--fs-regular);
    line-height: 160%;
    color: var(--color-med);
    margin-bottom: 57px;
}
.installation__box-title {
    font-size: 18px;
    line-height: 160%;
    color: var(--color-dark);
    margin: 35px 0 20px;
}
.installation__box-text {
    font-weight: 300;
    font-size: var(--fs-regular);
    line-height: 160%;
    color: var(--color-med);
}
.installation__contact {
    padding: 148px 83px 57px 271px;
    background-image: url(../content/installation_bg.png);
    background-size: cover;
    /* background-position: left bottom; */
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.installation__contact-title {
    font-size: 34px;
    color: var(--color-white);
}
.installation__contact-text {
    font-weight: 300;
    font-size: var(--fs-regular);
    line-height: 160%;
    color: var(--color-white);
}
.installation__contact-link {
    font-weight: 500;
    font-size: var(--fs-regular);
    line-height: 160%;
    text-align: center;
    color: var(--color-white);
    background: linear-gradient(90deg, #e85804 0%, #fd8401 100%);
    padding: 19px 45px;
}

.save {
    background: linear-gradient(43deg, #c42828 0%, #fd8401 100%);
    padding: 113px 0 93px;
    position: relative;
}
.save__background-panel {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 209px;
    z-index: 1;
}
.save__background-circle {
    position: absolute;
    right: 0;
    top: 0;
    height: 210px;
    z-index: 1;
}
.save__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    z-index: 4;
}
.save__content {
    max-width: 410px;
    width: 100%;
}
.save__content-label {
    font-weight: 600;
    font-size: 13px;
    line-height: 160%;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-white);
}
.save__content-title {
    font-weight: 400;
    font-size: var(--fs-title-2);
    line-height: 130%;
    color: var(--color-white);
    margin: 20px 0 35px;
}
.save__content-text {
    font-weight: 300;
    font-size: var(--fs-regular);
    line-height: 160%;
    color: var(--color-white);
}
.save__form {
    max-width: 562px;
    width: 100%;
}
.save__form-title {
    font-weight: 500;
    font-size: 15px;
    line-height: 160%;
    color: var(--color-white);
}
.save__form-radios {
    display: flex;
    gap: 20px;
    margin: 10px 0 20px;
}
.save__form-radio {
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: block;
}
.save__form-radiolabel {
    cursor: pointer;
    display: block;
    font-weight: 500;
    font-size: 15px;
    line-height: 160%;
    color: var(--color-white);
    border: 2px solid #fe9734;
    width: 125px;
    height: 40px;

    display: flex;
    justify-content: center;
    align-items: center;
    padding: 7px 36px;
    /* padding: 14px 38px; */
}
.save__form-radio:checked + .save__form-radiolabel {
    background: #fe9734;
}
.save__form-electric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}
.input__pair {
    display: flex;
}
.save__form-dollar {
    font-size: var(--fs-title-4);
    line-height: 150%;
    color: var(--color-white);
    border-bottom: 1px solid #fe9734;
}
.save__form-bill {
    display: block;
    width: 50px;
    border: none;
    outline: none;
    background: transparent;
    border-bottom: 1px solid #fe9734;
    font-size: var(--fs-title-4);
    line-height: 150%;
    color: var(--color-white);
}

.save__range {
    margin-bottom: 26px;
}

#range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    cursor: pointer;
    outline: none;
    height: 4px;
    background: linear-gradient(to right, #f9b061 0%, #c55402 0%);
    border-radius: 2px;
}

#range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    height: 22px;
    width: 22px;
    background: #ffb76b;
    border-radius: 100%;
    transition: 0.2s ease-in-out;
    position: relative;
}

#range::-moz-range-thumb {
    appearance: none;
    height: 22px;
    width: 22px;
    background: #ffb76b;
    border-radius: 100%;
    transition: 0.2s ease-in-out;
}

.save__range-slider {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
    margin: 0 1px;
}

.sliderticks {
    display: flex;
    justify-content: space-between;
    margin: 0 12px;
}

.sliderticks span {
    display: flex;
    justify-content: center;
    width: 1px;
    height: 3px;
    background: var(--color-white);
}
.save__form-input {
    font-weight: 300;
    font-size: 15px;
    line-height: 160%;
    color: var(--color-med);
    outline: none;
    border: 1px solid var(--color-white);
    padding: 19px 20px;
    background: var(--color-white);
    width: 100%;
    margin-bottom: 20px;
}
.save__form-input::placeholder {
    font-weight: 300;
    font-size: 15px;
    line-height: 160%;
    color: var(--color-med);
}
.save__form-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.save__form-submit {
    font-weight: 500;
    font-size: var(--fs-regular);
    line-height: 160%;
    text-align: center;
    color: var(--color-white);
    border: 2px solid var(--color-white);
    padding: 19px 76px;
    background: transparent;
    cursor: pointer;
}
.faq {
    padding: 141px 0 140px;
}
.faq__header {
    margin-bottom: 61px;
}
.faq__boxes {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 2fr 290px;
    gap: 30px;
}
.faq__box {
    border: 1px solid #dfecfb;
    padding: 153px 40px 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
    min-height: 490px;
    background: #dfecfb;
}
.faq__box-title {
    font-size: var(--fs-title-4);
    line-height: 130%;
    text-align: center;
    color: var(--color-dark);
    margin: 50px 0 25px;
}
.faq__box-text {
    font-weight: 300;
    font-size: var(--fs-regular);
    line-height: 160%;
    text-align: center;
    color: var(--color-med);
}
.faq__box {
    grid-column: span 2;
}
.faq__box.bottom {
    grid-column: span 3;
    padding: 52px 76px;
    min-height: 320px;
    /* min-height: 290px; */
    align-items: flex-start;
}
/* .faq__box:nth-child(3) {
    background: #dfecfb;
} */
.faq__box.bottom > .faq__box-title {
    margin: 24px 0 25px;
}
.faq__box.bottom > .faq__box-text {
    text-align: left;
}
.slider__inner {
    position: relative;
    background: var(--color-accent-blue);
}
.slider__wrapper {
    display: flex;
}
.slider__image {
    width: 50%;
    object-fit: cover;
    object-position: center;
}
.slider__content {
    width: 50%;
}
.slider__content {
    padding: 116px;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: flex-start;
    position: relative;
    background: var(--color-accent-blue);
}
.slider__content-circle {
    position: absolute;
    left: 0;
    bottom: 0;
}
.slider__content-text {
    max-width: 470px;
    width: 100%;
    font-weight: 300;
    font-size: var(--fs-title-4);
    line-height: 160%;
    color: var(--color-white);
    margin: 30px 0 40px;
}
.slider__content-author {
    font-weight: 600;
    font-size: var(--fs-title-4);
    line-height: 160%;
    color: var(--color-white);
}
.slider__controls {
    position: absolute;
    top: 50px;
    right: calc(50% + 50px);
    display: flex;
    z-index: 1;
}
.slider__control {
    outline: none;
    background: var(--color-accent-blue);
    border: none;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.quote__inner {
    padding: 216px 0 235px;
    background-image: url(../content/quote_background.png);
    background-size: cover;
    background-position: bottom center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.quote__title {
    font-size: 48px;
    line-height: 117%;
    text-align: center;
    color: var(--color-white);
    margin-bottom: 40px;
}
.quote__link {
    background: linear-gradient(90deg, #e85804 0%, #fd8401 100%);
    padding: 19px 45px;
    font-weight: 500;
    font-size: var(--fs-regular);
    color: var(--color-white);
}
.footer {
    padding: 32px 0 34px;
    background: var(--color-dark);
}
.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.footer__links {
    max-width: 329px;
    width: 100%;
}
.footer__description {
    font-weight: 300;
    font-size: 15px;
    line-height: 160%;
    color: var(--color-white);
    margin: 33px 0 21px;
}
.footer__description > b {
    font-weight: 700;
}
.footer__links-links {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer__links-phone {
    font-family: var(--third-family);
    font-weight: 400;
    font-size: var(--fs-regular);
    color: #697f91;
}
.footer__links-box {
    display: flex;
    gap: 20px;
}

.footer__menu-title {
    font-weight: 600;
    font-size: 15px;
    line-height: 115%;
    text-transform: uppercase;
    color: var(--color-accent-bg);
    margin-bottom: 21px;
}
.footer__menu-link {
    font-weight: 300;
    font-size: 15px;
    line-height: 180%;
    color: #697f91;
}
.footer__menu {
    margin-top: 9px;
    max-width: 498px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.footer__bottom {
    padding-top: 36px;
    margin-top: 73px;
    border-top: 1px solid #35404a;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer__bottom-copyright {
    font-weight: 300;
    font-size: 13px;
    line-height: 120%;
    color: #697f91;
}
.footer__bottom-link {
    font-weight: 300;
    font-size: 13px;
    line-height: 120%;
    color: #697f91;
    padding: 0 3px;
}
.footer__bottom-links {
    display: flex;
    align-items: center;
}

/*residential page*/

.top.residential {
    background-image: url(../content/residential/header_bg.png);
    background-size: cover;
    background-position: center bottom;
    padding-bottom: 132px;
}
.top.residential > .header {
    background: linear-gradient(
        360deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
}
.additional-title__yellow {
    font-family: var(--font-playfair);
    font-style: italic;
    font-size: 60px;
    line-height: 130%;
    color: var(--color-accent-yellow);
}
.additional-title {
    margin-left: 150px;
    font-weight: 600;
    font-size: 60px;
    line-height: 130%;
    text-align: right;
    color: var(--color-white);
    margin-bottom: 13px;
}
.additional-subtitle__text {
    font-weight: 300;
    font-size: var(--fs-title-4);
    line-height: 130%;
    color: var(--color-white);
}
.description {
    padding: 83px 0 129px;
}
.description___inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 83px;
    gap: 20px;
    border-left: 8px solid #f44f02;
}
.description__text {
    font-weight: 300;
    font-size: var(--fs-title-4);
    line-height: 160%;
    color: var(--color-dark);
    max-width: 865px;
    width: 100%;
    padding: 28px 0;
}
.why {
    padding-bottom: 120px;
}
.why__boxes {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.why__box {
    max-width: 270px;
    width: 100%;
    background: var(--color-accent-bg);
    padding: 50px 30px 37px;
    min-height: 246px;
}
.why__box-title {
    font-weight: 600;
    font-size: var(--fs-regular);
    line-height: 130%;
    text-transform: uppercase;
    color: var(--color-dark);
    margin: 16px 0 6px;
}
.why__box-text {
    font-weight: 300;
    font-size: var(--fs-regular);
    line-height: 160%;
    color: var(--color-med);
}
.why__subtitle {
    font-weight: 300;
    font-size: var(--fs-regular);
    line-height: 160%;
    color: var(--color-med);
    margin-bottom: 50px;
}
.solutions__box-count {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: 1px solid var(--color-accent-blue);
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
}
.solutions__box-number {
    font-weight: 200;
    font-size: var(--fs-title-5);
    line-height: 160%;
    color: var(--color-accent-blue);
}
.speak {
    background-image: url(../content/residential/speak_bg.png);
    background-size: cover;
    background-position: left center;
    padding: 125px 0;
    margin-bottom: 100px;
}
.speak__inner {
    display: flex;
    justify-content: flex-end;
}
.speak__content {
    max-width: 469px;
    width: 100%;
    margin-right: 99px;
}
.speak__title {
    font-weight: 400;
    font-size: 44px;
    color: var(--color-white);
    margin-bottom: 25px;
}
.speak__text {
    font-weight: 300;
    font-size: var(--fs-regular);
    line-height: 160%;
    color: var(--color-white);
    margin-bottom: 30px;
}
.speak__link {
    font-weight: 500;
    font-size: var(--fs-regular);
    line-height: 160%;
    text-align: center;
    color: var(--color-white);
    background: linear-gradient(90deg, #e85804 0%, #fd8401 100%);
    padding: 19px 45px;
}
.solutions__inner.reversed {
    flex-direction: row-reverse;
}
.solutions__box > svg {
    flex-shrink: 0;
}

/*commercial page*/

.top.commercial {
    background-image: url(../content/commercial/header_bg.png);
    background-size: cover;
    background-position: center bottom;
    padding-bottom: 132px;
}
.top.commercial > .header {
    background: linear-gradient(
        360deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
}
.speak.commercial {
    background-image: url(../content/commercial/speak_bg.png);
}
.quote.commercial > .quote__inner {
    background-image: url(../content/commercial/switch_bg.png);
}

/*reviews page*/

.top.reviews-page {
    background-image: url(../content/reviews/header_bg.png);
    background-size: cover;
    background-position: top left;
    padding-bottom: 124px;
}
.top.reviews-page > .header {
    background: none;
}
.reviews {
    padding: 80px 0 96px;
}
.review {
    padding: 80px;
    display: flex;
    justify-content: space-between;
    background: var(--color-accent-bg);
    gap: 20px;
    margin-bottom: 43px;
}
.review__content {
    max-width: 592px;
    width: 100%;
}
.review__stars {
    display: flex;
    gap: 5px;
}
.review__title {
    font-size: var(--fs-title-4);
    line-height: 130%;
    color: var(--color-dark);
    margin: 20px 0 25px;
}
.review__text {
    font-weight: 300;
    font-size: var(--fs-regular);
    line-height: 160%;
    color: var(--color-med);
    margin-bottom: 35px;
}
.review_author {
    font-size: var(--fs-regular);
    line-height: 160%;
    color: var(--color-dark);
}
.quote.reviews-page > .quote__inner {
    background-image: url(../content/reviews/switch_bg.png);
    background-position: bottom center;
}

/*about us page*/

.top.about {
    background-image: url(../content/about/header_bg.png);
    background-size: cover;
    background-position: top left;
}
.top.about > .header {
    background: linear-gradient(
        360deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
}
.company {
    padding-bottom: 60px;
}
.company__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.company__content {
    max-width: 701px;
    width: 100%;
}
.company__content-title {
    font-weight: 400;
    font-size: 30px;
    line-height: 130%;
    color: var(--color-dark);
}
.company__content-text {
    font-weight: 300;
    font-size: var(--fs-regular);
    line-height: 160%;
    color: var(--color-dark);
    margin: 35px 0 50px;
    max-width: 671px;
    width: 100%;
}
.company__content-text > b {
    font-weight: 500;
}
.company__content-text:last-child {
    max-width: 701px;
}
.banner {
    padding-bottom: 100px;
}
.banner__inner {
    padding: 113px 79px;
    background-image: url(../content/about/banner_bg.png);
    background-size: cover;
    background-position: center;
}
.banner__text {
    font-weight: 300;
    font-size: 28px;
    line-height: 140%;
    color: var(--color-white);
}
.banner__text span {
    font-weight: 500;
    color: var(--color-accent-yellow);
}
.faq.about-page {
    padding-top: 0;
}
.quote__inner.about-page {
    background-image: url(../content/about/quote_bg.png);
    padding: 201px 40px;
}
.quote__inner.about-page > .quote__title {
    text-align: center;
    max-width: 968px;
    width: 100%;
    margin: 0 auto 30px;
}
.quote__inner.about-page > .quote__subtitle {
    font-weight: 300;
    font-size: var(--fs-title-4);
    line-height: 160%;
    text-align: center;
    color: var(--color-white);
    margin-bottom: 39px;
}

/* contact page */

.top.contact {
    background-image: url(../content/contact/header_bg.png);
    background-size: cover;
    background-position: top left;
}
.information {
    padding: 96px 0 245px;
}
.information__text {
    max-width: 419px;
    width: 100%;
    font-weight: 300;
    font-size: var(--fs-regular);
    line-height: 160%;
    color: var(--color-dark);
    margin-bottom: 37px;
}
.information__box {
    display: flex;
    align-items: center;
    gap: 22px;
}
.information__phone {
    font-weight: 300;
    font-size: 40px;
    line-height: 160%;
    color: var(--color-accent-blue);
}
.mainForm {
    padding: 70px;
    max-width: 670px;
    width: 100%;
    background: var(--color-accent-bg);
    position: absolute;
    right: 0;
    top: -293px;
    z-index: 3;
}
.mainForm__title {
    font-weight: 400;
    font-size: 28px;
    line-height: 130%;
    color: var(--color-dark);
}
.mainForm__text {
    font-weight: 300;
    font-size: var(--fs-regular);
    line-height: 160%;
    color: var(--color-dark);
    margin: 35px 0;
}
.mainForm__input {
    outline: none;
    padding: 9px 20px;
    border: 1px solid #ddebf5;
    background: var(--color-white);
    font-weight: 300;
    font-size: 15px;
    line-height: 160%;
    color: var(--color-med);
    width: 100%;
    margin-bottom: 15px;
}
.mainForm__input::placeholder {
    font-weight: 300;
    font-size: 15px;
    line-height: 160%;
    color: var(--color-med);
}
.mainForm__box {
    display: flex;
    gap: 30px;
}
.mainForm__textarea {
    outline: none;
    padding: 17px 20px;
    border: 1px solid #ddebf5;
    background: var(--color-white);
    font-weight: 300;
    font-size: 15px;
    line-height: 160%;
    color: var(--color-med);
    width: 100%;
    margin-bottom: 20px;
    height: 120px;
    resize: none;
}
.mainForm__textarea::placeholder {
    font-weight: 300;
    font-size: 15px;
    line-height: 160%;
    color: var(--color-med);
}
.mainForm__submit {
    border: none;
    background: linear-gradient(90deg, #e85804 0%, #fd8401 100%);
    font-weight: 500;
    font-size: var(--fs-regular);
    line-height: 160%;
    text-align: center;
    color: var(--color-white);
    cursor: pointer;
    outline: none;
    width: 199px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.information__inner {
    position: relative;
}

/* contact success page */

.top.contact-success {
    background-image: url(../content/contact/contact_success-bg.png);
    background-size: cover;
    background-position: top left;
    padding-bottom: 227px;
}
.top__box.contact-success {
    max-width: 677px;
    width: 100%;
}
.top__box.contact-success > .additional-title {
    margin-right: 39px;
}
.header__menu-adaptive,
.header__menu-slide {
    display: none;
}
.header__menu-slide > .header__menu-row:first-child {
    margin-top: 3px;
}

.splide__list {
    display: flex;
    align-items: center;
}

.splide__slide img {
    /* width: 134px; */
    height: 40px;
    margin-right: 55px;
}
#partners-slider {
    display: none;
}
.solutions__image-adaptive {
    display: none;
}
.slick-dots li button:before {
    color: #d9d9d9;
    font-size: 32px;
    opacity: 1;
}
.slick-dots li.slick-active button:before {
    color: #4381cb;
}
.installation__box-svg.adaptive {
    display: none;
}
.slick-dots {
    bottom: -35px;
}
.installation__contact-image {
    display: none;
}
.speak__image-adaptive {
    display: none;
}

/* hover effects */

.header__menu-button,
.header__menu-item,
.header__submenu-link,
.types__box-link,
.save__form-submit,
.slider__control,
.footer__menu-link,
.footer__links-phone,
.footer__bottom-link,
.footer__link > svg > g > path,
.information__phone,
.information__box:hover > svg > g > g > g > path ,
.breakdown__form-submit{
    transition: 0.4s all linear;
}
.header__menu-button:hover,
.save__form-submit:hover {
    color: var(--color-dark);
    background: var(--color-white);
}

.header__submenu-link:hover {
    background: #9f9f9f;
}
.top__box-link:hover,
.installation__contact-link:hover,
.save__form-radiolabel:hover,
.quote__link:hover,
.speak__link:hover,
.mainForm__submit:hover,
.breakdown__form-submit:hover {
    /* background: var(--color-accent-yellow); */
    background: linear-gradient(90deg, #ab6d49 0%, #ffac52 100%);
}
.types__box-link:hover,
.information__box:hover > .information__phone {
    color: #90c2ff;
}
.slider__control:hover {
    background: #90c2ff;
}
.footer__menu-link:hover,
.footer__links-phone:hover,
.footer__bottom-link:hover {
    color: var(--color-white);
}
.footer__link:hover > svg > g > path {
    fill: #fff;
}
.information__box:hover > svg > g > g > g > path {
    stroke: #90c2ff;
}
.header__menu-item:hover {
    text-decoration: underline;
}

/* calculator page */

/* contact page */

.top.calculated {
    background-image: url(../content/contact/calculator_bg.png);
    background-size: cover;
    background-position: center right;
}
.results {
    max-width: 379px;
    width: 100%;
    background: linear-gradient(15deg, #c42828 0%, #fd8401 100%);
    padding: 30px 50px;
    position: absolute;
    top: -145px;
    left: 0;
}
.results__title {
    font-weight: 600;
    font-size: 13px;
    line-height: 160%;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-white);
    padding-bottom: 20px;
    border-bottom: 1px solid #ffffffad;
    margin-bottom: 60px;
}
.results__box {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}
.results__box-title {
    font-weight: 600;
    font-size: 15px;
    line-height: 160%;
    color: var(--color-white);
}
.results__box-value {
    font-weight: 600;
    font-size: 40px;
    color: var(--color-white);
}
.results__box-description {
    font-weight: 300;
    font-size: var(--fs-regular);
    line-height: 160%;
    color: var(--color-white);
}
.breakdown {
    background: #f0f7fc;
    padding: 70px 0;
}
.breakdown__inner {
    display: flex;
    justify-content: flex-end;
    position: relative;
}
.breakdown__form {
    max-width: 631px;
    width: 100%;
}
.breakdown__form-title {
    font-size: 30px;
    line-height: 130%;
    color: var(--color-dark);
}
.breakdown__form-text {
    font-weight: 300;
    font-size: var(--fs-regular);
    line-height: 160%;
    color: var(--color-dark);
    margin: 15px 0 20px;
}
.breakdown__form-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.breakdown__form-input {
    border: 1px solid #ddebf5;
    padding: 8px 20px;
    background: #fff;
    width: 100%;
    font-weight: 300;
    font-size: 15px;
    line-height: 160%;
    color: #3e4b56;
    outline: none;
}
.breakdown__form-input::placeholder {
    font-weight: 300;
    font-size: 15px;
    line-height: 160%;
    color: #3e4b56;
}
.breakdown__form-submit {
    cursor: pointer;
    border: none;
    outline: none;
    background: linear-gradient(90deg, #e85804 0%, #fd8401 100%);
    width: 199px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 17px;
    line-height: 160%;
    text-align: center;
    color: var(--color-white);
}
