/*!
Theme Name: Центр Звездный
*/
:root {
    --theme: #3E538A;
    --text: #444444;
    --grey: #DFDFDF;
    --red: #D34C54;
}
*,
*:before,
*:after{
    box-sizing: border-box;
    font-weight: 400;
}
body {
    padding: 0;
    margin: 0;
    font-family: 'DIN Pro';
    color: var(--text);
    font-size: 18px;
    line-height: 23px;
}
h1, h2, h3, h4, h5, h6, p, ul, ol, li {
    margin: 0;
    padding: 0;
}
h1, h1 span, .title_1, .title_1 span {
    font-size: 84px;
    line-height: 92px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'DIN Pro Cond';
}
h2, h2 span, .title_2, .title_2 span {
    font-size: 70px;
    line-height: 77px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'DIN Pro Cond';
}
h3, h3 span, .title_3, .title_3 span {
    font-size: 50px;
    line-height: 55px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'DIN Pro Cond';
}
h4, h4 span, .title_4, .title_4 span {
    font-size: 24px;
    line-height: 26px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'DIN Pro Cond';
}
h1 span, h2 span, h3 span, h4 span,
.title_1 span, .title_2 span, .title_3 span, .title_4 span {
    color: var(--theme);
}
li {
    list-style-type: none;
}
a {
	text-decoration: none;
    cursor: pointer;
    color: var(--text);
}
a:hover {
    color: var(--theme);
}
b, strong {
    font-weight: 700;
}
img.cover {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
input, textarea, button {
    outline: none;
    border: none;
    font-family: 'DIN Pro';
}
input, textarea {
    font-size: 14px;
}
textarea {
    padding: 14px 16px;
    border: 1px solid #9D9FA6;
    resize: none;
    width: 100%;
    height: 92px;
}
.input {
    border: 1px solid #9D9FA6;
    padding: 0 16px;
    height: 46px;
    display: flex;
    align-items: center;
    column-gap: 8px;
}
.input:before {
    content:'';
    display: block;
    width: 20px;
    height: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.input_email:before {
    background-image: url(assets/images/icons/email.svg);
}
.input_name:before {
    background-image: url(assets/images/icons/user.svg);
}
.input_tel:before {
    background-image: url(assets/images/icons/call.svg);
}
.input input {
    width: 100%;
    height: 100%;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: var(--grey);
}
input:-moz-placeholder,
textarea:-moz-placeholder {
    color: var(--grey);
}
label.checkbox {
    cursor: pointer;
}
label.checkbox input {
    position: absolute;
    opacity: 0;
}
label.checkbox .checkbox_label {
    display: flex;
    align-items: center;
    column-gap: 8px;
    text-transform: uppercase;
    font-weight: 500;
}
label.checkbox .checkbox_label p  {
    font-weight: 500;
    opacity: 0.5;
    font-size: 10px;
    line-height: 13px;
}
label.checkbox .checkbox_label a {
    text-decoration: underline;
    font-weight: 500;
}
label.checkbox .checkbox_label:before {
    content:'';
    display: block;
    width: 20px;
    flex: 0 0 20px;
    height: 20px;
    background: url(assets/images/icons/check_off.svg) no-repeat center/cover;
}
label.checkbox input:checked ~ .checkbox_label:before {
    background: url(assets/images/icons/check_on.svg) no-repeat center/cover;
}
p {
    margin: 16px 0;
    font-family: 'DIN Pro';
}
.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 52px;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: 500;
    transition: 0.1s;
}
.btn_w {
    background: #fff;
    border: 1px solid var(--theme);
}
.btn_b {
    background: var(--theme);
    border: 1px solid var(--theme);
    color: #fff;
}
.btn_arrow:after,
.link_more:after {
    content:'';
    display: block;
    width: 20px;
    height: 20px;
    margin-left: 8px;
}
.btn_w.btn_arrow:after {
    background: url(assets/images/icons/arrow_outward.svg) no-repeat center/cover;
}
.btn_b.btn_arrow:after {
    background: url(assets/images/icons/arrow_outward_white.svg) no-repeat center/cover;
}
.btn_w:hover {
    color: #fff;
    background: var(--theme);
    border-color: #fff;
}
.btn_w.btn_arrow:hover:after {
    background-image: url(assets/images/icons/arrow_outward_white.svg);
}
.btn_b:hover {
    color: var(--theme);
    background: #fff;
}
.btn_b.btn_arrow:hover:after {
    background-image: url(assets/images/icons/arrow_outward.svg);
}
.link_more {
    font-size: 16px;
    line-height: 19px;
    font-weight: 500;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.link_more:after {
    background: url(assets/images/icons/arrow_outward_red.svg) no-repeat center/cover;
}
.link_more:hover {
    color: var(--theme);
}
/* Container */
.container {
    margin: 0 auto;
}
.wrapper {
    padding: 0 40px;
}
.wrapper_horisontal {
    padding: 40px 0;
    border-top: 1px solid var(--grey);
    border-bottom: 1px solid var(--grey);
}
.wrapper_vertical {
    padding: 0 40px;
    border-left: 1px solid var(--grey);
    border-right: 1px solid var(--grey);
}
.section {
    margin: 120px 0;
}
/* Swiper Base */
/*
.swiper {
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    width: 100%;
}
.swiper-wrapper {
    display: flex;
    height: 100%;
}
.swiper-slide {
    flex-shrink: 0;
    cursor: pointer;
}
.swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}
.swiper-pagination-bullet {
}
.swiper-pagination-bullet-active {
}*/
.header_row {
    display: flex;
    padding-top: 20px;
}
.header_col {
    display: flex;
    align-items: center;
    padding: 0;
    height: 148px;
    flex-shrink: 0;
    flex-grow: 1;
    position: relative;
    flex: 1;
}
.header_col:nth-child(4) {
    padding: 0 35px 0 40px;
}

.header_logo {
    width: 145px;
    margin-top: -25px;
}
.menu_toggle,
.header_article {
    font-size: 16px;
    line-height: 19px;
    font-weight: 500;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    column-gap: 16px;
    cursor: pointer;
}
.menu_toggle:after,
.header_article:after {
    content:'';
    display: block;
    width: 49px;
    height: 22px;
}
.menu_toggle:after {
    background: url(assets/images/icons/menu_tgl.svg) no-repeat center/cover;
}
.header_article:after {
    background: url(assets/images/icons/article.svg) no-repeat center/cover;
}
.menu_toggle:hover,
.header_article:hover {
    color: var(--theme);
}
.header_tel {
    font-size: 16px;
    line-height: 19px;
    font-weight: 500;
    margin-bottom: 8px;
}
.header_email {
    font-size: 16px;
    line-height: 19px;
}
.header_call {
    font-size: 16px;
    line-height: 19px;
    font-weight: 500;
    color: var(--theme);
    border: 1px solid var(--theme);
    width: 386px;
}
.link_email {
    text-decoration: underline;
}
.link_tel {
    display: flex;
    align-items: center;
    column-gap: 16px;
}
.link_tel:after {
    content:'';
    display: block;
    width: 20px;
    height: 20px;
    background: url(assets/images/icons/call.svg) no-repeat center/cover;
}
.header_menu {
    position: absolute;
    background: #fff;
    border: 1px solid var(--grey);
    padding: 40px 0;
    top: 100%;
    left: -1px;
    display: none;
    width: 746px;
    z-index: 2;
}

.header_menu__wrap {
    display: flex;
}
.header_menu.active {
    display: block;
}
.header_menu .mobile {
    display: none;
}
.menu__col {
    padding: 0 40px;
}
.menu__col:first-child {
    border-right: 1px solid var(--grey);
}
.menu__title {
    font-size: 24px;
    line-height: 26px;
    text-transform: uppercase;
    font-weight: 700;
    font-family: 'DIN Pro Cond';
}
.menu__list {
    margin-top: 24px;
}
.menu__list li {
    margin: 0 0 16px 0;
}
.menu__list li a {
    font-size: 14px;
    line-height: 17px;
    text-transform: uppercase;
    font-weight: 700;
}
.menu__list li a:hover {
    color: var(--red);
}
.menu__list .hh a {
    display: flex;
    column-gap: 8px;
    align-items: center;
}
.menu__list .hh a:after {
    content:'';
    display: block;
    width: 24px;
    flex: 0 0 24px;
    height: 24px;
    background: url(assets/images/icons/hh.svg) no-repeat center/cover;
}


.hero {
    margin: 72px 0 60px;
}
.hero_container {
    display: flex;
    padding: 0 40px;
    border-right: 1px solid var(--grey);
    border-left: 1px solid var(--grey);
}
.hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 0 0 548px;
    width: 548px;
    border-right: 1px solid var(--grey);
    padding-right: 40px;
}
.hero__content h1 {
    font-size: 60px;
    line-height: 66px;
}
.hero__content h1 span {
    font-size: 40px;
    line-height: 48px;
    display: block;
    margin-top: 15px;
}
.hero__btns {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    margin-top: 24px;
}
.hero__img {
    flex: 1;
    padding-left: 40px;
}


.services__list_item {
    display: flex;
}
.services__list_item:hover .services__list_title {
    color: var(--theme);
}
.services__list_item:hover .services__list_img_wrap:before {
    display: none;
}
.services__list_item:hover .services__list_more {
    opacity: 1;
    visibility: visible;
}
.services__list_item:hover .services__list_img_wrap img {
    filter: none;
    opacity: 1;
}
.services__list_img {
    flex: 0 0 548px;
}
.services__list_img_wrap {
    width: 548px;
    height: 458px;
    padding: 40px 40px 40px 0;
    position: relative;
}
.services__list_img_wrap img {
    filter: grayscale(1);
    opacity: 0.5;
}
.services__list_item:first-child .services__list_img_wrap {
    padding-top: 0;
}
.services__list_item:first-child .services__list_img_wrap:before {
    height: calc(100% - 40px);
    top: 0;
}
.services__list_img_wrap:before {
    content:'';
    display: block;
    width: 1px;
    background: var(--grey);
    position: absolute;
    top: 40px;
    right: 0;
    height: calc(100% - 80px);
}
.services__list_img_wrap:after {
    content:'';
    display: block;
    height: 1px;
    background: var(--grey);
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100% - 40px);
}
.services__list_content {
    flex: 0 0 472px;
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.services__list_content:after {
    content:'';
    display: block;
    height: 1px;
    background: var(--grey);
    position: absolute;
    bottom: 0;
    left: 40px;
    width: calc(100% - 40px);
}
.services__list_item:last-child .services__list_content:after {
    display: none;
}
.services__list_count {
    color: #9D9FA6;
    font-weight: 700;
    font-size: 24px;
    line-height: 27px;
    font-family: 'DIN Pro Cond';
    margin-bottom: 8px;
}
.services__list_more {
    margin-top: 24px;
    opacity: 0;
    visibility: hidden;
}

.services__list_form {
    width: 316px;
    flex: 0 0 316px;
    margin-left: 32px;
}
.services__list_form .consult_form {
    width: 100%;
}

.promo__wrap {
    padding: 0 40px;
}
.promo__inner {
    background: url(assets/images/promo_bg.png) no-repeat center/cover;
    display: flex;
    align-items: center;
    color: #fff;
    position: relative;
    height: 425px;
    padding-left: 40px;
}
.promo__content p {
    width: 520px;
}
.promo__content .btn {
    width: 300px;
    font-size: 16px;
    margin-top: 24px;
}
.promo__video {
    position: absolute;
    right: 40px;
    bottom: 40px;
    display: flex;
    column-gap: 10px;
}
.promo__video_btn {
    flex: 0 0 53px;
    width: 53px;
    height: 53px;
    background: url(assets/images/icons/play.svg) no-repeat center/cover;
}
.promo__video_text {
    background: #fff;
    padding: 8px;
}
.promo__video_title {
    color: #D34C54;
    font-size: 14px;
    line-height: 17px;
    text-transform: uppercase;
    font-weight: 700;
}
.promo__video_time {
    font-size: 14px;
    line-height: 18px;
    color: var(--text);
}
.promo__person_img {
    position: absolute;
    z-index: 0;
    width: 606px;
    bottom: -4px;
    right: 73px;
}

.actives_bl .heading {
    padding: 0 40px;
}
.actives_container {
    display: flex;
    column-gap: 32px;
    margin-top: 40px;
}
.actives__item {
    border-top: 1px solid var(--grey);
    border-bottom: 1px solid var(--grey);
    padding: 40px 0;
    flex: 1;
}
.actives__item:hover .actives__item_title {
    color: var(--theme);
}
.actives__item_count {
    text-transform: uppercase;
    color: #9D9FA6;
    font-weight: 700;
    font-family: 'DIN Pro Cond';
    margin-top: 18px;
    font-size: 18px;
    line-height: 19px;
}
.actives__item p {
    margin-top: 8px;
    font-size: 18px;
    line-height: 23px;  
}
.actives__item_more {
    margin-top: 24px;
}

footer {
    margin-top: 120px;
}
.footer_wrapper{
    border-left: 1px solid var(--grey);
    padding-left: 40px;
    padding-top: 72px;
}
.footer_container {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--grey);
    padding-bottom: 48px;
}
.footer_menu li {
    margin: 32px 0;
}
.footer_menu a {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
}
.footer_menu a:hover {
    color: var(--theme);
}
.footer_menu .hh a {
    display: flex;
    column-gap: 8px;
    align-items: center;
}
.footer_menu .hh a:after {
    content:'';
    display: block;
    width: 24px;
    height: 24px;
    background: url(assets/images/icons/hh.svg) no-repeat center/cover;
}
.footer_tel {
    margin-top: 70px;
    font-size: 30px;
    line-height: 33px;
    font-weight: 700;
    font-family: 'DIN Pro Cond';
    display: block;
}
.footer_email {
    margin-top: 16px;
    display: block;
}
.footer_bottom {
    padding: 32px 0;
    display: flex;
    align-items: center;
    column-gap: 132px;
    opacity: 0.5;
    padding-left: 40px;
}

.breadcrumbs {
    margin: 48px 0;
}
.breadcrumbs * {
    font-size: 16px;
    line-height: 19px;
    font-weight: 500;
    text-transform: uppercase;
}
.breadcrumbs a {
    opacity: 0.5;
    padding-right: 16px;
    margin-right: 16px;
    border-right: 1px solid var(--grey);
}
.heading {
    margin: 48px 0;
}
.heading .title {
    margin-bottom: 16px;
}
.heading_text {
    font-size: 18px;
    line-height: 23px;
    width: 780px;
}
.full_width {
    width: 100%!important;
}
.columns {
    display: grid;
    column-gap: 32px;
}
.columns.col_2 {
    grid-template-columns: repeat(2, 1fr);
}

/*
.heading#about_354fdw233 .heading_text {
    width: 780px;
    font-size: 16px;
    line-height: 20px;
}
.heading#pansionats_354fdw233 .heading_text {
    width: 883px;
}
.heading#combinats_354fdw233 .heading_text {
    width: 780px;
}
*/
.section_subtitle {
    color:  var(--theme);
}


.consult_bl {
    margin: 80px 0;
}
.consult_row {
    display: flex;
}
.consult_form {
    padding: 24px;
    border: 1px solid var(--grey);
    width: 432px;
    flex: 0 0 432px;
}
.form_title {
    font-size: 24px;
    line-height: 26px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    font-family: 'DIN Pro Cond';
}
.form_subtitle {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 16px;
}
.consult_form .input {
    margin-bottom: 8px;
}
.form button {
    margin-top: 24px;
    font-size: 16px;
}
.consult_img {
    flex: 1;
    margin-right: 32px;
}



.stats_bl {
    margin: 80px 0;
}
.stats_container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 32px;
}
.stats__item {
    border: 1px solid var(--grey);
    padding: 24px;
}
.stats__item_title {
    font-size: 84px;
    line-height: 92px;
    font-weight: 700;
    color: var(--theme);
    font-family: 'DIN Pro Cond';
}
.stats__item_title span {
    color: #D34C54;
    font-weight: 700;
}

.accordeon_text_bl {
    background: var(--theme);
    padding: 40px 0;
    color: #fff;
}
.accordeon_text_bl .wrapper_vertical {
    border-color: rgba(255,255,255,0.2);
}
.accordeon_text__cols {
    display: flex;
    justify-content: flex-end;
}
.accordeon_text__cols .section_subtitle {
    font-size: 24px;
    line-height: 26px;
    text-transform: uppercase;
    color: #9D9FA6;
    font-weight: 700;
}
.accordeon_text__cols .section_title {
    width: 584px;
}
.accordeon_bl {
    width: 664px;
    flex: 0 0 664px;
}
.accordeon_item {
    border-top: 1px solid;
    border-bottom: 1px solid;
    padding: 24px 0;
}
.accordeon_bl_white .accordeon_item {
    border-color: rgba(255,255,255,0.2);
}

.accordeon_header {
    font-size: 24px;
    line-height: 26px;
    text-transform: uppercase;
    font-family: 'DIN Pro Cond';
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    cursor: pointer;
}
.accordeon_header:after {
    content:'';
    display: block;
    width: 20px;
    height: 20px;
    background: url(assets/images/icons/arrow_down.svg) no-repeat center/cover;
}
.accordeon_bl_white .accordeon_header:after {
    background: url(assets/images/icons/arrow_down_white.svg) no-repeat center/cover;
}
.accordeon_content {
    display: none;
    font-size: 16px;
    line-height: 20px;
    padding-top: 16px;
}
.accordeon_item.active {
    border-color: #fff;
}

.accordeon_bl_white .accordeon_item.active .accordeon_header:after {
    transform: scale(1,-1);
    opacity: 0.2;
}

.callback_bl {
    margin: 80px 0;
}
.callback_container {
    display: flex;
    align-items: center;
    column-gap: 32px;
    border-left: 1px solid var(--grey);
    border-right: 1px solid var(--grey);
    padding: 0 40px;
}
.callback_form {
    flex: 0 0 664px;
}
.callback_form .form_title {
    color: #9D9FA6;
}
.callback_form .inputs_row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 32px;
    margin-bottom: 24px;
}

.pansionats_bl {
    margin: 48px 0;
}
.pansionats_bl .columns {
    column-gap: 32px;
    margin-top: 48px;
}
.pansionats_bl .column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.column__heading {
    min-height: 236px;
}
.column__heading .column__text {
    margin: 16px 0;
    font-size: 18px;
    line-height: 23px;
}
.pansionats_bl .column__img {
    margin: 0 0 30px;
    width: 100%;
}
.pansionats_bl .column__img_wrap {
    height: 407px;
}
.pansionats_bl .column__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pansionats_bl .img_grid {
    display: flex;
    gap: 25px;
    margin-top: 25px;
}
.pansionats_bl .img_grid .img_col {
    height: 293px;
    flex: 1;
}
.pansionats_bl .img_grid .img_col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pansionats_bl .column__img .map {
    height: 521px;
    width: 100%;
}
.pansionats_bl .text {
    font-size: 24px;
    line-height: 31px;
}
.pansionats__item_more {
    margin-top: 24px;
}




.story_container {
    margin-bottom: 80px;
}
.story_container p {
    font-size: 24px;
    line-height: 31px;
}
.story_container img {
    margin-top: 64px;
    width: 100%;
}

.faq_bl {
    margin: 120px 0;
}
.faq_container {
    display: flex;
    column-gap: 32px;
    margin-top: 40px;
}
.faq_bl .accordeon_item {
    border-color: rgba(68, 68, 68, 0.2);
}
.faq_bl .accordeon_item.active {
    border-color: var(--text);
}
.faq_bl .accordeon_item.active .accordeon_header:after {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background: url(assets/images/icons/arrow_up.svg) no-repeat center/cover;
}
.faq_img {
    flex: 1;
    height: 100%;
}

.contacts_container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px 32px;
}
.contacts__item {
    border: 1px solid var(--grey);
    padding: 24px;
}
.contacts__item_title {
    font-size: 24px;
    line-height: 26px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 8px;
    font-family: 'DIN Pro Cond';
}
.contacts__item_text {
    font-size: 18px;
    line-height: 23px;
    margin-top: 16px;
}
.contacts_map {
    margin-top: 72px;
    height: 800px;
}
.contacts_map img {
    width:  100%;
}

.rent_bl__mob {
    display: none;
}
.rent__item {
    margin-top: 48px;
}
.rent__item_wrap {
    border-top: 1px solid var(--grey);
    border-bottom: 1px solid var(--grey);
    padding: 40px 0;
}
.rent__item_head {
    display: flex;
    column-gap: 16px;
    justify-content: space-between;
}
.rent__item_card {
    border: 1px solid var(--grey);
    padding: 25px 16px;
}
.rent__item_head .rent__item_card {
    padding: 16px;
    display: flex;
    align-items: center;
    column-gap: 8px;
}
.rent__item_head .rent__item_card:nth-child(2) {
    flex: 1;
}
.rent__item_title {
    font-size: 14px;
    line-height: 17px;
    font-weight: 700;
    text-transform: uppercase;
}
.rent__item_text {
    font-size: 14px;
    line-height: 18px;
    margin-top: 8px;
}
.rent__item_head .rent__item_text {
    margin: 0;
}
.rent__item_heading {
    font-size: 24px;
    line-height: 26px;
    font-weight: 700;
    text-transform: uppercase;
}
.rent__item_link {
    width: 252px;
    text-transform: uppercase;
    color: #D34C54;
    text-align: center;
    font-weight: 500;
}
.rent__item_body {
    display: flex;
    column-gap: 32px;
    margin-top: 24px;
}
.rent__item_img {
    flex: 0 0 316px;
    height: 406px;
}
.rent__item_content {
    flex: 1
}
.rent__item_row {
    display: flex;
    margin-top: 24px;
    column-gap: 32px;
}
.rent__item_row .rent__item_col:first-child {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 32px;
}
.rent__item_row .rent__item_col:last-child {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    justify-content: space-between;
}
.rent__item_contacts {
    flex: 1;
}
.rent__item_name {
    font-size: 24px;
    line-height: 26px;
    font-weight: 700;
    margin-top: 24px;
    text-transform: uppercase;
    font-family: 'DIN Pro Cond';
}
.rent__item_email {
    display: block;
    margin-top: 8px;
}
.rent__item_phone {
    display: block;
    color: #D34C54;
    font-size: 24px;
    line-height: 26px;
    font-weight: 700;
    margin-top: 16px;
    text-transform: uppercase;
    font-family: 'DIN Pro Cond';
}

.services_bl {
    margin-bottom: 120px;
}
.services_cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.services_card {
    padding: 24px;
    border: 1px solid var(--grey);
    position: relative;
}
.services_card__img {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: -1px;
    left: -1px;
    z-index: -1;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
}
.services_card:hover .services_card__img {
    opacity: 1;
    visibility: visible;
}
.services_card:hover .services_card__title,
.services_card:hover .services_card__more {
    color: #fff;
}
.services_card__more {
    margin-top: 22px;
}
.services_card:hover .services_card__more:after {
    background: url(assets/images/icons/arrow_outward_white.svg) no-repeat center/cover;
}

.page_banner {
    margin-bottom: 120px;
}
.page_banner__wrap {
    padding: 40px;
    color: #fff;
    height: 425px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.page_banner__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.page_banner__wrap p {
    font-size: 18px;
    line-height: 23px;
    width: 560px;
}
.page_banner__wrap .btn {
    width: 300px;
    margin-top: 24px;
    font-weight: 500;
}
.section_columns {
    display: flex;
    column-gap: 32px;
}
.info__col {
   display: flex;
   flex-direction: column;
   justify-content: center; 
}
.section_text {
    font-size: 24px;
    line-height: 31px;
}
.section_text.small_text {
    font-size: 18px;
    line-height: 23px;
}
.section_columns .attachment_img {
    width: 548px;
    flex: 0 0 548px;
}
.service_include {
    margin: 0 0 120px 0;
}
.heading.half-width {
    width: 860px;
}
.service_include .heading_text {
    font-size: 24px;
    line-height: 31px;
}
.service_include__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
}
.service_include__card {
    border: 1px solid var(--grey);
    padding: 24px;
}
.service_include__card img {
    width: 48px;
    flex: 0 0 48px;
}
.include__card_title {
    font-size: 14px;
    line-height: 17px;
    text-transform: uppercase;
    font-weight: 700;
    width: 100%;
    flex: 0 0 100%;
    margin-top: 20px;
    width: 215px;
}
.include__card_text {
   font-size: 14px;
   line-height: 18px;
   margin-top: 16px;
}

.service_include__card.has-text .include__card_row {
    display: flex;
    align-items: center;
    column-gap: 16px;
}
.service_include__card.has-text .include__card_title {
    flex: 1;
    margin: 0;
}
.service_include__card.has-text .include__card_text {
    width: 100%;
}

.info_bl .column .section_text {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 0;
}

.rules_wrapper {
    padding: 40px;
    border: 1px solid var(--grey);
}
.rules_bl__head {
    display: flex;
    align-items: flex-end;
    column-gap: 40px;
}
.rules_bl__content {
    margin-top: 93px;
}
.rules_bl__content p {
    font-size: 24px;
    line-height: 31px;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #BEBEBEB2;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2;
}
.modal.active {
    display: flex;
}
.modal_wrap {
    background: #fff;
    width: 432px;
    padding: 16px 40px 24px;
}
.modal .callback_container {
    display: block;
    border: none;
    padding: 0;
    margin-top: 16px;
}
.modal .callback_title,
.modal .callback_title span {
    font-size: 24px;
    line-height: 26px;
    display: block;
}
.modal .callback_title br {
    display: none;
}
.modal .inputs_row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.modal .callback_title_wrap p {
    font-size: 14px;
    line-height: 18px;
    margin: 8px 0 16px;
}
.modal .input {
    height: 46px;
    padding: 0 16px;
}
.modal .input:before {
    width: 20px;
    height: 20px;
}
.modal input,
.modal textarea {
    font-size: 16px;
}
.modal .form button {
    margin-top: 24px;
    font-size: 16px;
    height: 52px;
}
.modal_close {
    font-size: 16px;
    line-height: 19px;
    text-transform: uppercase;
    font-weight: 500;
    display: flex;
    align-items: center;
    column-gap: 8px;
    cursor: pointer;
}
.modal_close:before {
    content: '';
    display: block;
    width: 20px;
    flex: 0 0 20px;
    height: 20px;
    background: url(assets/images/icons/close.svg) no-repeat center/cover;
}


[class*="-ground-pane"] {
	filter: grayscale(100%);
    -ms-filter: grayscale(100%);
	-webkit-filter: grayscale(100%);
	-moz-filter: sgrayscale(100%);
	-o-filter: grayscale(100%);
}
[class*="copyrights-pane"] {
  display: none !important;
}

.company_logos_bl {
    margin: 80px 0;
}
.logos_row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px 0;
}
.logos_item {
    flex: 0 0 432px;
}
.logos_img {
    border: 1px solid var(--grey);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}
.logos_title {
    color: #444444;
    text-transform: uppercase;
    font-family: 'DIN Pro';
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    margin-top: 30px;
    font-weight: 700;
}

/**/
.rent__item_heading_red { 
	font-size: 19px;
    line-height: 21px;
	font-weight: 700;
    text-transform: uppercase;
	padding: 0 0 10px 0;
	color: #3E538A;
}