@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,300;1,400&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
}
section {
    margin: 50px 0 0 0;
    overflow: hidden;
}
img {
    width: 100%;
    height: 100%;
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
a {
    text-decoration: none;
}
.section_title {
    color: #545556;
    font-weight: 400;
    font-size: 48px;
    line-height: 48px;
    margin-bottom: 20px;
    text-align: center;
}
.btn {
    width: max-content;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    text-shadow: 0px 0px 10px rgb(0 0 0 / 30%);
    fill: #FFFFFF;
    color: #FFFFFF;
    background-color: #279989;
    border-radius: 3px;
    padding: 12px 24px;
    transition: all .3s;
}

.header {
    background: #fff;
    padding: 20px 0;
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header_logo img {
    width: 88px;
}
.header_button a {
    display: inline-block;
    padding: 15px 30px;
    font-size: 20px;
    font-weight: 400;
    text-shadow: 0px 0px 0px rgb(0 0 0 / 30%);
    fill: #FFFFFF;
    color: #FFFFFF;
    background-color: #279989;
    border-radius: 4px;
    transition: all .3s;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}
.header_button a:hover {
    background: #000;
}
.header_address p {
    text-align: center;
    font-size: 15px;
    font-weight: 700;
}
.header_address p:first-child {
    margin-bottom: 20px;
}
.s-hero {
    position: relative;
    background: url(../images/hero_bg_image.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 460px;
    margin: 0;
}
.s-hero::after {
    content: "";
    position: absolute;
    top: 0;bottom: 0;
    right: 0;left: 0;
    width: 100%;height: 100%;
    background-color: #4D4D4D;
    opacity: 0.5;
    z-index: 10;
}
.s-hero .container {
    position: relative;
    width: 100%;
    height: 100%;
}
.s-hero .content {
    background-color: #ffffffba;
    width: max-content;
    position: absolute;
    display: flex;
    flex-direction: column;
    bottom: 20px;
    left: 50px;
    padding: 15px 40px;
    z-index: 15;
}
.s-hero .content .title {
    display: inline-block;
    color: #545556;
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 20px;
}
.s-hero .content .btn:hover {
    background-color: #000;
}


.s-about .container {
    text-align: center;
}
.s-about .title {
    color: #545556;
    font-weight: 400;
    font-size: 48px;
    line-height: 48px;
    margin-bottom: 20px;
}
.s-about p {
    font-size: 17px;
    line-height: 29px;
    font-weight: 400;
    margin: 0;
    color: #7a7a7a;
}
.s-about .btn {
    margin-top: 20px;
}



.s-amenities {
    background-color: #FBFBFB;
    padding: 30px 0;
}
.s-amenities .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}
.s-amenities .container > .section_title {
    text-align: center;
    grid-column: span 2;
}
.section_content .title {
    display: block;
    color: #545556;
    font-weight: 500;
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 30px;
    text-align: center;
}
.section_content ul {
    list-style: disc;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    color: #7a7a7a;
    font-weight: 500;
}

#bed1,#bed2,#bed2corner {
    display: none;
}
.tab_list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.tab_list-item a {
    color: #333;
    font-weight: bold;
    font-size: 15px;
    border-bottom: 1px solid #279989;
}
.tab_list-item a.active {
    color: #279989;
}
.gallery_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
}
.gallery_grid a {
    display: flex;
}
.gallery_grid a img {
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #E6D4D4;
    border-radius: 10px 10px 10px 10px
}



.s-neighbourhood {
    background-color: #FBFBFB;
    padding: 30px 0;
}
.s-neighbourhood .container {
    text-align: center;
}
.s-neighbourhood p {
    font-size: 17px;
    line-height: 29px;
    font-weight: 400;
    margin: 0;
    color: #7a7a7a;
}
.s-neighbourhood iframe {
    border: none;
    width: 100%;
    height: 480px;
    margin-top: 20px;
}

.s-contact-us {
    display: flex;
    justify-content: space-between;
}
.contact-address {
    padding: 0 0 0 110px;
}
.contact-address .title {
    color: #545556;
    font-weight: 400;
    font-size: 48px;
    line-height: 48px;
    margin-bottom: 20px;
}
.contact-address ul li {
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 10px;
}
.contact-address ul li:last-child {
    margin-bottom: 0;
}
.contact-address ul li a {
    color: #7a7a7a;
}
.contact-address ul li span {
    font-weight: 700;
    color: #333;
    margin-right: 5px;
}
.contact-address img {
    object-fit: contain;
    height: 126px;
    margin-top: 30px;
}
.contact-image {
    height: 530px;
    object-fit: contain;
}

.s-form {
    margin-top: 100px;
}
.s-form .section_title {
    width: 40%;
    margin: 0 auto;
    border: 1px solid #E6D4D4 !important;
    border-top-width: 1px !important;
    border-right-width: 1px !important;
    border-bottom-width: 0px !important;
    border-left-width: 1px !important;
    border-radius: 7px 7px 0 0;
    padding: 10px 0 20px 0;
}

.forminator-custom-form {
    width: 40%;
    margin: 0 auto;
    border: 1px solid #E6D4D4 !important;
    padding: 30px !important;
    border-radius: 0 0 7px 7px !important;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 37px;
    box-shadow: 0px 0px 39px #7c7c7c33;
    border-top-width: 0px !important;
}
.forminator-row {
    margin: 0 !important;
}
.forminator-col {
    padding: 0 !important;
}
.forminator-field {
    display: flex;
    flex-direction: column;
}
.forminator-label {
    font-size: 15px;
    font-weight: 400;
    color: #7a7a7a;
    margin-bottom: 5px;
}
.forminator-input {
    height: 35px;
    border: 1px solid #7a7a7a;
    border-radius: 7px;
    font-size: 14px;
    padding: 0 0 0 10px;
}
.forminator-textarea {
    border: 1px solid #7a7a7a;
    border-radius: 7px;
    font-size: 14px;
    padding: 10px 0 0 10px;
}
.forminator-field[role="radiogroup"] {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}
.forminator-field[role="radiogroup"] input {
    position: absolute;
    -webkit-apperance: none;
    -moz-apperance: none;
    appearance: none;
}
.forminator-field[role="radiogroup"] span {
    flex-basis: 100%;
}
.forminator-field[role="radiogroup"] .forminator-radio-label {
    position: relative;
    background: #f1f1f1;
    padding: 10px 20px;
    border-radius: 7px;
    cursor: pointer;
    transition: opacity .3s;
}
.forminator-field[role="radiogroup"] .forminator-radio-label::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    top: -2px;
    right: -2px;
    background: url(../images/checked.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    opacity: 0;
    z-index: 20;
}
.forminator-field[role="radiogroup"] .forminator-radio-label.active::before {
    opacity: 1;
}
.forminator-field[role="radiogroup"] .forminator-radio-label.other {
    opacity: 0.5;
}
.forminator-field[role="radiogroup"] .forminator-radio-label.active {
    opacity: 1;
}
.forminator-button {
    width: max-content;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    text-shadow: 0px 0px 10px rgb(0 0 0 / 30%);
    fill: #FFFFFF;
    color: #FFFFFF;
    background-color: #279989;
    border-radius: 3px;
    border: none !important;
    padding: 12px 24px;
    transition: all .3s;
    cursor: pointer;
}
.forminator-error-message {
    display: block;
    font-size: 13px;
    color: #f12424;
    margin-top: 3px;
}
/* #radio-2 label:nth-child(3) .forminator-radio-label::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: url(../images/radio-car.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 100% 100%;
    z-index: 10;
}
#radio-2 label:nth-child(4) .forminator-radio-label::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: url(../images/radio-car.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 100% 100%;
    z-index: 10;
}
#radio-3 label:nth-child(3) .forminator-radio-label::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: url(../images/radio-car.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 100% 100%;
    z-index: 10;
}
#radio-3 label:nth-child(4) .forminator-radio-label::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: url(../images/radio-car.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 100% 100%;
    z-index: 10;
} */

/* Contact Us */
.forminator-custom-form .forminator-ui.forminator-custom-form:not(.forminator-size--small)[data-grid="open"] .forminator-row {
  margin-right: -9px;
  margin-left: -9px;
}
.forminator-custom-form .forminator-ui.forminator-custom-form:not(.forminator-size--small)[data-grid="open"] .forminator-col {
  padding: 0 9px;
}
.forminator-custom-form .forminator-field {
	position: relative;
}
.forminator-custom-form .forminator-label {
	position: absolute;
	left: 15px;
	top: 10px;
}
#radio-1 .forminator-label,
#radio-2 .forminator-label,
#radio-3 .forminator-label {
    position: relative !important;
    left: 0;
    top: 0;
}
.forminator-custom-form .val_field .forminator-label {
	top: -20px;
}
.forminator-response-message {
    display: none !important;
}


.footer {
    margin: 50px 0 0 0;
    text-align: center;
}
.footer .btn {
    text-transform: uppercase;
}
.footer a:nth-child(2) {
    display: block;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: #7a7a7a;
    margin-top: 20px;
}
.footer a:nth-child(3) {
    display: block;
    font-weight: 700;
    font-size: 15px;
    color: #000;
    margin-top: 20px;
    margin-bottom: 20px;
}

.formModal {
    padding: 35px;
    display: none;
    z-index: 999;
}
.formModal .title {
    text-align: center;
    color: #279989;
    line-height: 40px;
    font-size: 28px;
}
.blocker {
    z-index: 150;
}


/* btn-close start */
.btn-close {
  position: relative;
  border: none;
  cursor: pointer;
  background: none;
  padding: 0;
  width: 50px;
  height: 50px;
  display: inline-block;
  transition: transform .2s, opacity .2s;
}

.btn-close:hover {
  transform: scale(1.1);
}

.btn-close:active {
  transform: scale(.9);
  opacity: .8;
}



.btn-close::before,
.btn-close::after {
  content: '';
  background: #d2d2d2;
  height: 40px;
  width: 3px;
  position: absolute;
  border: 10px;
  top: 50%;
}

.btn-close::before {
  transform: translateY(-50%) rotate(45deg);
}

.btn-close::after {
  transform: translateY(-50%) rotate(-45deg);
}
/* btn-close end */

.popup {
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  background: rgba(0,0,0,.7);
  width: 100%;
  height: 100%;
  overflow: auto;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

.popup.is-active {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.popup__wrapper {
  display: table;
  height: 100%;
  width: 100%;
}

.popup__inner {
  display: table-cell;
  vertical-align: middle;
  padding: 50px 0;
}

.popup__content {
  background: #fff;
  padding: 70px 20px;
  max-width: 730px;
  margin: 0 auto;
  position: relative;
  border-radius: 20px;
}

.popup__content--fluid {
  padding-left: 0;
  padding-right: 0;
}

.popup__content--centered {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.popup__btn-close {
  position: absolute;
  top: 20px;
  right: 20px;
}

.popup__title {
  margin-bottom: 20px;
}

.popup__subtitle {
  margin: 0;
  text-align: center;
  font-size: 24px;
}

.popup__subtitle--order {
  max-width: 360px;
  margin: 0 auto 40px;
}

.popup__mobile-menu {
  margin-bottom: 30px;
}

.popup__phone {
  margin-bottom: 30px;
}

.popup__link {
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .popup__inner {
    padding: 0;
  }

  .popup__content {
    max-width: 100%;
    height: 100%;
    border-radius: 0;
    padding-top: 100px;
  }

  .popup__subtitle {
    font-size: 18px;
  }

  .popup__subtitle--order {
    max-width: 260px;
  }
}

.popup-hello .popup__content {
	text-align: center;
}
.popup__hello--title {
	margin-bottom: 20px;
	font-weight: 500;
}
.popup__hello--dsc {
	margin-bottom: 10px;
}
.popup__hello--phone {
	color: #000;
    font-weight: bold;
    text-decoration: underline;
}