@charset "UTF-8";
/*Обнуление*/
* {
    padding: 0;
    margin: 0;
    border: 0;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

:focus,
:active {
    outline: none;
}

a:focus,
a:active {
    outline: none;
}

nav,
footer,
header,
aside {
    display: block;
}

html,
body {
    height: 100%;
    width: 100%;
    font-size: 100%;
    line-height: 1;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
    font-family: inherit;
}

input::-ms-clear {
    display: none;
}

button {
    cursor: pointer;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

a,
a:visited {
    text-decoration: none;
}
a {
    color: #000;
}
a:hover {
    text-decoration: none;
}

ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
}
body {
    font-family: Roboto;
    font-size: 14px;
    line-height: 114%;
    color: #757575;
}
.wrapper {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background-image: url(../img/svg/wrapper-bg.svg);
    background-repeat: no-repeat;
    background-position-x: 687px;
    background-position-y: 1300px;
    position: relative;
}
[class*="__container"] {
    max-width: 1200px;
    padding: 0px 15px;
    margin: 0 auto;
}
.content {
    flex: 1 1 auto;
    min-height: 0;
    margin-top: 97px;
}
@media (max-width: 767px) {
    .content {
        margin-top: 52px;
    }
}
/* Header ============================================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    width: 100%;
    z-index: 100;
    margin: 0 auto;
}
.header__location {
    border-bottom: 1px solid #e8e8e8;
}
.location {
    display: flex;
    align-items: center;
    padding: 6px 0px;
}
.location a {
    transition: 0.2s ease all;
}
.location a:hover {
    color: #3f64ae;
}
.location__location {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    font-weight: 500;
    line-height: 100%;
    color: #1f1f1f;
}
.location__mail {
    font-weight: 500;
    line-height: 100%;
    color: #1f1f1f;
    display: flex;
    align-items: center;
    padding-right: 34px;
}
.location__mail img,
.location__phone img,
.location__location img {
    padding-right: 4px;
}
.location__phone {
    font-weight: 500;
    line-height: 100%;
    color: #1f1f1f;
    display: flex;
    align-items: center;
}
.header__body {
    position: relative;
    z-index: 2;
    display: flex;
    height: 96px;
    align-items: center;
    gap: 100px;
}
.header__logo {
    flex: 0 0 200px;
}
.header__menu {
    flex: 1 1 auto;
}
.header__list {
    display: flex;
    flex: 1 1 auto;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    justify-content: space-between;
    gap: 16px;
    text-transform: uppercase;
    color: #1f1f1f;
}
.header__list li {
    position: relative;
}
.header__list li a {
    transition: 0.2s ease all;
    font-family: 'Roboto Condensed';
    font-weight: 500;
}

.header__burger{
    display: none;
}

.header__link {
    display: flex;
    justify-content: space-between;
}
.burger__menu {
    display: none;
}
.header__burger.active span {
    transform: scale(0);
}
.header__burger.active::before {
    transform: rotate(45deg);
    background: #3f64ae;
    top: 5px;
}
.header__burger.active::after {
    transform: rotate(-45deg);
    background: #3f64ae;
    bottom: 5px;
}
.header__service {
    display: none;
}
.header__unt {
    display: none;
}
.service__popup_item {
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    display: none;
    width: 140px;
    transition: 0.3s ease all;
}
@media(max-width: 1200px){
    .header__body{
        justify-content: space-between;
        gap: 32px;
    }
}
@media (max-width: 992px) {
    .header__logo {
        flex: 0 0 230px;
    }

    .burger__menu,
    .header__list li img,
    .header__service,
    .header__unt {
        display: block;
    }

    .header__body {
        height: 56px;
    }
    .header__logo {
        flex: 0 0 260px;
    }
    .location {
        display: none;
    }
    .header__burger {
        position: relative;
        width: 20px;
        height: 12px;
    }
    .header__burger{
        display: block;
    }
    .header__burger span {
        position: absolute;
        background-color: #1f1f1f;
        left: 0;
        width: 100%;
        height: 2px;
        top: 5px;
        transition: all 0.3s ease 0s;
    }
    .header__burger::before,
    .header__burger::after {
        content: "";
        background-color: #1f1f1f;
        position: absolute;
        width: 100%;
        height: 2px;
        left: 0;
        transition: all 0.3s ease 0s;
    }
    .header__burger::before {
        top: 0;
    }
    .header__burger::after {
        bottom: 0;
    }
    .header__menu {
        transition: all 0.3s ease 0s;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        margin: 57px 0px 0px 0px;
        background-color: #fff;
    }

    .header__service {
        transition: all 0.3s ease 0s;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        margin: 57px 0px 0px 0px;
        background-color: #fff;
    }
    .header__unt {
        transition: all 0.3s ease 0s;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        margin: 51px 0px 0px 0px;
        background-color: #fff;
    }
    .header__menu.active,
    .header__service.active {
        right: 0;
        z-index: 10;
    }
    .header__menu.active,
    .header__unt.active {
        right: 0;
        z-index: 10;
    }
    .header__menu.active.move {
        transition: all 0.3s ease 0s;
        right: -100%;
    }
    .header__list {
        display: block;
    }
    .header__link {
        padding: 14px 15px;
        border-bottom: 1px solid #d9d9d9;
    }
    .header__container {
        box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.16);
    }
    .header__size {
        height: 40px;
        width: 160px;
    }
    .header__size a img {
        width: 100%;
        height: 100%;
    }
    .header__logo {
        flex: 1 1 auto;
    }
    .service__list li {
        display: flex;
        align-items: center;
        font-family: "Roboto";
        font-style: normal;
        font-weight: 500;
        font-size: 14px;
        line-height: 100%;
        text-transform: uppercase;
    }
    .unt__list li {
        display: flex;
        align-items: center;
        font-family: "Roboto";
        font-style: normal;
        font-weight: 500;
        font-size: 14px;
        line-height: 100%;
        text-transform: uppercase;
    }
    .service__list li a {
        display: flex;
        color: #4f4f4f;
        padding: 16px 0px 16px 15px;
        width: 100%;
    }
    .unt__list li a {
        display: flex;
        color: #000;
        padding: 16px 0px 16px 15px;
        width: 100%;
    }
    .blue-link:first-child {
        color: #3f64ae;
    }
    .blue-link img {
        padding-right: 5px;
    }
    .black-link:first-child {
    }
    .unt-link:first-child {
        color: #3f64ae;
    }
    .unt-link img {
        padding-right: 5px;
    }
    .service__list li:first-child {
        display: flex;
        align-items: center;
        border-bottom: 1px solid #dadada;
    }
    .unt__list li:first-child {
        display: flex;
        align-items: center;
        border-bottom: 1px solid #dadada;
    }
    .unt__list li a:hover {
        color: #000;
    }
    .service__list li a:hover {
        color: #000;
    }
    .burger__menu {
        padding: 24px 15px 0px 15px;
    }

    .input__search {
        background-image: url(../img/svg/search.svg);
        background-position-y: center;
        background-position-x: 12px;
        background-repeat: no-repeat;
        height: 40px;
        padding-left: 40px;
        font-family: "Open Sans";
        font-weight: 400;
        font-size: 12px;
        line-height: 100%;
        border: 1px solid #c5c5c5;
        width: 100%;
        opacity: 1;
        border-radius: 3px;
        display: none;
    }
    .input__search::placeholder {
        color: #c5c5c5;
    }
    .burger__menu a {
        display: flex;
        align-items: center;
    }
    .burger__menu a img {
        padding-right: 5px;
    }
    .burger__menu div:not(:last-child) {
        padding-bottom: 12px;
    }
    .burger__menu div:nth-child(3) {
        padding-bottom: 24px;
    }
}
@media (max-width: 480px) {
    .header__body {
        height: 50px;
    }
    .header__size {
        height: 25px;
        width: 100px;
    }
    .header__menu,
    .header__service {
        margin: 51px 0px 0px 0px;
    }
}
@media (min-width: 767px) {
    .header__list li a:hover {
        color: #3f64ae;
    }
    .header__list img {
        transform: rotate(90deg);
        margin-left: 8px;
    }
    .service__popup {
        position: absolute;
        top: 13px;
        left: -10px;
        background-color: #fff;
        transition: 0.3s ease all;
        transform: translate(0px, -40px);
    }
    .service__popup_item:not(:last-child) {
        border-bottom: 1px solid #dadada;
    }
    .service__popup li a:hover {
        color: #fff;
        background-color: #3f64ae;
    }
    .service__popup_item a {
        display: flex;
        padding: 15px 10px;
        background-color: #eeeeee;
    }
    .service__popup_item a:hover {
        color: #3f64ae;
    }
    .header__list li:nth-child(2):hover .service__popup_item {
        display: block;
    }
    .header__list li:nth-child(1):hover .service__popup_item {
        display: block;
    }
    .header__list li:nth-child(2):hover .service__popup {
        transform: translate(0px, 0px);
    }
    .header__list li:nth-child(1):hover .service__popup {
        transform: translate(0px, 0px);
    }
    .header__list li:nth-child(2):hover .service__popup_item:first-child {
        padding-top: 10px;
    }
    .header__list li:nth-child(1):hover .service__popup_item:first-child {
        padding-top: 10px;
    }
}
/* Slick.js ========================================================================================= */
.ges__slick .slider-navigation {
    z-index: 3;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(0px);
    margin-bottom: 12px;
}
.ges__slick .slider-navigation .nav-btn {
    width: 24px;
    height: 4px;
    background-color: #fff;
    cursor: pointer;
    transition: 0.3s ease;
    background: rgba(255, 255, 255, 0.24);
}
.ges__slick .slider-navigation .nav-btn:not(:last-child) {
    margin-right: 20px;
}
.ges__slick .slider-navigation .nav-btn:nth-child(2) {
    background-color: #fff;
}
.ges__slick .slider-navigation .nav-btn:hover {
    transform: scale(1.2);
}
.ges__slick .slick-list {
    overflow: hidden;
}
.ges__slick .slick-track {
    display: flex;
}
.ges__slick .ges__slide_item {
    padding-bottom: 24px;
}
.ges__slick .ges__slide_item a {
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    color: #bdbec0;
    padding-bottom: 24px;
}
.ges__slick .slick-current a {
    color: #1f1f1f;
    border-bottom: 3px solid #3f64ae;
    padding-bottom: 21px;
}
.ges__slick {
    position: relative;
    padding: 0px 45px 0px 45px;
    border-bottom: 1px solid #d9d9d9;
}
.ges__slick .slick-arrow:hover {
    color: #3f64ae;
}
.ges__slick .slick-arrow {
    position: absolute;
    top: 50%;
    margin: -29px 0px 0px 0px;
    font-size: 0;
    width: 32px;
    height: 32px;
    transition: 0.3s ease all;
}
.ges__slick .slick-arrow.slick-prev {
    left: 0;
    background: url(../img/svg/slick-arrow-left.svg) 0 0 / 100% no-repeat;
}
.ges__slick .slick-arrow.slick-prev:hover {
    background: url(../img/svg/slick-arrow-left-blue.svg) 0 0 / 100% no-repeat;
}
.ges__slick .slick-arrow.slick-next {
    right: 0;
    background: url(../img/svg/slick-arrow-right.svg) 0 0 / 100% no-repeat;
}
.ges__slick .slick-arrow.slick-next:hover {
    background: url(../img/svg/slick-arrow-right-blue.svg) 0 0 / 100% no-repeat;
}
/* ALL =============================================================================================== */
.lorem {
    line-height: 171%;
    color: #4d4d4d;
}
.title {
    font-weight: 700;
    font-size: 44px;
    line-height: 127%;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0px 2px 16px rgba(0, 0, 0, 0.32);
}
.subtitle {
    font-size: 20px;
    line-height: 150%;
    color: #ffffff;
    text-shadow: 0px 2px 16px rgba(0, 0, 0, 0.32);
}
.button {
    font-family: "Roboto";
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    color: #ffffff;
    border-radius: 1px;
    background-color: #3f64ae;
    padding: 16px 50px;
}
.buttons__desktop_box {
    position: absolute;
    top: 45%;
    right: 0;
    display: flex;
    flex-direction: column;
    padding-right: 15px;
}
.buttons__desktop_box a {
    background-color: #fff;
}
.buttons__desktop_box a:hover {
    background-color: rgb(187, 187, 187);
}
@media (max-width: 767px) {
    .title {
        font-size: 24px;
        line-height: 133%;
    }
    .subtitle {
        font-size: 14px;
        line-height: 143%;
    }
    .buttons__desktop_box {
        display: none;
    }
    .lorem {
        font-size: 12px;
        line-height: 160%;
    }
}
body.lock {
    overflow: hidden;
}
.title-bg {
    margin: 56px 0px 0px 0px;
    padding: 16px 0px 20px 0px;
    font-family: "Roboto";
    font-weight: 700;
    font-size: 38px;
    line-height: 100%;
    text-transform: uppercase;
    color: #1f1f1f;
    background-image: url(../img/svg/title-bg.svg);
    background-repeat: no-repeat;
    background-position-x: 77px;
}
.columns {
    margin: 36px 0px 80px 0px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}
.column:hover {
    box-shadow: 0px 20px 20px -6px rgba(0, 0, 0, 0.16);
}
.column {
    transition: 0.3s ease all;
    position: relative;
    border-radius: 3px;
    background-color: #fff;
    border: 1px solid #d9d9d9;
    display: flex;
    flex-direction: column;
}
.column_image img {
    width: 100%;
    height: 100%;
}
.column_title {
    padding: 32px 24px 16px 24px;
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    color: #000;
}
.column_text {
    padding: 0px 24px 72px 24px;
    font-family: "Open Sans";
    line-height: 171%;
    color: #4d4d4d;
    flex: 1 1 auto;
}
.column_button {
    display: block;
}
.column_button {
    position: absolute;
    bottom: 32px;
    left: 24px;
    display: flex;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    color: #3f64ae;
}
.column_button img {
    padding-left: 4px;
    transition: 0.3s ease all;
}
@media (min-width: 767px) {
    .column_button {
        position: absolute;
        bottom: 32px;
        left: 24px;
        display: flex;
        font-weight: 700;
        font-size: 16px;
        line-height: 100%;
        color: #3f64ae;
        display: none;
        transition: 0.3s ease all;
    }
    .column_button img {
        padding-left: 0px;
    }
    .column:hover .column_button {
        display: block;
    }
    .column_button:hover img {
        padding-left: 6px;
    }
}
@media (max-width: 767px) {
    .column_button img {
        padding-left: 3px;
    }
    .column:hover .column_button {
        display: block;
    }
    .column_button:hover img {
        padding-left: 6px;
    }
    .columns {
        margin: 24px 0px 36px 0px;
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .column_title {
        font-size: 14px;
    }
    .column_text {
        font-size: 12px;
        line-height: 167%;
    }
    .column_button {
        font-size: 12px;
    }
}
.columns-study {
    margin: 62px 0px 64px 0px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
}
.column-study {
    text-align: center;
}
.desktop__title {
    padding: 120px 0px 80px 0px;
    font-weight: 700;
    font-size: 44px;
    line-height: 127%;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0px 2px 16px rgba(0, 0, 0, 0.32);
}
.desktop__subtitle {
    font-size: 20px;
    line-height: 150%;
    color: #ffffff;
    text-shadow: 0px 2px 16px rgba(0, 0, 0, 0.32);
    padding-bottom: 222px;
    max-width: 470px;
    height: 300px;
}
@media (max-width: 767px) {
    .desktop__title {
        padding: 40px 0px 12px 0px;
        font-size: 24px;
        line-height: 133%;
    }
    .desktop__subtitle {
        padding-bottom: 160px;
        font-size: 14px;
        line-height: 143%;
        height: 200px;
    }
}
@media (max-width: 480px) {
    .desktop__subtitle {
        height: 150px;
    }
}
.column-study__title {
    padding: 24px 0px 16px 0px;
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    color: #1f1f1f;
}
.column-study__text {
    font-family: "Open Sans";
    line-height: 171%;
    color: #3f3f3f;
}
@media (max-width: 767px) {
    .columns-study {
        margin: 24px 0px 32px 0px;
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
.link-box {
    display: flex;
    align-items: center;
    padding-top: 48px;
}
.link-box a {
    display: flex;
    align-items: center;
    color: #3f64ae;
}
.link-box a img {
    padding-left: 5px;
    padding-right: 5px;
}
.h4 {
    font-weight: 500;
    font-size: 24px;
    line-height: 100%;
    color: #1f1f1f;
}
.h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    color: #1f1f1f;
}
.h5 {
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    color: #1f1f1f !important;
}
@media (max-width: 767px) {
    .h4 {
        font-size: 18px;
    }
    .h3 {
        font-size: 18px;
    }
    .h5 {
        font-size: 16px;
        color: #1f1f1f !important;
    }
    .link-box {
        padding-top: 20px;
    }
}
.lorem-box {
    position: relative;
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #4c4c4c;
    padding: 24px 0px;
    border-bottom: 1px solid #d9d9d9;
    border-top: 1px solid #d9d9d9;
}
.quote {
    position: absolute;
    top: -30px;
    left: 46%;
    background-color: #fff;
    padding: 0px 20px;
}
@media (max-width: 767px) {
    .quote {
        left: 44%;
    }
}
@media (max-width: 480px) {
    .quote {
        left: 36%;
    }
}
/* Main ============================================================================================== */
.main1 {
    position: relative;
    z-index: 1;
    background-image: url(../img/main-video-poster.jpg);
    background-color: #000;
    background-size: cover;
    background-position: center;
}
.main2 {
    position: relative;
    z-index: 1;
    background-image: url(../img/main-bg02.png);
    background-size: cover;
    background-position: center;
}
.main3 {
    position: relative;
    z-index: 1;
    background-image: url(../img/history2.png);
    background-size: cover;
    background-position: center;
}
.main__container {
    position: relative;
    z-index: 1;
    padding-bottom: 58px;
}
.main-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.swiper-button-prev {
}
.swiper__container {
    position: relative;
    margin-top: -65px;
}
.button-prev,
.button-next {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.64);
    border-radius: 3px;
    top: 86% !important;
    z-index: 1;
}
.button-prev:hover,
.button-next:hover {
    background: rgba(212, 212, 212, 0.64);
}
.swiper-button-prev {
    left: 100%;
    margin-left: -90px;
}
.swiper-pagination {
    bottom: 0px !important;
    z-index: 1;
}
.swiper-pagination-bullet {
    width: 24px;
    height: 4px;
    background: #fff;
    border-radius: 0%;
}
@media (max-width: 767px) {
    .button-prev,
    .button-next {
        display: none;
    }
    .swiper__container {
        margin-top: 0px;
    }
    .swiper-pagination {
        bottom: 16px !important;
    }
}
.swiper-left {
    display: none;
}

@media (min-width: 767px) {
    .main__title {
        font-weight: 700;
        font-size: 44px;
        line-height: 127%;
        text-transform: uppercase;
        color: #ffffff;
        text-shadow: 0px 2px 16px rgba(0, 0, 0, 0.32);
        padding: 110px 0px 225px 0px;
    }
    .swiper-pagination {
        display: inline-flex;
        justify-content: center;
    }
    .column-study__image {
        height: 56px;
        display: flex;
        justify-content: center;
        flex-direction: flex-end;
    }
}
.main__title {
    max-width: 470px;
}
.main__subtitle {
    max-width: 470px;
    padding: 0px 0px 44px 0px;
}
.arrow-left {
    padding-right: 16px;
}
.nav-dots {
    display: flex;
    height: 4px;
    width: 88px;
}
.nav-dots:not(:last-child) {
    padding-right: 8px;
}
.nav-dot {
    width: 10px;
    height: 4px;
    border-radius: 50%;
    background-color: #3f64ae;
}
.main__down_box {
    display: flex;
    justify-content: space-between;
    position: relative;
    align-items: center;
    padding-bottom: 44px;
    flex-wrap: wrap;
}
.main__button {
    margin-bottom: 30px;
    z-index: 1;
}
.main__button a {
    margin-bottom: 30px;
    z-index: 1;
}
.main__button:hover {
    background-color: #2e4d8c;
}
.buttons__box {
    position: absolute;
    top: 45%;
    right: 0;
    display: flex;
    flex-direction: column;
    padding: 0px 15px 0px 0px;
}
.button__box_phone {
    padding: 8px;
    background-color: #fff;
    border-radius: 3px;
    margin-bottom: 4px;
}
.button__box_mail {
    padding: 8px;
    background-color: #fff;
    border-radius: 3px;
}
@media (max-width: 767px) {
    .buttons__box {
        display: none;
    }
    .nav-arrows {
        display: none;
    }
    .main__down_box {
        flex-direction: column;
    }
    .main__button {
        margin-bottom: 76px;
    }
    .main__button a {
        margin-bottom: 76px;
    }
    .main__title {
        font-weight: 700;
        text-transform: uppercase;
        color: #ffffff;
        text-shadow: 0px 2px 16px rgba(0, 0, 0, 0.32);
        padding: 60px 0px 90px 0px;
        font-size: 24px;
        line-height: 133%;
    }
}
@media (max-width: 767px) {
    .main__subtitle {
        padding: 40px 0px 150px 0px;
    }
}
/* Service =========================================================================================== */
.service {
    margin: 87px 0px 0px 0px;
}
.service__title {
    background-position-x: 450px;
}
@media (max-width: 767px) {
    .service {
        margin: 40px 0px 0px 0px;
    }
    .service__title {
        background-position-x: 240px;
    }
}
/* Werde ============================================================================================= */
.werde {
    margin: 0px 0px 100px 0px;
}
.werde__title {
    background-position-x: 430px;
    list-style: none;
}
.werde__title a {
    transition: 0.2s ease all;
}
.werde__title a:hover {
    color: #3f64ae;
}
.werde__subtitle {
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    color: #1f1f1f;
}
.werde__button svg {
    padding-left: 4px;
}
.werde__button {
    width: 100%;
    display: flex;
    align-items: center;
    text-align: left;
    padding: 20px 16px;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    color: #3f64ae;
    border-radius: 1px;
    border: 1px solid #d9d9d9;
    background-color: transparent;
    transition: 0.3s ease all;
}
.werde__button:hover {
    background-color: #3f64ae;
    color: #fff;
    box-shadow: 0px 20px 20px -6px rgba(0, 0, 0, 0.16);
}
.werde__button svg {
    flex: 0 0 16px;
}
.werde__button:hover svg {
    fill: #ffffff;
}
.werde__button div {
    flex: 1 1 auto;
}
@media (max-width: 767px) {
    .werde__button {
        font-size: 12px;
        line-height: 133%;
        padding: 16px;
    }
    .werde__subtitle {
        font-size: 14px;
        line-height: 100%;
    }
    .werde__title {
        background-position-x: 230px;
    }
}
/* Map =========================================================================================== */
/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

.map {
    margin: 0px 0px 90px 0px;
}
html,
body {
    height: 100%;
}
.map__container {
    position: relative;
}
.map__subcontainer {
    background-color: #fff;
    padding: 8px;
    -webkit-box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}
.map__wrapper {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 999;
    background-color: #000;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.5);
}
.max__wrapper-box {
    width: 100%;
}
.map__wrapper_standorte {
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    color: #000;
}
.map__wrapper_button {
    color: #fff;
    font-weight: 700;
    background-color: #3f64ae;
    padding: 12px 50px;
    border-radius: 3px;
    margin-top: 24px;
}
#mapid {
    height: 100%;
    height: 792px !important;
    padding-bottom: 500px;
}

.popup-fixed {
    position: fixed;
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
    -webkit-transform: translateZ(0);
    -webkit-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    margin: 0;
    border-radius: 0;
}

@media screen and (max-width: 767px) {
    .popup-fixed {
        position: static !important;
        width: 100% !important;
    }
}

.popup-fixed .leaflet-popup-tip-container {
    display: none;
}

.popup-fixed .leaflet-popup-content-wrapper {
    border-radius: 0;
}

#map {
    -webkit-box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    padding: 5px;
    width: 100%;
    position: relative;
    -webkit-box-shadow: inset linear-gradient(180deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0) 100%);
    box-shadow: inset linear-gradient(180deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0) 100%);
    height: 992px !important;
}
.map__card > div {
    padding-left: 24px;
    padding-right: 30px;
}
.map__card .map__link {
    padding-left: 24px;
    padding-right: 30px;
}
.map__card {
    max-width: 470px;
    height: 100% !important;
    position: relative;
    display: -ms-grid;
    display: grid;
    margin-left: 0 !important;
    margin-top: 40px;
    z-index: 999;
}
.map__card_input {
    line-height: 100%;
    padding: 17px 0px;
    padding-left: 50px;
    background-image: url(../img/svg/search.svg);
    background-repeat: no-repeat;
    background-position-y: center;
    background-position-x: 16px;
}
#back {
    -webkit-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
    transition: 0.3s ease all;
}
.map__card_input::-webkit-input-placeholder {
    color: #c5c5c5;
}
.map__card_input::-moz-placeholder {
    color: #c5c5c5;
}
.map__card_input:-ms-input-placeholder {
    color: #c5c5c5;
}
.map__card_input::-ms-input-placeholder {
    color: #c5c5c5;
}
.map__card_input::placeholder {
    color: #c5c5c5;
}
.map__image {
    width: 100%;
    height: 100%;
    margin-top: 9px;
}

.map__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    color: #1f1f1f;
    padding: 25px 0px 16px 0px;
    background-color: #fff;
}
.map__phone {
    line-height: 100%;
    color: #3f3f3f;
    background-color: #fff;
}
.map__adress-box {
    padding: 12px 60px 19px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #fff;
}
.map__adress {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    line-height: 100%;
    color: #3f3f3f;
    background-color: #fff;
}
.map__close_box {
    position: absolute;
    top: -10px;
    left: 0;
    background-color: #fbfbfb;
    display: none;
}
.search__close {
    text-align: right;
    padding: 16px 25px 0px 0px;
}
.visible__input {
    padding: 14px 0px 14px 40px;
    font-size: 12px;
    line-height: 100%;
    background-image: url(../img/svg/search.svg);
    background-repeat: no-repeat;
    background-position-y: center;
    background-position-x: 12px;
    border: 1px solid #d9d9d9;
    border-radius: 3px;
    margin: 0px 10px 0px 10px;
    margin-bottom: 8px;
    margin-top: 16px;
}
.visible__input::-webkit-input-placeholder {
    color: #c5c5c5;
}
.visible__input::-moz-placeholder {
    color: #c5c5c5;
}
.visible__input:-ms-input-placeholder {
    color: #c5c5c5;
}
.visible__input::-ms-input-placeholder {
    color: #c5c5c5;
}
.visible__input::placeholder {
    color: #c5c5c5;
}
.map__weeks {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 8px 1fr 8px 1fr 8px 1fr 8px 1fr 8px 1fr 8px 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 8px;
    padding-right: 30px;
    padding-bottom: 24px;
    background-color: #fff;
}
.map__weeks_week {
    text-align: center;
    padding: 8px 0px 8px 0px;
    border-radius: 3px;
}
.week {
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    padding-bottom: 8px;
}
.map__weeks_week {
    background-color: #fff;
}
.map__weeks_week:nth-child(6),
.map__weeks_week:nth-child(7) {
    background-color: #3f64ae;
    color: #fff;
    border-bottom: none;
}
.map__weeks_week:nth-child(6) .to,
.map__weeks_week:nth-child(7) .to {
    border-bottom: none;
}

.from {
    padding-bottom: 4px;
}
.to {
    padding: 0px 8px 8px 8px;
    border-bottom: 1px solid #d9d9d9;
}
.lunch-from {
    padding-top: 16px;
    padding-bottom: 4px;
}
.map__text {
    padding-bottom: 24px;
    background-color: #fff;
}

.map__link {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 24px;
    color: #3f64ae;
    font-family: 'Roboto Condensed';
    font-size: 16px;
    font-weight: 700;
    line-height: 125%
}

.map__link-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out 0s;
}

.map__link:hover .map__link-icon{
    transform: translate(12px, 0);
}

.leaflet-left .leaflet-control {
    margin-left: 45px !important;
    display: none;
}
.leaflet-popup-close-button span {
    top: 20px;
    color: white;
}
.leaflet-touch .leaflet-control-geocoder-icon {
    height: 48px !important;
}
.leaflet-container a.leaflet-popup-close-button {
    top: 20px !important;
    right: 15px !important;
    display: none !important;
}
.leaflet-popup-close-button {
    font-size: 24px !important;
}
.leaflet-popup-tip-container {
    display: none;
}
.leaflet-popup-content {
    margin: 0 !important ;
    border-radius: 0px;
    width: calc(100vw - 30px) !important;
}
.leaflet-popup {
    border-radius: 0;
    margin-left: 40px;
    margin-top: 100px;
    width: 0px;
}
.leaflet-popup-content-wrapper {
    padding: 0 !important;
    border-radius: 0 !important;
}
.leaflet-bottom .leaflet-control {
    margin-bottom: 100px !important;
    margin-right: 50px !important;
}
.leaflet-control-attribution {
    display: none;
}
.map__card_back {
    display: none;
    background-color: #fff;
    font-weight: 700;
    line-height: 100%;
    text-transform: uppercase;
    color: #3f64ae;
}
@media (max-width: 767px) {
    .map__wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .map__close_box {
        display: block;
        width: 735px;
    }
    .visible__input {
        width: 700px;
    }
    .map__card {
        margin-left: 0 !important;
        margin-top: 0 !important;
        margin-top: -10px !important;
    }
    .leaflet-control-zoom {
        display: none;
    }
    #mapid {
        height: 615px !important;
    }
    .map__card > div {
        padding-left: 20px;
        padding-right: 26px;
    }
    .map__card > .map__link {
        padding-left: 20px;
        padding-right: 26px;
    }
    .map__card {
        max-width: 470px;
        height: 100% !important;
    }
    .map__card_back {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 17px 0px;
        margin-bottom: -15px;
        cursor: pointer;
        background-color: #fbfbfb;
    }
    .map__card_back img {
        padding-right: 5px;
    }
    .map__image {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        display: block !important;
        height: 180px !important;
    }
    .map__card_input {
        display: none;
    }
    .map__title {
        font-size: 16px;
        line-height: 16px;
        padding: 24px 0px 12px 0px;
        background-color: #fbfbfb;
    }
    .map__phone {
        font-size: 12px;
        line-height: 100%;
        background-color: #fbfbfb;
    }
    .map__adress-box {
        font-size: 12px;
        background-color: #fbfbfb;
    }
    .map__adress {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        line-height: 167%;
        color: #3f3f3f;
        background-color: #fbfbfb;
    }
    .leaflet-popup-content {
        width: 420px !important;
    }
    .leaflet-popup {
        margin-left: 0px;
        margin-top: 10px !important;
    }

    .wpcf7 form.sent .wpcf7-response-output {
        border-color: #3f64ae !important;
        margin-left: 0px !important;
        width: 50% !important;
    }

    .map__weeks {
        position: static;
        top: 380px;
        left: 0;
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 8px 1fr 8px 1fr 8px 1fr 8px 1fr 8px 1fr 8px 1fr;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
        gap: 8px;
        padding-right: 0px !important;
        padding-bottom: 0px !important;
        background-color: #fff;
        background-color: #fbfbfb;
    }
    .map__weeks_week {
        text-align: center;
        padding: 8px 0px 8px 0px;
        border-radius: 3px;
    }
    .week {
        font-weight: 700;
        font-size: 16px;
        line-height: 100%;
        padding-bottom: 8px;
    }
    .map__weeks_week:nth-child(6),
    .map__weeks_week:nth-child(7) {
        background-color: #3f64ae;
        color: #fff;
        border-bottom: none;
    }
    .map__weeks_week:nth-child(6) .to,
    .map__weeks_week:nth-child(7) .to {
        border-bottom: none;
    }

    .from {
        padding-bottom: 4px;
    }
    .to {
        padding: 0px 8px 8px 8px;
        border-bottom: 1px solid #d9d9d9;
    }
    .lunch-from {
        padding-top: 16px;
        padding-bottom: 4px;
    }
    .lunch-from::last-child {
        padding-top: 30px;
        padding-bottom: 4px;
    }
    .map__text {
        background-color: #fbfbfb;
        padding: 30px 26px 24px 20px !important;
        min-height: unset !important;
    }
}
@media (max-width: 480px) {
    #map {
        height: 400px;
    }
    .map__card {
        width: 100% !important;
    }
    .map__weeks {
        overflow-x: hidden;
        overflow-y: hidden;
    }
    .map__text {
        background-color: #fff;
    }
}
@media (max-width: 460px) {
    .leaflet-popup-content {
        width: 430px !important;
    }
}
@media (max-width: 455px) {
    .leaflet-popup-content {
        width: 425px !important;
    }
}
@media (max-width: 450px) {
    .leaflet-popup-content {
        width: 420px !important;
    }
    #mapid {
        height: 600px !important;
    }
}
@media (max-width: 445px) {
    .leaflet-popup-content {
        width: 415px !important;
    }
}
@media (max-width: 440px) {
    .leaflet-popup-content {
        width: 410px !important;
    }
    #mapid {
        height: 600px !important;
    }
    .map__weeks {
        top: 370px;
    }
}
@media (max-width: 435px) {
    .leaflet-popup-content {
        width: 405px !important;
    }
}
@media (max-width: 430px) {
    .leaflet-popup-content {
        width: 400px !important;
    }
    .map__weeks {
        top: 360px;
    }
}
@media (max-width: 425px) {
    .leaflet-popup-content {
        width: 395px !important;
    }
}
@media (max-width: 420px) {
    .leaflet-popup-content {
        width: 390px !important;
    }
}
@media (max-width: 415px) {
    .leaflet-popup-content {
        width: 385px !important;
    }
}
@media (max-width: 410px) {
    .leaflet-popup-content {
        width: 380px !important;
    }
}
@media (max-width: 405px) {
    .leaflet-popup-content {
        width: 375px !important;
    }
}
@media (max-width: 400px) {
    .leaflet-popup-content {
        width: 370px !important;
    }
    .map__weeks {
        top: 350px;
    }
}
@media (max-width: 395px) {
    .leaflet-popup-content {
        width: 365px !important;
    }
}
@media (max-width: 390px) {
    .leaflet-popup-content {
        width: 360px !important;
    }
}
@media (max-width: 385px) {
    .leaflet-popup-content {
        width: 355px !important;
    }
}
@media (max-width: 380px) {
    .leaflet-popup-content {
        width: 350px !important;
    }
    #mapid {
        height: 590px !important;
    }
}
@media (max-width: 375px) {
    .leaflet-popup-content {
        width: 345px !important;
    }
}
@media (max-width: 370px) {
    .leaflet-popup-content {
        width: 340px !important;
    }
    .map__weeks {
        top: 340px;
    }
}
@media (max-width: 365px) {
    .leaflet-popup-content {
        width: 335px !important;
    }
}
@media (max-width: 360px) {
    .leaflet-popup-content {
        width: 330px !important;
    }
}
@media (max-width: 355px) {
    .leaflet-popup-content {
        width: 325px !important;
    }
}
@media (max-width: 350px) {
    .leaflet-popup-content {
        width: 320px !important;
    }
    #mapid {
        height: 580px !important;
    }
    .map__weeks {
        top: 330px;
    }
}
@media (max-width: 345px) {
    .leaflet-popup-content {
        width: 315px !important;
    }
}
@media (max-width: 340px) {
    .leaflet-popup-content {
        width: 310px !important;
    }
    #mapid {
        height: 575px !important;
    }
    .map__weeks {
        top: 315px;
    }
}
@media (max-width: 335px) {
    .leaflet-popup-content {
        width: 305px !important;
    }
}
@media (max-width: 330px) {
    .leaflet-popup-content {
        width: 300px !important;
    }
    #mapid {
        height: 570px !important;
    }
}
@media (max-width: 325px) {
    .leaflet-popup-content {
        width: 295px !important;
    }
}
@media (max-width: 320px) {
    .leaflet-popup-content {
        width: 290px !important;
    }
}
@media (max-width: 315px) {
    .leaflet-popup-content {
        width: 285px !important;
    }
}
@media (max-width: 310px) {
    .leaflet-popup-content {
        width: 280px !important;
    }
}
@media (max-width: 430px) {
    .map__weeks {
        padding-left: 0px !important;
        width: 100% !important;
        overflow-x: scroll;
    }
}
.leaflet-control-geocoder-expanded {
    width: 470px;
}
#mapid {
    height: 100%;
}
.popup-fixed {
    position: fixed;
    /* top: auto; */
    bottom: 0 !important;
    left: 0 !important;
    /* right: 0 !important; */
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
    margin: 0;
    border-radius: 0;
}
.popup-fixed .leaflet-popup-tip-container {
    display: none;
}
.popup-fixed .leaflet-popup-content-wrapper {
    border-radius: 0;
}
@media (max-width: 757px) {
    .map__close_box {
        width: 725px;
    }
    .visible__input {
        width: 690px;
    }
}
@media (max-width: 747px) {
    .map__close_box {
        width: 715px;
    }
    .visible__input {
        width: 680px;
    }
}
@media (max-width: 737px) {
    .map__close_box {
        width: 705px;
    }
    .visible__input {
        width: 670px;
    }
}
@media (max-width: 727px) {
    .map__close_box {
        width: 695px;
    }
    .visible__input {
        width: 660px;
    }
}
@media (max-width: 717px) {
    .map__close_box {
        width: 685px;
    }
    .visible__input {
        width: 650px;
    }
}
@media (max-width: 707px) {
    .map__close_box {
        width: 675px;
    }
    .visible__input {
        width: 640px;
    }
}
@media (max-width: 697px) {
    .map__close_box {
        width: 665px;
    }
    .visible__input {
        width: 630px;
    }
}
@media (max-width: 687px) {
    .map__close_box {
        width: 655px;
    }
    .visible__input {
        width: 620px;
    }
}
@media (max-width: 677px) {
    .map__close_box {
        width: 645px;
    }
    .visible__input {
        width: 610px;
    }
}
@media (max-width: 667px) {
    .map__close_box {
        width: 635px;
    }
    .visible__input {
        width: 600px;
    }
}
@media (max-width: 657px) {
    .map__close_box {
        width: 625px;
    }
    .visible__input {
        width: 590px;
    }
}
@media (max-width: 647px) {
    .map__close_box {
        width: 615px;
    }
    .visible__input {
        width: 580px;
    }
}
@media (max-width: 637px) {
    .map__close_box {
        width: 605px;
    }
    .visible__input {
        width: 570px;
    }
}
@media (max-width: 627px) {
    .map__close_box {
        width: 595px;
    }
    .visible__input {
        width: 560px;
    }
}
@media (max-width: 617px) {
    .map__close_box {
        width: 585px;
    }
    .visible__input {
        width: 550px;
    }
}
@media (max-width: 607px) {
    .map__close_box {
        width: 575px;
    }
    .visible__input {
        width: 540px;
    }
}
@media (max-width: 597px) {
    .map__close_box {
        width: 565px;
    }
    .visible__input {
        width: 530px;
    }
}
@media (max-width: 587px) {
    .map__close_box {
        width: 555px;
    }
    .visible__input {
        width: 520px;
    }
}
@media (max-width: 577px) {
    .map__close_box {
        width: 545px;
    }
    .visible__input {
        width: 510px;
    }
}
@media (max-width: 567px) {
    .map__close_box {
        width: 535px;
    }
    .visible__input {
        width: 500px;
    }
}
@media (max-width: 557px) {
    .map__close_box {
        width: 525px;
    }
    .visible__input {
        width: 490px;
    }
}
@media (max-width: 547px) {
    .map__close_box {
        width: 515px;
    }
    .visible__input {
        width: 480px;
    }
}
@media (max-width: 537px) {
    .map__close_box {
        width: 505px;
    }
    .visible__input {
        width: 470px;
    }
}
@media (max-width: 527px) {
    .map__close_box {
        width: 495px;
    }
    .visible__input {
        width: 460px;
    }
}
@media (max-width: 517px) {
    .map__close_box {
        width: 485px;
    }
    .visible__input {
        width: 450px;
    }
}
@media (max-width: 507px) {
    .map__close_box {
        width: 475px;
    }
    .visible__input {
        width: 440px;
    }
}
@media (max-width: 497px) {
    .map__close_box {
        width: 465px;
    }
    .visible__input {
        width: 430px;
    }
}
@media (max-width: 487px) {
    .map__close_box {
        width: 455px;
    }
    .visible__input {
        width: 420px;
    }
}
@media (max-width: 477px) {
    .map__close_box {
        width: 445px;
    }
    .visible__input {
        width: 410px;
    }
}
@media (max-width: 467px) {
    .map__close_box {
        width: 435px;
    }
    .visible__input {
        width: 400px;
    }
}
@media (max-width: 457px) {
    .map__close_box {
        width: 425px;
    }
    .visible__input {
        width: 390px;
    }
}
@media (max-width: 447px) {
    .map__close_box {
        width: 415px;
    }
    .visible__input {
        width: 380px;
    }
}
@media (max-width: 437px) {
    .map__close_box {
        width: 405px;
    }
    .visible__input {
        width: 370px;
    }
}
@media (max-width: 427px) {
    .map__close_box {
        width: 395px;
    }
    .visible__input {
        width: 360px;
    }
}
@media (max-width: 417px) {
    .map__close_box {
        width: 385px;
    }
    .visible__input {
        width: 350px;
    }
}
@media (max-width: 407px) {
    .map__close_box {
        width: 375px;
    }
    .visible__input {
        width: 340px;
    }
    .map__image {
        width: 100%;
    }
}
@media (max-width: 397px) {
    .map__close_box {
        width: 365px;
    }
    .visible__input {
        width: 330px;
    }
    .map__image {
        width: 100%;
    }
}
@media (max-width: 387px) {
    .map__close_box {
        width: 355px;
    }
    .visible__input {
        width: 320px;
    }
    .map__image {
        width: 100%;
    }
}
@media (max-width: 377px) {
    .map__close_box {
        width: 345px;
    }
    .visible__input {
        width: 310px;
    }
    .map__image {
        width: 100%;
    }
}
@media (max-width: 367px) {
    .map__close_box {
        width: 335px;
    }
    .visible__input {
        width: 300px;
    }
    .map__image {
        width: 100%;
    }
}
@media (max-width: 357px) {
    .map__close_box {
        width: 325px;
    }
    .visible__input {
        width: 290px;
    }
    .map__image {
        width: 100%;
    }
}
@media (max-width: 347px) {
    .map__close_box {
        width: 315px;
    }
    .visible__input {
        width: 280px;
    }
    .map__image {
        width: 100%;
    }
}
@media (max-width: 337px) {
    .map__close_box {
        width: 305px;
    }
    .visible__input {
        width: 270px;
    }
    .map__image {
        width: 100%;
    }
}
@media (max-width: 327px) {
    .map__close_box {
        width: 295px;
    }
    .visible__input {
        width: 260px;
    }
    .map__image {
        width: 100%;
    }
}
@media (max-width: 317px) {
    .map__close_box {
        width: 285px;
    }
    .visible__input {
        width: 250px;
    }
    .map__image {
        width: 100%;
    }
}

/* Footer ========================================================================================== */
.footer {
    margin-bottom: 88px;
}
.footer__columns {
    display: flex;
}
.footer__column_logo {
    flex: 0 1 25%;
    padding-right: 30px;
}
.footer__column_time {
    line-height: 157%;
    color: #757575;
    padding: 24px 0px;
}
.footer__colum_address {
    font-weight: 500;
    line-height: 114%;
    color: #1f1f1f;
    display: flex;
    padding-bottom: 18px;
}
.footer__column_phone {
    font-weight: 500;
    line-height: 114%;
    color: #1f1f1f;
    display: flex;
    align-items: center;
    padding-bottom: 18px;
}
.footer__column_mail {
    font-weight: 500;
    line-height: 114%;
    color: #1f1f1f;
    display: flex;
    align-items: center;
    padding-bottom: 24px;
}
.footer__colum_address img,
.footer__column_phone img,
.footer__column_mail img {
    padding-right: 4px;
}
.footer__social_list {
    display: flex;
    align-items: center;
    padding-bottom: 24px;
}
.footer__social_item:not(:last-child) {
    margin-right: 16px;
}
.footer__copyright {
    font-size: 12px;
    line-height: 150%;
    color: #757575;
}
.footer__input {
    display: none;
    width: 100%;
    padding-bottom: 24px;
    border-bottom: 1px solid #d9d9d9;
    font-size: 22px;
    line-height: 109%;
    padding-left: 36px;
    background-image: url(../img/svg/search-big.svg);
    background-repeat: no-repeat;
}
.footer__input::placeholder {
    color: #c5c5c5;
}
.footer__column_links {
    flex: 0 1 75%;
}
.footer__links {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    padding-top: 46px;
}
.footer__link {
    line-height: 114%;
    color: #757575;
    padding-bottom: 16px;
}
.footer__link a {
    transition: 0.2s ease all;
}
.footer__link a:hover {
    color: #3f64ae;
}
.footer__link-big {
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    color: #1f1f1f;
    padding-bottom: 24px;
}
.footer_link-box:nth-child(1) .footer__link:nth-child(3) {
    padding-bottom: 32px;
}
.footer__column_logo a {
    transition: 0.2s ease all;
}
.footer__column_logo a:hover {
    color: #3f64ae;
}
.footer__impressum {
    display: none;
}
@media (max-width: 767px) {
    .footer {
        margin-bottom: 20px;
    }
    .footer__columns {
        flex-wrap: wrap;
    }
    .footer__column_links {
        display: block;
        flex: 1 1 100%;
        width: 100%;
        order: -1;
        margin-bottom: 24px;
        padding-bottom: 24px;
    }
    .footer__column_links .footer__input,
    .footer__links .footer_link-box:not(.google) {
        display: none;
    }
    .footer__links {
        display: flex;
        justify-content: center;
        padding-top: 0;
        padding-bottom: 0;
    }
    .footer__column_logo {
        flex: 1 1 auto;
        order: 1;
        padding-right: 0;
    }
    .footer__impressum {
        padding: 24px 0;
        border-top: 1px solid #d9d9d9;
        display: block;
        font-weight: 500;
        font-size: 14px;
        line-height: 100%;
        color: #1f1f1f;
        text-transform: uppercase;
    }
    .title-bg {
        font-size: 20px;
        line-height: 100%;
        background-image: url(../img/svg/title-bg-767px.svg);
        background-position-y: center;
        margin-top: 40px;
    }
}
/* HISTORY =====================================================================================================*/
/* DESKTOP =====================================================================================================*/
.desktop {
    background-image: url(../img/history.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.desktop__container {
    position: relative;
}
.desktop__box_phone {
    border-radius: 3px;
    margin-bottom: 5px;
    padding: 8px;
}
.desktop__box_mail {
    border-radius: 3px;
    padding: 8px;
}
/* GES ================================================================================================= */

.ges__title {
    background-position-x: 160px;
}
.ges__subtitle {
    padding-top: 30px;
    padding-bottom: 24px;
}
/*.ges__text {
  padding-bottom: 48px;
}*/
/*.ges__uber {
  padding: 56px 0px 24px 0px;
}*/
/*.ges__lorem {
  padding-bottom: 32px;
}*/

.ges__image img {
    height: 100%;
    width: 100%;
}
.ges__image {
    padding-bottom: 40px;
    margin-top: 30px;
}
.ges__h5 {
    color: #1f1f1f;
    padding-bottom: 16px;
}
.ges__h5_lorem {
    padding-bottom: 88px;
}
@media (max-width: 767px) {
    .ges__title {
        background-image: url(../img/svg/title-bg-767px.svg);
        background-position-x: 90px;
    }
    .ges__subtitle {
        padding-top: 16px;
        padding-bottom: 16px;
    }
    /*.ges__uber {
    padding: 30px 0px 16px 0px;
  }*/
    /* .ges__lorem {
    padding-bottom: 20px;
  }*/
    /*.ges__text {
    padding-bottom: 30px;
  }*/
    .ges__image {
        padding-bottom: 20px;
    }
    .ges__h5 {
        padding-bottom: 14px;
    }
    .ges__h5_lorem {
        padding-bottom: 40px;
    }
}
/* Management ============================================================================== */
.manage {
    background-image: url(../img/manage-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.manage__container {
    position: relative;
}
.management__title {
    background-image: none;
}
.management__image {
    display: flex;
    align-items: center;
    flex-direction: column;
}
.management__img {
    position: relative;
}
.management__bg {
    position: absolute;
    top: -10px;
    left: -98px;
}
.management__image_title {
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    color: #1f1f1f;
    padding-bottom: 8px;
}
.management__image_subtitle {
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    color: #bdbec0;
}
.management_lorem {
    margin-top: 40px;
}
.management__feedback {
    padding-top: 65px;
    padding-bottom: 88px;
}

/* .feedback__box {
  display: flex;
} */
.feedback__box-1 {
    display: flex;
    display: none;
}
.feedback__box {
    display: none;
}
.management_feedback_face {
    flex: 0 0 88px;
    padding-right: 24px;
}
.feedback__posititon {
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    color: #bdbec0;
    padding-top: 30px;
}
.feedback__name {
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    color: #1f1f1f;
    padding: 4px 0px 16px 0px;
}
.feedback__text {
    padding-bottom: 16px;
}
.faq {
    cursor: pointer;
}
.question {
    display: flex;
    align-items: center;
}
.question h3 {
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    color: #3f64ae;
    border-bottom: 2px dotted #3f64ae;
    margin-right: 5px;
}
.answer p {
    padding-top: 16px;
    margin-bottom: 50px;
}
.answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq.active .answer {
    max-height: 1000px;
}
.faq.active img {
    transform: rotate(180deg);
}
.faq img {
    transition: 0.3s ease-in all;
}
.feedback__box:not(:last-child) {
    margin-bottom: 45px;
}
@media (max-width: 767px) {
    .management__image_title {
        font-size: 18px;
    }
    .management__image_subtitle {
        font-size: 14px;
    }
    .feedback__box {
        flex-direction: column;
    }
    .feedback__posititon {
        padding-top: 20px;
    }
}
/* Versicherungen ==================================================================================== */
.ver {
    background-image: url(../img/versicherungen-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.ver__container {
    position: relative;
}
/* Des =================================================================================================== */
.des__h3 {
    padding-top: 72px;
}
.des__lorem {
    padding-top: 24px;
    padding-bottom: 72px;
    line-height: 171%;
    color: #4d4d4d;
}
.des__title {
    background-position-x: 918px;
}
.des__column_text {
    padding-bottom: 24px;
}
.des__button_box {
    padding: 24px 24px 32px 24px;
    display: flex;
    align-items: center;
}
.des__button_1 {
    flex: 1 1 auto;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    border-radius: 1px;
    padding: 16px 0px;
}
.des__button_1:hover {
    background-color: #2e4d8c;
}
.popup-versich-button {
    flex: 1 1 auto;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    border-radius: 1px;
    padding: 16px 0px;
    width: 100%;
}
.popup-finan-button {
    flex: 1 1 auto;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    border-radius: 1px;
    padding: 16px 0px;
    width: 100%;
}
.des__button_2 {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    margin: 0 auto;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    color: #3f64ae;
    border-radius: 1px;
}
.des__button_2 img {
    transition: 0.3s ease all;
    padding-left: 5px;
}
.des__button_2:hover img {
    padding-left: 10px;
}

@media (max-width: 767px) {
    .des__h3 {
        padding-top: 30px;
    }
    .des__lorem {
        padding-top: 24px;
        padding-bottom: 30px;
    }
    .des__title {
        background-position-x: 487px;
    }
}
/* So ========================================================================================= */
.so__title {
    background-image: none;
    padding-top: 20px;
}
.so__columns {
    padding-top: 40px;
    padding-bottom: 70px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    align-items: center;
}
.so__column {
    text-align: center;
}
.so__column img {
    padding-bottom: 20px;
    width: 50%;
    height: 50%;
}
.so-arrow {
    text-align: center;
}
.so__column_title {
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    color: #000000;
    padding-bottom: 16px;
}
.so__column_text {
    line-height: 171%;
    color: #4d4d4d;
    padding-top: 16px;
    border-top: 2px solid #c4c4c4;
}
@media (max-width: 992px) {
    .so__columns {
        gap: 0px;
    }
    .so__column img {
        width: 30%;
        height: 30%;
    }
}
@media (max-width: 480px) {
    .so__column_title {
        font-weight: 700;
        font-size: 20px;
        line-height: 100%;
        color: #000000;
        padding-bottom: 16px;
    }
}
@media (max-width: 767px) {
    .so-arrow {
        transform: rotate(90deg);
        margin: 15px 0px;
    }
    .so__columns {
        grid-template-columns: 1fr;
        gap: 0px;
        padding-bottom: 40px;
    }
    .so__column_title {
        padding-bottom: 14px;
    }
}
/* Verteile ======================================================================================== */
.vorteile {
    margin-bottom: 70px;
}
.vorteile__title {
    background-position-x: 120px;
    margin-bottom: 40px;
}
.vorteile__item {
    padding-left: 24px;
    font-weight: 500;
    font-size: 20px;
    line-height: 160%;
    color: #1f1f1f;
    position: relative;
}
.vorteile__item:not(:last-child) {
    padding-bottom: 32px;
}
.vorteile__item::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #3f64ae;
    display: inline-block;
    transform: rotate(-45deg);
    position: absolute;
    left: 0;
    top: 13px;
}
@media (max-width: 767px) {
    .vorteile__title {
        background-position-x: 70px;
        margin-bottom: 30px;
    }
    .vorteile__item {
        padding-left: 24px;
        font-weight: 500;
        font-size: 18px;
        line-height: 140%;
        color: #1f1f1f;
        position: relative;
    }
}
/* Haufig ================================================================================= */
.haufig {
    margin-bottom: 88px;
}
.haufig__title {
    background-position-x: 440px;
    margin-bottom: 37px;
}
.haufig__faq {
    display: flex;
    cursor: pointer;
}
.haufig__faq:not(:last-child) {
    margin-bottom: 40px;
}
.haufig__faq_num {
    flex: 0 0 24px;
    padding-right: 12px;
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    color: #bdbec0;
    transition: 0.3s ease all;
}
.faq__question {
    display: flex;
}
.faq__question h3 {
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    color: #1f1f1f;
    border-bottom: 2px dotted #1f1f1f;
    padding-bottom: 14px;
    transition: 0.3s ease all;
}
.faq__question svg {
    flex: 0 0 24px;
    margin-left: 10px;
    transition: 0.3s ease all;
}
.faq__answer {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #4c4c4c;
    overflow: hidden;
    transition: max-height 0.3s ease;
    max-height: 0;
    transition: 0.3s ease all;
}
.haufig__faq.active .faq__answer {
    max-height: 500px;
    margin-top: 24px;
}
.haufig__faq.active .haufig__faq_num {
    color: #3f64ae;
}
.haufig__faq.active .faq__question h3 {
    color: #3f64ae;
    border-bottom: 2px dotted #3f64ae;
}
.haufig__faq.active .faq__question svg {
    transform: rotate(180deg);
    fill: #3f64ae;
}
@media (max-width: 767px) {
    .haufig {
        margin-bottom: 40px;
    }
    .haufig__title {
        background-position-x: 240px;
        margin-bottom: 30px;
    }
    .faq__question h3 {
        font-size: 18px;
    }
}
/* Immobilien =============================================================================== */
.immobilien {
    background-image: url(../img/immobilien-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.immobilien__container {
    position: relative;
}
/* Houses =========================================================================================== */
.houses {
    margin-bottom: 72px;
}
.houses__title {
    padding-top: 72px;
    padding-bottom: 24px;
}
.houses__paragraph {
    line-height: 171%;
    color: #4d4d4d;
}
@media (max-width: 767px) {
    .houses__title {
        padding-top: 35px;
        padding-bottom: 14px;
    }
    .houses {
        margin-bottom: 35px;
    }
}
/* House ====================================================================================== */
.house {
    margin-bottom: 88px;
}
.house__title {
    margin-bottom: 40px;
}
.house__columns {
    display: flex;
}
.house__item {
    position: relative;
}
.slick-active .house__reservoir-box {
    display: none;
    position: absolute;
    top: 40px;
    right: -40%;
    z-index: 2;
    background-color: red;
    color: #fff;
    width: 100%;
    text-align: center;
    transform: rotate(40deg);
    padding: 3px 0px;
    overflow: hidden;
    z-index: 0;
}
@media (max-width: 400px) {
    .slick-active .house__reservoir-box {
        top: 30px;
        right: -40%;
    }
}
.house__columns:not(:last-child) {
    margin-bottom: 32px;
}
.house__slick {
    flex: 0 1 470px;
    min-width: 0;
    position: relative;
}
.house__slick .slick-track {
    display: flex;
}
.house__slick .slick-list {
    overflow: hidden;
}
.house__slick .slick-arrow {
    position: absolute;
    top: 50%;
    margin: -20px 16px 0px 16px;
    font-size: 0;
    width: 48px;
    height: 48px;
}
.house__slick .slick-arrow.slick-arrow.slick-prev {
    left: 0;
    z-index: 1;
    background: url(../img/svg/black-arrow-left.svg) 0 0 / 100% no-repeat;
}
.house__slick .slick-arrow.slick-arrow.slick-next {
    right: 0;
    background: url(../img/svg/black-arrow-right.svg) 0 0 / 100% no-repeat;
}
.house__slick .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
}
.house__slick .slick-dots li {
    margin: 0px 8px;
    margin-top: -70px;
    z-index: 1;
}
.house__slick .slick-dots button {
    font-size: 0;
    height: 4px;
    width: 24px;
    background: rgba(255, 255, 255, 0.48);
}
.house__slick .slick-dots li.slick-active button {
    background: #ffffff;
}
.house__slick img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.house__description {
    flex: 1 1 auto;
    border: 3px solid #d9d9d9;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    padding: 32px 30px;
    display: flex;
    flex-direction: column;
    background-color: #fff;
}
.descr-2 {
    flex: 1 1 auto;
}
.descr__title {
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    color: #1f1f1f;
}
.descr__price {
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    color: #3f64ae;
    padding: 12px 0px 14px 0px;
}
.descr__location {
    display: flex;
    align-items: center;
    line-height: 114%;
    color: #4d4d4d;
    padding-bottom: 26px;
}
.descr__columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.descr__column_square {
    display: flex;
    line-height: 114%;
    color: #4d4d4d;
}
.descr__column_square:not(:last-child) {
    padding-bottom: 16px;
}
.descr__column_square h5 {
    flex: 1 1 auto;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    color: #bdbec0;
}
.descr__button {
    border-radius: 3px;
}
.house__button {
    text-align: center;
    margin-top: 60px;
}
.house__button a {
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    color: #3f64ae;
    border-bottom: 3px dotted;
    display: none;
}
@media (max-width: 1062px) {
    .house {
        margin-bottom: 40px;
    }
    .house__title {
        margin-bottom: 25px;
    }
    .descr__columns {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .house__columns {
        flex-direction: column;
    }
    .descr__button {
        border-radius: 3px;
        margin-top: 15px;
    }
    .house__columns:not(:last-child) {
        margin-bottom: 25px;
    }
    .house__button {
        margin-top: 40px;
    }
}
@media (max-width: 480px) {
    .house__slick {
        flex: 1 1 auto;
        min-width: 0;
        position: relative;
    }
    .house__columns:not(:last-child) {
        margin-bottom: 16px;
    }
    .house__button {
        margin-top: 20px;
    }
}
/* Finanzierung ==================================================================================== */
.finan {
    background-image: url(../img/finanzierung-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.finan__container {
    position: relative;
}
.finanzierung__h3 {
    font-weight: 500;
    font-size: 24px;
    line-height: 100%;
    color: #1f1f1f;
    padding: 72px 0px 24px 0px;
}
.finanzierung__lorem {
    line-height: 171%;
    color: #4d4d4d;
}
.konnen {
    margin-top: 92px;
}
.konnen__title {
    background-position-y: bottom;
    background-position-x: 240px;
}
@media (max-width: 767px) {
    .finanzierung__h3 {
        font-size: 20px;
        padding: 36px 0px 14px 0px;
    }
    .konnen {
        margin-top: 40px;
    }
    .konnen__title {
        background-position-y: bottom;
        background-position-x: 70px;
    }
}
/* Standorte ===================================================================================== */
.standorte {
    background-image: url(../img/standorte-bg.png);
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
}
.standorte__container {
    position: relative;
}
.schrift-h4 {
    padding-bottom: 130px;
}
.schrift-h4__title {
    padding: 72px 0px 24px 0px;
}
.schrift-h4__subtitle {
    line-height: 171%;
    color: #4d4d4d;
}
.karta {
    margin-bottom: 88px;
}
.karta__title {
    background-position-x: 540px;
    margin-bottom: 40px;
}
@media (max-width: 767px) {
    .schrift-h4__title {
        padding: 36px 0px 14px 0px;
    }
    .schrift-h4 {
        padding-bottom: 50px;
    }
    .karta__title {
        background-position-x: 289px;
        margin-bottom: 20px;
    }
    .karta {
        margin-bottom: 40px;
    }
}
/* Karriere ======================================================================================== */
.karriere {
    background-image: url(../img/karriere-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.karriere__container {
    position: relative;
}
.karyera__quote {
    margin: 72px 0px 72px 0px;
}
.karyera-video {
    position: relative;
}
.video__play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    cursor: pointer;
    margin-top: -35px;
    margin-left: -45px;
}
.video__play-button.active {
    display: none;
}
.video__play-button::marker {
    margin: 0;
}
.karyera-video video {
    width: 100%;
    height: 100%;
}
.karyera-video__title {
    margin-bottom: 40px;
    background-position-x: 120px;
}
.warum__title {
    background-image: none;
    font-weight: 700;
    font-size: 35px;
    line-height: 100%;
    color: #1f1f1f;
}
@media (max-width: 767px) {
    .karyera__quote {
        margin: 36px 0px 36px 0px;
    }
    .karyera-video__title {
        margin-bottom: 20px;
        background-position-x: 70px;
    }
}
/* Jet =================================================================================== */
.jet {
    margin-bottom: 88px;
}
.jet__title {
    background-position-x: 250px;
}
.form {
    max-width: 840px;
    position: relative;
}
.form-row {
    display: grid;
    grid-template-columns: minmax(300px, 470px) minmax(300px, 340px);
    gap: 30px;
    margin-bottom: 24px;
}
.form-column label span {
    color: red;
}
.wpcf7-acceptance .wpcf7-list-item {
    margin: 0;
}
.wpcf7-acceptance .wpcf7-list-item label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}
.wpcf7-acceptance .wpcf7-list-item-label {
    line-height: 114%;
    color: #4d4d4d;
}
.wpcf7-acceptance .wpcf7-list-item-label a {
    color: #3f64ae;
}
.wpcf7-acceptance input[type="checkbox"] {
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
    margin: 0;
}
.wpcf7-form input.wpcf7-submit,
.wpcf7-form .wpcf7-submit {
    margin-top: 24px;
}
.form-column input {
    width: 100%;
    padding: 14px 10px;
    border-radius: 3px;
    border: 1px solid #d9d9d9;
    margin-top: 12px;
}
#file[type="file"] {
    display: none;
}
.file__label {
    display: flex;
    align-items: center;
    width: 196px;
    line-height: 114%;
    color: #4d4d4d;
    border: 1px solid #d9d9d9;
    border-radius: 3px;
    padding: 6px 12px;
    cursor: pointer;
}
.file__label img {
    padding-right: 6px;
}
.form-checkbox-box {
    display: flex;
    align-items: center;
    margin-top: 24px;
    margin-right: 10px;
}
#form-checkbox-label {
    margin-bottom: 1px;
}
.form-checkbox-label {
    line-height: 114%;
    color: #4d4d4d;
    padding-left: 16px;
}
.form-checkbox-label span a {
    color: #3f64ae;
}
.form-button {
    border-radius: 3px;
    width: 196px;
    margin-top: 30px;
}
@media (max-width: 767px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 24px;
    }
    #textarea {
        padding-bottom: 70px;
    }
    .jet {
        margin-bottom: 40px;
    }
    .jet__title {
        background-position-x: 140px;
    }
}
/* Kontakt ====================================================================================== */
.kontakt {
    margin-bottom: 56px;
}
.kontakt__title {
    background-position-x: 110px;
}
.kontakt__link:not(:last-child) {
    padding-bottom: 26px;
}
.map__columns {
    display: grid;
    grid-template-columns: minmax(100px, 500px) minmax(100px, 770px);
    gap: 30px;
    margin-top: 40px;
}
.kontakt__column_title {
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    color: #1f1f1f;
    margin-bottom: 12px;
    margin-top: 24px;
}
.kontakt__column_title:first-child {
    margin-top: 56px;
}
.kontakt__column_text {
    line-height: 171%;
    color: #4d4d4d;
}
.kontakt__column_text:first-child {
    color: #757575;
}
.map__column:nth-child(2) {
    border: 6px solid #fff;
    -webkit-box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}
.kontakt__map {
    max-height: 480px;
}
.kontakt__map .leaflet-control-geocoder {
    display: none;
}
@media (max-width: 767px) {
    .map__columns {
        gap: 20px;
        margin-top: 20px;
        grid-template-columns: 1fr;
    }
    .kontakt__title {
        background-position-x: 60px;
    }
    .kontakt {
        margin-bottom: 30px;
    }
    .kontaktformular {
        margin-bottom: 40px;
    }
}
/* Kontakformular =========================================================================== */
.kontaktformular {
    margin-bottom: 88px;
}
.kontaktformular__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    color: #1f1f1f;
    background-image: none;
}
/* Cookies ============================================================================================ */
.cookies__subcontainer {
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: #fff;
    padding: 15px 15px;
    z-index: 1;
    width: 100%;
}
.cookies__subcontainer.hide {
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease all;
}
.cookies__text {
    padding-bottom: 16px;
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    color: #1f1f1f;
}
.cookies__buttons {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
}
.cookies__accept {
    border-radius: 3px;
    padding: 8px 23px !important;
}
.cookies__accept:hover {
    background-color: #2e4d8c;
}
.cookies__refuse {
    border-radius: 3px;
    background-color: transparent;
    border: 1px solid #3f64ae;
    color: #3f64ae;
    padding: 8px 23px;
    margin: 0px 24px;
}
.cookies__buttons a {
    color: #3f64ae;
}
@media (max-width: 600px) {
    .cookies__buttons {
    }
    .cookies__buttons button {
        padding: 8px 23px;
    }
    .cookies__text {
        font-size: 16px;
        line-height: 130%;
    }
}
@media (min-width: 1300px) {
    .cookies {
        max-width: 90%;
        margin: 0 auto;
    }
}
@media (min-width: 1400px) {
    .cookies {
        max-width: 75%;
        margin: 0 auto;
    }
}
/* Popup Contacts ============================================================================= */
.popup {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #fff;
    top: 0;
    left: 0;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease all;
    overflow-y: auto;
    overflow-x: hidden;
}
.popup.active {
    opacity: 1;
    visibility: visible;
}
.popup-finan {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #fff;
    top: 0;
    left: 0;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease all;
    overflow-y: auto;
    overflow-x: hidden;
}
.popup-finan.active {
    opacity: 1;
    visibility: visible;
}
.popup-versich {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #fff;
    top: 0;
    left: 0;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease all;
    overflow-y: auto;
    overflow-x: hidden;
}
.popup-versich.active {
    opacity: 1;
    visibility: visible;
}
.popup-immob {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #fff;
    top: 0;
    left: 0;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease all;
    overflow-y: auto;
    overflow-x: hidden;
}
.popup-immob.active {
    opacity: 1;
    visibility: visible;
}
.popup-immob-button {
    margin-top: 30px;
}
.popup__body {
    min-height: 100%;
}
.popup__content {
    background-color: #fff;
}
.popup__container {
}
.popup__columns {
    display: flex;
}
.popup__forms {
    flex: 1 1 auto;
    padding-right: 30px;
    border-right: 1px solid #d9d9d9;
    padding-top: 45px;
}
.kontaktformular__title {
}
.popup__contact {
    flex: 0 0 400px;
    padding-left: 30px;
    padding-top: 45px;
}
.popup__contact_time {
    font-weight: 600;
    line-height: 143%;
    color: #4d4d4d;
    padding: 48px 0px 12px 0px;
}
.popup__contact_phone {
    display: flex;
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    color: #000000;
    padding-bottom: 76px;
}
.popup__phone_button a {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 16px;
    line-height: 112%;
    color: #3f64ae;
    margin-bottom: 24px;
}
.popup__contact_mail {
}
.popup__contact_mail a {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 16px;
    line-height: 112%;
    color: #bdbec0;
}
.popup__phone_button a img,
.popup__contact_mail a img {
    padding-right: 10px;
}
.popup__forms .popup__close {
    display: none;
}
.popup__close-box {
    display: flex;
    justify-content: end;
}
.popup__close {
    cursor: pointer;
}
@media (max-width: 1100px) {
    .popup__forms .form-row {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 767px) {
    .popup__contact .popup__close {
        display: none;
    }
    .popup__forms .popup__close {
        display: block;
    }
    .popup__columns {
        flex-direction: column;
    }
    .popup__forms {
        padding-right: 0px;
        border-bottom: 1px solid #d9d9d9;
        border-right: none;
        padding-top: 45px;
        padding-bottom: 15px;
    }
    .kontaktformular__title {
    }
    .popup__contact {
        flex: 0 0 400px;
        padding-top: 15px;
        padding-left: 0px;
    }
    .popup__contact_time {
        padding-top: 15px;
    }
    .popup__contact_phone {
        padding-bottom: 35px;
        font-size: 26px;
    }
}
#feature_infos {
    width: 25%;
    height: 25%;
    background: rgba(255, 255, 255, 0.7);
    position: absolute;
    top: 0px;
    right: 0px;
    padding: 5px;
    border: 1px solid grey;
    display: none;
}
#info {
    font-weight: bold;
    color: red;
}
/* Правки */
input[type="checkbox"],
input[type="radio"] {
    -webkit-transform: translate(0px);
    transorm: translate(0px);
}
.card-lock {
    margin-top: 35px;
    width: 30px;
    height: 30px;
    margin: 35px 5px 0px 5px;
}

/* Hero specialists */

.hero-specialists {
    padding: 84px 0;
    position: relative;
    min-height: 504px;
}

.hero-specialists__bg {
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-specialists__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-specialists__container {
}

.hero-specialists__body {
    padding-right: 64px;
    position: relative;
    z-index: 2;
}

.hero-specialists__title {
    margin-bottom: 35px;
    font-family: "Roboto Condensed";
    color: #fff;
    text-shadow: 0px 2px 16px rgba(0, 0, 0, 0.32);
    font-size: 44px;
    font-weight: 700;
    line-height: 125%;
    text-transform: uppercase;
}

.hero-specialists__body p {
    max-width: 470px;
    color: #fff;
    text-shadow: 0px 2px 16px rgba(0, 0, 0, 0.32);
    font-size: 20px;
    line-height: 150%;
}

.hero-specialists__body p + p {
    margin-top: 16px;
}

.hero-specialists__links {
    top: 49%;
    padding: 0;
}

@media (max-width: 767px) {
    .hero-specialists__body {
        padding: 0;
    }

    .hero-specialists__body p {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .hero-specialists__title {
        font-size: 32px;
    }
}

@media (max-width: 400px) {
    .hero-specialists {
        padding: 72px 0;
    }
}

/* Selector */

.specialists__filter {
    width: 270px;
    position: relative;
}

.specialists__branch-select {
    width: 100%;
    padding: 15px 44px 15px 15px;
    color: #1f1f1f;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 100%;
    text-align: left;
    background-color: #fff;
    border-radius: 3px;
    border: 1px solid #d9d9d9;
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #1f1f1f 50%), linear-gradient(135deg, #1f1f1f 50%, transparent 50%);
    background-position: calc(100% - 20px) calc(50% - 3px), calc(100% - 15px) calc(50% - 3px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: border-color 0.3s ease-in-out;
}

.specialists__branch-select:hover,
.specialists__branch-select:focus {
    border-color: #1f1f1f;
    outline: none;
}

.s-finder .finder_wrap .finder-list li[hidden],
.s-finder .finder_wrap .finder-list .finder-list__empty[hidden] {
    display: none !important;
}

.s-finder .finder_wrap .finder-list .finder-list__empty {
    width: 100%;
    padding: 24px 16px;
    text-align: center;
}

.selector {
    width: 270px;
    position: relative;
}

.selector.is-show .selector__toggler {
    border-color: #1f1f1f;
}

.selector.is-show .selector__toggler::after {
    transform: translate(0, -50%) rotate(315deg);
}

.selector.is-show .selector__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.selector__toggler {
    position: relative;
    padding: 15px 44px 15px 15px;
    color: #1f1f1f;
    font-family: "Roboto Condensed";
    font-size: 16px;
    font-weight: 700;
    line-height: 100%;
    text-align: left;
    background: unset;
    border-radius: 3px;
    border: 1px solid #d9d9d9;
    width: 100%;
    transition: all 0.3s ease-in-out 0s;
}

.selector__toggler:hover {
    border-color: #1f1f1f;
}

.selector__toggler::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 17px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #1f1f1f;
    border-right: 2px solid #1f1f1f;
    transform: translate(0, -80%) rotate(135deg);
    transition: all 0.3s ease-in-out 0s;
}

.selector__dropdown {
    position: absolute;
    z-index: 80;
    width: 100%;
    top: calc(100% + 16px);
    left: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    box-shadow: 0 0 30px -10px rgba(0, 0, 0, 0.16);
    border-radius: 3px;
    overflow: hidden;
    transition: all 0.3s ease-in-out 0s;
}

.selector__option {
    padding: 8px;
    background: #fff;
    transition: all 0.3s ease-in-out 0s;
    cursor: pointer;
    border: 1px solid transparent;
}

.selector__option:first-child {
    border-radius: 3px 3px 0 0;
}

.selector__option:last-child {
    border-radius: 0 0 3px 3px;
}

.selector__option:only-child {
    border-radius: 3px;
}

.selector__option:hover {
    border-color: #3f64ae;
}

.selector__option.is-selected {
    background: #3f64ae;
    color: #fff;
}

.selector__input {
}

/* Specialists */

.specialists {
    margin-bottom: 88px;
}

.specialists__container {
}

.specialists__breadcrumbs {
    margin-bottom: 52px;
}

.specialists__title {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 48px;
    color: #1f1f1f;
    font-family: "Roboto Condensed";
    font-size: 38px;
    font-weight: 700;
    line-height: 125%;
    text-transform: uppercase;
}

.specialists__not-found,
.specialists__loading {
    color: #1f1f1f;
    font-family: "Roboto Condensed";
    font-size: 24px;
    line-height: 125%;
}

.specialists__title-icon {
    flex: none;
    width: 74px;
}

.specialists__title-icon img {
    width: 100%;
    height: 100%;
}

.specialists__filter {
    margin-bottom: 49px;
}

.specialists__list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 30px;
}

.specialists__list-item {
}

@media (max-width: 767px) {
    .specialists__list {
        gap: 16px;
    }

    .specialists__breadcrumbs {
        padding-top: 32px;
        margin-bottom: 32px;
    }

    .specialists__title {
        position: relative;
        width: fit-content;
    }

    .specialists__title-icon {
        position: absolute;
        top: 50%;
        right: 0;
        transform: translate(20%, -50%);
    }
}

@media (max-width: 576px) {
    .specialists__title {
        font-size: 24px;
    }

    .specialists__not-found,
    .specialists__loading {
        font-size: 18px;
    }

    .specialists__title-icon {
        width: 62px;
        transform: translate(45%, -50%);
    }

    .specialists__filter {
        margin-bottom: 32px;
    }
}

/* Specialist */

.specialist {
    border: 1px solid #d9d9d9;
    border-radius: 3px;
    transition: all 0.3s ease-in-out 0s;
}

.specialist:hover {
    box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.16);
}

.specialist__photo {
    border-radius: 3px;
    overflow: hidden;
    position: relative;
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    aspect-ratio: 270/300;
}

.specialist__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.specialist__body {
    padding: 29px 15px 32px;
    background: #fefefe;
}

.specialist__addresses-item:not(:last-child){
    margin-bottom: 8px;
}


.specialist__address {
    margin-bottom: 16px;
    width: fit-content;
    display: block;
    color: #4d4d4d;
    font-family: "Open Sans";
    font-size: 14px;
    line-height: 171.5%;
    transition: all 0.3s ease-in-out 0s;
}


.specialist__address:hover{
    color: #3f64ae;
}

.specialist__name {
    margin-bottom: 13px;
    color: #1f1f1f;
    font-size: 20px;
    font-weight: 500;
    line-height: 125%;
}

.specialist__links {
    margin-top: auto;
}

.specialist__links-item:not(:last-child) {
    margin-bottom: 8px;
}

.specialist__link {
    width: fit-content;
    display: flex;
    align-items: start;
    gap: 8px;
    color: #3f64ae;
    font-family: "Open Sans";
    font-size: 14px;
    transition: all 0.3s ease-in-out 0s;
}

.specialist__link-text {
    border-bottom: 1px solid #3f64ae;
    transition: all 0.3s ease-in-out 0s;
}

.specialist__link:hover .specialist__link-text {
    border-color: transparent;
}

.specialist__link:hover .specialist__link-icon {
    color: #3f64ae;
}

.specialist__link-icon {
    width: 20px;
    height: 20px;
    flex: none;
    color: #bdbec0;
    transition: all 0.3s ease-in-out 0s;
}

.specialists__not-found {
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden;
}


.header__wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 55px;
}

.header__btn{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 8px;
    padding-bottom: 8px;
    font-family: 'Roboto Condensed';
    border-radius: 3px;
}

.header__btn:hover{
    background: #2e4d8c;
}

@media(min-width: 992px){
    .header__wrapper{
        flex: 1 1 auto;
    }
}

@media(max-width: 768px){
    .header__btn{
        padding-left: 16px;
        padding-right: 16px;
    }

    .header__body{
        gap: 24px;
    }
}

@media(max-width: 576px){
    .header__btn{
        font-size: 14px;
    }
}

@media(max-width: 400px){
    .header__body{
        gap: 16px;
    }
}

.footer__author{
    width: fit-content;
    display: block;
    margin-bottom: 8px;
}

.main1 {
    background-image: url(../img/main-video-poster.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #000;
}
.main2 {
    background-image: url(/wp-content/uploads/2026/05/2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.main3 {
    background-image: url(/wp-content/uploads/2026/05/3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}