html {
    box-sizing: border-box;
    overflow-x: hidden;
}

*,
*::after,
*::before {
    box-sizing: inherit;
}

a {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
    color: inherit;
}

button {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    cursor: pointer;
    border: none;
    outline: none;
    color: inherit;
}

ul,
li {
    list-style: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #000000;
}

.container {
    max-width: 1140px;
    padding: 0 15px;
    margin: 0 auto;
}

.header {
    background-image: linear-gradient(to right, rgba(255,255,255,.55), rgba(255,255,255,.55)), url(../images/header-bg.jpg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    min-height: 100vh;
}

.header__inner {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.9s ease;
}

.header__inner.sticky {
    background: rgba(255,255,255,.9);
    box-shadow: 0 8px 4px -4px rgb(0 0 0 / 20%);
}

.header__inner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.header__inner-logo {
    max-width: 91px;
}

.header__inner-logo img {
    width: 100%;
    height: 91px;
    object-fit: cover;
}

.menu {
    display: flex;
}

.menu__btn,
.header-menu_bgr {
    display: none;
}

.menu li {
    font-size: 18px;
    line-height: 22px;
    margin: 0 50px;
    transition: all .5s;
}

.menu li:hover {
    color: #ff6408;
    text-decoration: underline;
}

.header__inner-phone {
    display: flex;
    flex-direction: column;
}

.header__inner-phone a {
    font-size: 18px;
    line-height: 22px;
    transition: all .5s;
}

.header__inner-phone a + a {
    margin-top: 10px;
}

.header__inner-phone a:hover {
    color: #ff6408;
}

.header__item {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header__item h1 {
    font-weight: 700;
    font-size: 53px;
    line-height: 60px;
    margin-bottom: 50px;
    height: 215px;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.header__item h1::after,
.header__item h1::before {
    position: absolute;
    width: 150px;
    height: 100px;
    content: "";
    border: solid #ff6408;
}

.header__item h1::after {
    right: 0;
    bottom: 0;
    border-width: 0 5px 5px 0;
}

.header__item h1::before {
    left: 0;
    top: 0;
    border-width: 5px 0 0 5px;
}

.header__item a {
    font-weight: 700;
    font-size: 20px;
    line-height: 22px;
    background-color: transparent;
    color: #ff6408;
    border: 1px solid #ff6408;
    padding: 15px;
    transition: all .5s;
    text-align: center;
}

.header__item a:hover {
    background-color: #ff6408;
    color: #FFFFFF;
    border: 1px solid #ff6408;
}

.about {
    margin: 50px 0;
}

.about p {
    font-weight: 700;
    font-size: 20px;
    line-height: 22px;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
}

.about h3 {
    font-size: 18px;
    line-height: 22px;
    font-weight: 400;
    margin-bottom: 10px;
}

.about li {
    font-size: 18px;
    line-height: 22px;
    font-weight: 400;
    list-style-type: disc;
    list-style-position: inside;
    margin-bottom: 5px;
}

.main-slider {
    margin: 50px 0;
}

.main-slider .slick-arrow {
    border: none;
    outline: none;
    background-color: #FFF;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    z-index: 5;
    cursor: pointer;
    transform: translateY(-50%);
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
}

.main-slider .slick-prev img,
.main-slider .slick-next img {
    width: 35px;
    height: 35px;
}

.main-slider .slick-prev {
    left: 10px;
    transition: all .5s;
}

.main-slider .slick-next {
    right: 10px;
    transition: all .5s;
}

.main-slider__item img {
    width: 100%;
}

.goods {
    margin: 50px 0;
}

.goods h4 {
    font-size: 20px;
    line-height: 22px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 10px;
}

.goods span {
    display: flex;
    justify-content: center;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 40px;
}

.goods__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.goods__item {
    width: 24%;
    border: 1px solid #ff6408;
    padding: 10px;
    text-align: center;
}

.goods__item-img {
    max-width: 260px;
    max-height: 260px;
    min-height: 260px;
}

.goods__item-img img {
    width: 100%;
}

.goods__item-info {
    max-width: 260px;
}

.goods__item-info h6 {
    font-weight: 700;
    font-size: 20px;
    line-height: 23px;
    margin-bottom: 15px;
    height: 46px;
}

.goods__item-info p {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 15px;
}

.goods__item-info a {
    background-color: #ff6408;
    font-size: 18px;
    line-height: 20px;
    color: #FFFFFF;
    border: 1px solid #ff6408;
    padding: 15px;
    width: 100%;
    transition: all .5s;
    display: block;
}

.goods__item-info a:hover {
    background-color: #FFFFFF;
    color: #ff6408;
    border: 1px solid #ff6408;
}

.text {
    margin: 50px 0;
}

.text__info {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    margin-bottom: 40px;
}

.text__info::after,
.text__info::before {
    position: absolute;
    width: 150px;
    height: 100px;
    content: "";
    border: solid #ff6408;
}

.text__info::after {
    right: 0;
    bottom: 0;
    border-width: 0 5px 5px 0;
}

.text__info::before {
    left: 0;
    top: 0;
    border-width: 5px 0 0 5px;
}

.text__info h3 {
    font-size: 20px;
    line-height: 22px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.text__info p {
    font-size: 16px;
    line-height: 20px;
}

.text__inner {
    display: flex;
    justify-content: space-between;
}

.text__inner p {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 10px;
}

.text__inner ul {
    display: flex;
    flex-direction: column;
    max-width: 48%;
}

.text__inner li {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.text__inner li::before {
    content: '';
    position: absolute;
    left: 0;
    width: 15px;
    height: 15px;
    background-image: url(../images/text-marker.png);
}

.clients {
    padding: 50px 0;
    background: #b0b0b05c;
}

.clients h4 {
    font-size: 20px;
    line-height: 22px;
    text-transform: uppercase;
    margin-bottom: 50px;
    text-align: center;
}

.clients__items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.clients__item {
    width: 25%;
    text-align: center;
    margin-bottom: 35px;
}

.clients__item img {
    -webkit-filter: grayscale(99%); 
    filter: grayscale(99%);
    width: 100%;
    object-fit: cover;
    max-width: 120px;
}

.clients__item img:hover {
    transition: filter .7s ease-in-out;
    -webkit-filter: grayscale(0%); 
    filter: grayscale(0%);
}

.clients__item:nth-child(5) img {
    max-width: 80px;
}

.bath {
    margin: 50px 0;
}

.bath h5 {
    font-size: 18px;
    line-height: 20px;
    text-transform: uppercase;
    margin-bottom: 50px;
    text-align: center;
}

.bath__info {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    margin-bottom: 40px;
}

.bath__info::after,
.bath__info::before {
    position: absolute;
    width: 150px;
    height: 100px;
    content: "";
    border: solid #ff6408;
}

.bath__info::after {
    right: 0;
    bottom: 0;
    border-width: 0 5px 5px 0;
}

.bath__info::before {
    left: 0;
    top: 0;
    border-width: 5px 0 0 5px;
}

.bath__info h4 {
    font-size: 20px;
    line-height: 22px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.bath__info p {
    font-size: 16px;
    line-height: 20px;
}

.bath__inner {
    display: flex;
    justify-content: space-between;
}

.bath__item {
    width: 49%;
}

.bath__item:first-child {
    position: relative;
}

.bath__item:first-child::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: #ff6408;
}

.bath__item h6 {
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #ff6408;
    text-align: center;
}

.bath__item p {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 20px;
}

.bath__item span {
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    color: #96845a;
}

.bath__item ul {
    margin-top: 10px;
}

.bath__item li {
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
}

.bath__item li::before {
    content: '';
    position: absolute;
    left: 0;
    width: 15px;
    height: 15px;
    background-image: url(../images/text-marker.png);
}

.fast-call {
    background-color: #ff6408;
    padding: 50px 0;
    color: #FFFFFF;
    text-align: center;
}

.fast-call p {
    font-weight: 700;
    font-size: 54px;
    line-height: 60px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.fast-call a {
    font-weight: 400;
    font-size: 34px;
    line-height: 40px;
}

.type-bath {
    margin: 50px 0;
}

.type-bath p {
    font-weight: 700;
    font-size: 34px;
    line-height: 40px;
    margin-bottom: 40px;
    text-transform: uppercase;
    text-align: center;
}

.type-bath__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.type-bath__item {
    width: 32%;
    border: 2px solid #96845a;
}

.type-bath__item-img img {
    width: 100%;
    max-height: 300px;
    min-height: 300px;
    object-fit: cover;
}

.type-bath__item-info {
    padding: 10px;
    text-align: center;
}

.type-bath__item-info span {
    font-weight: 500;
    font-size: 25px;
    line-height: 30px;
}

.type-bath__item-info h3 {
    font-weight: 400;
    font-size: 20px;
    line-height: 23px;
    margin: 20px 0;
}

.type-bath__item-info p {
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 15px;
    text-transform: none;
}

.type-bath__item-info li {
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 10px;
    list-style-type: disc;
    list-style-position: inside;
}

.rest {
    margin: 50px 0;
}

.rest h4 {
    font-weight: 400;
    font-size: 20px;
    line-height: 23px;
    margin-bottom: 15px;
}

.rest a {
    transition: all .5s;
}

.rest a:hover {
    color: #ff6408;
}

.rest__inner {
    margin-top: 30px;
}

.rest__item {
    margin-bottom: 40px;
    border-top: 1px solid #ff6408;
}

.rest__item h2 {
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    margin: 20px 0;
}

.rest__item ul {
    margin-bottom: 30px;
}

.rest__item li {
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 10px;
    list-style-type: disc;
    list-style-position: inside;
}

.rest__item h4 {
    font-weight: 500;
    font-size: 22px;
    line-height: 25px;
    margin: 20px 0;
}

.rest__item p {
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 10px;
}

.cost {
    margin: 50px 0;
}

.cost h2 {
    font-weight: 700;
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 40px;
    text-align: center;
    text-transform: uppercase;
    color: #ff6408;
}

.cost__slider-item {
    margin: 0 10px;
}

.cost__slider-item--img img {
    width: 100%;
    height: 370px;
    object-fit: cover;
}

.cost__slider-item--info {
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 180px;
    background-color: #ff6408;
    color: #FFFFFF;
}

.cost__slider-item--info span {
    font-weight: 500;
    font-size: 22px;
    line-height: 22px;
}

.cost__slider-item--info h3 {
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    margin: 10px 0;
}

.cost__slider-item--info p {
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
}

.slider-cost-arrows {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 37px;
}

.slick-cost-arrow {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #ff6408;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slick-cost-arrow img {
    width: 25px;
    height: 25px;
}

.slick-cost-prev {
    margin-right: 10px;
}

.single {
    margin: 50px 0;
}

.single h3 {
    font-weight: 700;
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
}

.single h4 {
    font-weight: 400;
    font-size: 22px;
    line-height: 25px;
    max-width: 650px;
    text-align: center;
    margin: 0 auto 40px auto;
}

.single h6 {
    font-weight: 400;
    font-size: 20px;
    line-height: 23px;
    margin-bottom: 20px;
}

.single__info {
    position: relative;
    padding: 30px;
}

.single__info::after,
.single__info::before {
    position: absolute;
    width: 150px;
    height: 100px;
    content: "";
    border: solid #ff6408;
}

.single__info::before {
    left: 0;
    top: 0;
    border-width: 5px 0 0 5px;
}

.single__info::after {
    right: 0;
    bottom: 0;
    border-width: 0 5px 5px 0;
}

.single__info p {
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 20px;
}

.single__info span {
    color: #ff6408;
}

.price {
    margin: 50px 0;
}

.price__br {
    display: none;
}

.price p {
    font-weight: 700;
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 40px;
    text-align: center;
    text-transform: uppercase;
}

.price h4 {
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 15px;
}

.price ul {
    margin-bottom: 30px;
}

.price li {
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 10px;
    list-style-type: disc;
    list-style-position: inside;
}

.price li strong {
    font-weight: 700;
}

.price table,
.price__info table {
    width: 100%;
    border: none;
    margin-bottom: 40px;
}

.price thead tr th:first-child,
.price__info thead tr th:first-child {
    border-radius: 3px 0 0 3px;
}

.price thead tr th:last-child,
.price__info thead tr th:last-child {
    border-radius: 0 3px 3px 0;
}

.price thead th,
.price__info thead th {
    font-weight: 500;
    font-size: 16px;
    line-height: 17px;
    text-align: center;
    padding: 20px 40px 24px 24px;
    vertical-align: middle;
    border: none;
    background: rgba(255, 100, 8, .75);
    color: #FFFFFF;
}

.price tbody tr:nth-child(even),
.price__info tbody tr:nth-child(even) {
    background: rgba(255, 100, 8, .75);
}

.price tbody tr,
.price__info tbody tr {
    font-weight: 400;
    color: #000000;
    height: 59px;
}

.price tbody td,
.price__info tbody td {
    font-weight: 400;
    font-size: 14px;
    line-height: 15px;
    padding: 0;
    border: none;
    vertical-align: middle;
    text-align: center;
    color: #000000;
}

.price tbody tr td:first-child,
.price__info tbody tr td:first-child {
    border-radius: 3px 0 0 3px;
}

.price tbody tr td:last-child,
.price__info tbody tr td:last-child {
    border-radius: 0 3px 3px 0;
}

.price__info p {
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    text-align: left;
    text-transform: none;
    margin-bottom: 15px;
}

.price__info p strong {
    font-weight: 700;
    margin-bottom: 25px;
}

.price__info h5 {
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 25px;
}

.price__info h4 {
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 25px;
}

.free {
    background-color: #ff6408;
    padding: 50px 0;
    text-align: center;
    color: #FFFFFF;
}

.free p {
    font-weight: 700;
    font-size: 35px;
    line-height: 40px;
    margin-bottom: 35px;
}

.free a {
    font-weight: 700;
    font-size: 22px;
    line-height: 25px;
    background-color: transparent;
    border: 1px solid #FFFFFF;
    padding: 15px;
    width: 300px;
    text-transform: uppercase;
    transition: all .5s;
}

.free a:hover {
    background-color: #FFFFFF;
    border: 1px solid #96845a;
    color: #ff6408;
}

.maintn-text {
    margin: 50px 0;
}

.maintn-text ul {
    margin-bottom: 25px;
}

.maintn-text li {
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 10px;
    list-style-type: disc;
    list-style-position: inside;
}

.maintn-text li strong {
    font-weight: 700;
    margin-bottom: 10px;
}

.maintn-text p {
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 15px;
}

.maintn-text p span {
    text-transform: uppercase;
}

.maintn-text sup {
    font-weight: 400;
    top: -0.5em;
    font-size: 65%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

.request {
    background-color: #ff6408;
}

.request__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 0;
}

.request__info {
    width: 48%;
}

.request__info h4 {
    font-weight: 700;
    font-size: 30px;
    line-height: 38px;
    text-align: center;
    color: #FFFFFF;
    text-transform: uppercase;
}

.request__form {
    width: 48%;
    color: #FFFFFF;
}

.request__form h5 {
    font-weight: 700;
    font-size: 25px;
    line-height: 27px;
    margin-bottom: 30px;
    text-align: center;
}

.request__form form {
    display: flex;
    flex-direction: column;
}

.request__form input {
    font-weight: 400;
    font-size: 20px;
    line-height: 22px;
    margin-bottom: 20px;
    padding: 15px;
    border: none;
    color: #000000;
}

.request__form input::placeholder {
    font-weight: 400;
    font-size: 20px;
    line-height: 22px;
    color: #000000;
}

.request__form button {
    font-weight: 700;
    font-size: 20px;
    line-height: 22px;
    padding: 15px;
    background-color: #FFFFFF;
    color: #ff6408;
    text-transform: uppercase;
    margin-bottom: 10px;
    transition: all .5s;
}

.request__form button:hover {
    box-shadow: 0 0 10px 5px rgba(255, 255, 255, 80%);
}

.request__form blockquote {
    text-align: center;
    max-width: 340px;
    margin: 0 auto;
    color: rgba(0, 0, 0,.45);
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
}

.video {
    margin: 50px 0;
}

.video p {
    font-weight: 700;
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 40px;
    text-align: center;
    color: #ff6408;
    text-transform: uppercase;
}

.video__item {
    position: relative;
}

.video__item a::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background-image: url(../images/video-play.svg);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 1;
}

.video__item img {
    width: 100%;
}

.footer {
    background-image: linear-gradient(to right, rgba(255,255,255,.55), rgba(255,255,255,.55)), url(../images/header-bg.jpg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    padding: 50px 0;
}

.footer__text {
    text-align: center;
    margin-bottom: 50px;
}

.footer__text p {
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 15px;
    color: #000000;
}

.footer__items {
    display: flex;
    justify-content: space-between;
}

.footer__item {
    width: 33%;
}

.footer__item h4 {
    font-weight: 700;
    font-size: 20px;
    line-height: 22px;
    margin-bottom: 20px;
}

.footer__item form {
    display: flex;
    flex-direction: column;
}

.footer__item input {
    border: 1px solid #ff6408;
    outline: none;
    padding: 15px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 20px;
    background-color: #FFFFFF;
    color: #000000;
}

.footer__item input::placeholder {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: #000000;
}

.footer__item textarea {
    background: #FFFFFF;
    border: 1px solid #ff6408;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 16px;
    color: #000000;
    resize: none;
    height: 100px;
    padding: 15px;
    margin-bottom: 20px;
    outline: none;
    border-radius: 0;
    -webkit-appearance: none;
}

.footer__item textarea::placeholder {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 16px;
    color: #000000;
}

.footer__item button {
    background: #ff6408;
    border: 1px solid #ff6408;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 16px;
    color: #FFFFFF;
    padding: 15px;
    text-transform: uppercase;
}

.footer__item-call {
    display: flex;
    flex-direction: column;
}

.footer__item-call a {
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 20px;
    transition: all .5s;
}

.footer__item-call a:hover {
    color: #ff6408;
}

.footer__item-work {
    margin-bottom: 30px;
}

.footer__item-work p:first-child {
    margin-bottom: 20px;
}

.footer__item-work p {
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 10px;
}

.footer__item-week p:first-child {
    margin-bottom: 20px;
}

.footer__item-week p {
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 10px;
}

.footer__copy {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

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

.footer__social-tiktok {
    margin-right: 15px;
}

.footer__social-tiktok img {
    width: 30px;
    height: 30px;
}

.footer__social-facebook {
    margin-right: 15px;
}

.footer__social-facebook svg {
    width: 30px;
    height: 30px;
}

.footer__social-inst img {
    width: 30px;
    height: 30px;
}

.footer__social-youtube {
    margin-right: 15px;
}

.footer__social-youtube img {
    width: 35px;
    height: 35px;
}

.footer__write {
    text-align: right;
}

.footer__write a strong {
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
}

.footer__write p {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
}

/* Thank you Page */

.thank-main {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.thank-main h1 {
    font-weight: 700;
    font-size: 93px;
    line-height: 90px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ff6408;
}

.thank-main p {
    font-weight: 400;
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 10px;
}

.thank-main a {
    font-weight: 400;
    font-size: 30px;
    line-height: 35px;
    text-decoration: underline;
    transition: all .5s;
}

.thank-main a:hover {
    color: #ff6408;
}

/* End Thank you page */


#request {
    padding-top: 150px;
    margin-top: -150px;
    -webkit-background-clip: content-box;
    background-clip: content-box;
}









/* Media Requests */

@media (max-width: 1100px) {
    .footer__item {
        width: 32%;
    }
}

@media (max-width: 1000px) {
    .goods__item {
        width: 48%;
        margin-bottom: 30px;
    }
    .goods__item-img,
    .goods__item-info {
        margin: 0 auto;
    }
}

@media (max-width: 900px) {
    .menu li {
        margin: 0 25px;
    }
    .header__item {
        padding: 0 15px;
    }
    .header__item h1 {
        text-align: center;
    }
    .type-bath__item {
        width: 48%;
        margin-bottom: 30px;
    }
    .thank-main {
        padding: 0 15px;
    }
    .thank-main p {
        text-align: center;
    }
}

@media (max-width: 800px) {
    .request__inner {
        flex-direction: column;
    }
    .request__info,
    .request__form {
        width: 100%;
    }
    .request__info {
        margin-bottom: 40px;
    }
    .request__form blockquote {
        max-width: 80%;
    }
    .price table, .price__info table {
        overflow-x: scroll;
        display: block;
    }
    .footer__items {
        flex-direction: column;
    }
    .footer__item {
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }
    .footer__copy {
        margin-top: 20px;
        flex-direction: column;
        align-items: center;
    }
    .footer__write {
        text-align: center;
        margin-top: 20px;
    }
}

@media (max-width: 700px) {
    .menu li {
        margin: 0 10px;
    }
    .text__inner {
        flex-direction: column;
    }
    .text__inner ul {
        max-width: 100%;
        margin-bottom: 40px;
    }
    .clients__item {
        width: 33%;
    }
    .bath__inner {
        flex-direction: column;
    }
    .bath__item {
        width: 100%;
    }
    .bath__item + .bath__item {
        margin-top: 40px;
    }
    .bath__item:first-child::after {
        content: none;
    }
    .type-bath__item {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .menu__btn {
        z-index: 3;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 20px;
        height: 20px;
        background-color: transparent;
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
        order: 3;
    }
    .menu__btn:before {
        content: '';
        display: none;
        position: absolute;
        z-index: -1;
        right: -20px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        height: 94px;
        width: 50%;
        background: transparent;
    }
    .menu__btn span {
        display: block;
        height: 2px;
        width: 100%;
        background: #ff6408;
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
        z-index: 12;
    }
    .menu__btn span:nth-child(2) {
        width: 100%;
        margin-top: 4px;
    }
    .menu__btn span:nth-child(3) {
        width: 100%;
        margin-top: 4px;
    }
    .menu__btn.show {
        height: 20px;
        z-index: 999;

    }
    .menu__btn.show span {
        background: #ff6408;
    }
    .menu__btn.show span:nth-child(1) {
        width: 100%;
        transform: translate(0px, 6px) rotate(-45deg);
    }
    .menu__btn.show span:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }
    .menu__btn.show span:nth-child(3) {
        width: 100%;
        transform: translate(0px, -6px) rotate(45deg);
    }
    .header__inner-nav {
        position: fixed;
        z-index: 11;
        left: auto;
        right: 0;
        top: 0;
        height: 100%;
        width: 50%;
        padding: 0px;
        background: #FFFFFF;
        overflow: auto;
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
        -webkit-transition: 0.4s;
        -o-transition: 0.4s;
        transition: 0.4s;
        opacity: 0;
    }
    .menu__list {
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        height: auto;
        padding: 60px 15px 15px 25px;
    }
    .header__inner-nav li {
        position: relative;
        display: block !important;
        height: auto;
        width: auto;
        padding: 0 0 23px 0;
    }
    .header__inner-nav li > a {
        position: relative;
        display: block;
        width: 100%;
    }
    .menu__list li {
        margin: 0;
    }
    body._lock {
        overflow: hidden;
    }
    .header__inner-nav.show {
        opacity: 1;
        transform: translateX(0);
    }
    .header-menu_bgr.show {
        opacity: 1;
        transform: translateX(0);
    }
    .header-menu_bgr {
        display: block;
        position: fixed;
        z-index: 2;
        left: 0;
        top: 0;
        width: 50%;
        height: 100%;
        background-color: rgba(14, 9, 21, .86);
        transform: translateX(-100%);
        opacity: 0;
        transition: 0.4s;
    }
    .menu {
        flex-direction: column;
        padding: 100px 10px 20px 20px;
    }
    .menu li {
        margin: 0px;
    }
    .header__inner-logo {
        display: flex;
        order: 1;
    }
    .header__inner-phone {
        order: 2;
    }
    .header__item h1 {
        font-size: 45px;
        line-height: 55px;
        height: auto;
    }
    .main-slider .slick-arrow {
        width: 35px;
        height: 35px;
    }
    .main-slider .slick-prev img,
    .main-slider .slick-next img {
        width: 25px;
        height: 25px;
    }
    .clients__item {
        width: 50%;
    }
    .fast-call p {
        font-size: 40px;
        line-height: 40px;
        margin-bottom: 30px;
    }
    .fast-call a {
        font-size: 24px;
        line-height: 24px;
    }
    .video__item a::before {
        width: 60px;
        height: 60px;
        background-size: cover;
    }
    .goods__item {
        width: 100%;
    }
    .thank-main h1 {
        font-size: 80px;
        line-height: 80px;
    }
}

@media (max-width: 420px) {
    .header__inner-phone a,
    .menu li {
        font-size: 16px;
        line-height: 16px;
    }
    .header__item h1 {
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 35px;
        padding: 35px;
    }
    .header__item a {
        font-size: 16px;
        line-height: 16px;
    }
    .header__item h1::after,
    .header__item h1::before {
        width: 130px;
    }
    .header__item h1::before {
        border-width: 3px 0 0 3px;
    }
    .header__item h1::after {
        border-width: 0 3px 3px 0;
    }
    .about {
        margin: 35px 0;
    }
    .about p {
        font-size: 18px;
        line-height: 20px;
    }
    .about h3,
    .about li {
        font-size: 16px;
        line-height: 20px;
    }
    .main-slider {
        margin: 35px 0;
    }
    .main-slider .slick-arrow {
        width: 25px;
        height: 25px;
    }
    .main-slider .slick-prev img,
    .main-slider .slick-next img {
        width: 15px;
        height: 15px;
    }
    .text {
        margin: 35px 0;
    }
    .text__info::after,
    .text__info::before {
        width: 130px;
    }
    .text__info::before {
        border-width: 3px 0 0 3px;
    }
    .text__info::after {
        border-width: 0 3px 3px 0;
    }
    .text__info {
        margin-bottom: 30px;
    }
    .text__info h3 {
        font-size: 18px;
        line-height: 21px;
    }
    .text__inner ul {
        margin-bottom: 0px;
    }
    .text__inner ul + ul {
        margin-top: 20px;
    }
    .clients {
        padding: 35px 0;
    }
    .clients h4 {
        font-size: 18px;
        line-height: 21px;
        margin-bottom: 35px;
    }
    .clients__item {
        margin-bottom: 25px;
    }
    .bath {
        margin: 35px 0;
    }
    .bath__info h4 {
        font-size: 18px;
        line-height: 21px;
    }
    .bath__info::before {
        border-width: 3px 0 0 3px;
    }
    .bath__info::after,
    .bath__info::before {
        width: 130px;
    }
    .bath__info::after {
        border-width: 0 3px 3px 0;
    }
    .bath h5 {
        margin-bottom: 30px;
    }
    .bath__item h6 {
        margin-bottom: 10px;
        text-align: left;
    }
    .bath__item + .bath__item {
        margin-top: 20px;
    }
    .fast-call {
        padding: 35px 0;
    }
    .fast-call p {
        font-size: 30px;
        line-height: 30px;
    }
    .fast-call a {
        font-size: 20px;
        line-height: 20px;
    }
    .video {
        margin: 35px 0;
    }
    .video p {
        font-size: 25px;
        line-height: 25px;
        margin-bottom: 30px;
    }
    .video__item a::before {
        width: 45px;
        height: 45px;
    }
    .type-bath {
        margin: 35px 0;
    }
    .type-bath p {
        font-size: 25px;
        line-height: 30px;
        margin-bottom: 30px;
    }
    .type-bath__item-info span {
        font-size: 20px;
        line-height: 25px;
    }
    .type-bath__item-info h3 {
        font-size: 18px;
        line-height: 21px;
        margin: 10px 0;
    }
    .type-bath__item-info li {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 5px;
    }
    .rest {
        margin: 35px 0;
    }
    .rest h4,
    .rest__item p {
        font-size: 16px;
        line-height: 20px;
    }
    .rest__item h2,
    .rest__item h4 {
        font-size: 18px;
        line-height: 21px;
        margin: 15px 0;
    }
    .rest__item ul {
        margin-bottom: 20px;
    }
    .rest__item li {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 5px;
    }
    .rest__item {
        margin-bottom: 20px;
    }
    .cost {
        margin: 35px 0;
    }
    .cost h2 {
        font-size: 25px;
        line-height: 30px;
        margin-bottom: 30px;
    }
    .slider-cost-arrows {
        margin-bottom: 25px;
    }
    .slick-cost-arrow {
        width: 25px;
        height: 25px;
    }
    .slick-cost-arrow img {
        width: 15px;
        height: 15px;
    }
    .cost__slider-item--img img {
        height: 270px;
    }
    .cost__slider-item--info span {
        font-size: 18px;
        line-height: 21px;
    }
    .cost__slider-item--info h3,
    .cost__slider-item--info p {
        font-size: 16px;
        line-height: 20px;
    }
    .request {
        padding: 35px 0;
    }
    .request__info h4 {
        font-size: 25px;
        line-height: 30px;
    }
    .request__form h5 {
        font-size: 20px;
        line-height: 25px;
        margin-bottom: 25px;
    }
    .request__form input,
    .request__form button {
        font-size: 16px;
        line-height: 20px;
    }
    .request__form input::placeholder {
        font-size: 16px;
        line-height: 20px;
    }
    .request__form blockquote {
        font-size: 14px;
        line-height: 18px;
    }
    .single {
        margin: 35px 0;
    }
    .single h3 {
        font-size: 25px;
        line-height: 30px;
    }
    .single h4 {
        font-size: 18px;
        line-height: 21px;
        max-width: 100%;
        margin: 0 auto 30px auto;
    }
    .single h6 {
        font-size: 18px;
        line-height: 21px;
    }
    .single__info::before {
        border-width: 3px 0 0 3px;
    }
    .single__info::after {
        border-width: 0 3px 3px 0;
    }
    .single__info::after,
    .single__info::before {
        width: 130px;
    }
    .single__info p {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 15px;
    }
    .goods {
        margin: 35px 0 5px 0;
    }
    .goods h4 {
        font-size: 18px;
        line-height: 21px;
    }
    .goods span {
        margin-bottom: 25px;
    }
    .goods__item-img {
        max-height: 230px;
        min-height: 230px;
    }
    .goods__item-info h6 {
        font-size: 18px;
        line-height: 21px;
        margin-bottom: 10px;
        height: 30px;
    }
    .goods__item-info p,
    .goods__item-info a {
        font-size: 16px;
    }
    .price {
        margin: 35px 0;
    }
    .price p {
        font-size: 25px;
        line-height: 25px;
        margin-bottom: 25px;
    }
    .price h4,
    .price li {
        font-size: 16px;
        line-height: 20px;
    }
    .price table,
    .price__info table {
        white-space: nowrap;
        margin-bottom: 30px;
    }
    .price thead th,
    .price__info thead th {
        font-size: 14px;
        line-height: 17px;
        padding: 20px;
    }
    .price__br {
        display: block;
    }
    .price p {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 15px;
    }
    .price__info p strong {
        margin-bottom: 15px;
    }
    .price__info h5 {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 15px;
    }
    .price tbody td,
    .price__info tbody td {
        padding: 15px;
    }
    .free {
        padding: 35px 0;
    }
    .free p {
        font-size: 25px;
        line-height: 30px;
        margin-bottom: 30px;
    }
    .free a {
        font-size: 18px;
        line-height: 21px;
        width: 240px;
    }
    .maintn-text {
        margin: 35px 0;
    }
    .maintn-text li,
    .maintn-text p {
        font-size: 16px;
        line-height: 20px;
    }
    .footer {
        padding: 35px 0;
    }
    .footer__text p {
        font-size: 16px;
        line-height: 20px;
    }
    .footer__text {
        margin-bottom: 25px;
    }
    .footer__item {
        margin-bottom: 15px;
    }
    .footer__item h4 {
        font-size: 18px;
        line-height: 21px;
        margin-bottom: 15px;
    }
    .footer__item-call a {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 15px;
    }
    .footer__item-work p,
    .footer__item-week p {
        font-size: 16px;
        line-height: 20px;
    }
    .footer__social-facebook svg,
    .footer__social-tiktok img {
        width: 25px;
        height: 25px;
    }
    .footer__social-youtube img {
        width: 30px;
        height: 30px;
    }
    .footer__social-inst img {
        width: 27px;
        height: 27px;
    }
    .thank-main h1 {
        font-size: 70px;
        line-height: 70px;
    }
    .thank-main p,
    .thank-main a {
        font-size: 25px;
        line-height: 30px;
    }
}

@media (max-width: 375px) {
    .header__item h1 {
        font-size: 25px;
        line-height: 35px;
        padding: 35px 15px;
    }
    .header__item h1::after,
    .header__item h1::before {
        width: 100px;
        height: 80px;
    }
    .header__inner-logo img {
        height: 71px;
    }
    .header__inner-phone a + a {
        margin-top: 7px;
    }
    .menu {
        padding: 100px 10px 20px 15px;
    }
    .text__info h3 {
        font-size: 16px;
        line-height: 20px;
    }
    .text__info::after,
    .text__info::before {
        width: 100px;
        height: 80px;
    }
    .text__info {
        padding: 30px 15px;
    }
    .bath__info {
        padding: 30px 15px;
    }
    .bath__info h4,
    .bath h5 {
        font-size: 16px;
        line-height: 20px;
    }
    .fast-call p {
        font-size: 28px;
        line-height: 28px;
    }
    .video p {
        font-size: 20px;
        line-height: 20px;
    }
    .type-bath p {
        font-size: 20px;
        line-height: 25px;
    }
    .type-bath__item-info span {
        font-size: 18px;
        line-height: 22px;
    }
    .type-bath__item-info h3 {
        font-size: 16px;
        line-height: 20px;
    }
    .rest__item h2,
    .rest__item h4 {
        font-size: 16px;
        line-height: 20px;
    }
    .cost h2 {
        font-size: 20px;
        line-height: 25px;
    }
    .request__info h4 {
        font-size: 20px;
        line-height: 25px;
    }
    .request__form h5,
    .request__info h4 {
        font-size: 18px;
        line-height: 21px;
    }
    .request__info {
        margin-bottom: 30px;
    }
    .request__form blockquote {
        max-width: 100%;
    }
    .single h3 {
        font-size: 20px;
        line-height: 25px;
    }
    .single h4 {
        font-size: 16px;
        line-height: 20px;
        margin: 0 auto 25px auto;
    }
    .single h6 {
        font-size: 16px;
        line-height: 20px;
    }
    .single__info {
        padding: 30px 15px;
    }
    .single__info::after,
    .single__info::before {
        width: 100px;
        height: 80px;
    }
    .free p {
        font-size: 20px;
        line-height: 25px;
    }
    .free a {
        font-size: 16px;
        line-height: 20px;
        width: 175px;
    }
    .thank-main h1 {
        font-size: 55px;
        line-height: 55px;
    }
    .thank-main p,
    .thank-main a {
        font-size: 20px;
        line-height: 25px;
    }
}