@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  box-sizing: border-box;
}

body {
  color: #444;
  background-color: #F4F4F4;
  font-family: "Montserrat";
  font-size: 0.9rem;
}

@font-face {
  font-family: "the_historia_demoregular";
  src: url("../fonts/thehistoriademo-webfont.woff2") format("woff2"), url("../fonts/thehistoriademo-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
a, a:focus, a:hover {
  outline: none;
  text-decoration: none;
}

a:hover {
  color: #161616;
}

ul {
  list-style: none;
}

.overflow-hidden {
  overflow: hidden;
}

.opacity-0 {
  opacity: 0;
}

.max-width {
  max-width: 80%;
  margin: auto;
}
@media (max-width: 1600px) {
  .max-width {
    max-width: 80%;
  }
}
@media (max-width: 991px) {
  .max-width {
    max-width: 90%;
  }
}

.padding {
  padding: 4rem 0;
}
.padding.padding-1 {
  padding-top: 2rem;
}
@media (max-width: 500px) {
  .padding.padding-1 {
    padding-top: 0;
  }
}
@media (max-width: 500px) {
  .padding {
    padding: 2rem 0;
  }
}

.height-100 {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.page-container {
  width: 70%;
  margin: auto;
}

.page-title {
  color: #CC3333;
  font-size: 3rem;
  margin-bottom: 3rem;
  font-weight: bold;
  text-align: center;
}
.page-title.title-white {
  color: #fff;
}
@media (max-width: 500px) {
  .page-title {
    font-size: 1.8rem;
  }
}
@media (max-width: 500px) {
  .page-title {
    font-size: 1.8rem;
  }
}
@media (max-width: 370px) {
  .page-title {
    font-size: 1.5rem;
  }
}
.page-title.title-2 {
  font-family: "the_historia_demoregular";
  color: #161616;
  font-weight: 400;
  font-size: 5rem;
  margin-bottom: 0;
}
@media (max-width: 500px) {
  .page-title.title-2 {
    font-size: 4rem;
  }
}

.subtitle {
  font-weight: bold;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}
@media (max-width: 500px) {
  .subtitle {
    font-size: 1.3rem;
  }
}
@media (max-width: 370px) {
  .subtitle {
    font-size: 1.2rem;
  }
}
.subtitle.sub-2 {
  text-align: center;
  margin-bottom: 3rem !important;
  color: #434D54;
  opacity: 0.9;
  display: block;
  font-size: 2.5rem;
}
@media (max-width: 500px) {
  .subtitle.sub-2 {
    font-size: 2rem;
  }
}

.a-link {
  color: #3490dc;
  font-weight: 400;
  text-transform: uppercase;
  transition: 0.3s;
}
.a-link:hover {
  font-weight: bold;
  color: #CC3333;
  letter-spacing: 1px;
}

.button-default {
  background: #CC3333;
  color: #fff;
  padding: 10px 3rem;
  margin: 1rem 0;
  transition: 0.2s;
  cursor: pointer;
  font-size: 0.9rem;
  outline: none !important;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: bold;
  min-width: 30%;
}
.button-default:focus {
  outline: none !important;
  box-shadow: none;
}
.button-default.btn-sm {
  padding: 1rem 2rem;
  font-size: 0.8rem;
}
.button-default.btn-lg {
  padding: 1rem 3rem;
  font-size: 1rem;
}
.button-default.btn-white {
  background: #fff;
  color: #161616;
}
.button-default.btn-dark {
  background: #161616;
  color: #fff;
  min-width: 20%;
  margin: 2rem 0;
}
.button-default.btn-blank {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.button-default.btn-blank-red {
  background: transparent;
  border: 1px solid #CC3333;
  color: #CC3333;
}
.button-default:hover {
  box-shadow: 5px 5px 1px rgba(204, 51, 51, 0.9);
  background: #CC3333;
  color: #fff;
  border: 1px solid #fff !important;
}

.btn-link {
  width: 100%;
  text-align: center;
  display: block;
}

a {
  color: #161616;
}

.default-link {
  color: #161616;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
  border-top: 1px solid #161616;
  width: 100%;
  padding: 1rem 0;
  margin-top: 2rem;
  display: block;
}
.default-link:hover {
  color: #161616;
}
@media (max-width: 768px) {
  .default-link {
    background-color: #CC3333;
    color: #fff;
    padding: 1rem;
  }
  .default-link img {
    filter: brightness(0) invert(1);
  }
}

.form {
  width: 100%;
  margin: auto;
}
.form input:not([type=submit]), .form textarea, .form select {
  width: 100%;
  border-radius: 0;
  margin-bottom: 1rem;
  padding: 10px 1rem;
  outline: none;
  border: 0;
  border-bottom: 1px solid #333638;
  box-shadow: none;
}
.form input:not([type=submit])::placeholder, .form textarea::placeholder, .form select::placeholder {
  text-transform: uppercase;
  letter-spacing: 2px;
}
.form textarea {
  resize: none;
  height: 100px;
  text-align: left;
}
.form input[type=submit] {
  color: #fff;
  cursor: pointer;
  display: block;
  outline: none;
  transition: 0.3s;
  background-color: #161616;
  padding: 1rem 5rem;
  margin: 10px auto;
  border: 1px solid #fff;
  border-radius: 10px;
}
@media (max-width: 500px) {
  .form input[type=submit] {
    padding: 1rem 1rem;
    width: 100%;
  }
}
.form input[type=submit]:hover {
  box-shadow: 5px 5px 1px rgba(204, 51, 51, 0.9);
  background: #CC3333;
  color: #fff;
  border: 1px solid #fff !important;
}
.form .wpcf7-not-valid-tip {
  position: absolute;
  z-index: 1;
  font-size: 10px;
  display: flex;
  top: -28px;
  right: 0;
}

/* Change Autocomplete styles in Chrome*/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: 1px solid #333638;
  -webkit-text-fill-color: #333638;
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

.underline-none:hover {
  text-decoration: none;
}

.btn-close {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  z-index: 2;
}
.btn-close img {
  opacity: 0.3;
  width: 45px;
  transition: 0.3s;
}
.btn-close:hover img {
  opacity: 1;
}

.select2-container--open .select2-dropdown--below {
  border: 1px solid #aaa;
}

.column .col-img {
  min-height: 400px;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #434D54;
}
@media (max-width: 991px) {
  .column .col-img {
    min-height: 400px;
  }
}
@media (max-width: 500px) {
  .column .col-img {
    min-height: 300px;
  }
}
.column .det {
  padding: 0;
  list-style: none;
}
.column .det li {
  font-size: 13px;
}
.column .col-content {
  padding: 2rem;
}
@media (max-width: 991px) {
  .column .col-content {
    padding: 1rem 5px;
  }
}

.social {
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
}
.social li, .social .col-6 {
  text-align: center;
  transition: 0.3s;
  overflow: hidden;
}
.social li i, .social .col-6 i {
  background: #161616;
  color: #fff;
  overflow: hidden;
  font-size: 1.5rem;
  border-radius: 50px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: 0.3s;
}
.social li .text, .social .col-6 .text {
  display: block;
  color: #161616;
  font-weight: 300;
  font-size: 0.8rem;
  transition: 0.3s;
  width: 50%;
  margin: auto;
  margin-top: 1rem;
}
@media (max-width: 500px) {
  .social li .text, .social .col-6 .text {
    width: 100%;
  }
}
.social li:hover i, .social .col-6:hover i {
  background: #CC3333;
  box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.4);
}
.social li:first-child, .social .col-6:first-child {
  margin-left: 0;
}

.sub_page .banner-section {
  min-height: 500px;
}
@media (max-width: 500px) {
  .sub_page .banner-section {
    min-height: 400px;
  }
}
.sub_page .banner-section .banner-container {
  min-height: 500px;
}
@media (max-width: 500px) {
  .sub_page .banner-section .banner-container {
    min-height: 400px;
  }
}
.sub_page .banner-section .inside {
  padding: 0;
}
@media (max-width: 500px) {
  .sub_page .banner-section .inside {
    text-align: left;
  }
}
.sub_page .banner-section .inside .banner-title {
  font-size: 5rem;
  font-family: "the_historia_demoregular";
}
@media (max-width: 991px) {
  .sub_page .banner-section .inside .banner-title {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .sub_page .banner-section .inside .banner-title {
    font-size: 4rem;
  }
}
@media (max-width: 500px) {
  .sub_page .banner-section .inside .banner-title {
    font-size: 4rem;
  }
}

.yt_video iframe, .yt_video .video {
  width: 100%;
  height: 450px;
  box-shadow: 1px 1px 50px rgba(0, 0, 0, 0.4);
}

.play-btn {
  position: absolute;
  z-index: 3;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  border: 0;
  background: transparent;
  padding: 1.5rem;
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(255, 255, 255, 0.4);
  cursor: pointer;
  outline: none;
}
.play-btn:focus {
  outline: none;
}
.play-btn:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: transparent;
  border: 2px dashed #eee;
  border-radius: 50%;
  animation: spin 3s infinite;
}
.play-btn img {
  filter: brightness(0) invert(1);
}
.play-btn:hover {
  animation: pulse 2s infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 30px rgba(204, 169, 44, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
  }
}
#loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #CC3333;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: 1s ease-in-out;
  opacity: 1;
  top: 0;
}
#loader.hide {
  opacity: 0;
  visibility: hidden;
}
#loader img {
  width: auto;
  filter: brightness(0) invert(1);
}
#loader span {
  color: #fff;
  margin-top: 1rem;
  font-size: 0.8rem;
  animation: loader 1.5s infinite alternate;
}
@keyframes loader {
  0% {
    transform: scale(0.8);
    letter-spacing: 2px;
  }
  100% {
    transform: scale(1);
    letter-spacing: 4px;
  }
}

.modal-form .modal-content {
  padding: 3rem;
}
.modal-form .btn-close {
  position: absolute;
  background: transparent;
  border: 0;
  right: 0;
  top: 0;
  cursor: pointer;
  outline: none;
}
.modal-form .page-title {
  font-size: 2rem;
}

.wpcf7 form.sent .wpcf7-response-output {
  background: #46b450;
  color: #fff;
}

.banner-section {
  position: relative;
}
.banner-section .banner-container {
  min-height: 80vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.banner-section .banner-container:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(22, 22, 22, 0.5);
  top: 0;
  right: 0;
}
.banner-section .inside {
  position: absolute;
  z-index: 2;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 80%;
  overflow: hidden;
  padding-bottom: 5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1366px) {
  .banner-section .inside {
    width: 80%;
  }
}
@media (max-width: 500px) {
  .banner-section .inside {
    width: 100%;
    padding-bottom: 0;
  }
}
.banner-section .inside .banner-title {
  color: #fff;
  font-size: 4rem;
  font-weight: 500;
}
@media (max-width: 991px) {
  .banner-section .inside .banner-title {
    font-size: 2rem;
  }
}
@media (max-width: 500px) {
  .banner-section .inside .banner-title {
    font-size: 2rem;
  }
}
.banner-section .inside .button-default {
  margin-bottom: 10px;
}
.banner-section.banner-2 .inside {
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  bottom: -15%;
}
.banner-section.banner-2 .inside .banner-title {
  font-weight: 300;
  font-size: 3rem;
}
@media (max-width: 500px) {
  .banner-section.banner-2 .inside .banner-title {
    font-size: 2rem;
  }
}

.card {
  border: 0;
  height: 100%;
  border-radius: 0;
}
.card a, .card .card-title, .card .content {
  color: #161616;
}
.card .status, .card .date {
  font-weight: 300;
  font-size: 0.9rem;
}
.card .card-img {
  height: 100%;
  min-height: 250px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 0;
  transition: 0.3s;
}
.card .card-body .card-title {
  font-weight: bold;
}
.card .card-body .content {
  font-size: 0.9rem;
}
.card .link {
  color: #161616;
  font-weight: 300;
  text-decoration: none;
  padding: 1rem;
  position: relative;
  font-size: 0.9rem;
  transition: 0.3s;
  overflow: hidden;
  border-top: 1px solid #eee;
}
.card .link:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  transform: translateY(100%);
  background-color: #CC3333;
  display: block;
  transition: 0.3s;
}
.card .link img {
  transform: rotate(0deg);
  transition: all 0.3s;
}
.card .link span {
  position: relative;
  display: flex;
  align-items: center;
}
.card:hover .card-img {
  filter: grayscale(1);
}
.card:hover .link {
  border-top: 0;
  color: #fff;
  font-weight: bold;
  padding: 1rem !important;
}
.card:hover .link:before {
  transform: translateY(0);
}
.card:hover .link img {
  transform: rotate(360deg);
  filter: brightness(0) invert(1);
}

.form-section {
  margin-top: 2rem;
}
.form-section .subtitle {
  margin-bottom: 2rem;
}
.form-section .form {
  width: 60%;
}
@media (max-width: 991px) {
  .form-section .form {
    width: 90%;
  }
}
@media (max-width: 500px) {
  .form-section .form {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .single .single-container {
    margin-top: 4rem;
  }
}
.single .single-title {
  font-size: 1.6rem;
  color: #434D54;
  font-weight: 600;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .single .single-title {
    font-size: 2rem;
    line-height: 30px;
    margin-bottom: 1rem;
  }
}
@media (max-width: 500px) {
  .single .single-title {
    font-size: 1.5rem;
  }
}

.video-container {
  position: relative;
}
.video-container .video {
  background-color: #1DCCBB;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px;
}

.map {
  width: 100%;
  min-height: 400px;
}
@media (max-width: 500px) {
  .map {
    min-height: 250px;
  }
}

.wave {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  bottom: -6rem;
  width: 100%;
  height: 100%;
}
@media (max-width: 1600px) {
  .wave {
    bottom: -10rem;
  }
}
@media (max-width: 1440px) {
  .wave {
    display: none;
  }
}
.wave.wave-2 {
  top: -31rem;
  height: auto;
}
@media (max-width: 1600px) {
  .wave.wave-2 {
    top: -38rem;
  }
}
.wave.wave-3 {
  bottom: -13rem;
}
@media (max-width: 991px) {
  .wave {
    display: none;
  }
}

.news-section {
  position: relative;
  overflow: initial;
}
.news-section .max-width {
  position: relative;
  z-index: 1;
}

.page-contacts {
  background-color: #fff;
}
.page-contacts .subtitle {
  font-weight: 400;
  font-size: 1.2rem;
}
.page-contacts .contact-info li {
  margin-bottom: 1rem;
}

input[name=your-start], input[name=your-end] {
  cursor: pointer;
}

#calendar_icon_start, #calendar_icon_end {
  opacity: 0.4;
  position: absolute;
  cursor: pointer;
  width: 25px;
  right: 9px;
  top: -2px;
}

.fotorama__stage__shaft, .fotorama__pointer, .fotorama__wrap {
  width: 100% !important;
}

.fotorama__img, .fotorama__stage .fotorama__img {
  width: 100% !important;
  left: 0 !important;
}

.fotorama__nav-wrap {
  overflow: hidden;
}

.fotorama__nav {
  width: 100%;
  text-align: left;
  padding: 2rem 0;
  margin: auto;
}
@media (max-width: 991px) {
  .fotorama__nav {
    transform: translateZ(0);
    padding: 1rem;
  }
}

.fotorama__nav__frame {
  opacity: 0.5;
  transition: 0.3s;
}
.fotorama__nav__frame.fotorama__active {
  opacity: 1;
}

.content {
  text-align: justify;
}

header {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 3rem;
  z-index: 5;
  transition: 0.3s;
  top: 0;
}
@media (max-width: 991px) {
  header {
    padding: 1rem;
  }
}
header .navbar-brand {
  margin-bottom: 0;
  align-items: center;
  display: flex;
}
header .navbar-brand .logo-colored {
  display: none;
}
header .navbar-brand img.logo-icon {
  transition: 0.3s;
  max-width: 100%;
  margin-right: 10px;
  filter: brightness(0) invert(1);
}
@media (max-width: 500px) {
  header .navbar-brand img.logo-icon {
    max-width: 70%;
  }
}
header .navbar-brand:hover img.logo-icon {
  filter: brightness(0) invert(1) drop-shadow(2px 3px 0px #CC3333);
}
header .navbar-brand .logo-text {
  font-weight: bold;
  color: #fff;
  opacity: 0;
  transition: 0.3s;
}
@media (max-width: 991px) {
  header .navbar-brand .logo-text {
    display: none;
  }
}
header .nav-right {
  display: flex;
  align-items: center;
}
header .nav-right a {
  margin: 0 2rem;
  color: #fff;
  background-color: transparent;
  padding: 10px 1rem;
  text-decoration: none;
  transition: 0.3s;
}
header .nav-right a:hover {
  box-shadow: 1px 1px 10px rgba(51, 54, 56, 0.3);
  background-color: rgba(29, 204, 187, 0.9);
  color: #CC3333;
}
@media (max-width: 500px) {
  header .nav-right a {
    display: none;
  }
}
header .nav-right .contact {
  color: #fff;
  font-weight: 300;
  display: flex;
}
@media (max-width: 500px) {
  header .nav-right .contact {
    display: none;
  }
}
header .nav-right .contact a {
  display: inline-block;
  font-weight: 500;
  margin: 0;
  margin-left: 5px;
  padding: 0;
  background-color: transparent !important;
}
header .nav-right .contact a:hover {
  box-shadow: none;
  color: #fff;
  text-decoration: underline;
}
header.scrolled {
  background: #CC3333;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.4);
  padding: 10px 3rem;
}
@media (max-width: 768px) {
  header.scrolled {
    padding: 10px 1rem;
  }
}
header.scrolled .navbar-brand .logo-text {
  opacity: 1;
}

.sub_page header {
  background: #CC3333;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.4);
  padding: 1px 3rem;
}
@media (max-width: 768px) {
  .sub_page header {
    padding: 10px 1rem;
  }
}

.menu-btn {
  display: flex;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
  opacity: 1;
}
.menu-btn span {
  width: 33px;
  height: 1px;
  background: #fff;
  margin-bottom: 7px;
  border-radius: 50px;
  transition: 0.2s;
}
.menu-btn span:last-child {
  margin-bottom: 0;
}

.menu-float {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #161616;
  transform: translateY(-100%);
  transition: all 0.3s cubic-bezier(0, 0.9, 0.5, 1) 0.3s;
  z-index: 6;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url("../img/bg-black.png");
  background-blend-mode: exclusion;
}
.menu-float navbar {
  display: block;
  width: 100%;
  background-color: transparent;
  margin-left: auto;
  transform: translateY(-100%);
  transition: 0.5s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 500px) {
  .menu-float navbar {
    width: 100%;
  }
}
.menu-float .menu-btn {
  margin-bottom: 3rem;
  opacity: 0.6;
  z-index: 1;
}
@media (max-width: 500px) {
  .menu-float .menu-btn {
    margin-bottom: 0;
  }
}
.menu-float .menu-btn:hover {
  opacity: 1;
}
.menu-float ul {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style: none;
  margin-bottom: 0;
  height: 100%;
  width: 100%;
}
@media (max-width: 500px) {
  .menu-float ul {
    padding: 0;
    margin-top: 1rem;
  }
}
.menu-float ul li {
  margin-bottom: 5px;
  color: #fff;
}
.menu-float ul li a {
  color: #fff;
  font-size: 2rem;
  text-decoration: none;
  outline: none;
  position: relative;
  display: block;
  margin-bottom: 1rem;
  font-weight: bold;
  transition: 0.3s;
}
@media (max-width: 1600px) {
  .menu-float ul li a {
    font-size: 1.5rem;
  }
}
.menu-float ul li a:before {
  content: "";
  position: absolute;
  background: #fff;
  height: 2px;
  width: 0%;
  display: block;
  transition: 0.5s;
  bottom: 0;
  right: 0;
  display: none;
}
@media (max-width: 991px) {
  .menu-float ul li a:before {
    display: none;
  }
}
@media (max-width: 500px) {
  .menu-float ul li a:before {
    top: 11px;
  }
}
.menu-float ul li.current_page_item a, .menu-float ul li:hover a {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #CC3333;
  color: transparent;
  opacity: 1;
}
.menu-float ul li.current_page_item:nth-child(2n) a, .menu-float ul li:hover:nth-child(2n) a {
  -webkit-text-stroke-color: #1DCCBB;
}
.menu-float .large-text {
  position: absolute;
  font-size: 20rem;
  font-weight: bold;
  text-align: center;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.2;
  flex-direction: column;
  line-height: initial;
}
@media (max-width: 500px) {
  .menu-float .large-text {
    font-size: 10rem;
  }
}
.menu-float.show {
  transform: translateX(0);
}
.menu-float.show navbar {
  transform: translateY(0);
  transition-delay: 0.3s;
}
.menu-float.show ul li:nth-child(1) a {
  animation-delay: 100ms;
}
.menu-float.show ul li:nth-child(2) a {
  animation-delay: 200ms;
}
.menu-float.show ul li:nth-child(3) a {
  animation-delay: 300ms;
}
.menu-float.show ul li:nth-child(4) a {
  animation-delay: 400ms;
}
.menu-float.show ul li:nth-child(5) a {
  animation-delay: 500ms;
}
.menu-float.show ul li:nth-child(6) a {
  animation-delay: 600ms;
}
.menu-float.show ul li:nth-child(7) a {
  animation-delay: 700ms;
}
.menu-float.show ul li:nth-child(8) a {
  animation-delay: 800ms;
}
.menu-float.show ul li:nth-child(9) a {
  animation-delay: 900ms;
}
.menu-float.show ul li:nth-child(10) a {
  animation-delay: 1000ms;
}

.scrolled header {
  padding-top: 0;
}

footer {
  padding: 5rem 2rem;
  padding-bottom: 2rem;
  background-color: #fff;
  color: #161616;
}
@media (max-width: 500px) {
  footer {
    padding: 3rem 1rem;
  }
}
footer .footer-logo {
  margin: auto;
  margin-bottom: 1.5rem;
}
footer .content {
  width: 30%;
  text-align: center;
  font-size: 0.8rem;
  margin: 1.5rem 0;
  line-height: 20px;
}
@media (max-width: 991px) {
  footer .content {
    width: 100%;
  }
}
footer .content p {
  margin-bottom: 0;
}
footer ul.social, footer .links ul {
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
}
footer .footer-nav {
  margin-top: 2rem;
}
footer .footer-nav b {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
}
footer .footer-nav ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}
footer .footer-nav ul li {
  font-size: 13px;
}
footer .footer-nav ul li a, footer .footer-nav ul li span {
  color: #161616;
}
footer .footer-nav ul li a {
  text-decoration: none;
}
footer .footer-nav ul li a:hover {
  color: #CC3333;
}
footer .footer-nav.contact-info li {
  display: flex;
}
footer .footer-nav.contact-info li span {
  min-width: 80px;
}
footer ul.social {
  margin: 2rem 0;
  list-style: none;
  padding: 0;
  justify-content: flex-start;
}
footer ul.social li {
  margin: 0;
  margin-right: 10px;
}
footer ul.social li a {
  background-color: #161616;
  width: 35px;
  height: 35px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
footer ul.social li i {
  background-color: transparent !important;
  border-radius: 0 !important;
  color: #fff;
  font-size: 1rem;
  width: auto;
  height: auto;
  line-height: 19px;
}
footer ul.social li:hover a {
  background-color: #434D54;
  box-shadow: none;
  opacity: 0.8;
}
footer .form label {
  width: 80%;
}
footer .form input:not([type=submit]), footer .form textarea {
  padding: 10px;
  font-size: 13px;
  margin-bottom: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid #161616;
  border-radius: 5px;
  outline: none;
  color: #161616;
}
footer .form input:not([type=submit])::placeholder, footer .form textarea::placeholder {
  color: #161616;
}
footer .form input[type=submit] {
  margin: 5px;
  margin-left: 0;
  width: auto;
  background-color: #333638;
  padding: 7px 2.5rem;
  font-size: 15px;
  border: 1px solid #333638 !important;
  border-radius: 5px;
  font-weight: 500;
}
footer .form input[type=submit]:hover {
  background-color: #CC3333;
  box-shadow: none;
}
footer .links-2 ul {
  margin-top: 2rem;
  margin-bottom: 0;
}
footer .links-2 ul li {
  margin: 0 4px;
  overflow: initial;
}
footer .links-2 ul li a {
  color: #fff;
  position: relative;
  margin: 0 5px;
  font-weight: 400;
  font-size: 12px;
}
footer .links-2 ul li a:before {
  content: "";
  position: absolute;
  height: 15px;
  width: 1px;
  top: 0.2px;
  display: block;
  background-color: #fff;
  left: -10px;
}
footer .links-2 ul li a:hover {
  color: #1DCCBB;
}
footer .links-2 ul li:first-child a:before {
  display: none;
}
footer b {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
footer ul.info {
  padding: 0;
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}
footer ul.info li {
  color: #fff;
  font-size: 0.8rem;
  margin: 0 10px;
  margin-bottom: 10px;
}
footer .copy-right {
  text-align: center;
  font-size: 13px;
  margin-top: 2rem;
}
footer ul.accreds {
  display: flex;
  align-items: center;
  margin: 0;
}
footer ul.accreds img {
  width: 70px;
}

.page-home .banner-section .banner-container {
  min-height: 750px;
}
@media (max-width: 768px) {
  .page-home .banner-section .banner-container {
    min-height: 80vh;
  }
}
@media (max-width: 500px) {
  .page-home .banner-section .banner-container {
    min-height: 500px;
  }
}
.page-home .banner-section .banner-title {
  font-size: 5rem;
  font-weight: bold;
}
@media (max-width: 992px) {
  .page-home .banner-section .banner-title {
    font-size: 4rem;
  }
}
@media (max-width: 500px) {
  .page-home .banner-section .banner-title {
    font-size: 2rem;
  }
}
.page-home .banner-section .subtitle {
  color: #fff;
  display: block;
  font-weight: 500;
}
@media (max-width: 500px) {
  .page-home .banner-section .subtitle {
    font-size: 1.2rem;
  }
}
.page-home .packages-section-tabs {
  position: relative;
  z-index: 1;
  margin-top: -11.5rem;
  padding: 3rem 5%;
  overflow: hidden;
}
@media (max-width: 991px) {
  .page-home .packages-section-tabs {
    padding: 3rem 10px;
  }
}
@media (max-width: 768px) {
  .page-home .packages-section-tabs {
    margin-top: -1.5rem;
    padding: 1rem 0;
    padding-bottom: 0;
  }
}
@media (max-width: 500px) {
  .page-home .packages-section-tabs {
    padding: 1rem 0;
    margin-top: -1.3rem;
  }
}
@media (max-width: 360px) {
  .page-home .packages-section-tabs {
    margin-top: -1rem;
  }
}
.page-home .packages-section-tabs ul {
  border: 0;
  flex-wrap: nowrap;
}
@media (max-width: 768px) {
  .page-home .packages-section-tabs ul {
    align-items: flex-end;
  }
}
.page-home .packages-section-tabs ul .selector {
  display: inline-block;
  position: absolute;
  left: 0px;
  bottom: 0;
  z-index: 1;
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.page-home .packages-section-tabs ul .selector img {
  width: 300px;
}
@media (max-width: 992px) {
  .page-home .packages-section-tabs ul .selector img {
    width: 250px;
  }
}
@media (max-width: 768px) {
  .page-home .packages-section-tabs ul .selector {
    bottom: inherit;
    top: 0;
  }
  .page-home .packages-section-tabs ul .selector img {
    width: 185px;
  }
}
@media (max-width: 500px) {
  .page-home .packages-section-tabs ul .selector {
    transform: translateX(-10%);
  }
  .page-home .packages-section-tabs ul .selector img {
    width: 150px;
  }
}
@media (max-width: 360px) {
  .page-home .packages-section-tabs ul .selector {
    transform: translateX(-12%);
  }
  .page-home .packages-section-tabs ul .selector img {
    width: 120px;
  }
}
.page-home .packages-section-tabs ul li:not(.selector) {
  width: calc(100%/4);
}
.page-home .packages-section-tabs ul li:not(.selector) a {
  display: flex;
  align-items: center;
  color: #fff;
  padding: 1rem 0;
}
@media (max-width: 768px) {
  .page-home .packages-section-tabs ul li:not(.selector) a {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 500px) {
  .page-home .packages-section-tabs ul li:not(.selector) a {
    color: #161616;
  }
}
@media (max-width: 992px) {
  .page-home .packages-section-tabs ul li:not(.selector) a.active {
    opacity: 1;
  }
}
.page-home .packages-section-tabs ul li:not(.selector) a .icon {
  margin-right: 10px;
}
@media (max-width: 768px) {
  .page-home .packages-section-tabs ul li:not(.selector) a .icon {
    margin-right: 0;
  }
  .page-home .packages-section-tabs ul li:not(.selector) a .icon img {
    filter: brightness(1) invert(1);
  }
}
.page-home .packages-section-tabs ul li:not(.selector) a .title {
  font-weight: bold;
}
@media (max-width: 768px) {
  .page-home .packages-section-tabs ul li:not(.selector) a .title {
    color: #161616;
  }
}
@media (max-width: 991px) {
  .page-home .packages-section-tabs ul li:not(.selector) a .det {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
  }
}
.page-home .packages-section-tabs ul li:not(.selector) a p {
  margin-bottom: 0;
  width: 90%;
  font-size: 0.8rem;
  line-height: initial;
}
@media (max-width: 991px) {
  .page-home .packages-section-tabs ul li:not(.selector) a p {
    display: none;
  }
}
.page-home .packages-section {
  min-height: 50vh;
  position: relative;
  overflow: initial;
}
.page-home .packages-section .tab-content {
  position: relative;
  z-index: 1;
}
.page-home .about-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-position: right;
  background-size: cover;
  background-repeat: no-repeat;
}
.page-home .about-section .padding {
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .page-home .about-section .padding {
    padding-bottom: 0;
  }
}
.page-home .about-section .content {
  color: #fff;
  font-size: 1rem;
}
.page-home .about-section .button-default {
  margin-top: 2rem;
}
.page-home .properties-section .property-list {
  display: flex;
}
@media (max-width: 360px) {
  .page-home .properties-section .property-list {
    flex-wrap: wrap;
  }
}
@media (max-width: 500px) {
  .page-home .properties-section .property-list li {
    width: 80%;
  }
}
@media (max-width: 991px) {
  .page-home .properties-section .property-list li:nth-child(3) {
    display: none !important;
  }
}
@media (max-width: 500px) {
  .page-home .properties-section .property-list li:nth-child(2) {
    display: none;
  }
}
@media (max-width: 991px) {
  .page-home .properties-section .property-list li {
    width: calc(90%/2);
  }
}
@media (max-width: 360px) {
  .page-home .properties-section .property-list li {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .page-home .properties-section .inside {
    flex-wrap: wrap;
  }
}
.page-home .properties-section .card {
  align-items: center;
}
.page-home .properties-section .card .card-img {
  min-height: 180px;
}
.page-home .properties-section .card .card-title {
  font-size: 1.5rem;
}
.page-home .social-section .social {
  margin: 5rem 0;
}
.page-home .social-section .social i {
  transform: translateY(0);
  transition: 0.5s;
  font-size: 2.5rem;
  width: 70px;
  height: 70px;
}
@media (max-width: 500px) {
  .page-home .social-section .social i {
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
  }
}
.page-home .social-section .social a {
  padding: 10px;
}
.page-home .social-section .social a:hover i {
  background-color: #CC3333;
  transform: translateY(-10px) rotateY(360deg);
  box-shadow: 1px 1px 10px rgba(19, 123, 207, 0.61);
}
.page-home .testimonial-section {
  background-color: #333638;
}
.page-home .testimonial-section .slick-slider {
  overflow: initial;
}
.page-home .testimonial-section .testimonial-container {
  background-color: transparent;
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  padding: 1rem 2rem;
  margin: 1rem;
  border-radius: 10px;
}
@media (max-width: 991px) {
  .page-home .testimonial-section .testimonial-container {
    min-height: 150px;
  }
}
.page-home .testimonial-section .testimonial-container .icon {
  margin-right: 20px;
}
.page-home .testimonial-section .testimonial-container .icon img {
  width: 100px;
}
.page-home .testimonial-section .img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 70px;
  height: 70px;
  display: block;
  margin: auto;
  border-radius: 50%;
  margin-bottom: 10px;
}
.page-home .testimonial-section .person {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
  text-align: center;
  color: #fff;
  font-size: 11px;
}
.page-home .testimonial-section .person i {
  font-style: 300;
}
.page-home .testimonial-section .content {
  font-weight: 300;
  font-style: italic;
  color: #fff;
}
.page-home .testimonial-section .content p {
  margin-bottom: 0;
}
.page-home .testimonial-section .testimonial-list {
  margin-bottom: 0;
}
.page-home .testimonial-section .slick-list {
  min-height: 400px;
  padding: 0 !important;
}
.page-home .testimonial-section .slick-dots {
  bottom: 0;
}
.page-home .testimonial-section .slick-dots li {
  margin: 0;
}
.page-home .testimonial-section .slick-dots li button {
  padding: 0;
}
.page-home .testimonial-section .slick-dots li button:before {
  color: #fff;
  font-size: 0.5rem;
}
.page-home .testimonial-section .slick-dots li.slick-active {
  opacity: 1;
}
.page-home .testimonial-section .slick-dots li.slick-active button:before {
  color: #CC3333;
}
.page-home .testimonial-section .slick-slide {
  opacity: 0;
}
.page-home .testimonial-section .slick-slide .testimonial-item {
  margin: 1rem 0;
  transform: scale(0.8);
  opacity: 0.5;
  transition: 0.3s;
}
.page-home .testimonial-section .slick-slide .img {
  filter: grayscale(1);
  transition: 0.3s;
}
.page-home .testimonial-section .slick-slide.slick-current .testimonial-item {
  transform: scale(1);
  opacity: 1;
}
.page-home .testimonial-section .slick-slide.slick-current .testimonial-item .testimonial-container {
  background-color: #CC3333;
}
.page-home .testimonial-section .slick-slide.slick-current .img {
  filter: none;
}
.page-home .testimonial-section .slick-slide.slick-active, .page-home .testimonial-section .slick-slide .slick-current {
  opacity: 1;
}
.page-home .contact-section .content {
  width: 50%;
  margin: auto;
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .page-home .contact-section .content {
    width: 80%;
  }
}
@media (max-width: 500px) {
  .page-home .contact-section .content {
    width: 100%;
  }
}
.page-home .cares-section .care-container {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 2rem;
}
.page-home .cares-section .care-container .inside {
  color: #fff;
  width: 40%;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.4);
}
@media (max-width: 991px) {
  .page-home .cares-section .care-container .inside {
    width: 100%;
  }
}
.page-home .cares-section .care-container .inside .title {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 4rem;
  line-height: 70px;
  overflow: hidden;
}
@media (max-width: 500px) {
  .page-home .cares-section .care-container .inside .title {
    font-size: 3rem;
    line-height: initial;
  }
}
@media (max-width: 360px) {
  .page-home .cares-section .care-container .inside .title {
    font-size: 2.5rem;
  }
}
.page-home .cares-section .care-container .inside .content {
  font-size: 0.8rem;
}
.page-home .cares-section .care-container .button-default {
  border: 1px solid #fff;
  overflow: hidden;
  color: #fff;
  margin-bottom: 10px;
  padding: 1rem 3rem;
}
@media (max-width: 992px) {
  .page-home .news-section .blog-lists.row .col-12:nth-child(3) {
    display: none;
  }
}

.page-about {
  background-color: #fff;
}
.page-about .team-section {
  background-color: #fff;
}
.page-about .team-section .card {
  padding-right: 5rem;
}
@media (max-width: 370px) {
  .page-about .team-section .card {
    padding: 1rem 0;
  }
}
.page-about .team-section .card .card-img {
  min-height: 250px;
  filter: none;
}
.page-about .team-section .card .link {
  font-size: 12px;
  border: 0;
  padding-left: 0;
}
.page-about .team-section .title {
  font-size: 1rem;
  color: #CC3333;
  margin-top: 1rem;
  margin-bottom: 0;
}
.page-about .team-section .position {
  font-size: 12px;
  font-weight: 400;
}
.page-about .team-section ul.educations {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}
.page-about .team-section ul.educations li {
  font-size: 12px;
}
.page-about .team-section .modal-content {
  padding: 1rem;
  min-height: 400px;
}
.page-about .team-section .modal-content .title {
  font-size: 1.5rem;
}
.page-about .team-section .modal-content .position {
  margin-bottom: 2rem;
}
@media (max-width: 500px) {
  .page-about .team-section .modal-content .position {
    margin-bottom: 1rem;
  }
}
.page-about .team-section .modal-content .content {
  font-size: 0.8rem;
}
.page-about .team-section .modal-content img.team-img {
  margin-bottom: 1rem;
}
@media (max-width: 500px) {
  .page-about .team-section .modal-content img.team-img {
    margin: auto;
    margin-bottom: 1rem;
  }
}
.page-about .team-section .modal-content .btn-close {
  top: 0;
  right: 0;
}
.page-about .team-section .modal-content .btn-close img {
  width: 45px;
}
.page-about .team-section .modal-content .title, .page-about .team-section .modal-content .position, .page-about .team-section .modal-content .ul.educations {
  display: block;
  text-align: center;
}

.news-section .card {
  margin-right: 2rem;
  margin: 0 !important;
}
@media (max-width: 1366px) {
  .news-section .card {
    margin-right: 1rem;
  }
}
.news-section .blog-lists, .news-section .news-lists {
  overflow: initial;
}
.news-section .slick-dots {
  bottom: 0;
}
.news-section .slick-dots li {
  margin: 0;
}
.news-section .slick-dots li button:before {
  font-size: 9px;
  color: #CC3333;
}

.blog-lists {
  margin-bottom: 0 !important;
}

.blog-lists, .news-lists {
  overflow: hidden;
}
.blog-lists .card, .news-lists .card {
  border: 0;
  color: #161616;
  transition: 0.5s;
  width: 80%;
  margin: auto;
}
@media (max-width: 1600px) {
  .blog-lists .card, .news-lists .card {
    width: 100%;
  }
}
.blog-lists .card .title, .news-lists .card .title {
  font-weight: bold;
  font-size: 1.4rem;
  margin-bottom: 0;
}
.blog-lists .card .content, .news-lists .card .content {
  margin-top: 1.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.blog-lists .card .card-img, .news-lists .card .card-img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 200px;
  margin-bottom: 1rem;
  border-radius: 0;
}
.blog-lists .card:hover, .news-lists .card:hover {
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
}

.page-news .banner-section .inside {
  text-align: left;
  color: #fff;
}
.page-news .banner-section .inside .cont {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  width: 40%;
}
@media (max-width: 991px) {
  .page-news .banner-section .inside .cont {
    width: 90%;
  }
}
@media (max-width: 500px) {
  .page-news .banner-section .inside .cont {
    width: 100%;
  }
}
.page-news .banner-section .inside .banner-title {
  font-size: 1.6rem;
  font-family: "Montserrat";
  font-weight: bold;
}
@media (max-width: 500px) {
  .page-news .banner-section .inside .banner-title {
    font-size: 1.8rem;
  }
}
.page-news .banner-section .inside .link {
  margin-top: 1rem;
  color: #fff;
  font-weight: bold;
  transition: 0.3s;
}
.page-news .banner-section .inside .link img {
  filter: brightness(0) invert(1);
}
.page-news .banner-section .inside .date {
  margin: 1.3rem 0;
  color: #fff;
}
.page-news .banner-section .inside .content {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #fff;
}
.page-news .banner-section .inside a:hover .link {
  letter-spacing: 1px;
}
.page-news .news-section .card {
  margin: 0;
}
.page-news.single .single-container .max-width {
  max-width: 70%;
}
@media (max-width: 991px) {
  .page-news.single .single-container .max-width {
    max-width: 100%;
  }
}
@media (max-width: 500px) {
  .page-news.single .single-container .max-width {
    max-width: 95%;
  }
}
.page-news.single .single-container .page-title {
  margin: 0;
}
.page-news.single .single-container .date {
  font-size: 0.8rem;
  font-weight: 300;
}
.page-news.single .single-container .featured-img {
  background-color: #F4F4F4;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 600px;
  margin: 2rem 0;
}
@media (max-width: 768px) {
  .page-news.single .single-container .featured-img {
    height: 500px;
  }
}
@media (max-width: 500px) {
  .page-news.single .single-container .featured-img {
    height: 300px;
  }
}
.page-news.single .single-container .featured-img.placeholder {
  background-size: auto;
  background-color: #e8e8e8;
}
.page-news.single .single-container .back {
  margin-bottom: 2rem;
  margin-top: 10px;
}
.page-news.single .content ul {
  list-style: disc !important;
}

.featured-packages .col-content {
  background-color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-packages .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.featured-packages .head .subtitle {
  margin-bottom: 0;
  max-width: 60%;
}

.price {
  font-size: 1.3rem;
  font-weight: bold;
  color: #1DCCBB;
}

ul.offer-details {
  padding: 0;
  display: flex;
  margin: 1rem 0;
}
ul.offer-details li {
  width: calc(100%/4);
  text-align: center;
}
ul.offer-details li .circle {
  border: 1px solid #161616;
  border-radius: 50%;
  padding: 1rem;
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 500px) {
  ul.offer-details li .circle {
    width: 70px;
    height: 70px;
  }
}
ul.offer-details li .circle .num {
  font-weight: bold;
  font-size: 1rem;
}
ul.offer-details li .circle small {
  font-size: 8px;
  line-height: initial;
}

.packages-list-section {
  background-color: #fff;
}
@media (max-width: 768px) {
  .packages-list-section {
    padding-bottom: 0;
  }
}
.packages-list-section .col-img {
  min-height: 300px;
  transition: 0.3s;
}
.packages-list-section .col-content {
  padding: 2rem 0;
}
.packages-list-section .subtitle {
  margin-bottom: 0;
}
.packages-list-section .price {
  margin-bottom: 1rem;
}
.packages-list-section .location {
  color: #aaaaaa;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
}
.packages-list-section .column:hover .col-img {
  filter: grayscale(1) drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.4));
}
.packages-list-section .column:hover .default-link {
  background-color: #CC3333;
  color: #fff;
  padding: 1rem;
}
.packages-list-section .column:hover .default-link img {
  filter: brightness(0) invert(1);
}
.packages-list-section .content {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-top: 1rem;
}
.packages-list-section a {
  color: #161616;
}
.page-packages {
  margin-top: 3rem;
  background-color: #fff;
}
@media (max-width: 500px) {
  .page-packages {
    margin-top: 0rem;
  }
}
.page-packages .packages-section {
  position: relative;
  background-color: #F4F4F4;
}
.page-packages .packages-section .wave {
  bottom: -10rem;
}
.page-packages .packages-section .max-width {
  max-width: 60%;
}
@media (max-width: 1440px) {
  .page-packages .packages-section .max-width {
    max-width: 80%;
  }
}
@media (max-width: 768px) {
  .page-packages .packages-section .max-width {
    max-width: 95%;
  }
}
.page-packages .max-width {
  z-index: 1;
}
.page-packages .banner-section .banner-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-packages.single .single-container {
  padding-top: 5rem !important;
}
@media (max-width: 500px) {
  .page-packages.single .single-container {
    padding-top: 2rem !important;
  }
}
.page-packages.single .single-container .single-title {
  font-size: 2.5rem;
  font-weight: bold;
}
.page-packages.single .single-container .content {
  text-align: justify;
}
.page-packages.single .single-container .content img {
  max-width: 100%;
  width: 100%;
  height: auto;
}
.page-packages.single .single-container .single-content {
  width: 60%;
  margin: auto;
}
@media (max-width: 992px) {
  .page-packages.single .single-container .single-content {
    width: 80%;
  }
}
@media (max-width: 500px) {
  .page-packages.single .single-container .single-content {
    width: 100%;
  }
}
.page-packages.single .single-container .single-content .price {
  font-size: 2rem;
}
.page-packages.single .single-container .single-content .content ul {
  list-style: disc !important;
}
.page-packages.single .single-container ul.offer-details {
  margin-bottom: 2rem;
}
@media (max-width: 500px) {
  .page-packages.single .single-container ul.offer-details {
    flex-wrap: wrap;
  }
}
.page-packages.single .single-container ul.offer-details li {
  justify-content: flex-start;
}
@media (max-width: 500px) {
  .page-packages.single .single-container ul.offer-details li {
    width: calc(100%/2);
    margin-bottom: 10px;
  }
}
.page-packages.single .single-container ul.offer-details li .circle {
  width: 100px;
  height: 100px;
}
.page-packages.single .single-container ul.offer-details li .circle .num {
  font-size: 2rem;
}
.page-packages.single .single-container ul.offer-details li .circle small {
  font-size: 10px;
}
.page-packages.single .form-section .form {
  background-color: #F4F4F4;
  padding: 2rem;
  width: 70%;
}
@media (max-width: 992px) {
  .page-packages.single .form-section .form {
    width: 100%;
  }
}
.page-packages.single .form-section .form input:not([type=submit]), .page-packages.single .form-section .form textarea, .page-packages.single .form-section .form select {
  border: 1px solid #161616;
  background-color: transparent;
  border-radius: 5px;
}
.page-packages.single .form-section .form input:not([type=submit])::placeholder, .page-packages.single .form-section .form textarea::placeholder, .page-packages.single .form-section .form select::placeholder {
  text-transform: inherit;
  letter-spacing: 0;
}
.page-packages.single .form-section .form input[type=submit] {
  padding: 10px 3rem;
  margin-right: auto;
  margin-left: 0;
  background-color: #CC3333;
}
.page-packages .package-about {
  background-color: #F4F4F4;
}
.page-packages .package-about .col-img {
  filter: none !important;
}
.page-packages .package-about .content {
  display: block;
}
.page-packages .package-about .content ul {
  list-style: disc !important;
}
.page-packages .package-about .content a {
  color: #fff;
  font-weight: bold;
  background-color: #CC3333;
  padding: 1rem;
  font-size: 1rem;
  margin-top: 1rem;
  transition: 0.3s;
  display: inline-block;
}
.page-packages .package-about .content a:hover {
  opacity: 0.8;
}
.page-packages .sub_category-section .column .col-content {
  padding: 1rem;
}
.page-packages .sub_category-section .column .col-img {
  min-height: 300px;
  filter: none;
}

.sub_category-section .column {
  position: relative;
  overflow: hidden;
}
@media (max-width: 500px) {
  .sub_category-section .column {
    margin-bottom: 1rem;
  }
}
.sub_category-section .column:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(22, 22, 22, 0.4), rgba(22, 22, 22, 0.8));
  opacity: 0.7;
  transition: 0.3s;
}
.sub_category-section .column .col-img {
  min-height: 250px;
}
.sub_category-section .column .col-content {
  position: absolute;
  color: #fff;
  padding: 0 10px;
  width: 100%;
  height: 100%;
  top: 0;
  display: flex;
  align-items: flex-end;
}
.sub_category-section .column .col-content .subtitle {
  font-size: 1.5rem;
}
.sub_category-section .column:hover:before {
  opacity: 1;
}

.package-each-section h4 {
  font-weight: bold;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #CC3333;
}
.package-each-section:nth-child(2n) {
  background-color: #F4F4F4;
}

.page-faqs .page-title {
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 0;
}
.page-faqs a {
  color: #CC3333;
}
.page-faqs .content {
  font-size: 1.05rem;
}
.page-faqs .form {
  margin: 3rem 0;
}
.page-faqs .form form {
  display: flex;
  align-items: center;
}
@media (max-width: 500px) {
  .page-faqs .form form {
    flex-direction: column;
  }
}
.page-faqs .form form input:not([type=submit]) {
  margin-bottom: 0;
  margin-right: 1rem;
}
@media (max-width: 500px) {
  .page-faqs .form form input:not([type=submit]) {
    margin: 0;
    margin-bottom: 10px;
  }
}
.page-faqs .form form input[type=submit] {
  margin: 0;
  padding: 10px 5rem;
  border-radius: 5px;
}
@media (max-width: 500px) {
  .page-faqs .form form input[type=submit] {
    padding: 10px 0rem;
  }
}
.page-faqs .single-faqs {
  min-height: 500px;
}
.page-faqs .single-faqs .accordion button {
  text-align: left;
  border-top: 1px solid #eee;
  padding: 1rem 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  color: #161616;
  text-decoration: none;
}
.page-faqs .single-faqs .accordion button:last-child {
  border-top: 1px solid #eee;
}
.page-faqs .single-faqs .accordion .question {
  display: block;
  width: 80%;
  white-space: break-spaces;
}
@media (max-width: 500px) {
  .page-faqs .single-faqs .accordion .question {
    width: 90%;
  }
}
.page-faqs .single-faqs .card-body {
  background-color: #eee;
}

.page-casa {
  background-color: #eee;
}
.page-casa .subtitle {
  font-weight: bold;
  transition: 0.3s;
}
.page-casa .banner-section .inside {
  display: flex;
  flex-direction: column;
}
.page-casa .banner-section .inside .banner-title {
  font-size: 6rem;
}
@media (max-width: 500px) {
  .page-casa .banner-section .inside .banner-title {
    font-size: 4rem;
  }
}
.page-casa .banner-section .subtitle {
  color: #fff;
  font-weight: 300;
  font-size: 1.5rem;
}
.page-casa .banner-section .banner-link {
  position: absolute;
  bottom: 5%;
  right: 3%;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.7rem;
  letter-spacing: 1px;
  transition: 0.3s;
}
.page-casa .banner-section .banner-link:hover {
  color: #CC3333;
}
.page-casa .room-content {
  background-color: #fff;
}
.page-casa .room-content .title {
  margin-bottom: 2rem;
}
.page-casa .menu-section {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding: 4rem 0;
}
.page-casa .menu-section:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(22, 22, 22, 0.5);
  top: 0;
  right: 0;
}
.page-casa .menu-section .max-width {
  position: relative;
}
.page-casa .menu-section .subtitle {
  color: #fff;
}
.page-casa .menu-section .button-default {
  text-transform: uppercase;
  min-width: auto;
  padding: 10px;
}
.page-casa .menu-section .content {
  color: #fff;
  font-size: 0.8rem;
  max-width: 50%;
}
.page-casa .form-section {
  background-color: #fff;
  margin: 0;
}
.page-casa .packages-list-section:nth-child(2n) {
  background-color: #eee;
}

.region-content .subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.region-content .column .col-img {
  min-height: 250px;
  transition: 0.3s;
}
@media (max-width: 500px) {
  .region-content .column .col-img {
    min-height: 200px;
  }
}
.region-content .column .col-content {
  padding: 0;
  padding-top: 1rem;
}
.region-content .column:hover .subtitle {
  color: #CC3333;
}
.region-content .column:hover .col-img {
  opacity: 0.9;
}

.single-region .page-title.title-2 {
  text-align: left;
}
.single-region .header .content {
  width: 80%;
  display: block;
}
.single-region .column .subtitle {
  font-size: 1.5rem;
}

.page-error-404.sub_page {
  margin: 0;
}
.page-error-404 .banner-section {
  min-height: 80vh;
  margin-bottom: 0;
}
.page-error-404 .banner-section .banner-container {
  min-height: 80vh;
}
.page-error-404 .banner-section .banner-container:after {
  display: none;
}
.page-error-404 .banner-section .inside {
  text-align: center;
  bottom: auto;
}
.page-error-404 .banner-section .inside .banner-title {
  font-size: 10rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
@media (max-width: 500px) {
  .page-error-404 .banner-section .inside .banner-title {
    font-size: 5rem !important;
  }
}
.page-error-404 .banner-section .inside .descriptions {
  color: #fff;
  font-size: 1.2rem;
  width: 50%;
  font-weight: 300;
  text-align: left;
}
@media (max-width: 768px) {
  .page-error-404 .banner-section .inside .descriptions {
    text-align: center;
  }
}
@media (max-width: 500px) {
  .page-error-404 .banner-section .inside .descriptions {
    width: 90%;
  }
}
.page-error-404 .banner-section .inside .descriptions a {
  color: #fff;
  text-decoration: underline !important;
  outline: none;
}
.page-error-404 .addtoany_content {
  display: none;
}