@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
@font-face {
  font-family: "fontspring_demo_-_spanbold";
  src: url("../fonts/fontspring-demo-span-bold-webfont.woff2") format("woff2"), url("../fonts/fontspring-demo-span-bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999999999;
}

.loader__figure {
  position: absolute;
  background-color: #ff0000;
  top: 50%;
  left: 50%;
  margin-left: -18px;
  margin-top: -18px;
  height: 36px;
  width: 36px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 50%;
  opacity: 0.4;
  -webkit-animation: loaderAnim 0.7s linear infinite alternate forwards;
          animation: loaderAnim 0.7s linear infinite alternate forwards;
}

@-webkit-keyframes loaderAnim {
  to {
    opacity: 1;
    -webkit-transform: scale3d(0.5, 0.5, 1);
            transform: scale3d(0.5, 0.5, 1);
  }
}

@keyframes loaderAnim {
  to {
    opacity: 1;
    -webkit-transform: scale3d(0.5, 0.5, 1);
            transform: scale3d(0.5, 0.5, 1);
  }
}
@-webkit-keyframes ripple {
  0% {
    -webkit-transform: scale(0.2);
            transform: scale(0.2);
    opacity: 0;
  }
  50% {
    opacity: 0.9;
  }
  100% {
    -webkit-transform: scale(24em);
            transform: scale(24em);
    opacity: 0;
  }
}
@keyframes ripple {
  0% {
    -webkit-transform: scale(0.2);
            transform: scale(0.2);
    opacity: 0;
  }
  50% {
    opacity: 0.9;
  }
  100% {
    -webkit-transform: scale(24em);
            transform: scale(24em);
    opacity: 0;
  }
}
html {
  scroll-behavior: smooth;
}

body {
  margin: auto;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  line-height: 26px;
  color: #15171C;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body::-webkit-scrollbar {
  width: 3px;
}
body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
body::-webkit-scrollbar-thumb {
  background-color: #e5060a;
  outline: 1px solid #e5060a;
}

img {
  visibility: visible !important;
}

ul {
  margin: 0;
  padding: 0;
  display: block;
}

li {
  list-style: none;
}

a,
a:hover,
a:focus,
button,
button:focus {
  outline: none !important;
  text-decoration: none;
  color: inherit;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "fontspring_demo_-_spanbold";
  font-weight: inherit;
  line-height: inherit;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
}

h1 {
  font-size: 70px;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 36px;
}

h4 {
  font-size: 30px;
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 18px;
}

p {
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
  font-family: "Assistant", sans-serif;
  font-weight: normal;
}

img {
  width: 100%;
  max-width: 100%;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
}

svg {
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
}

input {
  background-color: #ffffff;
  margin-bottom: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
input[type=text], input[type=email], input[type=url], input[type=password], input[type=search], input[type=number], input[type=tel], input[type=range], input[type=date], input[type=month], input[type=week], input[type=time], input[type=datetime], input[type=datetime-local], input[type=color] {
  color: #707070;
  border: 1px solid #F2F2F2;
  border-radius: 2px;
  padding: 11px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  max-width: 100%;
  height: 54px;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
input[type=text]:focus, input[type=email]:focus, input[type=url]:focus, input[type=password]:focus, input[type=search]:focus, input[type=number]:focus, input[type=tel]:focus, input[type=range]:focus, input[type=date]:focus, input[type=month]:focus, input[type=week]:focus, input[type=time]:focus, input[type=datetime]:focus, input[type=datetime-local]:focus, input[type=color]:focus {
  color: #707070;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

textarea {
  color: #707070;
  border: 1px solid #F2F2F2;
  border-radius: 0px;
  padding: 11px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  max-width: 100%;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
textarea:focus {
  color: #707070;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.is-relative {
  position: relative;
}

.over-hide {
  overflow: hidden;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0;
}

.pr-0,
.px-0 {
  padding-right: 0;
}

.pb-15 {
  padding-bottom: 15px;
}

.pt-15 {
  padding-top: 15px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pt-30 {
  padding-top: 30px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pt-50 {
  padding-top: 50px;
}

.button a {
  background-color: #15171C;
  border-radius: 0px;
  border: none;
  color: #ffffff;
  font-size: 16px;
  font-family: "Assistant", sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  line-height: normal;
  padding: 10px 30px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
  position: relative;
  z-index: 1;
}
.button a::before {
  position: absolute;
  content: "";
  width: 4px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #e5060a;
  height: 40px;
  z-index: -1;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
}
.button a::after {
  position: absolute;
  content: "";
  width: 0px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #e5060a;
  height: 40px;
  z-index: -1;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
}
.button a span {
  margin-left: 20px;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
}
.button a span svg {
  fill: #ffffff;
}
.button a:hover {
  letter-spacing: 2px;
}
.button a:hover::before {
  width: 100%;
  opacity: 0;
}
.button a:hover::after {
  width: 4px;
  left: auto;
  right: 0;
}
.button a button {
  background-color: transparent;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: inherit;
  text-transform: uppercase;
}

.container {
  width: 100%;
  max-width: 100%;
}

.main-wraper {
  transition: all 1s;
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
}

section.container-fluid.mainContent {
  padding: 130px 200px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1699px) {
  section.container-fluid.mainContent {
    padding: 130px 100px;
  }
}
@media (max-width: 1199px) {
  section.container-fluid.mainContent {
    padding: 130px 50px;
  }
}
@media (max-width: 1024px) {
  section.container-fluid.mainContent {
    padding: 80px 50px;
  }
}
section.container-fluid.mainContent .title-crown {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}
section.container-fluid.mainContent .title-crown::before, section.container-fluid.mainContent .title-crown::after {
  position: absolute;
  content: "";
  background-color: #e5060a;
  width: 50px;
  height: 1px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
section.container-fluid.mainContent .title-crown::before {
  left: -70px;
}
section.container-fluid.mainContent .title-crown::after {
  right: -70px;
}
section.container-fluid.mainContent .title-crown svg {
  width: 30px;
  height: 30px;
  fill: #e5060a;
  margin: 0px auto;
}
@media (max-width: 1399px) {
  section.container-fluid.mainContent .title-crown {
    margin-bottom: 15px;
  }
  section.container-fluid.mainContent .title-crown svg {
    width: 30px !important;
    height: 30px !important;
  }
}
section.container-fluid.mainContent.home-rooms .rw-dr {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
section.container-fluid.mainContent.home-rooms .align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
  width: 100%;
}
section.container-fluid.mainContent.home-rooms .main-title {
  margin-bottom: 50px;
  text-align: center;
}
section.container-fluid.mainContent.home-rooms .main-title h3 {
  font-size: 50px;
  line-height: 65px;
  font-weight: 700;
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  section.container-fluid.mainContent.home-rooms .main-title h3 {
    font-size: 40px;
    line-height: 55px;
  }
}
@media (max-width: 991px) {
  section.container-fluid.mainContent.home-rooms .main-title h3 {
    font-size: 30px;
    line-height: 45px;
  }
}
@media (max-width: 575px) {
  section.container-fluid.mainContent.home-rooms .main-title h3 {
    font-size: 25px;
    line-height: 35px;
  }
}
section.container-fluid.mainContent.home-rooms .main-title h3 span {
  font-family: "DM Sans", sans-serif;
  font-size: 40px;
}
section.container-fluid.mainContent.home-rooms .main-title p {
  font-size: 16px;
  line-height: 30px;
  max-width: 62%;
  margin: 0px auto 10px;
}
@media (max-width: 575px) {
  section.container-fluid.mainContent.home-rooms .main-title p {
    max-width: 100%;
  }
}
section.container-fluid.mainContent.home-rooms .room-content {
  position: relative;
  background-color: #f8f8f8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
section.container-fluid.mainContent.home-rooms .room-content::before {
  position: absolute;
  content: "";
  left: 40px;
  right: 40px;
  top: 40px;
  bottom: 40px;
  border: 1px solid #e5060a;
}
@media (max-width: 1399px) {
  section.container-fluid.mainContent.home-rooms .room-content::before {
    left: 10px;
    right: 10px;
    top: 10px;
    bottom: 10px;
  }
}
@media (max-width: 1199px) {
  section.container-fluid.mainContent.home-rooms .room-content::before {
    display: none;
  }
}
@media (max-width: 1199px) {
  section.container-fluid.mainContent.home-rooms .room-content .title-crown {
    display: none;
  }
}
section.container-fluid.mainContent.home-rooms .room-content h3 {
  font-size: 26px;
  font-family: "Assistant", sans-serif;
  font-weight: 700;
}
@media (max-width: 1399px) {
  section.container-fluid.mainContent.home-rooms .room-content h3 {
    font-size: 20px;
  }
}
@media (max-width: 1199px) {
  section.container-fluid.mainContent.home-rooms .room-content h3 {
    font-size: 16px;
  }
}
section.container-fluid.mainContent.home-rooms .room-content h6 {
  font-family: "Assistant", sans-serif;
  color: #e5060a;
  font-weight: 700;
  margin-top: 10px;
}
section.container-fluid.mainContent.home-rooms .room-content h6 span {
  color: #15171C;
  font-weight: 400;
}
@media (max-width: 1199px) {
  section.container-fluid.mainContent.home-rooms .room-content p {
    font-size: 14px;
    margin-top: 10px !important;
  }
}
@media (max-width: 1399px) {
  section.container-fluid.mainContent.home-rooms .room-content .rooms-sc {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 90%;
            flex: 0 0 90%;
    max-width: 90%;
  }
}
section.container-fluid.mainContent.home-rooms .room-content ul.fc-ul {
  display: inline-block;
}
section.container-fluid.mainContent.home-rooms .room-content ul.fc-ul li {
  display: inline-block;
  font-size: 15px;
  position: relative;
  text-align: left;
  padding-left: 25px;
  padding-right: 15px;
  transition: all 400ms ease;
  -webkit-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
}
section.container-fluid.mainContent.home-rooms .room-content ul.fc-ul li::after {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border: 1px solid #e5060a;
  border-radius: 100%;
  transition: all 400ms ease;
  -webkit-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
}
section.container-fluid.mainContent.home-rooms .room-content ul.fc-ul li::before {
  position: absolute;
  content: "";
  left: 3px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: #e5060a;
  border-radius: 100%;
  transition: all 400ms ease;
  -webkit-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
}
section.container-fluid.mainContent.home-rooms .room-content ul.fc-ul li:hover::before {
  background-color: #000000;
}
section.container-fluid.mainContent.home-rooms .room-content ul.fc-ul li:hover::after {
  border-color: #000000;
}
section.container-fluid.mainContent.home-rooms .room-content .club-details {
  margin-top: 30px;
  height: 180px;
  overflow-x: hidden;
  overflow-y: scroll;
}
section.container-fluid.mainContent.home-rooms .room-content .club-details::-webkit-scrollbar {
  width: 3px;
}
section.container-fluid.mainContent.home-rooms .room-content .club-details::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
section.container-fluid.mainContent.home-rooms .room-content .club-details::-webkit-scrollbar-thumb {
  background-color: #e5060a;
  outline: 1px solid #e5060a;
}
@media (max-width: 1399px) {
  section.container-fluid.mainContent.home-rooms .room-content .club-details {
    height: 100px;
  }
}
section.container-fluid.mainContent.home-rooms .room-content .club-details .owl-dots [class*=owl-] {
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background: #e5060a;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  outline: none;
  margin-right: 30px;
}
section.container-fluid.mainContent.home-rooms .room-content .club-details .owl-dots [class*=owl-].active {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
section.container-fluid.mainContent.home-rooms .room-content .club-details .owl-dots [class*=owl-].active span {
  width: 6px;
  height: 6px;
  position: relative;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
section.container-fluid.mainContent.home-rooms .room-content .club-details .owl-dots [class*=owl-].active span::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid #e5060a;
  border-radius: 100%;
  left: -7px;
  top: -7px;
}
section.container-fluid.mainContent.home-rooms .room-content .club-details ul.club-ul {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
}
section.container-fluid.mainContent.home-rooms .room-content .club-details ul.club-ul li {
  font-size: 15px;
  position: relative;
  text-align: left;
  padding-left: 25px;
  padding-right: 15px;
  transition: all 400ms ease;
  -webkit-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
}
@media (max-width: 575px) {
  section.container-fluid.mainContent.home-rooms .room-content .club-details ul.club-ul li {
    padding-left: 0px;
    padding-right: 0px;
    text-align: center;
  }
}
section.container-fluid.mainContent.home-rooms .room-content .club-details ul.club-ul li::after {
  position: absolute;
  content: "";
  left: 0;
  top: 7px;
  width: 12px;
  height: 12px;
  border: 1px solid #e5060a;
  border-radius: 100%;
  transition: all 400ms ease;
  -webkit-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
}
@media (max-width: 575px) {
  section.container-fluid.mainContent.home-rooms .room-content .club-details ul.club-ul li::after {
    display: none;
  }
}
section.container-fluid.mainContent.home-rooms .room-content .club-details ul.club-ul li::before {
  position: absolute;
  content: "";
  left: 3px;
  top: 10px;
  width: 6px;
  height: 6px;
  background-color: #e5060a;
  border-radius: 100%;
  transition: all 400ms ease;
  -webkit-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
}
@media (max-width: 575px) {
  section.container-fluid.mainContent.home-rooms .room-content .club-details ul.club-ul li::before {
    display: none;
  }
}
section.container-fluid.mainContent.home-rooms .room-content .club-details ul.club-ul li:hover::before {
  background-color: #000000;
}
section.container-fluid.mainContent.home-rooms .room-content .club-details ul.club-ul li:hover::after {
  border-color: #000000;
}
@media (max-width: 1399px) {
  section.container-fluid.mainContent.home-rooms .room-content .club-details ul.club-ul {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
  }
}
section.container-fluid.mainContent.home-rooms .img-wrap {
  position: relative;
  width: 100%;
  display: block;
  overflow: hidden;
}
section.container-fluid.mainContent.home-rooms .img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 1199px) {
  section.container-fluid.mainContent.home-rooms .img-wrap img {
    height: 100%;
  }
}
@media (max-width: 991px) {
  section.container-fluid.mainContent.home-rooms .img-wrap img {
    height: auto;
  }
}
section.container-fluid.mainContent.home-rooms .block-revealer__element {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  pointer-events: none;
  opacity: 0;
}
section.container-fluid.mainContent.home-rooms .text-element-over {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: var(--theme-color);
  padding: 15px 10px;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
      writing-mode: vertical-lr;
  z-index: 10;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
@media (max-width: 991px) {
  section.container-fluid.mainContent.home-rooms .text-element-over {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    -webkit-transform: none;
            transform: none;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 200px;
    text-align: center;
  }
}
section.container-fluid.mainContent.home-rooms .main-btn {
  display: inline-block;
  margin-top: 20px;
}
section.container-fluid.mainContent.home-rooms .main-btn a {
  background-color: #15171C;
  border-radius: 0px;
  border: none;
  color: #ffffff;
  font-size: 16px;
  font-family: "Assistant", sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  line-height: normal;
  padding: 10px 30px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
  position: relative;
  z-index: 1;
}
section.container-fluid.mainContent.home-rooms .main-btn a::before {
  position: absolute;
  content: "";
  width: 4px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #e5060a;
  height: 40px;
  z-index: -1;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
}
section.container-fluid.mainContent.home-rooms .main-btn a::after {
  position: absolute;
  content: "";
  width: 0px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #e5060a;
  height: 40px;
  z-index: -1;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
}
section.container-fluid.mainContent.home-rooms .main-btn a span {
  margin-left: 20px;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
}
section.container-fluid.mainContent.home-rooms .main-btn a span svg {
  fill: #ffffff;
}
section.container-fluid.mainContent.home-rooms .main-btn a:hover {
  letter-spacing: 2px;
}
section.container-fluid.mainContent.home-rooms .main-btn a:hover::before {
  width: 100%;
  opacity: 0;
}
section.container-fluid.mainContent.home-rooms .main-btn a:hover::after {
  width: 4px;
  left: auto;
  right: 0;
}
section.container-fluid.mainContent.home-rooms .main-btn a button {
  background-color: transparent;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: inherit;
  text-transform: uppercase;
}
@media (max-width: 1399px) {
  section.container-fluid.mainContent.home-rooms .main-btn {
    margin-top: 0;
  }
}

section.container-fluid.mainContent.home-about {
  position: relative;
  background-color: #1b0101;
  z-index: 1;
}
section.container-fluid.mainContent.home-about::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url("../images/about-bg.png") center center no-repeat fixed;
  background-size: cover;
  z-index: -1;
  opacity: 0.06;
}
section.container-fluid.mainContent.home-about::after {
  position: absolute;
  content: "";
  left: 100px;
  top: 150px;
  width: 976px;
  height: 599px;
  background-image: url("../images/about-after.png");
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -1;
}
section.container-fluid.mainContent.home-about .left-aside {
  -ms-flex-item-align: center !important;
      align-self: center !important;
}
section.container-fluid.mainContent.home-about .left-aside .about-content h3 {
  color: #ffffff;
  font-size: 70px;
  font-weight: 700;
  text-align: left;
  line-height: 70px;
  margin-bottom: 45px;
}
section.container-fluid.mainContent.home-about .left-aside .about-content h3 span {
  font-size: 40px;
  font-weight: 400;
  display: block;
  line-height: 40px;
  margin-bottom: 15px;
}
section.container-fluid.mainContent.home-about .left-aside .about-content p {
  color: #ffffff;
}
section.container-fluid.mainContent.home-about .left-aside .about-content .main-btn {
  display: inline-block;
  margin-top: 30px;
}
section.container-fluid.mainContent.home-about .left-aside .about-content .main-btn a {
  background-color: #e5060a;
  border-radius: 0px;
  border: none;
  color: #ffffff;
  font-size: 16px;
  font-family: "Assistant", sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  line-height: normal;
  padding: 10px 30px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
  position: relative;
  z-index: 1;
}
section.container-fluid.mainContent.home-about .left-aside .about-content .main-btn a::before {
  position: absolute;
  content: "";
  width: 4px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #ffffff;
  height: 40px;
  z-index: -1;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
}
section.container-fluid.mainContent.home-about .left-aside .about-content .main-btn a::after {
  position: absolute;
  content: "";
  width: 0px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #ffffff;
  height: 40px;
  z-index: -1;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
}
section.container-fluid.mainContent.home-about .left-aside .about-content .main-btn a span {
  margin-left: 20px;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
}
section.container-fluid.mainContent.home-about .left-aside .about-content .main-btn a span svg {
  fill: #ffffff;
}
section.container-fluid.mainContent.home-about .left-aside .about-content .main-btn a:hover {
  letter-spacing: 2px;
}
section.container-fluid.mainContent.home-about .left-aside .about-content .main-btn a:hover::before {
  width: 100%;
  opacity: 0;
}
section.container-fluid.mainContent.home-about .left-aside .about-content .main-btn a:hover::after {
  width: 4px;
  left: auto;
  right: 0;
}
section.container-fluid.mainContent.home-about .left-aside .about-content .main-btn a button {
  background-color: transparent;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: inherit;
  text-transform: uppercase;
}
@media (max-width: 1399px) {
  section.container-fluid.mainContent.home-about .left-aside .about-content .main-btn a {
    padding: 10px 15px;
  }
}
section.container-fluid.mainContent.home-about .right-aside {
  overflow: hidden;
}
section.container-fluid.mainContent.home-about .right-aside .about-img {
  overflow: hidden;
  position: relative;
  z-index: 1;
  border-radius: 15px;
}
section.container-fluid.mainContent.home-about .right-aside .about-img::before {
  position: absolute;
  content: "";
  left: 40px;
  right: 40px;
  top: 40px;
  bottom: 40px;
  border: 1px solid #ffffff;
  z-index: 2;
  opacity: 0;
  transition: all 400ms ease-in;
  -webkit-transition: all 400ms ease-in;
  -o-transition: all 400ms ease-in;
  -moz-transition: all 400ms ease-in;
  -ms-transition: all 400ms ease-in;
}
section.container-fluid.mainContent.home-about .right-aside .about-img::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 0, 0, 0.64)), to(rgb(0, 0, 0)));
  background: linear-gradient(to bottom, rgba(255, 0, 0, 0.64) 0%, rgb(0, 0, 0) 100%);
  opacity: 0.5;
  z-index: 1;
  opacity: 0;
  transition: all 400ms ease-in;
  -webkit-transition: all 400ms ease-in;
  -o-transition: all 400ms ease-in;
  -moz-transition: all 400ms ease-in;
  -ms-transition: all 400ms ease-in;
}
section.container-fluid.mainContent.home-about:hover .right-aside .about-img img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
section.container-fluid.mainContent.home-about:hover .right-aside .about-img::before {
  opacity: 1;
}
section.container-fluid.mainContent.home-about:hover .right-aside .about-img::after {
  opacity: 0.6;
}
section.container-fluid.mainContent.home-about .benifit-title {
  margin-bottom: 50px;
}
section.container-fluid.mainContent.home-about .benifit-title .title-in {
  text-align: center;
  width: 100%;
  margin-bottom: 0px;
}
section.container-fluid.mainContent.home-about .benifit-title .title-in h3 {
  font-size: 40px;
  color: #ffffff;
  margin-bottom: 30px;
}
section.container-fluid.mainContent.home-about .benifit-title .title-in p {
  width: 65%;
  margin: 0 auto;
  line-height: 30px;
  letter-spacing: 0.5px;
  font-size: 17px;
  color: #b4adad;
}
@media (max-width: 1199px) {
  section.container-fluid.mainContent.home-about .benifit-title .title-in p {
    width: 100%;
  }
}
section.container-fluid.mainContent.home-about .benifit-section .bf-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  transition: 400ms all;
  -webkit-transition: 400ms all;
  -o-transition: 400ms all;
  -moz-transition: 400ms all;
  -ms-transition: 400ms all;
  background: transparent;
  position: relative;
  padding: 0;
}
section.container-fluid.mainContent.home-about .benifit-section .bf-box:hover::after {
  opacity: 1;
}
section.container-fluid.mainContent.home-about .benifit-section .bf-box:hover::before {
  opacity: 0.5;
}
section.container-fluid.mainContent.home-about .benifit-section .bf-box:hover .benifit-item .icon-box {
  opacity: 1;
  z-index: 9;
}
section.container-fluid.mainContent.home-about .benifit-section .bf-box .benifit-item {
  width: 100%;
  min-height: 400px;
  background-size: cover !important;
  background-position: center !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}
@media (max-width: 575px) {
  section.container-fluid.mainContent.home-about .benifit-section .bf-box .benifit-item {
    min-height: 320px;
  }
}
section.container-fluid.mainContent.home-about .benifit-section .bf-box .benifit-item .icon-box {
  width: 80px;
  height: 80px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: transparent;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0px auto;
  margin-bottom: -15px;
  transition: all 400ms ease-in;
  -webkit-transition: all 400ms ease-in;
  -o-transition: all 400ms ease-in;
  -moz-transition: all 400ms ease-in;
  -ms-transition: all 400ms ease-in;
  position: relative;
  background-color: #e5060a;
  border-color: #e5060a;
  z-index: 9;
}
section.container-fluid.mainContent.home-about .benifit-section .bf-box .benifit-item .icon-box::before {
  position: absolute;
  content: "";
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100%;
  transition: all 400ms ease-in;
  -webkit-transition: all 400ms ease-in;
  -o-transition: all 400ms ease-in;
  -moz-transition: all 400ms ease-in;
  -ms-transition: all 400ms ease-in;
  opacity: 0;
}
section.container-fluid.mainContent.home-about .benifit-section .bf-box .benifit-item .icon-box svg {
  fill: #ffffff;
  width: 30px;
  height: 30px;
  margin: 0px auto;
}
section.container-fluid.mainContent.home-about .benifit-section .bf-box .benifit-item .icon-box svg path {
  fill: #ffffff;
}
section.container-fluid.mainContent.home-about .benifit-section .bf-box .benifit-item .text-box {
  text-align: center;
  position: relative;
  z-index: 1;
  background: #e5060a;
  padding: 15px;
}
section.container-fluid.mainContent.home-about .benifit-section .bf-box .benifit-item .text-box h5 {
  font-size: 16px;
  color: #e5060a;
  margin-bottom: 10px;
  font-weight: 600;
  font-family: "Assistant", sans-serif;
  opacity: 1 !important;
}
section.container-fluid.mainContent.home-about .benifit-section .bf-box .benifit-item .text-box h4 {
  color: #ffffff;
  font-size: 16px;
  text-transform: capitalize;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
}
section.container-fluid.mainContent.home-about .benifit-section .bf-box .benifit-item:hover .icon-box {
  background-color: #e5060a;
  border-color: #e5060a;
}
section.container-fluid.mainContent.home-about .benifit-section .bf-box .benifit-item:hover .icon-box::before {
  left: 10px;
  right: 10px;
  top: 10px;
  bottom: 10px;
  opacity: 1;
}
section.container-fluid.mainContent.home-about .benifit-section .owl-dots {
  margin-top: 60px !important;
}
@media (max-width: 1199px) {
  section.container-fluid.mainContent.home-about .benifit-section .owl-dots {
    margin-top: 30px !important;
  }
}
section.container-fluid.mainContent.home-about .benifit-section .owl-dots button {
  width: 7px;
  height: 7px;
  background: #d9d9d9;
  border-radius: 50px;
  margin: 0 8px;
}
section.container-fluid.mainContent.home-about .benifit-section .owl-dots button span {
  display: none !important;
}
section.container-fluid.mainContent.home-about .benifit-section .owl-dots button.active {
  width: 35px;
  background-color: var(--theme-color);
  border-radius: 5px;
}
section.container-fluid.mainContent.home-meating {
  position: relative;
  background-color: #f9f9f9;
  z-index: 1;
}
section.container-fluid.mainContent.home-meating::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/about-bg.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  opacity: 0.03;
}
section.container-fluid.mainContent.home-meating .main-title {
  max-width: 850px;
  margin: 0px auto;
  text-align: center;
  margin-bottom: 50px;
}
section.container-fluid.mainContent.home-meating .main-title h3 {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  line-height: 60px;
  margin-bottom: 30px;
}
section.container-fluid.mainContent.home-meating .main-title p {
  color: #000000;
  font-size: 16px;
}
section.container-fluid.mainContent.home-meating .sc-box-in {
  cursor: pointer;
}
section.container-fluid.mainContent.home-meating .sc-box-in .img-item {
  position: relative;
}
section.container-fluid.mainContent.home-meating .sc-box-in .img-item::before, section.container-fluid.mainContent.home-meating .sc-box-in .img-item::after {
  content: "";
  width: 2rem;
  height: 2rem;
  border: 1px solid #fff;
  position: absolute;
  z-index: 2;
  opacity: 0.8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
section.container-fluid.mainContent.home-meating .sc-box-in .img-item::before {
  top: 2rem;
  right: 2rem;
  border-bottom-width: 0;
  border-left-width: 0;
}
section.container-fluid.mainContent.home-meating .sc-box-in .img-item::after {
  bottom: 2rem;
  left: 2rem;
  border-top-width: 0;
  border-right-width: 0;
}
section.container-fluid.mainContent.home-meating .sc-box-in .img-item:hover::before, section.container-fluid.mainContent.home-meating .sc-box-in .img-item:hover::after {
  width: calc(100% - 4rem);
  height: calc(100% - 4rem);
}
section.container-fluid.mainContent.home-dining {
  position: relative;
  background-color: #1b0101;
  z-index: 1;
}
section.container-fluid.mainContent.home-dining::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url("../images/about-bg.png") center center no-repeat fixed;
  background-size: cover;
  z-index: -1;
  opacity: 0.06;
}
section.container-fluid.mainContent.home-dining::after {
  position: absolute;
  content: "";
  left: 100px;
  top: 150px;
  width: 976px;
  height: 599px;
  background-image: url("../images/about-after.png");
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -1;
}
section.container-fluid.mainContent.home-dining .main-title {
  max-width: 850px;
  margin: 0px auto;
  text-align: center;
  margin-bottom: 50px;
}
section.container-fluid.mainContent.home-dining .main-title h3 {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  line-height: 60px;
  margin-bottom: 30px;
  color: #ffffff;
}
section.container-fluid.mainContent.home-dining .main-title p {
  color: #ffffff;
  font-size: 16px;
}
section.container-fluid.mainContent.home-gallery {
  position: relative;
}
section.container-fluid.mainContent.home-gallery::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 846px;
  height: 838px;
  background-image: url("../images/benifit-after.svg");
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.5;
}
section.container-fluid.mainContent.home-gallery .main-title {
  max-width: 850px;
  margin: 0px auto;
  text-align: center;
}
section.container-fluid.mainContent.home-gallery .main-title h3 {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  line-height: 60px;
}
section.container-fluid.mainContent.home-gallery .gallery-slider,
section.container-fluid.mainContent.home-gallery .room-gallery {
  margin-top: 60px;
}
@media (max-width: 766px) {
  section.container-fluid.mainContent.home-gallery .gallery-slider,
  section.container-fluid.mainContent.home-gallery .room-gallery {
    margin-top: 0px;
  }
}
section.container-fluid.mainContent.home-gallery .gallery-slider .owl-item .item-img,
section.container-fluid.mainContent.home-gallery .room-gallery .owl-item .item-img {
  position: relative;
  z-index: 1;
}
section.container-fluid.mainContent.home-gallery .gallery-slider .owl-item .item-img::before,
section.container-fluid.mainContent.home-gallery .room-gallery .owl-item .item-img::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 0, 0, 0.64)), to(rgb(0, 0, 0)));
  background: linear-gradient(to bottom, rgba(255, 0, 0, 0.64) 0%, rgb(0, 0, 0) 100%);
  opacity: 0;
  transition: all 400ms ease-in;
  -webkit-transition: all 400ms ease-in;
  -o-transition: all 400ms ease-in;
  -moz-transition: all 400ms ease-in;
  -ms-transition: all 400ms ease-in;
}
section.container-fluid.mainContent.home-gallery .gallery-slider .owl-item .item-img::after,
section.container-fluid.mainContent.home-gallery .room-gallery .owl-item .item-img::after {
  position: absolute;
  content: "";
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  border: 1px solid #ffffff;
  z-index: 2;
  opacity: 0;
  transition: all 400ms ease-in;
  -webkit-transition: all 400ms ease-in;
  -o-transition: all 400ms ease-in;
  -moz-transition: all 400ms ease-in;
  -ms-transition: all 400ms ease-in;
}
section.container-fluid.mainContent.home-gallery .gallery-slider .owl-item .meta,
section.container-fluid.mainContent.home-gallery .room-gallery .owl-item .meta {
  position: absolute;
  bottom: 100px;
  z-index: 999;
  left: 0;
  right: 0;
  text-align: center;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  opacity: 0;
  transition: all 400ms ease-in;
  -webkit-transition: all 400ms ease-in;
  -o-transition: all 400ms ease-in;
  -moz-transition: all 400ms ease-in;
  -ms-transition: all 400ms ease-in;
}
section.container-fluid.mainContent.home-gallery .gallery-slider .owl-item .meta h4,
section.container-fluid.mainContent.home-gallery .room-gallery .owl-item .meta h4 {
  color: #ffffff;
  font-size: 24px;
  font-family: "DM Sans", sans-serif;
}
@media (max-width: 1199px) {
  section.container-fluid.mainContent.home-gallery .gallery-slider .owl-item .meta h4,
  section.container-fluid.mainContent.home-gallery .room-gallery .owl-item .meta h4 {
    font-size: 18px;
  }
}
@media (max-width: 1199px) {
  section.container-fluid.mainContent.home-gallery .gallery-slider .owl-item .meta,
  section.container-fluid.mainContent.home-gallery .room-gallery .owl-item .meta {
    bottom: 50px;
    left: 50px;
  }
}
section.container-fluid.mainContent.home-gallery .gallery-slider .owl-item .popup-icon,
section.container-fluid.mainContent.home-gallery .room-gallery .owl-item .popup-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 9;
  opacity: 0;
  transition: all 400ms ease-in;
  -webkit-transition: all 400ms ease-in;
  -o-transition: all 400ms ease-in;
  -moz-transition: all 400ms ease-in;
  -ms-transition: all 400ms ease-in;
}
section.container-fluid.mainContent.home-gallery .gallery-slider .owl-item .popup-icon svg,
section.container-fluid.mainContent.home-gallery .room-gallery .owl-item .popup-icon svg {
  fill: #ffffff;
  width: 20px;
  height: 20px;
}
section.container-fluid.mainContent.home-gallery .gallery-slider .owl-item:hover .item-img::before, section.container-fluid.mainContent.home-gallery .gallery-slider .owl-item.center .item-img::before,
section.container-fluid.mainContent.home-gallery .room-gallery .owl-item:hover .item-img::before,
section.container-fluid.mainContent.home-gallery .room-gallery .owl-item.center .item-img::before {
  opacity: 0.5;
}
section.container-fluid.mainContent.home-gallery .gallery-slider .owl-item:hover .item-img::after, section.container-fluid.mainContent.home-gallery .gallery-slider .owl-item.center .item-img::after,
section.container-fluid.mainContent.home-gallery .room-gallery .owl-item:hover .item-img::after,
section.container-fluid.mainContent.home-gallery .room-gallery .owl-item.center .item-img::after {
  opacity: 1;
  left: 15px;
  right: 15px;
  top: 15px;
  bottom: 15px;
}
@media (max-width: 1199px) {
  section.container-fluid.mainContent.home-gallery .gallery-slider .owl-item:hover .item-img::after, section.container-fluid.mainContent.home-gallery .gallery-slider .owl-item.center .item-img::after,
  section.container-fluid.mainContent.home-gallery .room-gallery .owl-item:hover .item-img::after,
  section.container-fluid.mainContent.home-gallery .room-gallery .owl-item.center .item-img::after {
    left: 20px;
    right: 20px;
    top: 20px;
    bottom: 20px;
  }
}
section.container-fluid.mainContent.home-gallery .gallery-slider .owl-item:hover .meta, section.container-fluid.mainContent.home-gallery .gallery-slider .owl-item.center .meta,
section.container-fluid.mainContent.home-gallery .room-gallery .owl-item:hover .meta,
section.container-fluid.mainContent.home-gallery .room-gallery .owl-item.center .meta {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
}
section.container-fluid.mainContent.home-gallery .gallery-slider .owl-item:hover .popup-icon, section.container-fluid.mainContent.home-gallery .gallery-slider .owl-item.center .popup-icon,
section.container-fluid.mainContent.home-gallery .room-gallery .owl-item:hover .popup-icon,
section.container-fluid.mainContent.home-gallery .room-gallery .owl-item.center .popup-icon {
  opacity: 1;
}
section.container-fluid.mainContent.home-gallery .gallery-slider .owl-item:hover .popup-icon svg, section.container-fluid.mainContent.home-gallery .gallery-slider .owl-item.center .popup-icon svg,
section.container-fluid.mainContent.home-gallery .room-gallery .owl-item:hover .popup-icon svg,
section.container-fluid.mainContent.home-gallery .room-gallery .owl-item.center .popup-icon svg {
  fill: #ffffff;
  width: 40px;
  height: 40px;
}
section.container-fluid.mainContent.home-gallery .gallery-slider .owl-nav,
section.container-fluid.mainContent.home-gallery .room-gallery .owl-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 31%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
section.container-fluid.mainContent.home-gallery .gallery-slider .owl-nav [class*=owl-],
section.container-fluid.mainContent.home-gallery .room-gallery .owl-nav [class*=owl-] {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: absolute;
  transition: 400ms;
  -webkit-transition: 400ms;
  -o-transition: 400ms;
  -moz-transition: 400ms;
  -ms-transition: 400ms;
}
section.container-fluid.mainContent.home-gallery .gallery-slider .owl-nav [class*=owl-].owl-prev,
section.container-fluid.mainContent.home-gallery .room-gallery .owl-nav [class*=owl-].owl-prev {
  left: 30px;
}
section.container-fluid.mainContent.home-gallery .gallery-slider .owl-nav [class*=owl-].owl-next,
section.container-fluid.mainContent.home-gallery .room-gallery .owl-nav [class*=owl-].owl-next {
  right: 30px;
}
section.container-fluid.mainContent.home-gallery .gallery-slider .owl-nav [class*=owl-] img,
section.container-fluid.mainContent.home-gallery .room-gallery .owl-nav [class*=owl-] img {
  max-width: 18px;
  width: 100%;
}
section.container-fluid.mainContent.home-gallery .gallery-slider .owl-nav [class*=owl-]:hover,
section.container-fluid.mainContent.home-gallery .room-gallery .owl-nav [class*=owl-]:hover {
  background: rgba(229, 6, 10, 0.14);
}
@media (max-width: 1399px) {
  section.container-fluid.mainContent.home-gallery .gallery-slider .owl-nav [class*=owl-],
  section.container-fluid.mainContent.home-gallery .room-gallery .owl-nav [class*=owl-] {
    width: 45px;
    height: 45px;
  }
  section.container-fluid.mainContent.home-gallery .gallery-slider .owl-nav [class*=owl-] img,
  section.container-fluid.mainContent.home-gallery .room-gallery .owl-nav [class*=owl-] img {
    max-width: 14px;
  }
}
section.container-fluid.mainContent.home-about2 {
  position: relative;
  background-color: #f9f9f9;
  z-index: 1;
}
section.container-fluid.mainContent.home-about2::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://fortishotel.net/wp-content/uploads/2025/08/about-bg-1.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  opacity: 0.06;
}
@media (max-width: 991px) {
  section.container-fluid.mainContent.home-about2 .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
section.container-fluid.mainContent.home-about2 .left-aside {
  -ms-flex-item-align: center !important;
      align-self: center !important;
}
@media (max-width: 991px) {
  section.container-fluid.mainContent.home-about2 .left-aside .about-content {
    text-align: center;
    margin-top: 30px;
  }
}
section.container-fluid.mainContent.home-about2 .left-aside .about-content h3 {
  color: #000000;
  font-size: 60px;
  font-weight: 700;
  text-align: left;
  line-height: 70px;
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  section.container-fluid.mainContent.home-about2 .left-aside .about-content h3 {
    font-size: 50px;
    line-height: 65px;
  }
}
@media (max-width: 1024px) {
  section.container-fluid.mainContent.home-about2 .left-aside .about-content h3 {
    font-size: 40px;
    line-height: 35px;
  }
}
@media (max-width: 991px) {
  section.container-fluid.mainContent.home-about2 .left-aside .about-content h3 {
    text-align: center;
    font-size: 30px;
    line-height: 45px;
  }
}
section.container-fluid.mainContent.home-about2 .left-aside .about-content h3 span {
  font-size: 30px;
  font-weight: 500;
  display: block;
  line-height: 40px;
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  section.container-fluid.mainContent.home-about2 .left-aside .about-content h3 span {
    font-size: 25px;
    line-height: 35px;
  }
}
@media (max-width: 991px) {
  section.container-fluid.mainContent.home-about2 .left-aside .about-content h3 span {
    font-size: 20px;
    line-height: 35px;
  }
}
section.container-fluid.mainContent.home-about2 .left-aside .about-content h4 {
  color: #e5060a;
  font-size: 40px;
  margin-bottom: 45px;
  font-weight: 600;
}
@media (max-width: 1199px) {
  section.container-fluid.mainContent.home-about2 .left-aside .about-content h4 {
    margin-bottom: 25px;
  }
}
@media (max-width: 1024px) {
  section.container-fluid.mainContent.home-about2 .left-aside .about-content h4 {
    font-size: 30px;
  }
}
section.container-fluid.mainContent.home-about2 .left-aside .about-content p {
  color: #000000;
  width: 80%;
  line-height: 30px;
}
section.container-fluid.mainContent.home-about2 .right-aside .about-img img {
    max-height: 650px;
    object-fit: cover;
}
@media (max-width: 1399px) {
  section.container-fluid.mainContent.home-about2 .left-aside .about-content p {
    width: 95%;
  }
}
@media (max-width: 1199px) {
  section.container-fluid.mainContent.home-about2 .left-aside .about-content p {
    width: 100%;
    margin: 0 0 10px;
  }
}
section.container-fluid.mainContent.home-about2 .left-aside .about-content ul li {
  font-size: 15px;
  position: relative;
  padding-left: 25px;
  line-height: 35px;
  transition: all 400ms ease;
  -webkit-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
}
@media (max-width: 991px) {
  section.container-fluid.mainContent.home-about2 .left-aside .about-content ul li {
    padding-left: 0px;
  }
}
section.container-fluid.mainContent.home-about2 .left-aside .about-content ul li::after {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border: 1px solid #e5060a;
  border-radius: 100%;
  transition: all 400ms ease;
  -webkit-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
}
@media (max-width: 991px) {
  section.container-fluid.mainContent.home-about2 .left-aside .about-content ul li::after {
    display: none;
  }
}
section.container-fluid.mainContent.home-about2 .left-aside .about-content ul li::before {
  position: absolute;
  content: "";
  left: 3px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: #e5060a;
  border-radius: 100%;
  transition: all 400ms ease;
  -webkit-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
}
@media (max-width: 991px) {
  section.container-fluid.mainContent.home-about2 .left-aside .about-content ul li::before {
    display: none;
  }
}
section.container-fluid.mainContent.home-about2 .left-aside .about-content ul li:hover {
  padding-left: 35px;
}
section.container-fluid.mainContent.home-about2 .left-aside .about-content ul li:hover::before {
  background-color: #000000;
}
section.container-fluid.mainContent.home-about2 .left-aside .about-content ul li:hover::after {
  border-color: #000000;
}
section.container-fluid.mainContent.home-about2 .left-aside .about-content .main-btn {
  display: inline-block;
  margin-top: 30px;
}
section.container-fluid.mainContent.home-about2 .left-aside .about-content .main-btn a {
  background-color: #e5060a;
  border-radius: 0px;
  border: none;
  color: #ffffff;
  font-size: 16px;
  font-family: "Assistant", sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  line-height: normal;
  padding: 10px 30px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
  position: relative;
  z-index: 1;
}
section.container-fluid.mainContent.home-about2 .left-aside .about-content .main-btn a::before {
  position: absolute;
  content: "";
  width: 4px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #ffffff;
  height: 40px;
  z-index: -1;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
}
section.container-fluid.mainContent.home-about2 .left-aside .about-content .main-btn a::after {
  position: absolute;
  content: "";
  width: 0px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #ffffff;
  height: 40px;
  z-index: -1;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
}
section.container-fluid.mainContent.home-about2 .left-aside .about-content .main-btn a span {
  margin-left: 20px;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
}
section.container-fluid.mainContent.home-about2 .left-aside .about-content .main-btn a span svg {
  fill: #ffffff;
}
section.container-fluid.mainContent.home-about2 .left-aside .about-content .main-btn a:hover {
  letter-spacing: 2px;
}
section.container-fluid.mainContent.home-about2 .left-aside .about-content .main-btn a:hover::before {
  width: 100%;
  opacity: 0;
}
section.container-fluid.mainContent.home-about2 .left-aside .about-content .main-btn a:hover::after {
  width: 4px;
  left: auto;
  right: 0;
}
section.container-fluid.mainContent.home-about2 .left-aside .about-content .main-btn a button {
  background-color: transparent;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: inherit;
  text-transform: uppercase;
}
section.container-fluid.mainContent.home-about2 .left-aside .about-content p {

    font-size: 16px;
}
@media (max-width: 1399px) {
  section.container-fluid.mainContent.home-about2 .left-aside .about-content .main-btn a {
    padding: 10px 15px;
  }
}
section.container-fluid.mainContent.home-about2 .right-aside {
  overflow: hidden;
}
section.container-fluid.mainContent.home-about2 .right-aside .about-img {
  overflow: hidden;
  position: relative;
  z-index: 1;
  border-radius: 15px;
}
@media (max-width: 991px) {
  section.container-fluid.mainContent.home-about2 .right-aside .about-img {
    margin-bottom: 30px;
    width: 70%;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  section.container-fluid.mainContent.home-about2 .right-aside .about-img {
    width: 100%;
  }
  fluid.mainContent.home-about2 .right-aside .about-img img {
    max-height: initial;
}
}
section.container-fluid.mainContent.home-about2 .right-aside .about-img::before {
  position: absolute;
  content: "";
  left: 40px;
  right: 40px;
  top: 40px;
  bottom: 40px;
  border: 1px solid #ffffff;
  z-index: 2;
  opacity: 0;
  transition: all 400ms ease-in;
  -webkit-transition: all 400ms ease-in;
  -o-transition: all 400ms ease-in;
  -moz-transition: all 400ms ease-in;
  -ms-transition: all 400ms ease-in;
}
@media (max-width: 991px) {
  section.container-fluid.mainContent.home-about2 .right-aside .about-img::before {
    display: none;
  }
}
section.container-fluid.mainContent.home-about2 .right-aside .about-img::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 0, 0, 0.64)), to(rgb(0, 0, 0)));
  background: linear-gradient(to bottom, rgba(255, 0, 0, 0.64) 0%, rgb(0, 0, 0) 100%);
  opacity: 0.5;
  z-index: 1;
  opacity: 0;
  transition: all 400ms ease-in;
  -webkit-transition: all 400ms ease-in;
  -o-transition: all 400ms ease-in;
  -moz-transition: all 400ms ease-in;
  -ms-transition: all 400ms ease-in;
}
@media (max-width: 991px) {
  section.container-fluid.mainContent.home-about2 .right-aside .about-img::after {
    display: none;
  }
}
section.container-fluid.mainContent.home-about2:hover .right-aside .about-img img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
@media (max-width: 991px) {
  section.container-fluid.mainContent.home-about2:hover .right-aside .about-img img {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
section.container-fluid.mainContent.home-about2:hover .right-aside .about-img::before {
  opacity: 1;
}
section.container-fluid.mainContent.home-about2:hover .right-aside .about-img::after {
  opacity: 0.6;
}
section.container-fluid.mainContent.home-about2 .benifit-title {
  margin-top: 100px;
  margin-bottom: 50px;
}
section.container-fluid.mainContent.home-about2 .benifit-title .title-in {
  text-align: center;
  width: 100%;
  margin-bottom: 50px;
}
section.container-fluid.mainContent.home-about2 .benifit-title .title-in h3 {
  font-size: 40px;
  color: #ffffff;
}
section.container-fluid.mainContent.home-about2 .benifit-section .bf-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
section.container-fluid.mainContent.home-about2 .benifit-section .bf-box:nth-child(1) {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
section.container-fluid.mainContent.home-about2 .benifit-section .bf-box:nth-child(2) {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
section.container-fluid.mainContent.home-about2 .benifit-section .bf-box:nth-child(3) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
section.container-fluid.mainContent.home-about2 .benifit-section .bf-box:nth-child(4) {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
section.container-fluid.mainContent.home-about2 .benifit-section .bf-box:nth-child(5) {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
section.container-fluid.mainContent.home-about2 .benifit-section .bf-box .benifit-item {
  width: 100%;
  padding: 40px;
}
section.container-fluid.mainContent.home-about2 .benifit-section .bf-box .benifit-item .icon-box {
  width: 80px;
  height: 80px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: transparent;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0px auto;
  margin-bottom: 15px;
  transition: all 400ms ease-in;
  -webkit-transition: all 400ms ease-in;
  -o-transition: all 400ms ease-in;
  -moz-transition: all 400ms ease-in;
  -ms-transition: all 400ms ease-in;
  position: relative;
}
section.container-fluid.mainContent.home-about2 .benifit-section .bf-box .benifit-item .icon-box::before {
  position: absolute;
  content: "";
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100%;
  transition: all 400ms ease-in;
  -webkit-transition: all 400ms ease-in;
  -o-transition: all 400ms ease-in;
  -moz-transition: all 400ms ease-in;
  -ms-transition: all 400ms ease-in;
  opacity: 0;
}
section.container-fluid.mainContent.home-about2 .benifit-section .bf-box .benifit-item .icon-box svg {
  fill: #ffffff;
  width: 30px;
  height: 30px;
  margin: 0px auto;
}
section.container-fluid.mainContent.home-about2 .benifit-section .bf-box .benifit-item .text-box {
  text-align: center;
}
section.container-fluid.mainContent.home-about2 .benifit-section .bf-box .benifit-item .text-box h5 {
  font-size: 16px;
  color: #e5060a;
  margin-bottom: 10px;
  font-weight: 600;
  font-family: "Assistant", sans-serif;
  opacity: 1 !important;
}
section.container-fluid.mainContent.home-about2 .benifit-section .bf-box .benifit-item .text-box h4 {
  color: #ffffff;
  font-size: 20px;
  text-transform: capitalize;
}
section.container-fluid.mainContent.home-about2 .benifit-section .bf-box .benifit-item:hover .icon-box {
  background-color: #e5060a;
  border-color: #e5060a;
}
section.container-fluid.mainContent.home-about2 .benifit-section .bf-box .benifit-item:hover .icon-box::before {
  left: 10px;
  right: 10px;
  top: 10px;
  bottom: 10px;
  opacity: 1;
}
section.fullscreen {
  position: relative;
}
section.fullscreen .reservation-wrap {
  position: absolute;
  top: 0;
  right: 100px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
}
section.fullscreen .reservation-wrap .form-toggle {
  display: none;
}
section.fullscreen .main-slider {
  position: relative;
}
section.fullscreen .main-slider .item-img {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100vh;
  position: relative;
}
section.fullscreen .main-slider .meta {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 9;
}
section.fullscreen .main-slider .meta:after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #000;
  z-index: -9;
  opacity: 0.4;
}
section.fullscreen .main-slider .meta .inner h2 .main-title__small {
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 90px;
  font-size: 70px;
  margin: 0 auto;
  width: 70%;
  display: block;
  text-align: center;
}
@media (max-width: 1199px) {
  section.fullscreen .main-slider .meta .inner h2 .main-title__small {
    font-size: 50px;
    line-height: 65px;
  }
}
@media (max-width: 1199px) {
  section.fullscreen .main-slider .meta .inner h2 .main-title__small {
    font-size: 35px;
    line-height: 45px;
  }
}
section.fullscreen .main-slider .meta .inner h2 .inner-sub {
  font-size: calc(18px + 12 * (100vw - 720px) / 719);
  margin-top: -20px;
  display: block;
}
section.fullscreen .main-slider .meta .inner .sub-title {
  text-align: left;
  color: #ffffff;
  font-size: 30px;
  letter-spacing: 2px;
  margin-bottom: 30px;
}
section.fullscreen .main-slider .meta .inner .play-btn {
  position: relative;
  text-align: center;
  margin-top: 35px;
}
section.fullscreen .main-slider .meta .inner .play-btn .ripple-block {
  position: relative;
  width: 100px;
  height: 100px;
  display: block;
  cursor: pointer;
}
section.fullscreen .main-slider .meta .inner .play-btn .ripple-block .fa-play {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 18px;
  color: #e5060a;
  -webkit-transition: all 1.5s ease;
  transition: all 1.5s ease;
  background: #ffffff;
  border: 1px solid #ffffff;
  width: 60px;
  height: 60px;
  line-height: 60px;
  padding-left: 0px;
  z-index: 3;
  position: absolute;
  border-radius: 50%;
}
section.fullscreen .main-slider .meta .inner .play-btn .ripple-block .ripple {
  width: 100px;
  height: 100px;
  position: absolute;
  border-radius: 50%;
  -webkit-animation: ripple 5s ease-in-out infinite;
          animation: ripple 5s ease-in-out infinite;
  -webkit-transition: background 1.5s ease;
  transition: background 1.5s ease;
  background: rgba(255, 255, 255, 0.5);
}
section.fullscreen .main-slider .meta .inner .play-btn .ripple-block .ripple.ripple-1 {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
section.fullscreen .main-slider .meta .inner .play-btn .ripple-block .ripple.ripple-2 {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
section.fullscreen .main-slider .meta .inner .play-btn .ripple-block .ripple.ripple-3 {
  -webkit-animation-delay: 3.5s;
          animation-delay: 3.5s;
}
section.fullscreen .main-slider .meta .inner .play-btn .ripple-block:active .ripple, section.fullscreen .main-slider .meta .inner .play-btn .ripple-block:focus .ripple, section.fullscreen .main-slider .meta .inner .play-btn .ripple-block:hover .ripple {
  background: rgba(255, 255, 255, 0.5);
}
section.fullscreen .main-slider .meta .inner .rating {
  width: 100%;
  text-align: center;
  position: relative;
  margin-bottom: 30px;
}
section.fullscreen .main-slider .meta .inner .rating img {
  width: auto;
  margin: 0 auto;
}
section.fullscreen .main-slider .owl-nav {
    position: absolute;
    right: 50px;
    left: 50px;
    bottom: 55%;
}
section.fullscreen .main-slider .owl-nav button.owl-prev {
    position: absolute;
    left: 0 !important;
    margin: 0;
}
section.fullscreen .main-slider .owl-nav button.owl-next {
       right: 0 !important;
    position: absolute;
}
section.fullscreen .main-slider .owl-nav [class*=owl-] {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  margin-right: 20px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: 400ms;
  -webkit-transition: 400ms;
  -o-transition: 400ms;
  -moz-transition: 400ms;
  -ms-transition: 400ms;
}
section.fullscreen .main-slider .owl-nav [class*=owl-].owl-prev {
  left: 30px;
}
section.fullscreen .main-slider .owl-nav [class*=owl-].owl-next {
  right: 30px;
}
section.fullscreen .main-slider .owl-nav [class*=owl-] img {
  max-width: 12px;
  width: 100%;
}
section.fullscreen .main-slider .owl-nav [class*=owl-]:hover {
  background: rgba(229, 6, 10, 0.14);
}
@media (max-width: 991px) {
  section.fullscreen .main-slider .owl-nav [class*=owl-] {
    position: relative;
    margin-right: 15px;
  }
  section.fullscreen .main-slider .owl-nav [class*=owl-]:last-child {
    margin-right: 0;
  }
  section.fullscreen .main-slider .owl-nav [class*=owl-].owl-prev {
    right: 0;
    left: 0;
  }
  section.fullscreen .main-slider .owl-nav [class*=owl-].owl-next {
    right: 0;
    left: 0;
    top: auto;
  }
}
@media (max-width: 991px) {
  section.fullscreen .main-slider .owl-nav {
    top: auto;
    bottom: 50px;
    left: 0;
    text-align: center;
    right: 0;
    -webkit-transform: initial;
            transform: initial;
    margin: 0px auto;
  }
}
section.fullscreen .main-slider .owl-dots {
  position: absolute;
  right: 100px;
  bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: none;
}
@media (max-width: 991px) {
  section.fullscreen .main-slider .owl-dots {
    left: 0;
    right: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    bottom: 120px;
  }
}
section.fullscreen .main-slider .owl-dots [class*=owl-] {
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background: #ffffff;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  outline: none;
  margin-right: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 991px) {
  section.fullscreen .main-slider .owl-dots [class*=owl-] {
    margin: 0 10px;
  }
}
section.fullscreen .main-slider .owl-dots [class*=owl-].active {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
section.fullscreen .main-slider .owl-dots [class*=owl-].active span {
  position: relative;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
section.fullscreen .main-slider .owl-dots [class*=owl-].active span::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid #fff;
  border-radius: 100%;
  left: -14px;
  top: -12px;
}
section.surrondings {
  padding-top: 100px;
  padding-bottom: 150px;
  background-size: cover !important;
}
section.surrondings .top-cnt {
  text-align: center;
}
section.surrondings .top-cnt h6 {
  text-transform: capitalize;
}
section.surrondings .top-cnt h2 {
  margin: 0 auto;
  width: 60%;
  line-height: 45px;
}
@media (max-width: 575px) {
  section.surrondings .top-cnt h2 {
    width: 100%;
    font-size: 30px;
  }
}
section.surrondings .surrondings-listing .nav-tabs {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: none;
  padding: 50px 0;
}
@media (max-width: 768px) {
  section.surrondings .surrondings-listing .nav-tabs {
    gap: 15px;
  }
}
section.surrondings .surrondings-listing .nav-tabs .nav-item button {
  font-size: 15px;
  color: #000;
  padding: 15px 30px;
  border: none;
  font-weight: 500;
}
@media (max-width: 575px) {
  section.surrondings .surrondings-listing .nav-tabs .nav-item button {
    padding: 10px 15px;
  }
}
section.surrondings .surrondings-listing .nav-tabs .nav-item button:hover {
  border: none;
  color: var(--theme-color);
}
section.surrondings .surrondings-listing .nav-tabs .nav-item button.active {
  color: var(--theme-color);
  border-radius: 50px;
  background: transparent;
}
section.surrondings .surrondings-listing .tab-content .item figure {
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 15px;
}
section.surrondings .surrondings-listing .tab-content .item figure img {
  -webkit-transition: all 400ms;
  transition: all 400ms;
}
section.surrondings .surrondings-listing .tab-content .item .cont {
  margin-top: -100px;
  position: relative;
  text-align: center;
}
section.surrondings .surrondings-listing .tab-content .item .cont h5 {
  font-size: 14px;
  color: #fff;
  background: var(--theme-color);
  text-align: center;
  padding: 20px;
  font-weight: 600;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 60px;
  font-family: "DM Sans", sans-serif;
}
section.surrondings .surrondings-listing .tab-content .item .cont span {
  font-size: 15px;
  color: #4d4b4b;
  font-weight: 600;
  text-align: center;
  width: 100%;
  display: block;
}
section.surrondings .surrondings-listing .tab-content .item:hover figure img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all 400ms;
  transition: all 400ms;
}
section.surrondings .surrondings-listing .owl-dots {
  width: 150px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  bottom: -40px;
}
@media (max-width: 768px) {
  section.surrondings .surrondings-listing .owl-dots {
    bottom: 0px;
  }
}
@media (max-width: 575px) {
  section.surrondings .surrondings-listing .owl-dots {
    bottom: -20px;
    width: 100%;
  }
}
section.surrondings .surrondings-listing .owl-dots button {
  width: 7px;
  height: 7px;
  border-radius: 50px;
  background: #000;
  margin: 0 10px;
  opacity: 0.5;
}
section.surrondings .surrondings-listing .owl-dots button span {
  display: none !important;
}
section.surrondings .surrondings-listing .owl-dots button.active {
  background: var(--theme-color);
  position: relative;
  opacity: 1;
}
section.surrondings .surrondings-listing .owl-dots button.active:after {
  position: absolute;
  content: "";
  border: 1px solid var(--theme-color);
  left: -9px;
  right: 0;
  top: -9px;
  bottom: 0;
  border-radius: 50px;
  width: 25px;
  height: 25px;
}
section.surrondings .surrondings-listing .owl-nav {
  width: 140px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  bottom: -40px;
  z-index: 99;
}
section.surrondings .surrondings-listing .owl-nav .owl-prev {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  left: 0;
  position: absolute;
}
section.surrondings .surrondings-listing .owl-nav .owl-prev::before {
  content: "";
  background-image: url(../images/surronding-arrow.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 30px;
  height: 30px;
  display: block;
}
section.surrondings .surrondings-listing .owl-nav .owl-prev span {
  display: none;
}
section.surrondings .surrondings-listing .owl-nav .owl-next {
  right: 0;
  position: absolute;
}
section.surrondings .surrondings-listing .owl-nav .owl-next::before {
  content: "";
  background-image: url(../images/surronding-arrow.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 30px;
  height: 30px;
  display: block;
}
section.surrondings .surrondings-listing .owl-nav .owl-next span {
  display: none;
}
section.surrondings .surrondings-listing .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}

.reservation-wrap {
  position: absolute;
  top: 0;
  right: 100px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2;
}
.reservation-wrap .form-toggle {
  display: none;
}
.reservation-wrap .reservation-box {
  background: #ffffff;
  min-width: 420px;
  max-width: 420px;
  padding: 40px;
  -webkit-box-shadow: 0px 0px 0px 15px rgba(255, 255, 255, 0.2);
          box-shadow: 0px 0px 0px 15px rgba(255, 255, 255, 0.2);
  margin-top: 100px;
}
.reservation-wrap .reservation-box h4 {
  margin-bottom: 25px;
  line-height: 35px;
  font-weight: 700;
}
.reservation-wrap .reservation-box h4 span {
  color: #e5060a;
}
.reservation-wrap .reservation-box form .row {
  margin-left: -5px;
  margin-right: -5px;
}
.reservation-wrap .reservation-box form .row:nth-of-type(2) {
  position: relative;
  z-index: 3;
}
.reservation-wrap .reservation-box form .row:nth-of-type(3) {
  position: relative;
  z-index: 2;
}
.reservation-wrap .reservation-box form .row:nth-of-type(4) {
  position: relative;
  z-index: 1;
}
.reservation-wrap .reservation-box form .row .col-12 {
  padding: 5px;
}
.reservation-wrap .reservation-box form .nice-select {
  display: none;
}
.reservation-wrap .reservation-box form label {
  margin-bottom: 10px;
  font-weight: 800;
  font-size: 16px;
}
.reservation-wrap .reservation-box form input {
  width: 100%;
  font-size: 15px;
}
.reservation-wrap .reservation-box form input#Checkindate, .reservation-wrap .reservation-box form input#Checkoutdate {
  margin-bottom: 5px;
  padding: 11px 10px 11px 15px;
  position: relative;
  z-index: 1;
}
.reservation-wrap .reservation-box form input#Checkindate::after, .reservation-wrap .reservation-box form input#Checkoutdate::after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 45px;
  height: 100%;
  background: #f1f1f1;
  z-index: -1;
}
.reservation-wrap .reservation-box form .custom-select {
  padding: 0;
  border-radius: 0;
  height: 54px;
  margin-bottom: 5px;
  font-size: 14px;
  border: 1px solid #F2F2F2;
  z-index: 1;
}
.reservation-wrap .reservation-box form .custom-select .select-selected {
  padding: 15px 16px;
  color: #929292 !important;
  font-size: 14px;
  border: none;
  background: transparent;
}
.reservation-wrap .reservation-box form .custom-select .select-selected::after {
  position: absolute;
  content: "";
  top: 23px;
  right: 15px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #636363 transparent transparent transparent;
}
.reservation-wrap .reservation-box form .custom-select .select-selected::before {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 45px;
  height: 100%;
  background: #f1f1f1;
  z-index: -1;
}
.reservation-wrap .reservation-box form .custom-select .select-items {
  background: #f1f1f1;
  left: -1px;
  right: -1px;
}
.reservation-wrap .reservation-box form .custom-select .select-items div {
  color: #15171C;
  transition: 400ms all;
  -webkit-transition: 400ms all;
  -o-transition: 400ms all;
  -moz-transition: 400ms all;
  -ms-transition: 400ms all;
}
.reservation-wrap .reservation-box form .row .main-btn button {
  width: 100%;
  text-align: center;
  border-radius: 0;
  background: #e5060a;
  border: none;
  margin-top: 5px;
  text-transform: uppercase;
  padding: 0;
}
.reservation-wrap .reservation-box form .row .main-btn button span {
  font-size: 14px !important;
  padding: 10px 15px !important;
  background-color: #15171C;
  border-radius: 0px;
  border: none;
  color: #ffffff;
  font-size: 16px;
  font-family: "Assistant", sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  line-height: normal;
  padding: 10px 30px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
  position: relative;
  z-index: 1;
  position: relative;
}
.reservation-wrap .reservation-box form .row .main-btn button span::before {
  position: absolute;
  content: "";
  width: 4px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #e5060a;
  height: 40px;
  z-index: -1;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
}
.reservation-wrap .reservation-box form .row .main-btn button span::after {
  position: absolute;
  content: "";
  width: 0px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #e5060a;
  height: 40px;
  z-index: -1;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
}
.reservation-wrap .reservation-box form .row .main-btn button span span {
  margin-left: 20px;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
}
.reservation-wrap .reservation-box form .row .main-btn button span span svg {
  fill: #ffffff;
}
.reservation-wrap .reservation-box form .row .main-btn button span:hover {
  letter-spacing: 2px;
}
.reservation-wrap .reservation-box form .row .main-btn button span:hover::before {
  width: 100%;
  opacity: 0;
}
.reservation-wrap .reservation-box form .row .main-btn button span:hover::after {
  width: 4px;
  left: auto;
  right: 0;
}
.reservation-wrap .reservation-box form .row .main-btn button span button {
  background-color: transparent;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: inherit;
  text-transform: uppercase;
}
@media (max-width: 1199px) {
  .reservation-wrap .reservation-box form .row .main-btn button {
    margin-top: 0;
  }
}
.reservation-wrap .reservation-box form .row .main-btn button:hover span {
  letter-spacing: 0 !important;
}
.reservation-wrap .reservation-box form .row .main-btn:last-child button {
  background: #15171C;
}
.reservation-wrap .reservation-box form .row .main-btn:last-child button span {
  background: #e5060a;
}
.reservation-wrap .reservation-box form .row .main-btn:last-child button span::before, .reservation-wrap .reservation-box form .row .main-btn:last-child button span::after {
  background: #000000;
}

@media (max-width: 1024px) {
  section.container-fluid.mainContent.outlets {
    padding-bottom: 130px !important;
  }
}
@media (max-width: 991px) {
  section.container-fluid.mainContent.outlets {
    padding-bottom: 130px !important;
  }
}
@media (max-width: 575px) {
  section.container-fluid.mainContent.outlets {
    padding-bottom: 80px !important;
  }
}
section.container-fluid.mainContent.outlets .benifit-item li {
  border-radius: 15px;
  overflow: hidden;
}
section.container-fluid.mainContent.outlets .benifit-item .text-box {
  text-align: center;
  padding: 50px 50px;
  background: var(--theme-color);
  position: relative;
  width: 90%;
  margin: -60px auto 0;
  border-radius: 15px;
}
@media (max-width: 575px) {
  section.container-fluid.mainContent.outlets .benifit-item .text-box {
    width: 100%;
    margin: -10px 0 0;
    border-radius: 0 0 15px 15px;
    padding: 20px;
  }
}
section.container-fluid.mainContent.outlets .benifit-item h4 {
  color: #fff;
  font-size: 22px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  section.container-fluid.mainContent.outlets .benifit-item h4 {
    margin-bottom: 10px;
  }
}
section.container-fluid.mainContent.outlets .benifit-item p {
  color: #fff;
  margin: 0;
}
section.container-fluid.mainContent.outlets .owl-nav {
  position: absolute;
  bottom: -130px;
  left: 0;
  right: 0;
  width: 130px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
}
@media (max-width: 575px) {
  section.container-fluid.mainContent.outlets .owl-nav {
    bottom: -80px;
  }
}
section.container-fluid.mainContent.outlets .owl-nav button {
  background: #fff !important;
  width: 50px;
  height: 50px;
  border-radius: 50px !important;
  margin: 0 5px !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #d3cdcd !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
section.container-fluid.mainContent.outlets .owl-nav button.owl-prev {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
section.container-fluid.mainContent.outlets .owl-nav button span {
  background: url(../images/right-arrow.svg) no-repeat;
  width: 20px;
  height: 15px;
  display: block;
  font-size: 0;
}

/*to top*/
.progress-wrap {
  position: fixed;
  right: 50px;
  bottom: 50px;
  height: 40px;
  width: 40px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  -webkit-box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
          box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  background: #e5060a;
  -webkit-box-shadow: 0px 0px 0px 5px #e5060a;
          box-shadow: 0px 0px 0px 5px #e5060a;
}
.progress-wrap::after {
  position: absolute;
  content: "";
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  color: #ffffff;
  left: 0;
  top: 0px;
  background-image: url("../images/back-to-top.svg");
  background-repeat: no-repeat;
  background-position: center center;
  height: 40px;
  width: 40px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg.progress-circle path {
  stroke: var(--grey);
  stroke-width: 4;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/*====================================INNER PAGES====================================*/
/*ROOMS*/
.main-wraper section.inner-banner {
  background: #000000;
  position: relative;
  height: 50vh;
  padding-bottom: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: bottom center;
}
.main-wraper section.inner-banner::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0.6;
  background: rgb(47, 0, 1);
}
.main-wraper section.inner-banner:after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 60%;
  background: black;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(27%, rgba(0, 0, 0, 0)), to(black));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 27%, black 100%);
  opacity: 0.3;
}
.main-wraper section.inner-banner .container .row {
  text-align: center;
}
.main-wraper section.inner-banner .container .row h4 {
  font-family: "DM Sans", sans-serif;
  color: #ffffff;
}
.main-wraper section.inner-banner .container .row h1 {
  max-width: 50%;
  color: #ffffff;
  line-height: 60px;
  margin-bottom: 25px;
  font-size: 45px;
  font-weight: 700;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
      justify-content: center !important;
  margin: 0px auto;
}
.main-wraper section.inner-banner .container .row h1 span {
  position: relative;
}
.main-wraper section.inner-banner .container .row h1 span::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: -25px;
  margin: auto;
  width: 100%;
  max-width: 320px;
  height: 1px;
  background: #ffffff;
}
.main-wraper section.inner-banner .container .row h1 span::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: -34px;
  margin: auto;
  width: 20px;
  height: 20px;
  border-radius: 25px;
  background: #ffffff;
}
.main-wraper section.inner-banner .container .row h6 {
  color: #ffffff;
  margin-top: 25px;
  display: inline-block;
}
.main-wraper section.room-details {
  position: relative;
  z-index: 1;
  background: url(../images/room-bg.png);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #fafafa;
}
.main-wraper section.room-details .room-srv-wrap {
  width: 100%;
  margin-top: 40px;
}
.main-wraper section.room-details .room-srv-wrap h4 {
  color: #e5060a;
  font-weight: 700;
  margin-bottom: 35px;
}
.main-wraper section.room-details .room-srv-wrap h4 span {
  color: #15171C;
  font-size: 18px;
}
.main-wraper section.room-details .room-srv-wrap ul {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.main-wraper section.room-details .room-srv-wrap ul li {
  width: 16.6666666667%;
  padding: 20px;
  text-align: center;
  border: 1px solid #e0e0e0;
  position: relative;
}
@media (max-width: 1199px) {
  .main-wraper section.room-details .room-srv-wrap ul li {
    width: 20%;
  }
}
@media (max-width: 991px) {
  .main-wraper section.room-details .room-srv-wrap ul li {
    width: 25%;
  }
}
@media (max-width: 768px) {
  .main-wraper section.room-details .room-srv-wrap ul li {
    width: 33.3333333333%;
  }
}
@media (max-width: 575px) {
  .main-wraper section.room-details .room-srv-wrap ul li {
    width: 50%;
  }
}
.main-wraper section.room-details .room-srv-wrap ul li::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 0;
  height: 0;
  margin: auto;
  background: #e5060a;
  transition: all 400ms ease-in;
  -webkit-transition: all 400ms ease-in;
  -o-transition: all 400ms ease-in;
  -moz-transition: all 400ms ease-in;
  -ms-transition: all 400ms ease-in;
}
.main-wraper section.room-details .room-srv-wrap ul li span {
  position: relative;
}
.main-wraper section.room-details .room-srv-wrap ul li span svg {
  width: 45px;
  height: 45px;
  fill: #9e9e9e;
  transition: all 300ms ease-in;
  -webkit-transition: all 300ms ease-in;
  -o-transition: all 300ms ease-in;
  -moz-transition: all 300ms ease-in;
  -ms-transition: all 300ms ease-in;
}
.main-wraper section.room-details .room-srv-wrap ul li span svg path {
  fill: #9e9e9e;
  transition: all 300ms ease-in;
  -webkit-transition: all 300ms ease-in;
  -o-transition: all 300ms ease-in;
  -moz-transition: all 300ms ease-in;
  -ms-transition: all 300ms ease-in;
}
.main-wraper section.room-details .room-srv-wrap ul li p {
  line-height: 20px;
  margin-bottom: 0;
  position: relative;
  transition: all 400ms ease-in;
  -webkit-transition: all 400ms ease-in;
  -o-transition: all 400ms ease-in;
  -moz-transition: all 400ms ease-in;
  -ms-transition: all 400ms ease-in;
}
.main-wraper section.room-details .room-srv-wrap ul li:hover::before {
  width: 100%;
  height: 100%;
}
.main-wraper section.room-details .room-srv-wrap ul li:hover span svg {
  fill: #ffffff;
}
.main-wraper section.room-details .room-srv-wrap ul li:hover span svg path {
  fill: #ffffff;
}
.main-wraper section.room-details .room-srv-wrap ul li:hover p {
  color: #ffffff;
}
.main-wraper section.room-details .room-srv-wrap .check-now {
  margin-top: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.main-wraper section.room-details .room-srv-wrap .check-now h4 {
  color: #e5060a;
  font-weight: 700;
  margin-bottom: 0;
  margin-right: 30px;
  text-align: right;
}
.main-wraper section.room-details .room-srv-wrap .check-now h4 span {
  color: #15171C;
  font-size: 18px;
}
.main-wraper section.room-details .room-srv-wrap .check-now p {
  font-size: 18px;
  color: #15171C;
  line-height: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0;
}
.main-wraper section.room-details .room-srv-wrap .check-now p span {
  font-weight: 600;
  font-size: 20px;
}
.main-wraper section.room-details .room-srv-wrap .check-now .main-btn {
  display: inline-block;
}
.main-wraper section.room-details .room-srv-wrap .check-now .main-btn a {
  background-color: #15171C;
  border-radius: 0px;
  border: none;
  color: #ffffff;
  font-size: 16px;
  font-family: "Assistant", sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  line-height: normal;
  padding: 10px 30px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
  position: relative;
  z-index: 1;
  background: #000000;
  float: left;
  margin-top: 3px;
}
.main-wraper section.room-details .room-srv-wrap .check-now .main-btn a::before {
  position: absolute;
  content: "";
  width: 4px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #e5060a;
  height: 40px;
  z-index: -1;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
}
.main-wraper section.room-details .room-srv-wrap .check-now .main-btn a::after {
  position: absolute;
  content: "";
  width: 0px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #e5060a;
  height: 40px;
  z-index: -1;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
}
.main-wraper section.room-details .room-srv-wrap .check-now .main-btn a span {
  margin-left: 20px;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
}
.main-wraper section.room-details .room-srv-wrap .check-now .main-btn a span svg {
  fill: #ffffff;
}
.main-wraper section.room-details .room-srv-wrap .check-now .main-btn a:hover {
  letter-spacing: 2px;
}
.main-wraper section.room-details .room-srv-wrap .check-now .main-btn a:hover::before {
  width: 100%;
  opacity: 0;
}
.main-wraper section.room-details .room-srv-wrap .check-now .main-btn a:hover::after {
  width: 4px;
  left: auto;
  right: 0;
}
.main-wraper section.room-details .room-srv-wrap .check-now .main-btn a button {
  background-color: transparent;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: inherit;
  text-transform: uppercase;
}
.main-wraper section.room-details .room-srv-wrap .check-now .main-btn a::before {
  background: #ffffff;
}
.main-wraper section.room-details .room-srv-wrap .check-now .main-btn a::after {
  background: #ffffff;
}
.main-wraper section.room-details .room-srv-wrap .check-now .main-btn a.noContent {
  display: none !important;
}
@media (max-width: 1199px) {
  .main-wraper section.room-details .room-srv-wrap .check-now .main-btn {
    margin-top: 0;
  }
}
.main-wraper section.room-details .room-info {
  text-align: center;
}
.main-wraper section.room-details .room-info h3 {
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 46px;
}
.main-wraper section.room-details .room-info h3 span {
  font-family: "DM Sans", sans-serif;
}
.main-wraper section.room-details .room-info h5 {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  margin-bottom: 40px;
}
.main-wraper section.room-details .room-info h6 {
  font-family: "Assistant", sans-serif;
  color: #e5060a;
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
}
.main-wraper section.room-details .room-info h6::before {
  position: absolute;
  content: "";
  left: 0;
  top: 49%;
  height: 1px;
  width: 100%;
  background: #e5060a;
}
.main-wraper section.room-details .room-info h6 span {
  color: #ffffff;
  font-weight: 400;
  padding: 8px 25px;
  background: #e5060a;
  position: relative;
  border: 1px solid #e5060a;
}
.main-wraper section.room-details .room-info h6 b {
  font-weight: 700;
  padding: 8px 25px;
  color: #ffffff;
  background: #e5060a;
  position: relative;
  border: 1px solid #e5060a;
}
.main-wraper section.room-details .room-info p {
  width: 70%;
  margin: 0 auto;
  line-height: 30px;
  font-size: 16px;
  letter-spacing: 0.5px;
}
@media (max-width: 575px) {
  .main-wraper section.room-details .room-info p {
    width: 100%;
  }
}
.main-wraper section.room-details .room-info .rest-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 35px;
}
.main-wraper section.room-details .room-info .rest-head div:first-child {
  margin-right: 15px;
}
.main-wraper section.room-details.spa {
  background: url(../images/spa-bg.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
}
.main-wraper section.room-details.restaurant {
  background: url(../images/restaurant-bg.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
}
.main-wraper section.room-details.gallery .main-btn {
  display: inline-block;
}
.main-wraper section.room-details.gallery .main-btn a {
  background-color: #15171C;
  border-radius: 0px;
  border: none;
  color: #ffffff;
  font-size: 16px;
  font-family: "Assistant", sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  line-height: normal;
  padding: 10px 30px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
  position: relative;
  z-index: 1;
  background: #e5060a;
  float: left;
  margin-top: 20px;
}
.main-wraper section.room-details.gallery .main-btn a::before {
  position: absolute;
  content: "";
  width: 4px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #e5060a;
  height: 40px;
  z-index: -1;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
}
.main-wraper section.room-details.gallery .main-btn a::after {
  position: absolute;
  content: "";
  width: 0px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #e5060a;
  height: 40px;
  z-index: -1;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
}
.main-wraper section.room-details.gallery .main-btn a span {
  margin-left: 20px;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
}
.main-wraper section.room-details.gallery .main-btn a span svg {
  fill: #ffffff;
}
.main-wraper section.room-details.gallery .main-btn a:hover {
  letter-spacing: 2px;
}
.main-wraper section.room-details.gallery .main-btn a:hover::before {
  width: 100%;
  opacity: 0;
}
.main-wraper section.room-details.gallery .main-btn a:hover::after {
  width: 4px;
  left: auto;
  right: 0;
}
.main-wraper section.room-details.gallery .main-btn a button {
  background-color: transparent;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: inherit;
  text-transform: uppercase;
}
.main-wraper section.room-details.gallery .main-btn a::before {
  background: #ffffff;
}
.main-wraper section.room-details.gallery .main-btn a.noContent {
  display: none !important;
}
@media (max-width: 1199px) {
  .main-wraper section.room-details.gallery .main-btn {
    margin-top: 0;
  }
}
.main-wraper section.room-details.gallery .img-gallery {
  margin-bottom: 30px;
  display: none;
}
.main-wraper section.room-details.gallery .img-gallery .item .item-img {
  position: relative;
  z-index: 1;
}
.main-wraper section.room-details.gallery .img-gallery .item .item-img::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 0, 0, 0.64)), to(rgb(0, 0, 0)));
  background: linear-gradient(to bottom, rgba(255, 0, 0, 0.64) 0%, rgb(0, 0, 0) 100%);
  opacity: 0;
  transition: all 400ms ease-in;
  -webkit-transition: all 400ms ease-in;
  -o-transition: all 400ms ease-in;
  -moz-transition: all 400ms ease-in;
  -ms-transition: all 400ms ease-in;
}
.main-wraper section.room-details.gallery .img-gallery .item .item-img::after {
  position: absolute;
  content: "";
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  border: 1px solid #ffffff;
  z-index: 2;
  opacity: 0;
  transition: all 400ms ease-in;
  -webkit-transition: all 400ms ease-in;
  -o-transition: all 400ms ease-in;
  -moz-transition: all 400ms ease-in;
  -ms-transition: all 400ms ease-in;
}
.main-wraper section.room-details.gallery .img-gallery .item .meta {
  position: absolute;
  bottom: 50px;
  z-index: 999;
  left: 50px;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  opacity: 0;
  transition: all 400ms ease-in;
  -webkit-transition: all 400ms ease-in;
  -o-transition: all 400ms ease-in;
  -moz-transition: all 400ms ease-in;
  -ms-transition: all 400ms ease-in;
}
.main-wraper section.room-details.gallery .img-gallery .item .meta h4 {
  color: #ffffff;
  font-size: 18px;
  font-family: "Assistant", sans-serif;
}
@media (max-width: 1199px) {
  .main-wraper section.room-details.gallery .img-gallery .item .meta h4 {
    font-size: 18px;
  }
}
@media (max-width: 1199px) {
  .main-wraper section.room-details.gallery .img-gallery .item .meta {
    bottom: 50px;
    left: 50px;
  }
}
.main-wraper section.room-details.gallery .img-gallery .item .popup-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 9;
  opacity: 0;
  transition: all 400ms ease-in;
  -webkit-transition: all 400ms ease-in;
  -o-transition: all 400ms ease-in;
  -moz-transition: all 400ms ease-in;
  -ms-transition: all 400ms ease-in;
}
.main-wraper section.room-details.gallery .img-gallery .item .popup-icon svg {
  fill: #ffffff;
  width: 20px;
  height: 20px;
}
.main-wraper section.room-details.gallery .img-gallery .item:hover .item-img::before {
  opacity: 0.5;
}
.main-wraper section.room-details.gallery .img-gallery .item:hover .item-img::after {
  opacity: 1;
  left: 20px;
  right: 20px;
  top: 20px;
  bottom: 20px;
}
@media (max-width: 1199px) {
  .main-wraper section.room-details.gallery .img-gallery .item:hover .item-img::after {
    left: 20px;
    right: 20px;
    top: 20px;
    bottom: 20px;
  }
}
.main-wraper section.room-details.gallery .img-gallery .item:hover .meta {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
}
.main-wraper section.room-details.gallery .img-gallery .item:hover .popup-icon {
  opacity: 1;
}
.main-wraper section.room-details.gallery .img-gallery .item:hover .popup-icon svg {
  fill: #ffffff;
  width: 40px;
  height: 40px;
}
.main-wraper section.contact-page {
  background: url(../images/room-bg.png);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
}
.main-wraper section.contact-page .contact-adrs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.main-wraper section.contact-page .contact-adrs div {
  width: 60%;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 50px;
}
.main-wraper section.contact-page .contact-adrs div h6 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.main-wraper section.contact-page .contact-adrs div p {
  margin-bottom: 0px;
  font-size: 24px;
  line-height: 34px;
}
.main-wraper section.contact-page .contact-call {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
  margin-bottom: 50px;
}
.main-wraper section.contact-page .contact-call div {
  width: 40%;
  padding-top: 50px;
  padding-left: 50px;
  background: #e5060a;
  padding: 50px;
}
.main-wraper section.contact-page .contact-call div:first-child {
  text-align: right;
  padding-left: 0;
  padding-right: 50px;
  border-right: 1px solid #e0e0e0;
}
.main-wraper section.contact-page .contact-call div h6 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}
.main-wraper section.contact-page .contact-call div p {
  font-size: 18px;
  line-height: 24px;
  color: #ffffff;
}
.main-wraper section.contact-page .contact-call div p a {
  margin-right: 15px;
  color: #ffffff;
}
.main-wraper section.contact-page .contact-call div p a:hover {
  color: #e5060a;
}
.main-wraper section.contact-page .adrs-row {
  margin-bottom: 50px;
}
.main-wraper section.contact-page .adrs-row .adrs-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.main-wraper section.contact-page .adrs-row .adrs-wrap .icon-box {
  width: 80px;
  height: 80px;
  position: absolute;
  left: 0;
  right: 0;
  top: -40px;
  margin: auto;
}
.main-wraper section.contact-page .adrs-row .adrs-wrap .icon-box .inner {
  width: 80px;
  height: 80px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  background-color: transparent;
  border-radius: 100%;
  background: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  float: left;
  position: relative;
  transition: all 400ms ease-in;
  -webkit-transition: all 400ms ease-in;
  -o-transition: all 400ms ease-in;
  -moz-transition: all 400ms ease-in;
  -ms-transition: all 400ms ease-in;
}
.main-wraper section.contact-page .adrs-row .adrs-wrap .icon-box .inner::before {
  position: absolute;
  content: "";
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 100%;
  transition: all 400ms ease-in;
  -webkit-transition: all 400ms ease-in;
  -o-transition: all 400ms ease-in;
  -moz-transition: all 400ms ease-in;
  -ms-transition: all 400ms ease-in;
  opacity: 0;
}
.main-wraper section.contact-page .adrs-row .adrs-wrap .icon-box .inner svg {
  fill: #000000;
  width: 30px;
  height: 30px;
  margin: 0px auto;
}
.main-wraper section.contact-page .adrs-row .adrs-wrap .adrs-box {
  padding: 50px 20px 20px;
  border: 1px solid #e0e0e0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
}
.main-wraper section.contact-page .adrs-row .adrs-wrap .adrs-box .inner {
  width: 100%;
}
.main-wraper section.contact-page .adrs-row .adrs-wrap .adrs-box .inner h6 {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 700;
}
.main-wraper section.contact-page .adrs-row .adrs-wrap .adrs-box .inner p {
  font-size: 17px;
  margin-bottom: 0;
}
.main-wraper section.contact-page .adrs-row .adrs-wrap:hover .icon-box .inner {
  background-color: #e5060a;
  border-color: #ffffff;
}
.main-wraper section.contact-page .adrs-row .adrs-wrap:hover .icon-box .inner::before {
  left: 10px;
  right: 10px;
  top: 10px;
  bottom: 10px;
  opacity: 1;
  border-color: #ffffff;
}
.main-wraper section.contact-page .adrs-row .adrs-wrap:hover .icon-box .inner svg {
  fill: #ffffff;
}
.main-wraper section.contact-page .map iframe {
  width: 100%;
  height: 100%;
}
.main-wraper section.contact-page .contact-form .form {
  max-width: 700px;
  margin: auto;
}
.main-wraper section.contact-page .contact-form .form h3 {
  letter-spacing: 1px;
}
.main-wraper section.contact-page .contact-form .form p {
  margin-bottom: 20px;
}
.main-wraper section.contact-page .contact-form .form .form .row {
  margin-left: -10px !important;
  margin-right: -10px !important;
}
.main-wraper section.contact-page .contact-form .form .form .row .col-12 {
  padding: 0 10px;
}
.main-wraper section.contact-page .contact-form .form .form .row .col-12 input {
  border-radius: 0;
  border: none;
  font-size: 13px;
  height: 60px;
  margin-bottom: 20px;
  border: 1px solid #e0e0e0;
}
.main-wraper section.contact-page .contact-form .form .form .row .col-12 textarea {
  border-radius: 0;
  border: none;
  font-size: 13px;
  border: 1px solid #e0e0e0;
}
.main-wraper section.contact-page .contact-form .form .form .row .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.main-wraper section.contact-page .contact-form .form .form .row .text input.btn {
  border-radius: 0;
  border: none;
  padding: 15px 35px;
  background: #e5060a;
  margin-left: 20px;
  height: 100%;
  font-size: 16px;
}
.main-wraper section.contact-page .contact-form .form .form .row .text input.btn:hover {
  background: #000000;
  -webkit-box-shadow: 0px 0px 8px 0px rgba(255, 255, 255, 0.5);
          box-shadow: 0px 0px 8px 0px rgba(255, 255, 255, 0.5);
}
.main-wraper section.news-page {
  padding: 100px 0;
}
.main-wraper section.news-page .news-box-wraper {
  margin-bottom: 80px;
  position: relative;
}
.main-wraper section.news-page .news-box-wraper:last-child {
  margin-bottom: 0;
}
.main-wraper section.news-page .news-box-wraper:nth-of-type(2n) .news-details {
  padding-left: 15px;
  padding-right: 50px;
}
.main-wraper section.news-page .news-box-wraper .news-details {
  padding-left: 50px;
}
.main-wraper section.news-page .news-box-wraper .news-details h6 {
  margin-bottom: 20px;
}
.main-wraper section.news-page .news-box-wraper .news-details h6 span {
  font-family: "Assistant", sans-serif;
  color: #e5060a;
}
.main-wraper section.news-page .news-box-wraper .news-details h5 {
  margin-bottom: 30px;
  line-height: 32px;
}
.main-wraper section.news-page .news-box-wraper .news-details .main-btn {
  display: inline-block;
  margin-top: 20px;
}
.main-wraper section.news-page .news-box-wraper .news-details .main-btn a {
  background-color: #15171C;
  border-radius: 0px;
  border: none;
  color: #ffffff;
  font-size: 16px;
  font-family: "Assistant", sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  line-height: normal;
  padding: 10px 30px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
  position: relative;
  z-index: 1;
  background: #e5060a;
}
.main-wraper section.news-page .news-box-wraper .news-details .main-btn a::before {
  position: absolute;
  content: "";
  width: 4px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #e5060a;
  height: 40px;
  z-index: -1;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
}
.main-wraper section.news-page .news-box-wraper .news-details .main-btn a::after {
  position: absolute;
  content: "";
  width: 0px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #e5060a;
  height: 40px;
  z-index: -1;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
}
.main-wraper section.news-page .news-box-wraper .news-details .main-btn a span {
  margin-left: 20px;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
}
.main-wraper section.news-page .news-box-wraper .news-details .main-btn a span svg {
  fill: #ffffff;
}
.main-wraper section.news-page .news-box-wraper .news-details .main-btn a:hover {
  letter-spacing: 2px;
}
.main-wraper section.news-page .news-box-wraper .news-details .main-btn a:hover::before {
  width: 100%;
  opacity: 0;
}
.main-wraper section.news-page .news-box-wraper .news-details .main-btn a:hover::after {
  width: 4px;
  left: auto;
  right: 0;
}
.main-wraper section.news-page .news-box-wraper .news-details .main-btn a button {
  background-color: transparent;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: inherit;
  text-transform: uppercase;
}
.main-wraper section.news-page .news-box-wraper .news-details .main-btn a::before {
  background: #ffffff;
}
.main-wraper section.news-page .news-box-wraper .news-details .main-btn a::after {
  background: #ffffff;
}
@media (max-width: 1199px) {
  .main-wraper section.news-page .news-box-wraper .news-details .main-btn {
    margin-top: 0;
  }
}

/*responsive*/
@media (max-width: 1500px) {
  header .main-menu .navbar {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 0;
  }
  header .main-menu .navbar .navbar-nav .nav-item a {
    font-size: 13px;
    padding: 10px;
  }
  header .top-content {
    top: 50%;
  }
  header .main-menu .logo {
    padding: 10px 30px;
  }
  section.fullscreen .reservation-wrap .reservation-box {
    padding: 30px;
    -webkit-box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 0.2);
    box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 0.2);
    margin-top: 60px;
  }
  .reservation-wrap .reservation-box {
    padding: 30px;
    -webkit-box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 0.2);
    box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 0.2);
    margin-top: 60px;
  }
  section.container-fluid.mainContent.home-rooms .room-content::before {
    left: 20px;
    right: 20px;
    top: 20px;
    bottom: 20px;
  }
  section.container-fluid.mainContent.home-rooms .room-content h6 {
    margin-top: 0;
  }
  section.container-fluid.mainContent.home-rooms .room-content .title-crown {
    margin-bottom: 10px;
  }
}
@media (max-width: 1366px) {
  section.fullscreen {
    z-index: 2;
  }
  .reservation-wrap .reservation-box {
    padding: 30px;
  }
  .reservation-wrap .reservation-box h4 {
    margin-bottom: 20px;
  }
  .reservation-wrap .reservation-box form label {
    margin-bottom: 10px;
  }
  .reservation-wrap .reservation-box form input {
    height: 40px;
    padding: 5px 20px;
  }
  .reservation-wrap .reservation-box form input#Checkindate, .reservation-wrap .reservation-box form input#Checkoutdate {
    padding: 0px 10px 0px 15px;
  }
  .reservation-wrap .reservation-box form .custom-select {
    height: 40px;
  }
  .reservation-wrap .reservation-box form .custom-select .select-selected {
    height: 40px;
    padding: 8px 16px;
  }
  .reservation-wrap .reservation-box form .custom-select .select-selected::after {
    top: 17px;
  }
}
/*End of 1366*/
@media (max-width: 991px) {
  header .main-menu .navbar .navbar-nav .nav-item a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
  }
  header .main-menu .navbar .navbar-nav .nav-item a::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #ffffff;
    transition: 400ms all;
    -webkit-transition: 400ms all;
    -o-transition: 400ms all;
    -moz-transition: 400ms all;
    -ms-transition: 400ms all;
  }
  header .main-menu .navbar .navbar-nav .nav-item a:hover::after {
    width: 100%;
  }
  header .main-menu .navbar .navbar-nav .nav-item.dropdown a::after {
    display: none;
  }
  section.fullscreen {
    z-index: 2;
    overflow-x: hidden;
  }
  section.fullscreen .main-slider .meta {
    width: 100% !important;
  }
  section.fullscreen .main-slider .meta .inner h1 {
    font-size: calc(36px + 22 * (100vw - 720px) / 719);
    margin-bottom: 0;
  }
  section.fullscreen .main-slider .meta .inner h1 .inner-sub {
    margin-top: 0;
    font-size: calc(22px + 12 * (100vw - 720px) / 719);
  }
  section.fullscreen .main-slider .meta .inner .sub-title {
    font-size: 18px;
  }
  section.fullscreen .main-slider .meta .inner .play-btn .ripple-block {
    width: 80px;
    height: 80px;
  }
  section.fullscreen .main-slider .meta .inner .play-btn .ripple-block .fa-play {
    width: 40px !important;
    height: 40px !important;
    line-height: 38px;
  }
  section.fullscreen .main-slider .meta .inner .play-btn .ripple-block .ripple {
    width: 80px;
    height: 80px;
  }
  section.mainContent {
    padding: 50px 0 !important;
  }
  section.mainContent.home-about2 {
    padding: 100px;
  }
  section.mainContent.home-about2 .right-aside .about-img {
    margin-top: 50px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  section.mainContent.home-about2 .right-aside .about-img {
    margin-top: 0px;
  }
}
@media (max-width: 991px) {
  section.mainContent.home-about {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  section.mainContent.home-rooms {
    padding-top: 100px !important;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  section.mainContent.home-rooms {
    padding-top: 50px !important;
  }
}
@media (max-width: 991px) {
  section.mainContent.home-rooms .main-title {
    margin-bottom: 50px !important;
    padding: 0 15px;
  }
  section.mainContent.home-rooms .room-content {
    padding-bottom: 50px;
    padding-top: 50px;
  }
  section.mainContent.home-rooms .room-content .club-details {
    height: auto !important;
    overflow-y: inherit !important;
  }
  section.mainContent.home-about .benifit-title .title-in {
    margin-bottom: 0 !important;
  }
  section.mainContent.home-about .benifit-section .bf-box:nth-child(1), section.mainContent.home-about .benifit-section .bf-box:nth-child(2), section.mainContent.home-about .benifit-section .bf-box:nth-child(3), section.mainContent.home-about .benifit-section .bf-box:nth-child(4), section.mainContent.home-about .benifit-section .bf-box:nth-child(5), section.mainContent.home-about .benifit-section .bf-box:nth-child(6), section.mainContent.home-about .benifit-section .bf-box:nth-child(7), section.mainContent.home-about .benifit-section .bf-box:nth-child(8), section.mainContent.home-about .benifit-section .bf-box:nth-child(9) {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
  }
  section.mainContent.facilities {
    padding-bottom: 0 !important;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  section.mainContent.facilities.fac-inner {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}
@media (max-width: 991px) {
  section.inner-banner {
    padding-bottom: 100px !important;
  }
  section.inner-banner .container .row h1 {
    max-width: 100% !important;
    font-size: 36px !important;
  }
  section.room-details .room-info {
    padding: 0 15px !important;
  }
  section.room-details .room-srv-wrap {
    margin-top: 50px;
  }
  section.contact-page .adrs-row .adrs-wrap:first-child {
    margin-bottom: 50px;
  }
  section.contact-page .adrs-row .adrs-wrap .adrs-box {
    background: #ffffff;
  }
  section.contact-page .map {
    margin-bottom: 50px;
  }
  section.contact-page .map iframe {
    height: 250px !important;
  }
  .reservation-wrap {
    transition: 400ms;
    -webkit-transition: 400ms;
    -o-transition: 400ms;
    -moz-transition: 400ms;
    -ms-transition: 400ms;
    display: block !important;
    position: fixed;
    left: 100%;
    right: inherit;
    width: 100%;
    height: 100%;
    z-index: 99999;
  }
  .reservation-wrap .reservation-box {
    width: 100%;
    height: 100%;
    min-width: 100%;
    max-width: 100%;
    margin-left: 0;
    position: relative;
    margin-top: 0 !important;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .reservation-wrap .form-toggle {
    display: block !important;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: -30px;
    font-weight: 600;
    text-align: center;
    position: absolute;
    width: 36px;
    top: 35%;
    right: 100%;
    -webkit-transition: none !important;
    transition: none !important;
  }
  .reservation-wrap .form-toggle span {
    background: #f00;
    padding: 14px 5px 14px;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
  }
  .reservation-wrap .form-toggle span.hide {
    display: none;
  }
  .reservation-wrap .form-toggle span.hide b {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    display: block;
  }
  .reservation-wrap.visible {
    left: 0;
    transform: translateX(0);
    -webkit-transform: translateX(100);
    right: 15px;
  }
  .reservation-wrap.visible .form-toggle {
    right: 0;
    top: 0;
  }
  .reservation-wrap.visible .form-toggle span.active {
    display: none;
  }
  .reservation-wrap.visible .form-toggle span.hide {
    display: block;
  }
  footer {
    padding: 100px 0 0 !important;
  }
  footer .box-item:nth-child(1), footer .box-item:nth-child(2) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  footer .box-item .footer-box .cont-details h4 br {
    display: none;
  }
}
/*End of 991*/
@media (max-width: 767px) {
  section.fullscreen {
    z-index: 2;
  }
  section.mainContent {
    padding: 50px 0 !important;
  }
  section.mainContent.home-about2 {
    padding: 50px;
  }
  section.mainContent.home-about2 .left-aside .about-content h3 {
    font-size: 36px !important;
    line-height: 30px !important;
  }
  section.mainContent.home-about2 .left-aside .about-content h4 {
    font-size: 30px !important;
    line-height: 26px !important;
    margin-bottom: 30px;
  }
  section.mainContent.home-rooms {
    padding-top: 50px !important;
    padding-left: 0;
    padding-right: 0;
  }
  section.mainContent.home-rooms .main-title {
    margin-bottom: 30px !important;
  }
  section.mainContent.home-rooms .room-content {
    padding-bottom: 30px;
    padding-top: 30px;
  }
  section.mainContent.home-rooms .align-self-center div {
    padding: 0;
  }
  section.mainContent.home-about .benifit-title .title-in h3 {
    font-size: 36px !important;
    margin-bottom: 30px !important;
    line-height: 30px;
  }
  section.mainContent.home-meating {
    padding: 50px 0 !important;
  }
  section.mainContent.home-meating .main-title {
    margin-bottom: 30px !important;
  }
  section.mainContent.home-meating .main-title h3 {
    font-size: 36px !important;
    margin-bottom: 30px !important;
    line-height: 46px !important;
  }
  section.mainContent.home-meating .sc-box-in {
    margin-bottom: 30px;
  }
  section.mainContent.home-meating .sc-box-in:last-child {
    margin-bottom: 0;
  }
  section.mainContent.home-gallery {
    padding-top: 50px !important;
  }
  section.mainContent.home-gallery .main-title {
    margin-bottom: 30px !important;
  }
  section.mainContent.home-gallery .main-title h3 {
    font-size: 36px !important;
    margin-bottom: 30px !important;
    line-height: 46px !important;
  }
  section.mainContent.home-gallery .gallery-slider .owl-item .meta {
    left: 35px !important;
    bottom: 30px !important;
  }
  section.mainContent.home-gallery .gallery-slider .owl-item .meta h4 {
    font-size: 15px !important;
  }
  section.room-details {
    padding: 50px 0 !important;
  }
  section.room-details .room-srv-wrap {
    margin-top: 50px;
  }
  section.room-details .room-info h3 {
    font-size: 36px !important;
  }
  section.room-details .room-info .check-now h4 {
    font-size: 25px !important;
  }
  section.room-details .room-info .check-now .main-btn a:hover {
    letter-spacing: 0 !important;
  }
  section.contact-page {
    padding: 80px 0 50px !important;
  }
  section.contact-page .adrs-row .adrs-wrap {
    margin-bottom: 50px;
  }
  section.contact-page .adrs-row .adrs-wrap:last-child {
    margin-bottom: 0 !important;
  }
  footer {
    padding: 50px 0 0 !important;
  }
  footer .box-item:nth-child(2) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  footer .box-item .footer-box {
    text-align: center;
    display: block !important;
  }
  footer .box-item .footer-box .icon-box {
    margin: auto;
  }
  footer .box-item .footer-box .cont-details {
    padding-left: 0 !important;
    padding: 20px 0 !important;
    width: 100%;
  }
  footer .copy-in {
    padding: 30px 15px !important;
  }
  .progress-wrap {
    right: 30px;
    bottom: 30px;
  }
}
/*End of 767*/
@media (max-width: 575px) {
  section.fullscreen {
    z-index: 2;
  }
  section.mainContent.home-about2 .left-aside .about-content h3 {
    font-size: 25px !important;
    line-height: 24px !important;
    margin-bottom: 10px !important;
  }
  section.mainContent.home-about2 .left-aside .about-content h3 span {
    font-size: 20px !important;
    margin-bottom: 0 !important;
  }
  section.mainContent.home-about2 .left-aside .about-content h4 {
    font-size: 20px !important;
    line-height: 26px !important;
    margin-bottom: 30px !important;
  }
  section.mainContent.home-about .benifit-title .title-in h3 {
    font-size: 25px !important;
    line-height: 30px;
  }
  section.mainContent.home-meating .main-title h3 {
    font-size: 25px !important;
    line-height: 30px !important;
  }
  section.mainContent.home-gallery .main-title h3 {
    font-size: 25px !important;
    line-height: 30px !important;
  }
  section.inner-banner {
    padding-bottom: 50px !important;
    height: 35vh !important;
  }
  section.inner-banner .container .row h1 {
    font-size: 25px !important;
  }
  section.inner-banner .container .row h1 span::after {
    bottom: -10px !important;
  }
  section.inner-banner .container .row h1 span::before {
    bottom: -19px !important;
  }
  section.room-details .room-info h3 {
    font-size: 25px !important;
    line-height: 30px !important;
  }
  section.room-details .room-info .check-now h4 {
    font-size: 19px !important;
  }
}
.room-slider-sec .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 60px;
  border-radius: 15px;
  overflow: hidden;
}
.room-slider-sec .uk-light .uk-slidenav {
    background: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.room-slider-sec .uk-light .uk-slidenav svg {
    width: 20px;
    height: 20px;
}
.room-slider-sec .uk-light .uk-slidenav svg polyline {
    stroke: #d40d10 !important;
}
.room-slider-sec .item .left .uk-slideshow-items {
  min-height: 500px !important;
}

.more-fac-sl .item.gallery-group .box a img {
    min-height: 400px;
    max-height: 400px;
    object-fit: cover;
}
.more-fac-sl .item.gallery-group .box a {
    position: relative;
}
.more-fac-sl .item.gallery-group .box a figure {
    margin: 0;
}
.more-fac-sl .item.gallery-group .box a .facility-details {
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
}
section.container-fluid.mainContent.home-about .benifit-section .bf-box .benifit-item .text-box {
    border-radius: 0 0 10px 10px;
}
.more-fac-sl .item.gallery-group .box a figure {
    margin: 0;
    overflow: hidden;
    transition: all 400ms;
}
.more-fac-sl .item.gallery-group .box a figure img {
    transition: all 400ms;
}
.more-fac-sl .item.gallery-group .box a:hover figure img {
    transform:scale(1.1);
    transition: all 400ms;
}
.more-fac-sl .item.gallery-group .box a .icon {
    position: absolute;
    right: 20px;
    top: 50px;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transform: rotate(-35deg);
    transform: rotate(-35deg);
    opacity: 0;
    -webkit-transition: all 400ms;
    transition: all 400ms;
}
.more-fac-sl .item.gallery-group .box a:hover .icon {
    top: 20px;
    opacity: 1;
    -webkit-transition: all 400ms;
    transition: all 400ms;
}
section.container-fluid.mainContent.home-about .benifit-section .bf-box .benifit-item .icon-box svg path {
    stroke: #fff !important;
}
section.container-fluid.mainContent.home-about .benifit-section .bf-box .benifit-item .icon-box img {
    width: 30px;
    height: 30px;
    margin: 0px auto;
    min-height: 30px;
    max-height: 30px;
    filter: invert(1);
}
.uk-slidenav {
    background: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.uk-slidenav svg polyline {
    stroke: #d40d10 !important;
}
 .uk-slidenav svg{
    width:20px;
    height:20px;
}
.outlets-sl .bf-box .benifit-item img {
    min-height: 420px;
    object-fit: cover;
}
.fancybox__carousel {
    width: 1000px;
    margin: 0 auto;
}
@media (max-width: 991px) {
  .room-slider-sec .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.room-slider-sec .item .left {
  width: 50%;
}

@media (max-width: 1366px) {
.room-slider-sec .item .left .uk-slideshow-items {
    min-height: 420px !important;
}
.room-slider-sec .item .right h3 {
    font-size: 25px;
    margin-bottom: 10px;
}
.room-slider-sec .item .right P {
    width: 100%;
    font-size: 15px;
    margin: 15px 0;
}
}
@media (max-width: 1199px) {
  .room-slider-sec .item .left .uk-slideshow-items {
    min-height: 400px !important;
  }
  .fancybox__carousel {
    width: 100%;
}
}
@media (max-width: 1024px) {
  .room-slider-sec .item .left .uk-slideshow-items {
    min-height: 480px !important;
  }
}
@media (max-width: 991px) {
  .room-slider-sec .item .left .uk-slideshow-items {
    min-height: 100vh !important;
  }
   .room-slider-sec .item .left {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .room-slider-sec .item .left .uk-slideshow-items {
    min-height: 65vh !important;
  }
}
@media (max-width: 575px) {
  .room-slider-sec .item .left .uk-slideshow-items {
    min-height: 35vh !important;
  }
   .room-slider-sec .item {
    margin-bottom: 30px;
  }
}

.room-slider-sec .item .left .uk-slideshow-items li img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.room-slider-sec .item .right {
  width: 50%;
  padding: 50px;
  background: #f8f8f8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 991px) {
  .room-slider-sec .item .right {
    width: 100%;
    padding: 30px;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .room-slider-sec .item .right {
    padding: 30px 15px;
  }
}
.room-slider-sec .item .right h3 {
  font-size: 30px;
  margin-bottom: 15px;
  line-height: 45px;
  color: var(--theme-color);
}
@media (max-width: 1024px) {
  .room-slider-sec .item .right h3 {
    font-size: 22px;
    line-height: 35px;
    margin-bottom: 10px;
  }
}
@media (max-width: 575px) {
  .room-slider-sec .item .right h3 {
    line-height: 35px;
  }
}
.room-slider-sec .item .right h3 span {
  font-family: "DM Sans", sans-serif;
}
.room-slider-sec .item .right h6 span {
  font-family: "DM Sans", sans-serif;
  color: var(--theme-color);
}
.room-slider-sec .item .right P {
  width: 90%;
  line-height: 30px;
  font-size: 16px;
  letter-spacing: 0.5px;
}
@media (max-width: 1199px) {
  .room-slider-sec .item .right P {
    width: 100%;
  }
}
.room-slider-sec .item .right .room-btn a {
  background: var(--theme-color);
  color: #fff;
  padding: 15px 30px;
  border-radius: 50px;
  margin: 10px 0 0;
  display: inline-block;
  font-size: 17px;
  letter-spacing: 0.5px;
}
.room-slider-sec .item.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .room-slider-sec .item.reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.room-slider-sec .item.last {
  margin-bottom: 0;
}

.note {
  padding: 25px 20px;
  color: #000;
  text-align: center;
  font-size: 20px;
  position: relative;
  z-index: 9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(113, 0, 1, 0.0705882353);
}
.note .icon img {
  width: 70px;
}
.note p {
  font-size: 18px;
  margin: 0;
  font-family: var(--title-font);
  letter-spacing: 0.5px;
  text-align: left;
  padding-top: 12px;
  padding-left: 20px;
  color: #000;
  font-weight: 900;
  line-height: 25px;
}
.note p span {
  display: block;
}

video {
  width: 100% !important;
}

/*End of 575*/
/*End of 575*/