@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");
a {
  text-decoration: none !important;
  display: inline-block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}

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

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

body {
  font-family: "Poppins", sans-serif;
  max-width: 100%;
  overflow-x: hidden;
  color: #122348;
}
body::-webkit-scrollbar {
  width: 6px;
}
body::-webkit-scrollbar-track {
  background: #060d18;
}
body::-webkit-scrollbar-thumb {
  background: rgb(91, 76, 66);
}
body::-webkit-scrollbar-thumb:hover {
  background: white;
}

#window-loader {
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: linear-gradient(-35deg, #bfbfbf, #f4f4f4, #acacac);
}
#window-loader .logo {
  display: inline-block;
  max-width: 100%;
  padding: 10px;
}
#window-loader .logo img {
  -webkit-animation: loader-anime 2s linear infinite;
          animation: loader-anime 2s linear infinite;
}

@-webkit-keyframes loader-anime {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  10% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  90% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}

@keyframes loader-anime {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  10% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  90% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}
.breadcrumb {
  background: none;
  margin: 0;
  position: relative;
}
.breadcrumb .bg-image {
  position: absolute;
  lefT: 0;
  width: 100%;
  top: 0;
  height: 100%;
  padding: 15px;
}
.breadcrumb .bg-image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.breadcrumb .inner {
  position: relative;
  z-index: 2;
  margin-top: 250px;
  margin-bottom: 40px;
}
.breadcrumb .content h1 {
  font-size: 48px;
  letter-spacing: -0.8px;
  color: #fff;
  font-weight: 400;
}
.breadcrumb .content ul {
  display: inline-block;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 10px;
}
.breadcrumb .content ul li {
  display: inline-block;
  position: relative;
  padding-right: 5px;
  margin-right: 3px;
}
.breadcrumb .content ul li:after {
  content: "/";
  padding-left: 10px;
  color: white;
  font-weight: 500;
  opacity: 0.8;
}
.breadcrumb .content ul li a {
  color: white;
  opacity: 0.85;
}
.breadcrumb .content ul li a:hover {
  opacity: 1;
}
.breadcrumb .content ul li:last-of-type:after {
  display: none;
}

header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9000;
  padding: 40px 0 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header .logo a {
  display: block;
  width: 128px;
  height: 115px;
  overflow: hidden;
}
header .logo a img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  position: absolute;
  width: 100%;
  height: 115px;
  left: 0;
  bottom: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header nav ul li {
  display: inline-block;
  padding: 3px 2px;
  margin: 0 2px;
  position: relative;
}
header nav ul li a {
  padding: 8px 16px;
  color: white;
  font-weight: 500;
  letter-spacing: 0.5px;
}
header nav ul li a:hover {
  background-color: #f3f3f3;
  border-radius: 6px;
  color: rgb(91, 76, 66);
}
header nav ul li a.active-link {
  font-weight: 700;
  background-color: #f3f3f3;
  border-radius: 12px;
}
header nav ul li .submenu {
  position: absolute;
  padding-top: 40px;
  top: 100%;
  right: 50%;
  -webkit-transform: translateX(50%) scaleX(0);
          transform: translateX(50%) scaleX(0);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header nav ul li .submenu ul {
  background: white;
  display: block;
  padding: 10px;
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
}
header nav ul li .submenu ul li {
  display: block;
  width: 100%;
}
header nav ul li .submenu ul li a {
  white-space: nowrap;
}
header nav ul li:hover .submenu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateX(50%) scaleX(1);
          transform: translateX(50%) scaleX(1);
}
header .header-button {
  display: none;
  margin-left: 10px;
}
header.affix {
  -webkit-box-shadow: 0 0 18px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 18px rgba(0, 0, 0, 0.5);
  padding: 10px 0;
  background: whitesmoke;
}
header.affix .logo a {
  height: 40px;
}
header.affix .logo a img {
  -webkit-filter: brightness(1) invert(0);
          filter: brightness(1) invert(0);
}
header.affix nav ul li a {
  color: rgb(91, 76, 66);
}
header.affix nav ul li a:hover {
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}

.panel-menu {
  display: none;
  position: fixed;
  z-index: 8999;
  right: -100%;
  top: 0;
  height: 100%;
  padding: 160px 50px 50px;
  background: white;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-shadow: 2px 0 12px rgba(0, 0, 0, 0.5);
          box-shadow: 2px 0 12px rgba(0, 0, 0, 0.5);
}
.panel-menu i.curtain {
  content: "";
  position: fixed;
  z-index: -1;
  width: 100vw;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  right: -100%;
  top: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.panel-menu .inner {
  position: relative;
  overflow: auto;
  max-height: 100%;
  z-index: 1;
  padding: 15px;
}
.panel-menu nav {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.panel-menu nav ul li {
  padding: 4px 0;
}
.panel-menu nav ul li a {
  color: #122348;
  padding: 3px;
}
.panel-menu nav ul li a:hover {
  color: #eda200;
}
.panel-menu nav ul li .submenu {
  position: relative;
  padding-top: 0;
  padding-left: 0;
  margin-top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  max-height: 0;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.panel-menu nav ul li:hover .submenu {
  margin-top: 10px;
  padding: 10px;
  max-height: 100%;
  opacity: 1;
  visibility: visible;
}
.panel-menu.opened {
  right: 0;
}
.panel-menu.opened i.curtain {
  right: 0;
}

footer .main-footer {
  padding: 60px 0;
  background: -webkit-gradient(linear, left bottom, left top, from(#f1e8da), to(white));
  background: linear-gradient(to top, #f1e8da, white);
}
footer .main-footer .logo {
  margin: 15px 0;
  padding: 10px;
}
footer .main-footer .footer-menu {
  margin-top: 30px;
}
footer .main-footer .footer-menu ul {
  text-align: center;
}
footer .main-footer .footer-menu ul li {
  display: inline-block;
  padding: 4px;
}
footer .main-footer .footer-menu ul li a {
  padding: 6px 10px;
  color: rgb(91, 76, 66);
  border: 1px solid rgb(91, 76, 66);
  border-radius: 2px;
}
footer .main-footer .footer-menu ul li a:hover {
  background: #ffc107;
  color: #060d18;
}
footer .main-footer .footer-block {
  padding: 10px;
  margin: 15px 0;
  position: relative;
  height: calc(100% - 30px);
  text-align: center;
}
footer .main-footer .footer-block:before {
  content: "";
  position: absolute;
  left: -15px;
  height: 100%;
  top: 0;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
}
footer .main-footer .footer-block strong {
  color: #ffc107;
  display: block;
  margin-bottom: 5px;
}
footer .main-footer .footer-block address {
  color: rgba(0, 0, 0, 0.8);
  font-size: 15px;
  margin: 0;
}
footer .main-footer .footer-block .contact-infos a {
  color: rgba(0, 0, 0, 0.8);
  font-size: 15px;
  margin: 3px 0;
  display: block;
}
footer .main-footer .footer-block .contact-infos a:hover {
  color: black;
}
footer .main-footer .footer-block .footer-socials a {
  color: rgba(0, 0, 0, 0.8);
  font-size: 15px;
  margin: 3px;
}
footer .main-footer .footer-block .footer-socials a:hover {
  color: black;
}
footer .main-footer .footer-block.first-item:before {
  display: none;
}
footer .copyright {
  position: relative;
  text-align: center;
  padding: 20px 0;
  background: rgb(91, 76, 66);
}
footer .copyright:before {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.2)), color-stop(white), color-stop(rgba(255, 255, 255, 0.2)), to(transparent));
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), white, rgba(255, 255, 255, 0.2), transparent);
  height: 2px;
  border-radius: 50px;
}
footer .copyright a, footer .copyright p {
  font-size: 14px;
  color: white;
  margin: 5px 0;
}
footer .copyright a:hover, footer .copyright p:hover {
  color: #ffc107;
}

.yellow-main-button {
  padding: 2px;
  background: #ffd932;
  background: -webkit-gradient(linear, left top, right top, from(#ffd932), color-stop(50%, #eda200), color-stop(50%, #eda200), to(#ffd932));
  background: linear-gradient(90deg, #ffd932 0%, #eda200 50%, #eda200 50%, #ffd932 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="@first", endColorstr="@sec", GradientType=0);
  border-radius: 12px;
  -webkit-box-shadow: 0 10px 20px rgba(237, 162, 0, 0.2980392157);
          box-shadow: 0 10px 20px rgba(237, 162, 0, 0.2980392157);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  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;
}
.yellow-main-button span {
  width: 100%;
  height: 100%;
  background: #ffd932;
  background: -webkit-gradient(linear, left top, right top, from(#ffd932), color-stop(50%, #eda200), color-stop(50%, #eda200), to(#ffd932));
  background: linear-gradient(90deg, #ffd932 0%, #eda200 50%, #eda200 50%, #ffd932 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f20505", endColorstr="#2d08f5", GradientType=1);
  background-size: 200%;
  background-position-x: 0%;
  border-radius: 12px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 14px 40px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.yellow-main-button:hover {
  -webkit-box-shadow: 0 10px 30px rgba(237, 162, 0, 0.5490196078);
          box-shadow: 0 10px 30px rgba(237, 162, 0, 0.5490196078);
}
.yellow-main-button:hover span {
  background-position-x: 100%;
}

.section-title {
  margin-bottom: 40px;
}
.section-title h2, .section-title h3, .section-title h4 {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 1px;
  color: rgb(91, 76, 66);
  margin: 0 0 10px;
}
.section-title small {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.85);
}

.welcome-section {
  position: relative;
}
.welcome-section .video-background {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.welcome-section .video-background:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(91, 76, 66, 0.55)), to(rgba(0, 0, 0, 0.1)));
  background: linear-gradient(to bottom, rgba(91, 76, 66, 0.55), rgba(0, 0, 0, 0.1));
  z-index: 2;
}
.welcome-section .video-background iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
}
@media (min-aspect-ratio: 16/9) {
  .welcome-section .video-background iframe {
    height: 56.25vw;
  }
}
@media (max-aspect-ratio: 16/9) {
  .welcome-section .video-background iframe {
    width: 177.78vh;
  }
}
.welcome-section .welcome-content {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 70px;
  z-index: 2;
}
.welcome-section .welcome-content hr {
  border-color: rgba(255, 255, 255, 0.25);
}
.welcome-section .welcome-content h1 {
  color: White;
  text-align: center;
  font-size: 50px;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  display: inline-block;
  padding: 12px 20px;
  position: relative;
  margin-bottom: 150px;
}
.welcome-section .welcome-content h1:before, .welcome-section .welcome-content h1:after {
  content: "";
  position: absolute;
  width: 20%;
  height: 50%;
}
.welcome-section .welcome-content h1:before {
  left: 0;
  bottom: 0;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
}
.welcome-section .welcome-content h1:after {
  right: 0;
  top: 0;
  border-right: 2px solid white;
  border-top: 2px solid white;
}
.welcome-section .welcome-content h1 small {
  letter-spacing: 4px;
}
.welcome-section .welcome-content .social-medias ul li {
  display: inline-block;
  margin-right: 10px;
}
.welcome-section .welcome-content .social-medias ul li a {
  color: white;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4px 8px;
}
.welcome-section .welcome-content .social-medias ul li a i {
  font-size: 24px;
  margin-right: 8px;
}
.welcome-section .welcome-content .social-medias ul li a:hover {
  background: rgb(91, 76, 66);
}
.welcome-section .welcome-content .scroll-down a {
  color: white;
  padding: 13px 40px 13px 10px;
  font-weight: 500;
  cursor: pointer;
}
.welcome-section .welcome-content .scroll-down a .chevron {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 50px;
  border: 2px solid #fff;
  border-radius: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.welcome-section .welcome-content .scroll-down a .chevron:before {
  position: absolute;
  top: 10px;
  left: 50%;
  content: "";
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: sdb10 2s infinite;
  animation: sdb10 2s infinite;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@-webkit-keyframes sdb10 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 20px);
            transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb10 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 20px);
            transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.home-about {
  padding: 120px 0 120px;
}
.home-about p {
  font-size: 16px;
  color: rgb(135, 141, 141);
  font-weight: 500;
  line-height: 1.7;
}
.home-about .about-tag {
  padding: 20px;
  background: linear-gradient(16deg, rgb(91, 76, 66), #deb666, #c28501);
}
.home-about .about-tag .inner {
  background: WhitE;
  position: relative;
  text-align: center;
  padding: 30px 10px;
}
.home-about .about-tag .inner:after {
  content: "";
  position: absolute;
  left: -12px;
  border: 5px solid white;
  top: -12px;
  width: calc(100% + 24px);
  height: calc(100% + 24px);
}
.home-about .about-tag .inner .logo img {
  max-width: 128px;
  margin: 10px auto;
}
.home-about .about-tag .inner p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}

.home-rooms {
  padding: 120px 0;
  background-image: linear-gradient(-26deg, #f1e8da 0%, #F5F3F0 100%);
}

.general-room-blocks .room-item a {
  display: block;
}
.general-room-blocks .room-item a figure {
  position: relative;
  overflow: hidden;
}
.general-room-blocks .room-item a figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: calc(100% + 20px);
  background: linear-gradient(16deg, rgb(91, 76, 66), transparent);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.general-room-blocks .room-item a figure > img {
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
}
.general-room-blocks .room-item a figure figcaption {
  position: absolute;
  left: 0;
  bottom: -60px;
  width: 100%;
  padding: 20px;
  margin: 0;
  z-index: 2;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.general-room-blocks .room-item a figure figcaption .name {
  font-size: 24px;
  color: white;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 20px;
}
.general-room-blocks .room-item a figure figcaption .content li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: whitE;
  font-size: 14px;
  padding: 4px;
  margin-right: 8px;
}
.general-room-blocks .room-item a figure figcaption .content li .icon {
  margin-right: 8px;
}
.general-room-blocks .room-item a figure figcaption .content li .icon img {
  width: 33px;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.general-room-blocks .room-item a:hover {
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
}
.general-room-blocks .room-item a:hover figure:after {
  top: -20px;
  opacity: 0.8;
}
.general-room-blocks .room-item a:hover figure figcaption {
  bottom: 0;
}

.home-gallery {
  padding: 120px 0;
}
.home-gallery .gallery-item {
  height: 100%;
}
.home-gallery .gallery-item a {
  margin: 15px 0;
  padding: 15px;
  height: calc(100% - 30px);
  background: whitesmoke;
  display: block;
  max-height: 330px;
}
.home-gallery .gallery-item a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  border-top: 2px solid rgb(91, 76, 66);
  border-left: 2px solid rgb(91, 76, 66);
  z-index: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.home-gallery .gallery-item a:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 30px;
  height: 30px;
  border-bottom: 2px solid rgb(91, 76, 66);
  border-right: 2px solid rgb(91, 76, 66);
  z-index: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.home-gallery .gallery-item a img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.home-gallery .gallery-item a:hover:before, .home-gallery .gallery-item a:hover:after {
  width: 50px;
  height: 50px;
  border-color: #ffc107 !important;
}
.home-gallery .gallery-item a:hover img {
  -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
}

.home-blogs {
  padding: 120px 0;
  position: relative;
  background-image: url("../media/home-blog.jpg");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.home-blogs .section-title h3 {
  color: whitE;
}
.home-blogs .section-title small {
  color: rgba(255, 255, 255, 0.85);
}
.home-blogs .blog-items {
  margin-top: 80px;
}
.home-blogs .blog-items .item a {
  display: block;
  margin: 10px 0;
}
.home-blogs .blog-items .item a img {
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.35);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.35);
  border-radius: 4px;
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-blogs .blog-items .item a .inner {
  width: calc(100% - 20px);
  margin: 0 auto;
  background: whitesmoke;
  padding: 15px 10px;
  text-align: center;
}
.home-blogs .blog-items .item a .inner h4 {
  font-size: 18px;
  color: rgb(91, 76, 66);
  font-weight: 600;
}
.home-blogs .blog-items .item a .inner p {
  font-size: 14px;
  color: #122348;
}

.contact-page {
  padding: 50px 0;
}
.contact-page .map {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 80px;
}
.contact-page .map iframe {
  width: 100%;
  height: 500px;
  border: none;
  -webkit-box-shadow: 0 0 20px;
          box-shadow: 0 0 20px;
}
.contact-page .contact-info h2, .contact-page .contact-info h3 {
  font-weight: 700;
  color: rgb(91, 76, 66);
}
.contact-page .contact-info a {
  color: #122348;
  padding: 4px 0;
  font-weight: 500;
}
.contact-page .contact-info a i {
  width: 20px;
  text-align: center;
}
.contact-page .contact-info a:hover {
  color: #ffc107;
}
.contact-page .general-form {
  padding: 48px 36px 30px;
  border-radius: 12px;
  background-image: linear-gradient(-26deg, #f1e8da 0%, #F5F3F0 100%);
  -webkit-box-shadow: 3px 5px 25px rgba(0, 0, 0, 0.15);
          box-shadow: 3px 5px 25px rgba(0, 0, 0, 0.15);
  text-align: center;
}
.contact-page .general-form h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 36px;
}

.proposal-page {
  padding: 50px 0 0;
}
.proposal-page h2 {
  font-size: 48px;
  font-weight: bold;
  letter-spacing: -0.8px;
  color: #122348;
  margin-bottom: 48px;
  display: block;
}
.proposal-page p {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.37px;
  color: #122348;
  margin-bottom: 80px;
}
.proposal-page .general-form {
  padding: 48px 36px 30px;
  border-radius: 12px;
  border: 2px solid #3dc5ff;
  max-width: 480px;
  background-color: #fff;
  margin-top: -130px;
  margin-right: auto;
  margin-left: auto;
}
.proposal-page .general-form h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 36px;
}

.general-form .form-group .form-control {
  width: 100%;
  height: 50px;
  border-radius: 8px;
  border: 1px solid #d7d7d7;
  background-color: #fff;
  padding: 5px 20px;
  font-size: 12px;
  color: #122348;
}
.general-form .yellow-main-button {
  outline: none;
  border: none;
}

.corporate-page {
  padding: 50px 0;
}
.corporate-page .about-us .head-small {
  margin-bottom: -20px;
  font-size: 24px;
  display: block;
  color: #ffc107;
}
.corporate-page .about-us hr {
  margin: 50px 0;
}
.corporate-page .about-us .content h2, .corporate-page .about-us .content h3 {
  margin: 25px 0;
  letter-spacing: -0.53px;
  line-height: 1.2;
  font-weight: bold;
  color: rgb(91, 76, 66);
}
.corporate-page .about-us .content .icon {
  width: 48px;
  margin-right: 10px;
}
.corporate-page .about-us .content p {
  text-align: justify;
}
.corporate-page .faq-list .card {
  margin: 15px 0;
}
.corporate-page .faq-list .card .card-header button {
  width: 100%;
  text-align: left;
  color: #122348;
  font-weight: 600;
  text-decoration: none;
}
.corporate-page .faq-list .card .card-header button h5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.corporate-page .faq-list .card .card-header button i {
  margin-right: 8px;
  color: #eda200;
}

.blog-page {
  padding: 50px 0;
}
.blog-page .blog-area h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  color: rgb(91, 76, 66);
}
.blog-page .blog-area .blog-standard {
  margin: 15px 0;
}
.blog-page .blog-area .blog-standard .blog-img a img {
  border-radius: 8px;
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}
.blog-page .blog-area .blog-standard .blog-meta {
  padding: 10px 0;
}
.blog-page .blog-area .blog-standard .blog-meta a {
  color: #122348;
  font-weight: 500;
}
.blog-page .blog-area .blog-standard h4 a {
  color: #ffc107;
  font-weight: 600;
  letter-spacing: 1px;
}
.blog-page .blog-area .blog-standard p {
  font-weight: 500;
  font-size: 15px;
  opacity: 0.8;
}
.blog-page .blog-area .blog-standard .yellow-main-button {
  margin-top: 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.blog-page .blog-sidebar {
  position: sticky;
  top: 160px;
  border-radius: 6px;
  padding: 20px 12px;
  -webkit-box-shadow: 0 0 30px rgba(91, 76, 66, 0.2);
          box-shadow: 0 0 30px rgba(91, 76, 66, 0.2);
  background: white;
}
.blog-page .blog-sidebar h2, .blog-page .blog-sidebar h3 {
  font-size: 24px;
  font-weight: 600;
  color: rgb(91, 76, 66);
}
.blog-page .blog-sidebar ul li {
  padding: 5px;
}
.blog-page .blog-sidebar ul li a {
  padding: 2px;
  color: #122348;
}
.blog-page .blog-sidebar ul li a:hover {
  color: #ffc107;
}
.blog-page .blog-sidebar ul li a.active {
  color: #eda200;
}
.blog-page .blog-sidebar .tags-list {
  padding-top: 10px;
}
.blog-page .blog-sidebar .tags-list a {
  padding: 2px 5px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.05);
  margin: 4px;
  color: #122348;
  font-weight: 600;
  font-size: 14px;
}
.blog-page .blog-sidebar .tags-list a:hover {
  background: #eda200;
  color: white;
}
.blog-page .blog-sidebar .tags-list a.active {
  background: #eda200;
  color: white;
}
.blog-page .blog-detail .blog-meta {
  margin: 15px 0;
  position: relative;
}
.blog-page .blog-detail .blog-meta:before {
  content: "";
  position: absolute;
  left: -15px;
  height: 100%;
  width: 1px;
  top: 0;
  background: #122348;
  opacity: 0.1;
}
.blog-page .blog-detail .blog-meta h2 {
  margin-bottom: 30px;
  color: #eda200;
}
.blog-page .blog-detail .blog-meta .blog-image {
  margin-bottom: 10px;
}
.blog-page .blog-detail .blog-meta .blog-image img {
  border-radius: 8px;
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}
.blog-page .blog-detail .blog-meta a {
  color: #122348;
  font-weight: 500;
}
.blog-page .blog-detail .blog-meta .tags-list {
  text-align: center;
}
.blog-page .blog-detail .blog-meta .tags-list a {
  padding: 2px 5px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.05);
  margin: 4px;
  color: #122348;
  font-weight: 600;
  font-size: 14px;
}
.blog-page .blog-detail .blog-meta .tags-list a:hover {
  background: #eda200;
  color: white;
}
.blog-page .blog-detail .blog-meta .tags-list a.active {
  background: #eda200;
  color: white;
}
.blog-page .blog-detail .blog-content {
  margin: 15px 0;
}
.blog-page .blog-detail .blog-content h2 {
  margin-bottom: 30px;
  color: #eda200;
}

.rooms-page {
  padding: 50px 55px;
  position: relative;
}
.rooms-page .decoration-images {
  opacity: 0.5;
}
.rooms-page .decoration-images .left-image {
  position: absolute;
  width: 39px;
  left: 15px;
  top: 50px;
}
.rooms-page .decoration-images .right-image {
  position: absolute;
  width: 39px;
  right: 15px;
  top: 50px;
}
.rooms-page .decoration-images .right-image img {
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1);
}
.rooms-page .room-detail h2, .rooms-page .room-detail h3 {
  color: rgb(91, 76, 66);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 2px;
}
.rooms-page .room-detail .room-slider .item-list {
  position: relative;
}
.rooms-page .room-detail .room-slider .item-list .item {
  padding: 10px;
}
.rooms-page .room-detail .room-slider .item-list .item a {
  display: block;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
.rooms-page .room-detail .room-slider .item-list .slick-dots {
  position: absolute;
  right: 30px;
  bottom: 40px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.rooms-page .room-detail .room-slider .item-list .slick-dots li {
  display: inline-block;
  padding: 3px;
}
.rooms-page .room-detail .room-slider .item-list .slick-dots li button {
  border-radius: 6px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 28px;
  height: 28px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.rooms-page .room-detail .room-tag figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.rooms-page .room-detail .room-tag figure img {
  max-width: 50px;
}
.rooms-page .room-detail .room-tag figure figcaption {
  margin-left: 10px;
  font-size: 20px;
}
.rooms-page .room-detail .room-tag ul {
  padding-left: 20px;
}
.rooms-page .room-detail .room-tag ul li, .rooms-page .room-detail .room-tag li {
  list-style: inherit;
}

@media screen and (min-width: 1600px) {
  .container {
    max-width: 1440px;
  }
}
@media screen and (max-width: 1439px) {
  .home-blogs, .welcome-section, .home-rooms, .home-about {
    overflow-x: hidden;
    position: relative;
    max-width: 100vw;
  }

  .welcome-section .welcome-content h1 {
    font-size: 44px;
  }

  .general-room-blocks .room-item a figure > img {
    height: 360px;
  }
}
@media screen and (max-width: 1199px) {
  header nav ul li a {
    padding: 8px 8px;
  }

  .welcome-section .welcome-content h1 {
    font-size: 40px;
    margin-bottom: 100px;
  }

  .home-services h1 {
    font-size: 40px;
  }
  .home-services h1:before {
    font-size: 72px;
  }

  .section-title h2, .section-title h3, .section-title h4 {
    font-size: 32px;
  }

  .home-branches h2, .home-blogs .section-title h3, .why-us h2, .breadcrumb .content h1, .proposal-page h2 {
    font-size: 40px;
  }

  .home-services p {
    font-size: 20px;
  }

  .general-services-block a h3 {
    font-size: 20px;
  }

  .general-services-block a .icon img {
    width: 40px;
  }

  .general-services-block a {
    padding: 40px 36px;
  }

  .why-us .why-card .inner {
    padding: 14px;
  }

  .corporate-page .about-us .sticky-image {
    width: 100%;
  }

  .general-room-blocks .room-item a figure > img {
    height: 280px;
  }

  .general-room-blocks .room-item a figure figcaption .name {
    font-size: 20px;
  }

  footer .main-footer .logo {
    text-align: center;
  }
}
@media screen and (max-width: 991px) {
  header nav {
    display: none;
  }
  header .proposal-button {
    display: none;
  }
  header .header-button {
    display: inline-block;
  }

  .panel-menu {
    display: block;
  }

  .welcome-section .welcome-content h1 {
    font-size: 36px;
  }

  .home-services h1 {
    font-size: 36px;
  }
  .home-services h1:before {
    font-size: 64px;
  }

  .home-branches h2, .home-blogs .section-title h3, .why-us h2, .breadcrumb .content h1, .proposal-page h2 {
    font-size: 36px;
  }

  .why-us small {
    margin-top: 40px;
    display: block;
  }

  footer {
    margin-top: 50px;
  }

  footer .footer-top .footer-content .social-media {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  footer .footer-top .footer-content ul li {
    display: inline-block;
    padding: 5px 10px;
  }
  footer .footer-top .footer-content ul li:first-of-type {
    padding-left: 0;
  }

  .why-us .why-card .inner strong {
    font-size: 40px;
  }

  .home-blogs {
    padding: 40px 0 100px;
  }

  .breadcrumb .content {
    padding: 0 10px;
    left: 10px;
  }
  .breadcrumb .bg-image img {
    min-height: 200px;
  }

  .proposal-page p {
    font-size: 18px;
  }

  .services-page .service-detail .detail-image {
    margin-bottom: 30px;
  }

  .blog-page .blog-sidebar {
    margin-bottom: 30px;
  }

  .section-title h2, .section-title h3, .section-title h4, .rooms-page .room-detail h2, .rooms-page .room-detail h3 {
    font-size: 28px;
  }

  .home-about .about-tag {
    margin-top: 30px;
  }

  .general-room-blocks .room-item a figure > img {
    height: auto;
  }

  .rooms-page {
    padding: 50px 25px;
  }

  .rooms-page .decoration-images .left-image {
    left: 0;
    width: 25px;
  }

  .rooms-page .decoration-images .right-image {
    right: 0;
    width: 25px;
  }
}
@media screen and (max-width: 767px) {
  .home-services h1 {
    font-size: 28px;
  }
  .home-services h1:before {
    font-size: 50px;
  }

  .welcome-section .welcome-content {
    bottom: 50px;
  }

  .welcome-section .welcome-content h1 {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .home-branches h2, .home-blogs .section-title h3, .why-us h2, .breadcrumb .content h1, .proposal-page h2, .services-page .service-detail h2, .services-page .service-detail h4, .blog-page .blog-area h2 {
    font-size: 28px;
  }

  .home-services p {
    font-size: 16px;
  }

  .home-branches .branches-slider .item-list .item figure figcaption h3 {
    font-size: 16px;
  }

  .why-us .why-card {
    margin: 15px 0;
  }

  footer .copyright {
    text-align: center;
  }

  .customer-portal a {
    padding: 10px 14px;
    font-size: 14px;
  }

  .home-blogs {
    padding: 40px 0 80px;
  }

  .breadcrumb .content ul li a {
    font-size: 14px;
    opacity: 0.9;
  }

  .corporate-page .about-us .content h2, .corporate-page .about-us .content h3 {
    font-size: 24px;
  }

  .proposal-page p {
    font-size: 16px;
  }

  .blog-page .blog-sidebar h2, .blog-page .blog-sidebar h3 {
    font-size: 20px;
  }

  .blog-page .blog-sidebar ul li a {
    font-size: 14px;
  }

  .blog-page .blog-sidebar .tags-list a {
    font-size: 14px;
  }

  .customer-portal {
    right: 20px;
    bottom: 50px;
  }

  .scroll-down {
    display: none;
  }

  .section-title h2, .section-title h3, .section-title h4, .rooms-page .room-detail h2, .rooms-page .room-detail h3 {
    font-size: 24px;
  }

  .section-title small {
    font-size: 14px;
  }

  footer .main-footer .footer-block:before {
    display: none;
  }

  .rooms-page .room-detail .room-slider .item-list .slick-dots {
    position: relative;
    right: 0;
    bottom: 0;
  }

  .rooms-page .room-detail .room-tag figure figcaption {
    font-size: 16px;
  }

  .rooms-page .room-detail .room-tag figure img {
    max-width: 40px;
  }
}
@media screen and (max-width: 575px) {
  header {
    padding-left: 5px;
    padding-right: 5px;
  }
  header .btn {
    font-size: 14px !important;
  }

  .welcome-section .welcome-content {
    bottom: 30px;
  }

  .welcome-section .welcome-content h1 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .corporate-page .about-us .content h2, .corporate-page .about-us .content h3, .services-page .service-detail h2, .services-page .service-detail h4, .blog-page .blog-area h2 {
    font-size: 22px;
  }

  .corporate-page .about-us p {
    font-size: 14px;
  }

  .home-services h1 {
    font-size: 24px;
  }
  .home-services h1:before {
    font-size: 36px;
  }

  .home-branches h2, .home-blogs .section-title h3, .why-us h2, .breadcrumb .content h1 {
    font-size: 24px;
  }

  footer .footer-top .footer-content ul li {
    display: block;
    padding: 5px 0 !important;
  }

  .home-blogs {
    padding: 40px 0 60px;
  }

  .blog-page .blog-sidebar h2, .blog-page .blog-sidebar h3 {
    font-size: 18px;
  }

  .customer-portal {
    right: 20px;
    bottom: 30px;
  }

  .welcome-section .welcome-content .social-medias ul {
    text-align: center;
  }
  .welcome-section .welcome-content .social-medias ul li a {
    font-size: 14px;
    margin: 4px;
  }

  .section-title h2, .section-title h3, .section-title h4, .rooms-page .room-detail h2, .rooms-page .room-detail h3 {
    font-size: 20px;
  }
}