html {
    box-sizing: border-box;
}

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

a {
	text-decoration: none;
	display: inline-block;
    color: inherit;
    transition: all .3s ease-in-out;
}

ul,
li {
	list-style: none;
	margin: 0;
	padding: 0;
}

img {
    max-width: 100%;
    width: 100%;
    display: block;
}

button {
    border: none;
    background: transparent;
    cursor: pointer;
}

body {
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-size: 15px;	
}

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

/* -------- header -------- */
.header {
    position: relative;
}

.substrate {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, .3);
    z-index: -1;
}

.video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
}

.video video {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    object-fit: cover;
}

.header__menu {
    position: fixed;
    top: 0;
    z-index: 1012;
    width: 100%;
}

.header__menu.header__menu-fixed {
    background: #444141;
}

.header__menu-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
}

.header__menu.header__menu-fixed .header__menu-inner {
    padding: 5px 0;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    max-width: 60px;
    border-radius: 50%;
}

.logo p {
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    line-height: 1.3;
}

.menu-inner {
    display: flex;
    align-items: center;
    gap: 20px;
}

ul.nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

ul.nav li a {
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1.2px;
    padding: 0 0 5px;
    position: relative;
    transition: all ease .35s;
}

ul.nav li {
    position: relative;
}

ul.nav li span {
    position: absolute;
    top: -25px;
    right: 0;
    background: yellowgreen;
    border-radius: 5px;
    padding: 3px 5px;
    color: #fff;
}

ul.nav li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    transition: all ease .35s;
    display: block;
    background: #00372d;
}

ul.nav li a:hover::before {
    width: 100%;
    transition: all ease .35s;
}

ul.nav li a.active::before {
    width: 100%;
}

.socicons ul {
    display: flex;
    gap: 20px;
}

.socicons ul li a {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.5);
}

.socicons ul li a:hover {
    color: #fff;
}

.header__info {
    text-align: center;
    color: #fff;
    padding: 200px 0 230px;
}

.header__info h1 {
    text-transform: uppercase;
    font-size: 60px;
    margin: 0;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, .7);
}

.header__info-stars {
    position: relative;
    margin: 50px 0;
    display: inline-block;
}

.header__info-stars span {
    font-size: 26px;
    margin: 0 2px;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, .7);
}

.header__info-stars::before,
.header__info-stars::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    height: 2px;
    background: #fff;
}

.header__info-stars::before {
    left: -115px;
}

.header__info-stars::after {
    right: -115px;
}

.header__info p {
    font-size: 30px;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, .7);
}

/* -------- reservation -------- */
.reservation {
    background: #f5f5f5;
    padding: 80px 0 90px;
}

.reservation__inner {
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background: #fff;
    border-radius: 7px;
    box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.2);
    margin: -155px 0 0;
}

.reservation__item {
    width: 17%;
    position: relative;
}

.reservation__item::before {
    content: '';
    position: absolute;
    height: 100%;
    top: 0;
    right: -21px;
    width: 1px;
    background: #E7E7E7;
}

.reservation__item:last-child::before {
    content: none;
}

.reservation__item h3 {
    color: #333;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 400;
    margin: 0 0 10px;
}

.reservation__item input {
    width: 100%;
    padding: 5px 10px;
    outline: none;
    border: 1px solid #E7E7E7;
    border-radius: 5px;
}

.reservation__item select {
    width: 100%;
    padding: 5px 10px;
    border: 1px solid #E7E7E7;
    border-radius: 5px;
    background: #fff;
    cursor: pointer;
}

.default-btn {
    font-size: 15px;
    background: #00372d;
    color: #fff;
    padding: 18px;
    border-radius: 5px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    transition: all .3s ease-in-out;
}

.default-btn:hover {
    background: yellowgreen;
    color: #fff;
}

.welcome__inner {
    display: flex;
    gap: 100px;
    margin: 100px 0 0;
}

.welcome__img {
    width: 50%;
}

.welcome__img img {
    border-radius: 7px;
}

.welcome__info {
    width: 50%;
}

.welcome__info h2 {
    font-size: 36px;
    color: #555;
    margin: 0 0 30px;
    font-weight: 500;
}

.welcome__info p {
    color: #333;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
}

.welcome__info p + p {
    margin: 15px 0 0;
}

/* -------- rooms -------- */
.section {
    padding: 50px 0 80px;
}

.heading {
    text-align: center;
}

.heading h2 {
    font-size: 36px;
    color: #555;
    margin: 0 0 30px;
    font-weight: 500;
}

.heading p {
    max-width: 750px;
    margin: 0 auto;
    color: #333;
    font-size: 16px;
    line-height: 1.3;
}

.rooms__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 50px 0 0;
}

.rooms__item {
    width: 31.6%;
    box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.2);
    position: relative;
    padding: 0 0 70px;
    height: max-content;
}

.rooms__img-main a {
    display: block;
}

.rooms__img-main a img {
    height: 250px;
    object-fit: cover;
}

.rooms__img-dop {
    /*display: flex;
    gap: 15px;*/
    margin: 15px -5px 10px;
    padding: 0 0 50px;
}

.rooms__img-dop a {
    display: block;
    width: 21.9%;
    margin: 0 5px;
}

.rooms__img-dop a img {
    height: 70px;
    object-fit: cover;
}

body.compensate-for-scrollbar {
    overflow: auto !important;
    margin: 0;
}

.rooms__img-dop .slick-btn {
    position: absolute;
    bottom: 20px;
    border: none;
    cursor: pointer;
    outline: none;
    z-index: 1;
}

.rooms__img-dop .slick-next,
.rooms__img-dop:hover .slick-next,
.rooms__img-dop .slick-prev,
.rooms__img-dop:hover .slick-prev,
.rooms__img-dop .slick-btn:hover::before {
    transition: .5s ease;
}

.rooms__img-dop .slick-next {
    left: 50px;
    right: 0;
    margin: 0 auto;
}

.rooms__img-dop .slick-prev {
    left: 0;
    right: 50px;
    margin: 0 auto;
}

.rooms__img-dop .slick-btn::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'icomoon';
    color: #fff;
    font-size: 25px;
    background: #00372d;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rooms__img-dop .slick-btn:hover::before {
    background: #F7D5AD;
    color: #333;
}

.rooms__img-dop .slick-next::before {
    content: "\f105";
}

.rooms__img-dop .slick-prev::before {
    content: "\f104";
}

.rooms__info {
    padding: 10px;
}

.rooms__info h4 {
    text-align: center;
}

.rooms__info h4 a {
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 10px;
    color: #151515;
    min-height: 55px;
}

.rooms__info h4 a:hover {
    color: #00372d;
}

.rooms__info p {
    font-size: 18px;
    color: #555;
    font-weight: 500;
    margin: 0 0 5px;
    text-align: center;
}

.rooms__info p strong {
    font-size: 20px;
}

p.rooms__info-desc {
    min-height: 85px;
}

.rooms__info-hide {
	display: none;
    margin: 40px 0 0;
}

.rooms__item button.default-btn {
    padding: 10px;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.rooms__item button.default-btn.close-list {
    bottom: auto;
}

.rooms__info ul {
    margin: 5px 0 10px;
}

.rooms__info ul li {
    margin: 5px 0 0;
    padding: 0 0 0 20px;
    line-height: 20px;
    position: relative;
}

.rooms__info ul li::before {
    content: "\f00c";
    font-family: "icomoon";
    color: #00372d;
    position: absolute;
    left: 0;
    top: 0;
}

.rooms__info span.footnote {
    font-style: italic;
    display: block;
    font-size: 13px;
}

.rooms__btn {
    text-align: center;
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

/* -------- aboutas -------- */
.aboutas {
    background: #f5f5f5;
}

.aboutas__inner {
    background: #fff;
    border-radius: 10px 10px 0 0;
    margin: 50px 0 0;
    box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.2);
}

.aboutas__tabs {
    background: #00372d;
    text-align: center;
    border-radius: 10px 10px 0 0;
    padding: 30px;
}

.aboutas__tabs a {
    font-size: 20px;
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.aboutas__tabs a:hover {
    color: #fff;
}

.aboutas__tabs a.active {
    color: #fff;
    cursor: default;
}

.aboutas__info {
    display: none;
    padding: 40px;
}

.aboutas__text {
    color: #333;
}

.aboutas__text h3 {
    font-size: 20px;
    text-transform: uppercase;
    margin: 0 0 10px;
    font-weight: 600;
}

.aboutas__text p {
    font-size: 16px;
    margin: 0 0 10px;
    line-height: 1.3;
}

.aboutas__text p span {
    color: green;
}

.aboutas__text ul {
    margin: 10px 0;
}

.aboutas__text ul li {
    position: relative;
    font-size: 16px;
    padding: 0 0 0 22px;
}

.aboutas__text ul li + li {
    margin: 10px 0 0;
}

.aboutas__text ul li::before {
    content: '\f00c';
    font-family: icomoon;
    color: #00372d;
    position: absolute;
    top: 0;
    left: 0;
}

.aboutas__text h4 {
    font-size: 18px;
    font-weight: 600;
}

/* -------- photo -------- */
.photo {
    padding: 50px 0 0;
}

.photo__inner {
    display: flex;
	flex-wrap: wrap;
    margin: 50px 0 0;
}

.photo__item {
    width: 12.5%;
    position: relative;
}

.photo__item::before {
    content: '';
    background: rgba(0,0,0,.3);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all .3s ease;
}

.photo__item:hover::before {
    background: none;
    transition: all .3s ease;
    z-index: -1;
}

.photo__item img {
	height: 200px;
	object-fit: cover;
}

.photo__item a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 35px;
    color: #151515;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.photo__item a:hover {
    color: #00372d;
    box-shadow: 0 0 0 18px rgba(255, 255, 255, 0.4);
}

.photo__item:hover a {
    opacity: 1;
} 

/* -------- ourteam -------- */
.ourteam {
    background: #f5f5f5;
}

.ourteam__inner {
    display: flex;
    flex-wrap: wrap;
    margin: 50px 0 0;
}

.ourteam__item {
    width: 33.33%;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transform: scale(1);
    transition: all .3s;
}

.ourteam__item:hover {
    transform: scale(.9);
}

.ourteam__item-img {
    position: relative;
}

.ourteam__item-img img {
    height: 250px;
    object-fit: cover;
}

.ourteam__item-img ul {
    text-align: center;
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-70%);
    transition: all .3s;
    opacity: 0;
}

.ourteam__item:hover .ourteam__item-img ul {
    opacity: 1;
    transform: translateY(-50%);
}

.ourteam__item-img ul li + li {
    margin: 10px 0 0;
}

.ourteam__item-img ul li a {
    font-size: 24px;
    color: #00372d;
}

.ourteam__item-img ul li a:hover {
    color: #333;
}

.ourteam__item-text {
    text-align: center;
    padding: 25px;
    transition: all .5s;
}

.ourteam__item-text h4 a {
    font-size: 22px;
    font-weight: 500;
    margin: 0 0 10px;
    color: #151515;
}

.ourteam__item-text h4 a:hover {
    color: #00372d;
}

.ourteam__item-text p {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333;
    transition: all .5s;
}

.spec__offers-video {
    display: flex;
    gap: 20px;
}

.spec__offers-video iframe {
    width: 426px;
    height: 240px;
    border: 0;
}

.spec__offers-action {
    display: flex;
    gap: 20px;
    margin: 0 0 50px;
}

.spec__offers-action-item {
    width: 50%;
    box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.2);
}

.spec__offers-action-item img {
    margin: 0 0 20px;
}

.spec__offers-action-item p,
.spec__offers-action-item ul li {
    line-height: 1.5;
    font-size: 17px;
    padding: 0 10px;
    color: #333;
}

.spec__offers-action-item p.heart__box {
    display: flex;
    align-items: center;
}

.spec__offers-action-item p.heart__box img {
    width: 16px;
    margin: 0 10px;
}

.spec__offers-action-item p img.tur {
    margin: 0 10px 0 0;
}

.spec__offers-action-item p + p,
.spec__offers-action-item ul li + li {
    margin: 12px 0 0;
}

.spec__offers-action-item ul {
    margin: 12px 0;
}

/* -------- accommodation -------- */
.accommodation {
    background: url("../images/bg_accommodation.jpg");
    background-attachment: fixed;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.accommodation .substrate {
    background: rgba(0, 0, 0, .5);
}

.accommodation .heading h2 {
    color: #fff;
}

.accommodation__btn {
    text-align: center;
    margin: 50px 0 0;
}

/* -------- reviews -------- */
.reviews {
    padding: 50px 0;
}

.reviews__inner {
	padding: 20px 10px 70px;
}

.reviews__inner .slick-track {
    display: flex;
    padding: 2px 0;
}

.reviews__item {
	margin: 0 10px;
    color: #333;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 5px;
    height: auto;
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.25);
    border: 1px solid #ddd;
}

.reviews__item-author {
    display: flex;
}

.reviews__item-author-img img {
    max-width: unset;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 0 10px 0 0;
}

.reviews__item-author-info h3 {
    font-size: 16px;
    margin: 0 0 5px;
    font-weight: 600;
}

.reviews__item-author-info h3 span {
    color: #777;
    font-size: 13px;
    margin: 0 0 0 5px;
    font-weight: 500;
}

.star span {
    font-size: 13px;
}

.star span.icon-star {
    color: #fec42d;
}

.star span.icon-star-o {
    color: #999;
}

.reviews__item-text {
    margin: 7px 0 0;
}

.reviews__item-text p {
    font-size: 15px;
    line-height: 1.3;
}

.reviews__item-text p img {
    float: left;
    margin: 0 10px 0px 0;
    max-width: 115px;
    padding: 5px;
}

.reviews__inner .slick-btn {
    position: absolute;
    bottom: 20px;
    border: none;
    cursor: pointer;
    outline: none;
    z-index: 1;
}

.reviews__inner .slick-next,
.reviews__inner:hover .slick-next,
.reviews__inner .slick-prev,
.reviews__inner:hover .slick-prev,
.reviews__inner .slick-btn:hover::before {
    transition: .5s ease;
}

.reviews__inner .slick-next {
    left: 50px;
    right: 0;
    margin: 0 auto;
}

.reviews__inner .slick-prev {
    left: 0;
    right: 50px;
    margin: 0 auto;
}

.reviews__inner .slick-btn::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'icomoon';
    color: #fff;
    font-size: 25px;
    background: #00372d;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews__inner .slick-btn:hover::before {
    background: #F7D5AD;
    color: #333;
}

.reviews__inner .slick-next::before {
    content: "\f105";
}

.reviews__inner .slick-prev::before {
    content: "\f104";
}

/* -------- subscribe -------- */
.subscribe {
    background: url("../images/bg_subscribe.jpg");
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.subscribe .substrate {
    background: rgba(0, 0, 0, .5);
}

.subscribe .heading h2 {
    color: #fff;
}

.subscribe-form {
    max-width: 700px;
    margin: 50px auto 0;
    display: flex;
    gap: 15px;
}

.subscribe-form input {
    width: 100%;
    padding: 15px 20px;
    font-size: 15px;
    color: #151515;
    background: #fff;
    border-radius: 5px;
    border: none;
    outline: none;
}

/* -------- contacts -------- */
.contacts {
    background: #f5f5f5;
}

.contacts__inner {
    display: flex;
    gap: 20px;
    margin: 50px 0 0;
}

.contacts__info {
    width: 45%;
}

.contacts__block-item {
    margin: 0 0 12px;
}

.contacts__block-item p {
    color: #333;
    font-size: 20px;
    display: flex;
    align-items: flex-start;
}

.contacts__block-item p span::before {
    display: inline-block;
    width: 20px;
    text-align: center;
    margin: 0 8px 0 0;
    color: #00372d;
}

.contacts__block-item p a {
    color: #333;
}

.contacts__block-item p a:hover {
    color: #00372d;
}

.contacts__form h3 {
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 10px;
    color: #151515;
}

.form__contacts-item {
	margin: 0 0 12px;
}

.form__contacts-item input,
.form__contacts-item textarea {
	width: 100%;
    outline: none;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 8px 10px;
    color: #333;
}

.form__contacts-item input::placeholder,
.form__contacts-item textarea::placeholder {
    opacity: .7;
}

.form__contacts-item input:focus,
.form__contacts-item textarea:focus {
    border: 1px solid #00372d;
}

.form__contacts-btn {
    text-align: center;
    margin: 20px 0 0;
}

.form__contacts-btn button {
	padding: 15px 18px;
}

.contacts__map {
    width: 55%;
    border-radius: 5px;
}

.contacts__map iframe {
    width: 100%;
    height: 100%;
    border: 1px solid #00372d;
    border-radius: 5px;
}

/* -------- footer -------- */
.footer {
    background: #343333;
    padding: 80px 0;
    text-align: center;
}

.footer__logo {
    display: flex;
    justify-content: center;
    margin: 0 0 40px;
}

.footer__menu {
    margin: 0 0 40px;
}

.footer__menu ul li {
    padding: 0 20px;
    display: inline-block;
}

.footer__menu ul li + li {
    border-left: 1px solid rgba(255, 255, 255, 0.5);
}

.footer__menu ul li a {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #fff;
    line-height: 1.6;
}

.footer__menu ul li a:hover {
    color: #00372d;
}

.footer__socicons {
    margin: 0 0 40px;
}

.footer__socicons ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.footer__socicons ul li a {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 22px;
    padding: 10px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__socicons ul li a:hover {
    background: #00372d;
}

.footer__copy {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* -------- Меню для мобил -------- */
.header-btn-menu {
    display: none;
    width: 28px;
    height: 20px;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
}

.header-btn-menu span {
    position: absolute;
    width: 100%;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
    height: 3px;
    background: #fff;
}

.header-btn-menu span:nth-child(1) {
    top: 0;
}

.header-btn-menu span:nth-child(2),
.header-btn-menu span:nth-child(3) {
    top: 8px;
}

.header-btn-menu span:nth-child(4) {
    top: 16px;
}

.header-btn-menu.close-menu span:nth-child(1) {
    top: 8px;
    width: 0;
    left: 50%;
}

.header-btn-menu.close-menu span:nth-child(2) {
    transform: rotate(45deg);
}

.header-btn-menu.close-menu span:nth-child(3) {
    transform: rotate(-45deg);
}

.header-btn-menu.close-menu span:nth-child(4) {
    top: 8px;
    width: 0;
    left: 50%;
}

/* -------- кнопка наверх -------- */
a#go-top {
    display: none;
    background: #00372d;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    position: fixed;
    height: 50px;
    width: 50px;
    right: 40px;
    bottom: 40px;
    z-index: 25;
}

a#go-top::after {
    content: '\f106';
    font-family: 'icomoon';
    font-size: 26px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

a#go-top:hover {
    background: #F7D5AD;
    color: #333;
}

/* -------- modal__book-time -------- */
.modal__book-time {
    display: none;
    max-width: 400px;
    width: 100%;
    cursor: auto !important;
    padding: 10px;
    background: #f5f5f5;
    border: 3px solid #00372d;
    border-radius: 7px;
}

.book-time-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.book-time-logo img {
    max-width: 60px;
    border-radius: 50%;
}

.book-time-logo p {
    color: #333;
    font-size: 20px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    line-height: 1.3;
}

.book-time {
    text-align: center;
}

.book-time h3 {
    color: #333;
    font-size: 30px;
    font-weight: 500;
    margin: 15px 0 5px;
}

.book-time p {
    font-size: 19px;
    margin: 0 0 20px;
    color: #777;
}

.book-time-item {
    position: relative;
    margin: 0 0 15px;
}

.book-time-item span {
    position: absolute;
    top: 12px;
    left: 14px;
    font-size: 22px;
    color: #777;
}

.book-time-item input {
    padding: 12px 10px 12px 40px;
    width: 100%;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 5px;
}

.book-time-item input:focus {
    border: 1px solid #00372d;
    outline: none;
}

.modal__book-time .fancybox-close-small {
    color: #00372d;
    padding: 0;
    border: 1px solid #00372d;
    border-radius: 0 5px 0 0;
    opacity: 1;
    width: 30px;
    height: 30px;
    transition: all .3s ease;
}

.modal__book-time .fancybox-close-small:hover {
    color: #333;
    border: 1px solid #333;
}

.form__checkbox {
    margin: 0 0 20px;
}

.checkbox {
    text-align: left;
}

input.checkbox__choice {
    width: 17px;
    height: 17px;
    position: absolute;
    opacity: 0;
}

.checkbox__label {
    display: block;
    cursor: pointer;
    position: relative;
    padding: 0 0 0 25px;
    line-height: 18px;
    color: #999;
    font-size: 13px;
}

.checkbox__label a {
    color: #00372d;
}

.checkbox__label a:hover {
    text-decoration: underline;
}

.checkbox__label::before {
    border: 2px solid #00372d;
    border-radius: 3px;
    content: '';
    position: absolute;
    top: 1px;
    left: 0;
    width: 17px;
    height: 17px;
}

.checkbox__choice:checked + .checkbox__label::before {
    background-color: #00372d;
}

.checkbox__choice:checked + .checkbox__label {
    opacity: 1;
}

/* -------- terms_modal -------- */
.terms_modal {
    display: none;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    background: #f5f5f5;
    text-align: justify;
    padding: 20px 30px;
    cursor: auto !important;
    border: 2px solid #00372d;
    border-radius: 5px;
}

.terms_modal h2 {
    color: #333;
    text-align: center;
    text-transform: uppercase;
}