
/* --- Обнуление CSS --- */

* {
    margin: 0;
    padding: 0;
    border: 0;
}

*, *::before, *::after {
    -moz-box-sizing: border-box;
    -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%;
    font-size: 14px;
    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:hover {text-decoration: none;}
ul li {list-style: none;}
img {vertical-align: top;}

h1,h2,h3,h4,h5,h6 {
    font-size: inherit;
    font-weight: 400;
}

/* ------------------------------------ */


body {
    font-size: 15px;
}


.container {
    position: relative;
    max-width: 1180px;
    padding: 0 15px;
    margin: 0 auto;
    z-index: 999;
}

.section__title {
    text-align: center;
}
.section__title h2 {
    display: inline-block;
    font-size: 36px;
    padding: 5px 15px;
    border-left: 3px solid #30d5c8;
}




/* ------ .offer ------ */
.offer {
    position: relative;
    min-height: 900px;
    padding: 30px 0 0 0;
    background: #ddd url('/wp-content/themes/mytheme/images/offer-bg.jpg') no-repeat top center;
    background-size: cover;
}

.offer__header {
    padding: 5px 30px;
    min-height: 90px;
    background: #fff;
    border-radius: 45px;
}
.offer__header-row {
    min-height: 90px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.offer__contacts-row {
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    align-items: center;
}

.offer__logo img {
    max-width: 160px;
}

.offer__phone {
    padding: 0 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}
.offer__phone-number {
    font-size: 22px;
    font-weight: normal;
}


.offer__action-button a {
    display: block;
    background: #30d5c8;
    color: #fff;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 30px;
}
@media (max-width: 768px) {
    .offer__action-button {
        display: none;
    }
}
@media (max-width: 576px) {
    .offer__action-button {
        display: block;
    }
    .offer__action-button a {
        text-indent: -999999px;
        background: #fff url('/wp-content/themes/mytheme/images/phone-icon.png') no-repeat center center;
    }
    .offer__phone {
        display: none;
    }
}

.offer__content {
    margin-top: 20px;
}
.offer__content-row {
    display: flex;
    justify-content: center;
    align-items: center;
}
.offer__title {
    text-align: right;
    border-right: 3px solid #30d5c8;
    padding: 0 30px;
}
@media (max-width: 768px) {
    .offer__title {
        text-align: center;
        border-right: none;
    }
}
.offer__title-header {
    font-size: 45px;
}
.offer__title-description {
    margin-top: 30px;
    font-size: 20px;
}

.offer__form {
    padding: 30px 30px 0;
    flex-basis: 350px;
}
@media (max-width: 768px) {
    .offer__form {
        display: none;
    }
}
.offer__form p {
    padding: 0;
    margin: 15px 0;
}
.offer__form input[type='text'],
.offer__form input[type='tel'] {
    background: transparent;
    height: 40px;
    border-radius: 20px;
    padding: 5px 15px;
}
.offer__form input[type='submit'] {
    height: 60px;
    display: block;
    width: 100%;
    border-color: #fff;
    border-radius: 30px;
    color: #fff;
    font-size: 18px;
    background: rgb(48,213,200);
    background: linear-gradient(90deg, rgba(48,213,200,1) 0%, rgba(57,148,255,1) 50%, rgba(188,102,255,1) 100%);
    box-shadow: 0 0 10px 0 #30d5c8;
    cursor: pointer;
}

.offer__footer {
    background: #fff;
    position: absolute;
    min-height: 150px;
    min-width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
}


/* ------ .about ------ */

.about {
    margin-top: -50px;
}
.about__row {
    min-height: 784px;
    background: transparent url('/wp-content/themes/mytheme/images/about-bg.png') no-repeat 10% 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-start;
}
@media (max-width: 768px) {
    .about__row {
        min-height: auto;
        background: none;
        justify-content: center;
    }
}

.about__content {
    flex-basis: 60%;
    border-left: 2px solid #30d5c8;
    padding-left: 30px;
    margin-top: 50px;
}
@media (max-width: 768px) {
    .about__content {
        flex-basis: 80%;
        border-left: none;
        padding-left: 0px;
        margin-top: 50px;
    }
}
@media (max-width: 576px) {
    .about__content {
        flex-basis: 100%;
    }
}

.about__title {
    font-size: 24px;
    font-weight: bold;
    padding: 0 0 30px 0;
}
.about__description {
    line-height: 1.6;
    max-width: 550px;
}

.about__icons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 50px;
}
@media (max-width: 1024px) {
    .about__icons {
        flex-direction: column;
        justify-content: space-between;
        margin-top: 20px;
    }
}
@media (max-width: 768px) {
    .about__icons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
}

.about__icons img {
    max-height: 90px;
    width: auto;
    display: block;
    margin: 0px auto;
}
@media (max-width: 1024px) {
    .about__icons img {
        max-height: 40px;
        width: auto;
        display: inline;
    }
}
@media (max-width: 768px) {
    .about__icons img {
        max-height: 40px;
        width: auto;
        display: block;
    }
}
.about__icons h4 {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
}
@media (max-width: 1024px) {
    .about__icons h4 {
        margin: 10px 0 0 15px;
        display: inline-block;
        vertical-align: middle;
    }
    .about__icons-item {
        margin: 10px 0;
    }
}
@media (max-width: 768px) {
    .about__icons h4 {
        margin: 10px 0 0 15px;
        display: block;
    }
    .about__icons-item {
        margin: 10px 0;
        flex-basis: 50%;
    }
}


/* ------ .services ------ */
.services {
    margin-top: 50px;
}
.services__row {
    margin-top: 35px;
    display: flex;
    flex-direction: row;
    justify-content: stretch;
}
@media (max-width: 768px) {
    .services__row {
        flex-direction: column;
    }
}

.services__list {
    display: flex;
    flex-basis: 50%;
    flex-wrap: wrap;
}
@media (max-width: 768px) {
    .services__list {
        flex-basis: 100%;
    }
}

.services__item {
    flex-basis: calc(50% - 30px);
    padding: 35px 15px;
    margin: 15px;
    border: 1px solid #999;
    border-radius: 30px;
    box-shadow: 10px 10px 5px 0 #ddd;
}
@media (max-width: 1180px) {
    .services__item {
        flex-basis: calc(100% - 30px);
    }
}

.services__item img {
    display: block;
    margin: 0 auto;
}
.services__item-title {
    font-size: 24px;
    font-weight: bold;
    margin-top: 15px;
    padding-bottom: 10px;
}
.services__item-description {
    line-height: 1.6;
}
.services__item-readmore {
    margin-top: 50px;
}
.services__item-readmore a {
    color: #30d5c8;
}

.services__form {
    margin-right: 30px;
    display: flex;
    flex-basis: calc(50% - 30px);
    flex-direction: column;
}
.services__form-content {
    width: 100%;
    margin: 15px;
    padding: 35px 25px;
    flex: 1 1 100%;
    border-radius: 30px;
    box-shadow: 10px 10px 5px 0 #ddd;
    background: rgb(48,213,200);
    background: linear-gradient(180deg, rgba(48,213,200,1) 0%, rgba(57,148,255,1) 50%, rgba(188,102,255,1) 100%);
    color: #fff;
}

.services__form-title h3 {
    font-size: 24px;
}
.services__form-list ul {
    margin: 15px 0 30px 0;
    padding: 0 0 0 30px;
}
.services__form-list ul li {
    list-style: disc;
    font-size: 18px;
    line-height: 30px;
}

.services__form-room-type {
    margin: 25px 0 30px;
}
.services__form-room-type label {
    display: inline-block;
    padding: 0 10px;
    cursor: pointer;
}

.services__form-other-services {
    display: flex;
    margin: 25px 0 30px;
}
.services__form-other-services label {
    display: block;
    padding: 5px 10px;
    cursor: pointer;
}

.services__form-button {
    text-align: center;
}
.services__form-button a {
    display: inline-block;
    font-size: 18px;
    background: #fff;
    padding: 15px 50px;
    border-radius: 30px;
    color: #30d5c8;
    box-shadow: 0 0 10px 0 #30d5c8;
}


/* ------ .subservices ------ */
.subservices {
    padding: 50px 0 30px;
}
.subservices__row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
@media (max-width: 768px) {
    .subservices__row {
        flex-direction: column;
    }
}
.subservices__item {
    flex-basis: 33.333%;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 18px;
    padding: 15px;
}
.subservices__icon {
    flex: 0 0 130px;
}
.subservices__description {
    line-height: 1.4;
}


/* ------ .equip ------ */
.equip__row {
    min-height: 618px;
    background: url('/wp-content/themes/mytheme/images/equip.jpg') no-repeat 90% 0;
    display: flex;
    flex-direction: row;
    align-items: center;
}
@media (max-width: 1024px) {
    .equip__row {
        min-height: 450px;
        background-size: 55%;
    }
}
@media (max-width: 768px) {
    .equip__row {
        min-height: 450px;
        background-position: top center;
        background-size: 55%;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
    }
}
@media (max-width: 576px) {
    .equip__row {
        background-size: 75%;
    }
}
.equip__content {
    flex-basis: 50%;
    text-align: right;
    border-right: 2px solid #30d5c8;
    padding: 10px 15px 10px 0;
}
@media (max-width: 768px) {
    .equip__content {
        flex-basis: 100%;
        text-align: center;
        border-right: none;
        padding: 15px;
    }
}
.equip__title {
    font-size: 24px;
    padding: 0 0 30px 0;
}
.equip__description {
    line-height: 1.6;
}


/* ------ .order ------ */
.order {
    background: url('/wp-content/themes/mytheme/images/order-bg.png') no-repeat center center;
}
@media (max-width: 1024px) {
    .order {
        margin-top: -75px;
    }
}
.order__row {
    min-height: 1070px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.order__form {
    padding: 100px 50px 50px;
    margin: -60px 0 0 20px;
    flex-basis: 701px;
    min-height: 880px;
    overflow: hidden;
    background: url('/wp-content/themes/mytheme/images/order-form-bg.png') no-repeat top center;
}
@media (max-width: 1180px) {
    .order__form {
        background: none;
    }
}

.order__form-header {
    text-align: center;
}
.order__form-header h2 {
    font-size: 45px;
    padding-bottom: 15px;
}
.order__form-form {
    max-width: 320px;
    margin: 0 auto;
}
.order__form-footer {
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.order__form input[type='text'],
.order__form input[type='tel'] {
    background: transparent;
    height: 40px;
    border-radius: 20px;
    padding: 5px 15px;
    width: 100% !important;
}
.order__form input[type='submit'] {
    height: 60px;
    display: block;
    width: 100%;
    border-color: #fff;
    border-radius: 30px;
    color: #fff;
    font-size: 18px;
    background: rgb(48,213,200);
    background: linear-gradient(90deg, rgba(48,213,200,1) 0%, rgba(57,148,255,1) 50%, rgba(188,102,255,1) 100%);
    box-shadow: 0 0 10px 0 #30d5c8;
    cursor: pointer;
}


/* ------ .price ------ */
.price {}
.price__row {
    margin-top: 30px;
    display: flex;
    flex-direction: row;
}
@media (max-width: 768px) {
    .price__row {
        margin-top: 30px;
        display: flex;
        flex-direction: column;
    }
}

.price__item {
    flex-basis: calc(33.333% - 30px);
    padding: 35px 15px;
    margin: 15px;
    border: 1px solid #999;
    border-radius: 30px;
    box-shadow: 10px 10px 5px 0 #ddd;
}
.price__item img {
    display: block;
    margin: 0 auto 25px;
}
.price__item-title {
    font-size: 24px;
    font-weight: bold;
    margin-top: 15px;
    padding-bottom: 10px;
}
.price__item-description {
    padding-bottom: 15px;
}
.price__item-list ul {
    margin: 0;
    padding: 0 0 25px 20px;
    line-height: 1.6;
}
.price__item-list ul li {
    list-style: disc;
}
.price__item-price {
    font-size: 20px;
}


/* ------ .footer ------ */
.footer {
    margin-top: 50px;
}

.footer__top-line {
    min-height: 10px;
    background: rgb(48,213,200);
    background: linear-gradient(90deg, rgba(48,213,200,1) 0%, rgba(57,148,255,1) 50%, rgba(188,102,255,1) 100%);
}

.footer__row {
    margin: 15px 0 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
@media (max-width: 576px) {
    .footer__row {
        flex-direction: column;
        align-items: flex-start;
    }
}

.footer__address {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-basis: 360px;
}
@media (max-width: 576px) {
    .footer__address {
        flex-basis: 100%;
    }
}

.footer__address-image img {
    min-width: 38px !important;
}
.footer__address-content {
    padding: 0 15px;
    line-height: 1.6;
}
.footer__schedule {
    line-height: 1.6;
}
@media (max-width: 768px) {
    .footer__schedule {
        display: none;
    }
}









.footer__contacts {
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    align-items: center;
}
.footer__phone {
    padding: 0 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}
@media (max-width: 576px) {
    .footer__phone {
        padding: 0;
    }
}
.footer__phone-number {
    font-size: 22px;
    font-weight: normal;
}

@media (max-width: 768px) {
    .footer__action-button {
        display: none;
    }
}
.footer__action-button a {
    display: block;
    background: #30d5c8;
    color: #fff;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 30px;
}



.footer__logo {
    padding: 30px 0 15px;
}
.footer__logo img {
    max-width: 160px;
    display: block;
    margin: 0 auto;
}


.footer__offer {
    text-align: center;
    padding-bottom: 10px;
    color: #999;
}
