.feature-block {
    margin-bottom: 165px;
}
.feature-block__list {}
.feature-block__item {
    text-align: center;
    margin-bottom: 70px;
}
.feature-block__icon {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
}
.feature-block__text {
    font-weight: 300;
    font-size: 28px;
    line-height: 125%;
    color: #FFFFFF;
}
@media screen and (max-width: 1199px) {
    .feature-block__text {
        font-size: 22px;
    }
}
@media screen and (max-width: 991px) {
    .feature-block {
        margin-bottom: 80px;
    }
}

h2 + .install-search {
    margin: 40px 0 40px;
}
.install-search:not(.install-search_modal) {
    /*margin: 40px 0 40px;*/
    padding-bottom: 45px;
}
.install-search_modal {
    margin-bottom: 40px!important;
    padding-bottom: 0;
}
.install-search_modal .install-search__item {
    margin: 0;
}
.install-search__control-wrapper {
    position: relative;
}
.install-search__control:not(.install-search__control_modal),
.install-search__control:not(.install-search__control_modal):focus {
    width: 100%;
    display: block;
    height: 60px;
    background: #000;
    border: 2px solid #EA072B;;
    border-radius: 50px;
    padding-left: 30px !important;
    padding-right: 30px !important;
    font-size: 15px !important;
    color: #fff !important;
    font-weight: bold;
}
.install-search:not(.install-search_modal) .install-search__control {
    text-transform: uppercase;
}
.install-search__control[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}
.install-search_bordered {
    margin: 0;
    max-width: 100%;
}
.install-search:not(.install-search_modal) .install-search__item {
    margin: 0 0 20px;
}
.install-search.install-search_modal .form-control {
    border: none;
}

.studio-holder {
    position: relative;
    background: #fff;
    z-index: 1;
}
.studio-holder > *:first-child {
    padding-top: 45px;
}
.studio-holder > *:last-child:after {
    content: "";
    display: table;
    width: 100%;
    height: 88px;
}
.studio-holder:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 50%;
    width: calc(100vw + 30px);
    bottom: 0;
    transform: translate(-50%,0);
    background: #fff;
}
.studio-holder .map-block {
    margin-bottom: 0;
}
.studio-holder .install-spacer {
    height: 88px;
}
.studio-holder + h2 {
    margin-top: 60px;
}

.choice-block {
    background: #fff;
    position: relative;
    margin-bottom: 60px;
}
.choice-block:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    bottom: 0;
    width: calc(100vw + 30px);
    transform: translate(-50%,0);
    background: #fff;
    z-index: 1;
}
.choice-block__list {
    position: relative;
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
}
.choice-block__item-wrapper {
    margin-bottom: 40px;
}
.choice-block__item {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}
.choice-block__item:hover .choice-block__name {
    color: #ea072b;
}
.choice-block__item:hover .choice-block__dropdown {
    opacity: 1;
    visibility: visible;
}
.choice-block__img-wrapper {
    width: 48px;
    height: 24px;
    flex: 0 0 auto;
    margin-right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.choice-block__img {
    max-width: 100%;
    max-height: 100%;
    margin: 0 !important;
}
.choice-block__name-wrapper {
    position: relative;
}
.choice-block__name {
    text-transform: capitalize;
    font-size: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}
.choice-block__dropdown {
    cursor: auto;
    position: absolute;
    z-index: 3;
    top: 100%;
    left: -20px;
    min-width: 240px;
    background: #fff;
    margin-top: 10px;
    box-shadow: 0 0 20px 0 rgba(0,0,0,0.1);
    border-radius: 2px;
    /*display: none;*/
    transition: opacity 0.3s ease, visibility 0.3s ease;
    opacity: 0;
    visibility: hidden;
    padding: 12px 20px;
    column-count: 2;
    column-gap: 32px;
}
.choice-block__dropdown-item {
    margin-bottom: 8px;
    display: inline-block;
    width: 100%;
}
.choice-block__dropdown-link {
    white-space: nowrap;
    color: #000;
    border-bottom: 1px solid rgba(0,0,0,0.5);
    transition: border-color 0.3s ease, color 0.3s ease;
}
.choice-block__dropdown-link:hover {
    color: #ea072b;
    border-color: #ea072b;
}
.choice-block__dropdown:before {
    content: "";
    position: absolute;
    left: 19px;
    bottom: 100%;
    margin-bottom: -1px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 6px 6px 6px;
    border-color: transparent transparent #ffffff transparent;
}
.choice-block__dropdown:after {
    content: "";
    position: absolute;
    top: -11px;
    left: 0;
    right: 0;
    bottom: 100%;
}

@media screen and (max-width: 767px) {
    .install-search_bordered .install-search__item {
        border: 1px solid #E5E5E5;
    }
    .choice-block__item-wrapper {
        margin-bottom: 30px;
    }
    .choice-block__item-wrapper:nth-child(2n+2) .choice-block__name-wrapper {
        position: static;
    }
    .choice-block__item-wrapper:nth-child(2n+2) .choice-block__dropdown {
        left: auto;
        right: 0;
    }
    .choice-block__item-wrapper:nth-child(2n+2) .choice-block__dropdown:before {
        left: 51%;
        transform: translate(-50%,0);
    }
    .choice-block__img-wrapper {
        width: 36px;
        height: 18px;
        margin-right: 10px;
    }
}
@media screen and (min-width: 768px) {
    .install-search_bordered {
        border: 1px solid #E5E5E5;

    }
}

.header-install__btn.btn {
    margin-top: 30px;
    transition: filter 0.5s ease, transform 0.8s ease, opacity 0.4s ease, background 0.3s ease, color 0.3s ease, visibility 0.3s ease, max-height 0.3s ease, margin-top 0.3s ease;
    filter: blur(0);
    visibility: visible;
    max-height: 60px;
    opacity: 1;
}
.header-install__btn[disabled] {
    filter: blur(25px);
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    margin-top: 0;
}






