@font-face {
    font-family: IRANSansX;
    font-style: normal;
    font-weight: 700;
    src: url("../fonts/IRANSansX/woff/IRANSansX-Bold.woff") format("woff"), url("../fonts/IRANSansX/woff2/IRANSansX-Bold.woff2") format("woff2");
}

@font-face {
    font-family: IRANSansX;
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/IRANSansX/woff/IRANSansX-Regular.woff") format("woff"), url("../fonts/IRANSansX/woff2/IRANSansX-Regular.woff2") format("woff2");
}

:root {
    --primary-color: rgba(31, 146, 168, 1);
    --dark-color: #000;
    --light-color: #fff;
    --font-size: 1em;
    --font-family: "IRANSansX";
    --default-space: 20px;
    --half-space: 10px;
    --double-space: 40px;
    --section-space: 150px;
    --around-space: 75px;
    --half-around-space: 37.5px;
    --max-width: 1920px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font: var(--font-size) var(--font-family);
    direction: rtl;
}

a {
    color: var(--dark-color);
    text-decoration: none;
}

li {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--around-space);
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--default-space);
}

.navbar__hamburger {
    display: none;
}

.navbar__close {
    display: none;
    position: absolute;
    top: var(--default-space);
    right: var(--double-space);
    font-size: 3.5em;
    color: #818181;
}

.navbar__overlay {
    transition: 0.5s;
}

.navbar__logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--half-space) 0;
}

    .navbar__logo h1 {
        font-size: 0;
    }

    .navbar__logo img {
        width: 60px;
        height: 60px;
    }

.navbar__options {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar__option:after {
    content: "|";
    margin: 0 var(--default-space);
}

.navbar__option:last-child:after {
    display: none;
}

.navbar__option a {
    transition: 0.3s;
}

    .navbar__option a:hover,
    .navbar__option a:focus {
        color: var(--primary-color);
    }

.header__left {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--default-space);
}

.btn-reserve {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 7.5px 20px;
    border-radius: 10px;
    font-weight: bold;
}

.btn-change-language img {
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-section {
    height: 600px;
    background-color: var(--primary-color);
    border-radius: 20px;
    overflow: hidden;
}

.slider {
    width: 100%;
    height: 100%;
    position: relative;
}

    .slider img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.slider__dots {
    display: flex;
    position: absolute;
    bottom: calc(5% - -90px);
    right: 5%;
}

.slider__dot {
    border: 1px solid var(--light-color);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.slider__dot-fill {
    background-color: var(--light-color);
}

.slider__items {
    width: 100%;
    height: 100%;
}

.slider__item {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

.slider__item-desc {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: none;
    flex-direction: column;
    gap: var(--default-space);
    padding: 5% 5% calc(5% - -100px) 60%;
    background: linear-gradient( to left, rgba(31, 146, 168, 1), rgba(76, 201, 227, 0.8), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) );
    transform: translateX(100%);
}

    .slider__item-desc h3 {
        font-size: 2.75em;
        line-height: 1.5em;
        font-weight: bold;
    }

    .slider__item-desc p {
        font-size: 1.25em;
        line-height: 2em;
        font-weight: bold;
    }

/* .slider__control {
    position: absolute;
    top: 0;
    left: 10px;
    z-index: 9;
}

.slider__right {
    font-size: 40px;
    cursor: pointer;
}

.slider__left {
    font-size: 40px;
    cursor: pointer;
} */

/* .left-arrow {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    height: 100%;
    width: 147px;
    cursor: pointer;
  }
  
  .left-arrow:hover {
    background: linear-gradient(to left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3));
  }
  
  .left-arrow:hover .chevron,
  .right-arrow:hover .chevron {
    border-color: #e6e6e6;
  } */

/* .right-arrow {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    right: 0;
    height: 100%;
    width: 147px;
    cursor: pointer;
  }
  
  .right-arrow:hover {
    background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3));
  }
  
  .chevron {
    width: 25px;
    height: 25px;
    border: solid rgba(255, 255, 255, 0.5);
    border-width: 10px 10px 0 0;
  }
  
  .chevron.right {
    transform: rotate(45deg);
  }
  
  .chevron.left {
    transform: rotate(-135deg);
  } */

/* .slider__item-desc {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    bottom: 45px;
    left: 0;
    width: 100%;
    color: white;
    text-shadow: 1px 1px black;
    text-align: center;
  }
  
  .slider__item-desc p:nth-child(1) {
    margin: 10px 100px;
    font-size: 1.5em;
  }
  
  .slider__item-desc p:nth-child(2) {
    margin: 10px 100px 20px 100px;
  } */

.facilities-section {
    background-color: var(--light-color);
    border: 1px solid var(--dark-color);
    border-radius: 20px;
    margin: 0 var(--around-space);
    margin-top: -100px;
    box-shadow: 0px 7.5px 18px rgba(0, 0, 0, 0.1);
    margin-bottom: var(--section-space);
    z-index: 1;
    position: relative;
}

.facilities {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--default-space);
    margin: var(--half-around-space) var(--around-space);
}

.facilities__item-icon {
    width: 75px;
    height: 75px;
    font-size: 2em;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3.5px solid var(--primary-color);
    border-radius: 50%;
    margin: 0 auto;
}

.facilities__item-text {
    text-align: center;
    margin-top: var(--default-space);
    font-size: 1.1em;
    font-weight: bold;
}

.about-us-sec {
    margin-bottom: var(--section-space);
}

.about-us {
    display: flex;
    align-items: center;
}

.about-us__right {
    width: 50%;
    padding-left: var(--default-space);
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: var(--default-space);
}

    .about-us__right h3 {
        font-size: 2em;
        line-height: 1.5em;
        font-weight: bold;
    }

    .about-us__right p {
        padding-right: var(--default-space);
        font-size: 1.1em;
        line-height: 1.75em;
    }

.about-us__left {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--default-space);
    padding-top: 50px;
    padding-right: var(--around-space);
}

.about-us__right-pic {
    width: 33.33%;
    height: 325px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 5px 10px 18px rgba(0, 0, 0, 0.3);
}

    .about-us__right-pic img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.about-us__mid-pic {
    width: 33.33%;
    height: 325px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 5px 10px 18px rgba(0, 0, 0, 0.6);
    margin-top: -100px;
}

    .about-us__mid-pic img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.about-us__left-pic {
    width: 33.33%;
    height: 325px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 5px 10px 18px rgba(0, 0, 0, 0.3);
}

    .about-us__left-pic img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.more-about-us-sec {
    margin-bottom: var(--section-space);
}

.more-about-us {
    display: flex;
    align-items: center;
}

.more-about-us__right {
    width: 50%;
    height: 100%;
    padding-left: var(--around-space);
}

.video-slider {
    position: relative;
    width: 100%;
    height: 400px;
}

.video-slider__background {
    width: 100%;
    height: 60%;
    position: absolute;
    bottom: 0;
    z-index: -1;
    background-color: var(--primary-color);
    border-radius: 20px;
}

.video-slider__items {
    width: calc(100% - 60px);
    height: calc(100% - 30px);
    margin: 0 auto;
    border: 5px solid var(--light-color);
    border-radius: 20px;
    box-shadow: 5px 10px 18px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.video-slider__item {
    width: 100%;
    height: 100%;
}

    .video-slider__item video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.more-about-us__left {
    width: 50%;
    padding-right: var(--default-space);
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: var(--default-space);
}

    .more-about-us__left h3 {
        font-size: 2em;
        line-height: 1.5em;
        font-weight: bold;
    }

    .more-about-us__left p {
        padding-right: var(--default-space);
        font-size: 1.1em;
        line-height: 1.75em;
    }

.rooms-sec {
    position: relative;
    margin-bottom: calc(var(--section-space) + 100px);
}

.rooms-sec__heading {
    font-weight: bold;
    font-size: 2em;
    text-align: center;
    margin-bottom: var(--double-space);
}

    .rooms-sec__heading::after {
        content: "";
        display: inline-block;
        width: 35px;
        height: 2px;
        background-color: var(--dark-color);
        margin-right: 20px;
        margin-bottom: 7.5px;
    }

    .rooms-sec__heading::before {
        content: "";
        display: inline-block;
        width: 35px;
        height: 2px;
        background-color: var(--dark-color);
        margin-left: 20px;
        margin-bottom: 7.5px;
    }

.rooms {
    display: flex;
    flex-wrap: wrap;
    gap: var(--default-space);
    padding: 0 var(--around-space);
    position: relative;
    z-index: 1;
}

.rooms__item {
    width: calc(33.33% - var(--default-space));
    background-color: var(--light-color);
    border-radius: 20px;
    box-shadow: 5px 10px 18px rgb(0 0 0 / 20%);
    overflow: hidden;
}

.rooms__item-pic {
    width: 100%;
    height: 225px;
}

    .rooms__item-pic img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.rooms__item-info {
    display: flex;
    flex-direction: column;
    padding: var(--default-space);
}

.rooms__item-title {
    font-size: 1.2em;
    font-weight: bold;
}

.rooms__item-category {
}

.rooms__item-cost {
    text-align: left;
}

.rooms-sec__underlying-layer {
    position: absolute;
    bottom: -100px;
    right: 0;
    width: 100%;
    height: 220px;
    background-color: var(--primary-color);
    border-radius: 20px;
    z-index: 0;
}

.btn-more-rooms-box {
    display: flex;
    justify-content: center;
    height: 100%;
    align-items: end;
}

.btn-more-rooms {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: var(--default-space);
}

.btn-more-rooms__icon {
    color: var(--light-color);
}

.btn-more-rooms__text {
    color: var(--light-color);
    font-weight: bold;
    font-size: 1.1em;
}

.distances-sec {
    background-color: var(--primary-color);
    border-radius: 20px;
    padding: var(--half-around-space) var(--around-space);
    margin-bottom: var(--section-space);
}

.distances {
    width: 100%;
    height: 100%;
    background-color: var(--light-color);
    border-radius: 20px;
    display: flex;
    position: relative;
}

.distances__info {
    display: flex;
    flex-direction: column;
    gap: var(--default-space);
    width: 70%;
    padding: var(--half-around-space);
}

.distances__heading {
    font-weight: bold;
    font-size: 2em;
}

.distance__body {
    display: flex;
    gap: var(--default-space);
}

.distances__items {
    display: flex;
    flex-direction: column;
    gap: var(--half-space);
}

.distances__item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7.5px;
    font-size: 1.1em;
}

.distances__item-key {
    font-weight: bold;
}

.distances__item-icon {
}

.distances__item-value {
}

.distances__pic {
    height: 110%;
    position: absolute;
    bottom: 0;
    left: 0;
}

.contact-us-sec {
    position: relative;
    margin-bottom: 37.5px;
}

.contact-us-sec__before {
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
}

.contact-us-sec__after {
    position: absolute;
    bottom: -16px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: center;
}

    .contact-us-sec__after::after {
        content: "";
        width: 100%;
        height: 3px;
        background-color: var(--primary-color);
        flex: 1;
    }

.contact-us {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: var(--around-space);
}

.contact-us__communication-ways {
    width: 30%;
}

.communication-ways {
    display: flex;
    flex-direction: column;
    gap: var(--default-space);
    padding-left: var(--half-around-space);
}

.communication-ways__heading {
    font-weight: bold;
    font-size: 1.5em;
}

.communication-ways__items {
    display: flex;
    flex-direction: column;
    gap: var(--half-space);
}

.communication-ways__item {
}

.communication-ways__address {
}

.communication-ways__phone-numbers {
    direction: ltr;
}

.communication-ways__email {
}

.communication-ways__smedia {
    display: flex;
    gap: var(--half-space);
}

.communication-ways__smedia-link {
}

.communication-ways__smedia-icon {
    width: 35px;
    height: 35px;
    display: inline-block;
    background-color: var(--primary-color);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2em;
    color: var(--light-color);
}

.contact-us__site-secs {
    width: 30%;
}

.site-secs {
    display: flex;
    flex-direction: column;
    gap: var(--default-space);
    padding: 0 var(--half-around-space);
}

.site-secs__heading {
    font-weight: bold;
    font-size: 1.5em;
}

.site-secs__items {
    display: flex;
    flex-direction: column;
    gap: var(--half-space);
}

.site-secs__item {
}

.contact-us__map {
    width: 40%;
}

    .contact-us__map iframe {
        width: 100%;
        height: 100%;
    }

.page-heading {
    font-weight: bold;
    font-size: 1.75em;
    text-align: center;
    padding: 10px 0;
    border-radius: 20px;
    background-color: var(--primary-color);
    color: var(--light-color);
}

    .page-heading::after {
        content: "";
        display: inline-block;
        width: 35px;
        height: 2px;
        background-color: var(--light-color);
        margin-right: 20px;
        margin-bottom: 7.5px;
    }

    .page-heading::before {
        content: "";
        display: inline-block;
        width: 35px;
        height: 2px;
        background-color: var(--light-color);
        margin-left: 20px;
        margin-bottom: 7.5px;
    }

.rooms-notes-sec {
    width: 100%;
    padding: var(--around-space);
    background-color: rgba(31, 146, 168, 0.2);
    position: relative;
    margin-bottom: var(--around-space);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
}

.rooms-notes-sec__background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    -webkit-filter: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='a' x='0' y='0' width='1' height='1'%3E%3CfeGaussianBlur stdDeviation='4' result='b'/%3E%3CfeMorphology operator='dilate' radius='4'/%3E %3CfeMerge%3E%3CfeMergeNode/%3E%3CfeMergeNode in='b'/%3E%3C/feMerge%3E%3C/filter%3E%3C/svg%3E#a");
    -moz-filter: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='a' x='0' y='0' width='1' height='1'%3E%3CfeGaussianBlur stdDeviation='4' result='b'/%3E%3CfeMorphology operator='dilate' radius='4'/%3E %3CfeMerge%3E%3CfeMergeNode/%3E%3CfeMergeNode in='b'/%3E%3C/feMerge%3E%3C/filter%3E%3C/svg%3E#a");
    -o-filter: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='a' x='0' y='0' width='1' height='1'%3E%3CfeGaussianBlur stdDeviation='4' result='b'/%3E%3CfeMorphology operator='dilate' radius='4'/%3E %3CfeMerge%3E%3CfeMergeNode/%3E%3CfeMergeNode in='b'/%3E%3C/feMerge%3E%3C/filter%3E%3C/svg%3E#a");
    -ms-filter: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='a' x='0' y='0' width='1' height='1'%3E%3CfeGaussianBlur stdDeviation='4' result='b'/%3E%3CfeMorphology operator='dilate' radius='4'/%3E %3CfeMerge%3E%3CfeMergeNode/%3E%3CfeMergeNode in='b'/%3E%3C/feMerge%3E%3C/filter%3E%3C/svg%3E#a");
    filter: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='a' x='0' y='0' width='1' height='1'%3E%3CfeGaussianBlur stdDeviation='4' result='b'/%3E%3CfeMorphology operator='dilate' radius='4'/%3E %3CfeMerge%3E%3CfeMergeNode/%3E%3CfeMergeNode in='b'/%3E%3C/feMerge%3E%3C/filter%3E%3C/svg%3E#a");
}

.rooms-notes {
    width: 100%;
    height: 100%;
    background-color: var(--light-color);
    border-radius: 20px;
    padding: var(--half-around-space);
    display: flex;
    gap: var(--double-space);
}

.rooms-notes__right {
    display: flex;
    flex-direction: column;
    gap: var(--double-space);
}

.rooms-notes__left {
    display: flex;
    flex-direction: column;
    gap: var(--double-space);
}

.rooms-note {
    display: flex;
    flex-direction: column;
    gap: var(--default-space);
}

.rooms-note__heading {
    font-size: 1.5em;
}

.rooms-note__items {
    display: flex;
    flex-direction: column;
    gap: var(--half-space);
    padding-right: var(--default-space);
}

.rooms-note__item {
    line-height: 1.75em;
}

.rooms-notes__tags {
    display: flex;
    gap: var(--default-space);
}

.rooms-notes__tag {
    background-color: rgba(31, 146, 168, 0.2);
    padding: 10px 20px;
    width: 50%;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.rooms-notes__tag-title {
    font-weight: bold;
    text-align: center;
}

.rooms-notes__tag-value {
}

.arooms-sec {
    margin-bottom: var(--around-space);
}

.arooms {
    display: flex;
    flex-direction: column;
    gap: var(--double-space);
}

.arooms__item {
    display: flex;
    gap: var(--default-space);
    border: 5px solid var(--primary-color);
    border-radius: 20px;
    padding: var(--default-space);
}

.arooms__item-right {
    width: 40%;
}

.arooms__item-left {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: var(--default-space);
}

.arooms__item-pic {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.arooms__item-title {
    font-size: 1.5em;
    background-color: rgba(31, 146, 168, 0.2);
    display: inline-block;
    padding: 7.5px 25px;
    border-radius: 20px;
}

.arooms__item-body {
    display: flex;
    gap: var(--default-space);
    padding: 0 var(--default-space);
    flex: 1;
}

.arooms__item-rbody {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: var(--half-space);
}

.arooms__item-lbody {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: var(--half-space);
}

.arooms__item-desc {
    display: flex;
    gap: var(--half-space);
    align-items: center;
}

.arroms__item-key {
    font-size: 1.1em;
}

    .arroms__item-key::after {
        content: ":";
    }

.arroms__item-value {
    font-size: 1.1em;
}

.arooms__item-footer {
    display: flex;
    flex-direction: column;
    gap: var(--half-space);
    padding: 0 var(--default-space);
}

.arooms__item-heading {
    font-size: 1.1em;
}

.arooms__item-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--half-space);
}

.arooms__item-tag {
    background-color: rgba(238, 238, 238, 0.3);
    padding: 5px 10px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 3px;
    font-size: 0.75em;
}

.send-message-sec {
    padding: var(--half-around-space) 0;
}

.send-message {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: 3px solid rgba(31, 146, 168, 1);
    background-color: rgba(31, 146, 168, 0.2);
    padding: var(--half-around-space);
    display: flex;
    justify-content: center;
    align-items: center;
}

.send-message__frm {
    width: 65%;
    display: flex;
    flex-direction: column;
    gap: var(--default-space);
}

.send-message__field {
    display: flex;
    align-items: flex-start;
    gap: var(--default-space);
}

.send-message__lbl {
    width: 35%;
    padding-top: 5px;
    font-weight: bold;
}

.send-message__txtbox {
    width: 65%;
    padding: 5px 10px;
    transition: 0.2s;
    border-radius: 10px;
    border: none;
}

    .send-message__txtbox:focus {
        outline: 5px solid rgba(31, 146, 168, 0.7);
    }

.send-message__txtarea {
    width: 65%;
    padding: 5px 10px;
    transition: 0.2s;
    border-radius: 10px;
    border: none;
    resize: vertical;
}

    .send-message__txtarea:focus {
        outline: 5px solid rgba(31, 146, 168, 0.7);
    }

.send-message__subbtn {
    width: calc(65% - 13.33px);
    margin-right: calc(35% + 13.33px);
    padding: 10px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    background-color: var(--primary-color);
    color: #fff;
}

.gallery-sec {
    margin-bottom: 15px;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
}

.gallery__column {
    flex: 33.33%;
    max-width: 33.33%;
    padding: 0 7.5px;
}

.gallery__pic {
    margin-top: 15px;
    vertical-align: middle;
    width: 100%;
    border-radius: 20px;
}

.modal {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .4);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    overflow-y: auto;
    direction: ltr;
    display: none;
}

.modal-container {
    width: 450px;
    background-color: #eee;
    border-radius: 20px;
    margin: 2% auto;
    padding: 30px;
    direction: rtl;
    position: relative;
    animation: toBottom .25s ease-out;
}

.modal-close {
    font-size: 30px;
    position: absolute;
    left: 30px;
}

    .modal-close:hover,
    .modal-close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }

.modal-content {
}

.modal-heading {
    margin-bottom: 25px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.form-group__lbl {
    margin-bottom: 10px;
    font-weight: bold;
}

.form-group__input,
.form-group__select,
.form-group__textarea {
    padding: 7.5px;
    border-radius: 8px;
    border: none;
    outline: none;
}

.form-group__textarea {
    resize: vertical;
}

.form-btn {
    padding: 10px 25px;
    border-radius: 12px;
    border: 1px solid var(--dark-color);
    background-color: var(--primary-color);
    color: var(--light-color);
    transition: all .25s;
    cursor: pointer;
}

    .form-btn:hover {
        background-color: rgb(30 132 152);
    }

@media only screen and (max-width: 1400px) {
    .distances__pic {
        display: none;
    }

    .distances__info {
        width: 100%;
    }
}

@media only screen and (max-width: 1200px) {
    .facilities {
        margin: var(--half-around-space) var(--half-around-space);
    }

    .facilities__item {
        width: calc(33.33% - ((var(--default-space) * 2) / 3));
    }

    .about-us__right h3 {
        font-size: 1.75em;
    }

    .about-us__right p {
        font-size: 1em;
    }

    .about-us__right-pic {
        height: 250px;
    }

    .about-us__mid-pic {
        height: 250px;
    }

    .about-us__left-pic {
        height: 250px;
    }

    .more-about-us__left h3 {
        font-size: 1.75em;
    }

    .more-about-us__left p {
        font-size: 1em;
    }

    .video-slider {
        height: 325px;
    }

    .rooms-sec__heading {
        font-size: 1.75em;
    }

    .rooms__item-title {
        font-size: 1.1em;
    }

    .distances__heading {
        font-size: 1.75em;
    }

    .distances__item {
        font-size: 1em;
    }

    .communication-ways__heading {
        font-size: 1.25em;
    }

    .site-secs__heading {
        font-size: 1.25em;
    }

    .rooms-note__heading {
        font-size: 1.25em;
    }

    .page-heading {
        font-size: 1.5em;
    }
}

@media only screen and (max-width: 992px) {
    :root {
        --section-space: 100px;
    }

    .container {
        padding: 0 var(--half-around-space);
    }

    .navbar__option:after {
        margin: 0 var(--half-space);
    }

    .facilities__item-icon {
        width: 65px;
        height: 65px;
        font-size: 1.75em;
    }

    .facilities__item-text {
        font-size: 1em;
    }

    .about-us__right {
        padding-left: var(--default-space);
    }

    .about-us__left {
        padding-right: var(--half-around-space);
    }

    .about-us__right h3 {
        font-size: 1.5em;
    }

    .more-about-us__right {
        padding-left: var(--half-around-space);
    }

    .more-about-us__left {
        padding-right: var(--default-space);
    }

        .more-about-us__left h3 {
            font-size: 1.5em;
        }

    .rooms-sec__heading {
        font-size: 1.5em;
    }

        .rooms-sec__heading::before {
            width: 25px;
        }

        .rooms-sec__heading::after {
            width: 25px;
        }

    .rooms {
        padding: 0 var(--half-around-space);
    }

    .rooms__item-title {
        font-size: 1em;
    }

    .distances-sec {
        padding: var(--half-around-space) var(--half-around-space);
    }

    .distances__heading {
        font-size: 1.5em;
    }

    .contact-us {
        padding: var(--half-around-space);
    }

    .communication-ways {
        padding-left: var(--default-space);
    }

    .site-secs {
        padding-left: var(--default-space);
    }

    .rooms-notes-sec {
        padding: var(--half-around-space);
        margin-bottom: var(--half-around-space);
    }

    .arooms-sec {
        margin-bottom: var(--half-around-space);
    }

    .arooms {
        gap: var(--half-around-space);
    }

    .arooms__item-right {
        width: 50%;
    }

    .arooms__item-left {
        width: 50%;
    }

    .arooms__item-body {
        flex-direction: column;
        gap: var(--half-space);
    }

    .arooms__item-rbody {
        width: 100%;
    }

    .arooms__item-lbody {
        width: 100%;
    }

    .arooms__item-title {
        font-size: 1.25em;
    }

    .send-message__frm {
        width: 85%;
    }

    .page-heading {
        font-size: 1.25em;
    }

        .page-heading::before {
            width: 25px;
        }

        .page-heading::after {
            width: 25px;
        }
}

@media only screen and (max-width: 800px) {
    .gallery__column {
        flex: 50%;
        max-width: 50%;
    }
}

@media only screen and (max-width: 768px) {
    .navbar__hamburger {
        display: block;
    }

    .navbar__close {
        display: block;
    }

    .navbar__overlay {
        height: 100%;
        width: 100%;
        position: fixed;
        top: 0;
        left: 100%;
        z-index: 9;
        overflow-x: hidden;
        background-color: rgba(0, 0, 0, 0.9);
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .navbar__overlay-open {
        left: 0;
    }

    .navbar__options {
        flex-direction: column;
        gap: var(--default-space);
    }

    .navbar__option::after {
        display: none;
    }

    .navbar__option a {
        font-size: 2em;
        color: #818181;
    }

        .navbar__option a:hover,
        .navbar__option a:focus {
            color: #f1f1f1;
        }

    .slider__item-desc {
        flex-direction: column;
        justify-content: end;
        text-align: center;
        padding: 5% 5% calc(5% - -40px) 5%;
        background: linear-gradient( to top, rgba(31, 146, 168, 1), rgba(76, 201, 227, 0.85), rgba(76, 201, 227, 0.3), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) );
    }

        .slider__item-desc h3 {
            font-size: 1.75em;
            line-height: 1em;
        }

        .slider__item-desc p {
            font-size: 1em;
            line-height: 1.75em;
        }

    .slider__dots {
        bottom: 20px;
        right: 0;
        width: 100%;
        justify-content: center;
    }

    .facilities-section {
        margin: 0;
        margin-top: var(--section-space);
        margin-bottom: var(--section-space);
    }

    .facilities {
        margin: var(--half-around-space) var(--default-space);
    }

    .facilities__item {
        width: calc(33.33% - ((var(--default-space) * 2) / 3));
    }

    .facilities__item-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25em;
    }

    .about-us {
        flex-direction: column-reverse;
    }

    .about-us__right {
        width: 100%;
        padding-left: 0;
    }

    .about-us__left {
        width: 100%;
        padding: var(--around-space);
    }

    .more-about-us {
        flex-direction: column;
    }

    .more-about-us__right {
        width: 100%;
        padding: 0 var(--around-space) var(--around-space) var(--around-space);
    }

    .more-about-us__left {
        width: 100%;
        padding: 0;
    }

    .rooms {
        padding: 0;
    }

    .rooms__item {
        width: calc(50% - var(--half-space));
    }

    .rooms-sec__underlying-layer {
        height: 585px;
    }

    .rooms-sec__underlying-layer {
        background-color: var(--light-color);
    }

    .btn-more-rooms__text {
        color: var(--dark-color);
    }

    .btn-more-rooms__icon {
        color: var(--dark-color);
    }

    .distances-sec {
        padding: var(--default-space);
    }

    .distance__body {
        flex-direction: column;
        gap: var(--half-space);
    }

    .contact-us__communication-ways {
        width: 50%;
    }

    .contact-us__site-secs {
        width: 50%;
    }

    .contact-us__map {
        width: 100%;
        padding: var(--around-space) var(--half-around-space);
    }

    .communication-ways {
        padding-left: var(--half-around-space);
    }

    .site-secs {
        padding-right: var(--half-around-space);
    }

    .rooms-notes {
        flex-direction: column;
    }

    .arooms__item {
        flex-direction: column;
    }

    .arooms__item-right {
        width: 100%;
    }

    .arooms__item-left {
        width: 100%;
    }

    .send-message__frm {
        width: 100%;
    }
}

@media only screen and (max-width: 600px) {
    .gallery__column {
        flex: 100%;
        max-width: 100%;
    }

    .modal-container {
        width: 80%;
    }
}

@media only screen and (max-width: 576px) {
    .container {
        padding: 0 var(--default-space);
    }

    .facilities__item {
        width: calc(50% - ((var(--default-space) * 2) / 3));
    }

    .about-us__left {
        padding: var(--around-space) 0;
    }

    .about-us__right-pic {
        height: 225px;
    }

    .about-us__mid-pic {
        height: 225px;
    }

    .about-us__left-pic {
        height: 225px;
    }

    .more-about-us__right {
        padding: 0 0 var(--around-space) 0;
    }

    .rooms__item {
        width: 100%;
    }

    .rooms-sec__underlying-layer {
        height: 945px;
    }

    .distances-sec {
        padding: var(--half-space);
    }

    .contact-us {
        padding: var(--half-around-space) var(--default-space);
    }

    .contact-us__map {
        padding: var(--half-around-space) var(--half-space);
    }

    .rooms-notes-sec {
        padding: var(--default-space);
        margin-bottom: var(--default-space);
    }

    .arooms-sec {
        margin-bottom: var(--default-space);
    }

    .arooms {
        gap: var(--default-space);
    }

    .rooms-notes {
        padding: var(--default-space);
    }

    .send-message {
        padding: var(--default-space);
    }

    .send-message__field {
        flex-direction: column;
    }

    .send-message__lbl {
        width: 100%;
    }

    .send-message__txtbox {
        width: 100%;
    }

    .send-message__txtarea {
        width: 100%;
    }

    .send-message__subbtn {
        width: 100%;
        margin-right: 0;
    }
}

@keyframes toRight {
    0% {
        left: 0;
    }

    100% {
        left: 100%;
    }
}

@keyframes toLeft {
    0% {
        left: 0;
    }

    100% {
        left: -100%;
    }
}

@keyframes comeRight {
    0% {
        left: 100%;
    }

    100% {
        left: 0;
    }
}

@keyframes comeLeft {
    0% {
        left: -100%;
    }

    100% {
        left: 0;
    }
}

@keyframes moveLeft {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes moveRight {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes moveTop {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes toBottom {
    0% {
        transform: translateY(-50px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
