@charset "UTF-8";
:root {
  --body-size: 14px;
  --error: #df2226;
}
::-moz-selection {
  text-shadow: none;
  color: var(--default);
  /*background: var(--primary);*/
  background: var(--default-yellow);

}
::selection {
  text-shadow: none;
  color: var(--default);
  /*background: var(--primary);*/
  background: var(--default-yellow);
}
* {
  list-style: none;
  outline: none !important;
}
html,
body {
  overflow-x: hidden;
}
body {
  color: var(--default-black);
  font-size: var(--body-size);
  line-height: 1.25;
  font-weight: 400;
  font-family: var(--font-family);
  position: relative;
}

body:not(.loaded)  {
  visibility: hidden;
  /*display:none;*/
  /*opacity:0;*/
}
body.loaded  {
  /*display:block;*/
  visibility: visible;
  /*opacity:1;*/
}



ul,
p {
  margin: 0;
  padding: 0;
}
iframe {
  width: 100%;
  height: 347px;
  border: 0;
  overflow: hidden;
}
.btn,
.btn:hover,
.btn:focus,
.btn:active {
  box-shadow: none;
  outline: none;
  border-radius: 25px;
  border-width: 2px;
}
img {
  max-width: 100%;
  height: auto;
}
a,
a:hover {
  color: inherit;
  text-decoration: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-top: 0;
  padding: 0;
}
p {
  margin-bottom: 1em;
}
p:last-child {
  margin-bottom: 0;
}
.grecaptcha-badge {
  display: none;
}
.text-email {
  height: 1em;
  vertical-align: -0.2em;
}
blockquote {
  padding: 40px;
  background-color: #ffffff;
  border-left: 2px solid #ff7171;
  position: relative;
  z-index: 9;
}
blockquote:before {
  content: "“";
  position: absolute;
  top: -7px;
  left: 25px;
  font-size: 120px;
  color: #7f7f7f;
  z-index: -1;
  opacity: 0.1;
}
blockquote p {
  line-height: 1.3;
  font-style: italic;
  color: #232323;
  font-size: 26px;
  margin-bottom: 10px;
  z-index: 9;
}
blockquote cite {
  font-size: 16px;
  font-style: normal;
  color: #7f7f7f;
}
.font-noto {
  font-family: 'Noto Serif Display', serif;
}
.font-nexa-heavy {
  font-family: 'Nexa Heavy', sans-serif;
  /*url("https://fonts.googleapis.com/css?family=Roboto:400,300,500,700,900");*/
}
.loader {
  position: relative;
  pointer-events: none;
}
.loader:before,
.loader:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
}
.btn.loader:before,
.btn.loader:after {
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
}
.btn.btn-b-width-2.loader:before,
.btn.btn-b-width-2.loader:after {
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
}
.input-group-append .btn.loader::before,
.input-group-append .btn.loader::after {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.loader:before {
  content: "";
  background-color: rgba(255,255,255,0.7);
}
.loader:after {
  content: "";
  -webkit-animation:la-spin 2s infinite linear;
  animation:la-spin 2s infinite linear;
  color: var(--primary);
  width: 30px;
  height: 30px;
  margin: auto;
  /*background-image: url('/public/images/loader.svg');*/
  background-image: url('/public/images/loader-icon.gif');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
body.loader:before,
body.loader:after {
  position: fixed;
  z-index: 1000;
}
.circle-text-wrap {
  position: relative;
  width: 230px;
  height: 230px;
  -webkit-animation: la-spin 20s infinite linear;
  animation: la-spin 20s infinite linear;
  overflow: hidden;
}
.circle-text {
  position: absolute;
  width: 230px;
  height: 230px;
  top: 0;
  left: 0;
  border-radius: 50%;
  transform: rotate(-50deg) translate(50%,0);
  color: var(--primary);
  font-weight: 700;
  white-space: nowrap;
}
.circle-text span {
  height: 115px;
  position: absolute;
  left: -1px;
  top: 0;
  transform-origin: bottom center;
  transform: rotate(8.6deg);
  width: 1em;
  text-align: center;
}
.circle-text-wrap.default .circle-text {
  color: var(--default);
}
.arrow-text {
  height: 0;
  display: inline-block;
  border-top: 0.35em solid transparent;
  border-bottom: 0.35em solid transparent;
}
.arrow-text.left {
  border-right: 0.35em solid;
}
.arrow-text.right {
  border-left: 0.35em solid;
}
/*Forms*/
/*.form-control {*/
/*  box-shadow: none;*/
/*  outline: none;*/
/*  border: 0px;*/
/*  border-radius: 0px;*/
/*  height: 52px;*/
/*  padding: 0px 20px;*/
/*}*/
.form-control:hover,
.form-control:focus,
.form-control:active {
  box-shadow: none;
  outline: none;
}
textarea {
  resize: none;
}
textarea.form-control {
  height: 250px;
}
::-webkit-input-placeholder {
  color: var(--default) !important;
  opacity: 1 !important;
}
::-moz-placeholder {
  color: var(--default) !important;
  opacity: 1 !important;
}
:-ms-input-placeholder {
  color: var(--default) !important;
  opacity: 1 !important;
}
::placeholder {
  color: var(--default) !important;
  opacity: 1 !important;
}
.line-control .form-control {
  padding: 5px 0;
  height: auto;
  border-bottom: 2px solid var(--default-20);
  letter-spacing: 0.05em;
}
.form-control-with-label .form-control {
  padding: 20px 10px 3px;
}
.form-control-with-label.line-2 .form-control {
  padding: 45px 10px 3px;
}
.form-control-with-label.line-control .form-control {
  padding: 20px 0 3px;
}
.form-control-with-label.line-control.line-2 .form-control {
  padding: 45px 0 3px;
}
.form-control-with-label label {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 3px 10px;
  font-size: 1em;
  color: var(--default);
  margin: 0;
  pointer-events: none;
  z-index: 2;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  min-height: 23px;
}
.form-control-with-label.line-control label {
  padding: 3px 0;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.form-control-with-label label span {
  display: block;
}
.form-control-with-label {
  position: relative;
}
.form-control-with-label.focused label,
.form-control-with-label.always-focused label {
  opacity: 0.5;
  font-size: 12px;
}
.form-control-with-label:not(.always-focused):not(.focused) label {
  min-height: 100%;
  padding: 15px 0 3px;
}
.form-control-with-label.textarea-label:not(.always-focused):not(.focused) label {
  min-height: 50px;
}
.form-control-with-label .bootstrap-select > .dropdown-toggle::after {
  margin-top: -15px;
}
.input-group .form-control-with-label:first-child .form-control {
  border-right: 0;
}
.form-control-with-label.line-control .form-control {
  background-color: transparent;
}
.form-control-with-label.line-control textarea.form-control {
  height: 160px;
}


.form-control.is-invalid,
.was-validated .form-control:invalid,
.form-control-with-label.is-invalid .form-control,
.form-radio-group.is-invalid  {
  background-image: none;
  border-color: rgba(223,34,38,0.2);
  color: var(--error);
}


.form-control.is-invalid:focus,
.was-validated .form-control:invalid:focus,
.form-control-with-label.is-invalid .form-control:focus,
.form-radio-group.is-invalid:focus {
  border-color:  #495057;
  color: inherit;
  box-shadow: none; /* optional: remove red shadow */
}





.form-control-with-label.is-invalid label,
.form-radio-group.is-invalid .form-radio-group-label {
  color: var(--error);
}
.form-control.is-invalid:focus,
.was-validated .form-control:invalid:focus {
  box-shadow: none;
}
.form-radio-group {
  border-bottom: 2px solid var(--default-20);
}
.form-radio-group-label {
  font-size: 1em;
  font-weight: 700;
  margin-bottom: 10px;
}
.sk-checkbox,
.sk-radio {
  padding-left: 0;
  font-size: inherit;
}
.sk-checkbox .sk-square-check,
.sk-checkbox .sk-rounded-check,
.sk-radio .sk-square-check,
.sk-radio .sk-rounded-check {
  position: relative;
  display: inline-block;
  top: 0;
  margin-right: 0.15em;
}
.sk-square-check,
.sk-rounded-check {
  border: 2px solid var(--default-20);
  height: 1.2em;
  width: 1.2em;
}
.sk-square-check {
  border-radius: 0;
  height: 1.4em;
  width: 1.4em;
  vertical-align: text-top;
}
.sk-square-check::after {
  margin-left: -0.3em;
  margin-top: -0.7em;
  width: 0.6em;
  height: 1.2em;
}
.sk-square-check::after {
  border: solid var(--secondary);
}
.sk-rounded-check::after {
  margin-left: 0;
  margin-top: 0;
  width: auto;
  height: auto;
  border-radius: 50%;
  left: 2px;
  bottom: 2px;
  right: 2px;
  top: 2px;
  background-color: var(--default);
}
.sk-square-check.square::after {
  width: auto;
  height: auto;
  border: 0;
  -webkit-transform: none;
  transform: none;
  background-color: var(--default);
  left: 2px;
  bottom: 2px;
  right: 2px;
  top: 2px;
  margin: auto;
}
.sk-checkbox > input:checked ~ .sk-rounded-check,
.sk-radio > input:checked ~ .sk-rounded-check {
  border-color: var(--default);
}
.sk-checkbox > input:checked ~ .sk-square-check.square,
.sk-radio > input:checked ~ .sk-square-check.square {
  border-color: var(--default);
}
/*Carousel*/
.swiper.with-pseudos {
  overflow: visible;
}
.swiper.with-pseudos::before,
.swiper.with-pseudos::after {
  content: "";
  position: absolute;
  top: -2px;
  bottom: -2px;
  width: 10000px;
  background-color: var(--white);
  z-index: 2;
}
.swiper.with-pseudos::before {
  left: -10000px;
}
.swiper.with-pseudos::after {
  right: -10000px;
}
.slick-track {
  margin: 0;
}
.swiper-slide.auto {
  width: auto;
}
.swiper-vertical .swiper-slide.auto {
  width: 100%;
  height: auto;
}
.swiper-scrollbar {
  z-index: 1;
  cursor: pointer;
}
.swiper-scrollbar::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -5px;
  bottom: -5px;
  z-index: -1;
}
.swiper-scrollbar-drag {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/*Header*/
header {
  position: relative;
  z-index: 10;
}
header .logo img {
  height: 85px;
}
.header .logo .white {
  display: none;
}
.megamenu-toggle {
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.megamenu-icon .line {
  border-top: 2px solid;
  width: 53px;
  margin: 6px 0 6px auto;
  position: relative;
}
.megamenu-icon .line:nth-child(1) {
  margin-top: 0;
}
.megamenu-icon .line:nth-child(3) {
  width: 40px;
}
.megamenu-icon .line:nth-child(4) {
  width: 27px;
  margin-bottom: 0;
}
/*.megamenu-toggle.open .megamenu-icon .line:nth-child(2),*/
.megamenu-toggle.open .megamenu-icon .line:nth-child(3),
/*.megamenu-toggle.always-open .megamenu-icon .line:nth-child(2),*/
.megamenu-toggle.always-open .megamenu-icon .line:nth-child(3) {
  opacity: 0;
}


.megamenu-toggle .megamenu-icon .line {
  transition: transform 0.2s ease-in-out, top 0.2s ease-in-out, left 0.2s ease-in-out, width 0.2s ease-in-out;
}

.megamenu-toggle.open .megamenu-icon .line:nth-child(1),
.megamenu-toggle.always-open .megamenu-icon .line:nth-child(1) {
  -webkit-transform: rotate(-45deg) translate(-5px, 0px);
  -moz-transform: rotate(-45deg) translate(-5px, 0px);
  -ms-transform: rotate(-45deg) translate(-5px, 0px);
  -o-transform: rotate(-45deg) translate(-5px, 0px);
  transform: rotate(-45deg) translate(-5px, 0px);
  top: 8px;
  left: -5px;
  width: 35px;
}


.megamenu-toggle.open .megamenu-icon .line:nth-child(2),
.megamenu-toggle.always-open .megamenu-icon .line:nth-child(2) {
  -webkit-transform: rotate(45deg) translate(-4px, 2px);
  -moz-transform: rotate(45deg) translate(-4px, 2px);
  -ms-transform: rotate(45deg) translate(-4px, 2px);
  -o-transform: rotate(45deg) translate(-4px, 2px);
  transform: rotate(45deg) translate(-4px, 2px);
  top: 3px;
  left: -5px;
  width: 35px;
}

.megamenu-toggle.open .megamenu-icon .line:nth-child(4),
.megamenu-toggle.always-open .megamenu-icon .line:nth-child(4) {
  -webkit-transform: rotate(45deg) translate(-4px, 2px);
  -moz-transform: rotate(45deg) translate(-4px, 2px);
  -ms-transform: rotate(45deg) translate(-4px, 2px);
  -o-transform: rotate(45deg) translate(-4px, 2px);
  transform: rotate(45deg) translate(-4px, 2px);
  top: -11px;
  left: -5px;
  width: 35px;
}






.megamenu-toggle:hover {
  color: var(--primary);
}
.header-languages {
  position: relative;
}
.header-languages-toggle {
  border: 1px solid var(--default-30);
  line-height: 1;
  padding: 2px 5px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header-languages-toggle .arrow {
  display: inline-block;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid var(--default-30);
  vertical-align: middle;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header-languages:hover .header-languages-toggle,
.header-languages.active .header-languages-toggle {
  background-color: var(--default) !important;
  border-color: var(--default) !important;
  color: white !important;
}
.header-languages:hover .header-languages-toggle .arrow,
.header-languages.active .header-languages-toggle .arrow  {
  border-top-color: white;
}
.header-languages-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--default);
  text-align: center;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: white;
  border-top: 1px solid;
}
.header-languages.active .header-languages-dropdown {
  opacity: 1;
  pointer-events: all;
}
.header-languages-dropdown .item {
  border-bottom: 1px solid;
  display: block;
  padding: 2px 4px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header-languages-dropdown .item:not(.active) {
  cursor: pointer;
}
.header-languages-dropdown .item:not(.active):hover {
  background-color: var(--primary)
}
body.white-header .header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  color: white;
}
body.white-header .header .logo .black {
  display: none;
}
body.white-header .header .logo .white {
  display: block;
}
body.white-header .header .megamenu-toggle:hover {
  color: var(--default);
}
body.white-header .header .header-languages-toggle {
  border-color: rgba(255,255,255,0.8);
  color: rgba(255,255,255,0.8);
}
body.white-header .header .header-languages-toggle .arrow {
  border-top: 4px solid;
}
/*Fixed Header*/
.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  -ms-transform: translateY(calc(-100% - 30px));
  transform: translateY(calc(-100% - 30px));
  opacity: 0;
  -webkit-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  pointer-events: none;
  z-index: 1001;
  -webkit-box-shadow: 0 0 18px 0 rgba(35,31,32,0.35);
  -moz-box-shadow: 0 0 18px 0 rgba(35,31,32,0.35);
  box-shadow: 0 0 18px 0 rgba(35,31,32,0.35);
  /*background-color: white;*/
  background-color: rgba(0, 0, 0, 0.6);
}
.fixed-header.header-down {
  pointer-events: all;
  opacity: 1;
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.fixed-header .logo img {
  height: 35px;
}
/*Homepage Slider*/
#homepage-slider {
  position: relative;
}
.homepage-slider-image {
  padding-top: 87%;
  position: relative;
}
.homepage-slider-over {
  /*background-color: rgba(37,33,88,0.25);*/
  background-color: rgba(0, 0, 0, 0.55);
  color: white;
}
.owl-carousel.homepage-slider-carousel .owl-nav button {
  width: 110px;
  height: 110px;
  border: 1px solid;
  border-radius: 50%;
  position: absolute;
  top: 125px;
  bottom: 50px;
  margin: auto;
  color: rgba(255,255,255,0.35);
  z-index: 1;
  font-size: 20px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.owl-carousel.homepage-slider-carousel .owl-nav .owl-prev {
  left: 0;
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 15px;
  color: rgba(255,255,255,0.2);
}
.owl-carousel.homepage-slider-carousel .owl-nav .owl-next {
  right: 40px;
}
.owl-carousel.homepage-slider-carousel .owl-nav button:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-top: 1px solid;
  border-right: 1px solid;
  width: 1em;
  height: 1em;
}
.owl-carousel.homepage-slider-carousel .owl-nav button.owl-prev:after {
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
  right: -45%;
}
.owl-carousel.homepage-slider-carousel .owl-nav button.owl-next:after {
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  left: -0.5em;
}
.owl-carousel.homepage-slider-carousel .owl-nav button span {
  display: none;
}
.owl-carousel.homepage-slider-carousel .owl-nav button:hover {
  border-color: transparent;
  background-color: rgba(255,255,255,0.4);
  color: var(--default);
}
.homepage-slider-number {
  position: relative;
  line-height: 1;
  white-space: nowrap;
  display: inline-block;
}
.homepage-slider-number .item {
  display: flex;
  align-items: center;
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.homepage-slider-number .item:not(:first-child) {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}
.homepage-slider-number .item.active {
  opacity: 1;
}
.homepage-slider-bottom {
  position: absolute;
  bottom: 25px;
  left: 0;
  right: 0;
  z-index: 1;
  color: white;
}
.homepage-slider-scroll {
  background-color: rgba(255,255,255,0.3);
  height: 2px;
  margin-bottom: 10px;
  position: relative;
}
.homepage-slider-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background-color: white;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
/*Important Links*/
.important-link-wrap {
  min-height: 95px;
  height: 100%;
  text-align: center;
  background-color: var(--default-10);
  padding: 10px 5px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.important-link-item:nth-child(2) .important-link-wrap {
  background-color: var(--default-05);
}
.important-link-item:nth-child(3) .important-link-wrap {
  background-color: var(--default-07);
}
.important-link-item:nth-child(4) .important-link-wrap {
  background-color: var(--default-12);
}
.important-link-item:nth-child(5) .important-link-wrap {
  background-color: var(--default-09);
}
.important-link-item:nth-child(6) .important-link-wrap {
  background-color: var(--default-03);
}
.important-link-wrap:hover {
  background-color: var(--default-15) !important;
}
.important-link-image {
  height: 40px;
  margin-bottom: 15px;
}
.important-link-title {
  font-style: italic;
  letter-spacing: 0.05em;
}
/*Top Attractions*/
#top-attractions {
  position: relative;
}
.top-attractions-set:not(.active),
.top-attractions-button:not(.active) {
  display: none;
}
.top-attractions-car-image {
  position: relative;
  padding-top: 65%;
}
.top-attractions-car-image::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(to right, rgba(0,0,0,0) 0%,rgba(0,0,0,0.7) 100%);
  width: 85px;
  z-index: 1;
  pointer-events: none;
}
.top-attractions-car-over {
  color: white;
  z-index: 2;
}
.top-attractions-car-over::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.7) 100%);
  height: 200px;
  z-index: -1;
}
.owl-carousel.top-attractions-carousel .owl-nav button {
  width: 35px;
  height: 35px;
  border: 1px solid;
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  color: white;
  z-index: 1;
  font-size: 10px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.owl-carousel.top-attractions-carousel .owl-nav .owl-prev {
  left: 0;
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.owl-carousel.top-attractions-carousel .owl-nav .owl-next {
  right: 15px;
}
.owl-carousel.top-attractions-carousel .owl-nav button:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-top: 1px solid;
  border-right: 1px solid;
  width: 1em;
  height: 1em;
}
.owl-carousel.top-attractions-carousel .owl-nav button.owl-prev:after {
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
  right: -45%;
}
.owl-carousel.top-attractions-carousel .owl-nav button.owl-next:after {
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  left: -0.5em;
}
.owl-carousel.top-attractions-carousel .owl-nav button span {
  display: none;
}
.owl-carousel.top-attractions-carousel .owl-nav button:hover {
  border-color: transparent;
  background-color: rgba(255,255,255,0.4);
  color: var(--default);
}
.top-attractions-tab-item:not(:last-child) {
  margin-bottom: 10px;
}
.top-attractions-tab {
  pointer-events: auto;
  text-align: center;
}
.top-attractions-tab-wrap {
  position: relative;
  padding-top: 50%;
  background-color: rgba(37,33,88,0.1);
  border-radius: 20px;
  color: var(--default-40);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  font-style: italic;
  letter-spacing: 0.05em;
  cursor: pointer;
}
.top-attractions-tab-over {
  padding: 5px;
}
.top-attractions-tab-icon {
  height: 25px;
  margin-bottom: 5px;
  fill: var(--default-40);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.top-attractions-tab:hover .top-attractions-tab-wrap,
.top-attractions-tab.active .top-attractions-tab-wrap {
  background-color: var(--primary);
  color: white;
}
.top-attractions-tab:hover .top-attractions-tab-icon,
.top-attractions-tab.active .top-attractions-tab-icon {
  fill: white;
}
/*Featured Articles*/
.homepage-feature-article-title {
  height: 2.5em;
}
.homepage-feature-article-arrow {
  width: 21px;
  height: 21px;
  border: 2px solid;
  border-radius: 50%;
  position: relative;
  font-size: 7px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  margin-bottom: 5px;
}
.homepage-feature-article-arrow::after {
  content: "";
  border-top: 2px solid;
  border-right: 2px solid;
  width: 1em;
  height: 1em;
  position: relative;
  left: -0.25em;
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  display: block;
}
.homepage-feature-article-date {
  border-top: 2px solid var(--primary);
  margin-top: 5px;
  padding-top: 5px;
  position: relative;
}
.homepage-feature-article-date::before {
  content: "";
  pointer-events: none;
  position: absolute;
  height: 6px;
  left: 0;
  top: -4px;
  right: 0;
  background-color: var(--primary);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -ms-transform: scaleY(0);
  transform: scaleY(0);
}
.homepage-feature-article-wrap:hover .homepage-feature-article-arrow {
  background-color: var(--default);
  border-color: var(--default);
  color: white;
}
.homepage-feature-article-wrap:hover .homepage-feature-article-date::before {
  -ms-transform: scaleY(1);
  transform: scaleY(1);
}
.homepage-feature-articles-swiper::before {
  display: none;
}
.homepage-feature-articles-swiper.with-pseudos::after {
  width: 100px;
  right: var(--min-grid);
  background: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
  pointer-events: none;
}
.homepage-feature-articles-swiper .swiper-scrollbar {
  z-index: 3;
}
.homepage-feature-articles-swiper .swiper-scrollbar-drag {
  height: 4px;
}
.homepage-feature-articles-swiper .swiper-scrollbar .swiper-scrollbar-drag:hover {
  height: 6px;
  top: -2px;
}
/*Featured Projects*/
#featured-projects {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
#featured-projects:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background-color: var(--primary-10);
  height: 260vw;
  z-index: -1;
  max-height: 80%;
}
.featured-projects-tab {
  font-weight: 700;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 4px 7px;
  border-radius: 25px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer;
}
.featured-projects-tab:hover,
.featured-projects-tab.active {
  background-color: var(--primary);
  color: white;
}
.featured-projects-dropdown:not(.active) {
  display: none;
}
.featured-projects-wrap > * {
  margin: 10px 0;
}
.featured-projects-wrap > *:first-child {
  margin-top: 0;
}
.featured-projects-wrap > *:last-child {
  margin-bottom: 0;
}
.featured-projects-image {
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}
.featured-projects-image img {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.featured-projects-item.left .featured-projects-image {
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
}
.featured-projects-item.right .featured-projects-image {
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
}
.featured-projects-title {
  font-size: 20px;
  font-weight: 500;
  font-style: italic;
  font-family: 'Noto Serif Display', serif;
}
.featured-projects-desc {
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--default-50);
}
.featured-projects-item:hover .featured-projects-image img {
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
/*Page Header Section*/
.page-header-section {
  margin-top: 50px;
}
.page-header-border {
  padding-bottom: 50px;
  border-bottom: 2px solid var(--default-20);
}
.page-header-image {
  overflow: hidden;
  padding-top: 100%;
  position: relative;
  border-radius: 50%;
}
.page-header-paragraph b {
  color: var(--default);
}
/*Layout - Community Leader*/
.community-leader-text .circle-text-wrap {
  position: absolute;
  top: -272px;
  left: -190px;
}
.community-leader-text .circle-text {
  color: var(--default);
}
.community-leader-image {
  position: relative;
  padding-top: 50%;
}
/*Community Members*/
.community-member-res-image {
  position: relative;
  padding-top: 114%;
  overflow: hidden;
}
.community-member-res-item:nth-child(2n+1) .community-member-res-image {
  border-top-right-radius: 50%;
  border-top-left-radius: 50%;
}
.community-member-res-item:nth-child(2n+2) .community-member-res-image {
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
}
/*360 - Video*/
.attraction-publish-action-button {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.attraction-publish-action-button > img {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.attraction-publish-action-over {
  position: relative;
  padding: 2px;
  background-color: var(--primary-80);
  color: var(--white);
  text-align: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  min-height: 32vw;
}
.attraction-publish-action-over .icon {
  margin-bottom: 20px;
}
.attraction-publish-action-over .icon svg {
  height: 50px;
  fill: var(--white);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.attraction-publish-action-button:hover > img {
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
/*360 - Video Pop Up*/
.tour-popup {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1091;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background-color: rgba(255,255,255,0.8);
}
.tour-popup.active {
  pointer-events: all;
  opacity: 1;
}
.tour-popup-container {
  background-color: var(--white);
  border-radius: 20px;
  overflow: hidden;
  margin: 25px;
  height: calc(100svh - 50px);
}
.tour-popup iframe {
  width: 100%;
  height: 100%;
}
#tour-360-popup iframe:not(.active) {
  display: none;
}
.tour-popup-close {
  width: 35px;
  height: 35px;
  background-color: var(--white);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.35);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.35);
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.35);
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 31px;
  font-weight: 100;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.tour-popup-close::after {
  content: "+";
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.tour-popup-close:hover {
  background-color: var(--default);
  color: var(--white);
}
/*Contact*/
.contact-header {
  position: relative;
}
.contact-header-image {
  position: relative;
  padding-top: 155%;
}
.contact-header-image::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 150px;
  background: linear-gradient(to bottom, rgba(37,33,88,0.7) 0%,rgba(37,33,88,0) 100%);
}
.contact-header-over {
  background-color: var(--default-25);
  color: white;
  padding-top: 130px;
}
.contact-page-info {
  background-color: #f4f0ea;
  overflow: hidden;
}
.contact-page-info p:not(:last-child) {
  margin-bottom: 1em;
}
.contact-page-info .loader:before {
  background-color: rgba(244,240,234,0.7);
}
.contact-map {
  filter: sepia(0.4) grayscale(0.4) hue-rotate(340deg);
  height: 100%;
  position: relative;
  min-height: 335px;
}
.contact-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.my-contact-form .text-danger {
  font-size: 12px;
  position: relative;
  top: 2px;
  color: var(--error) !important;
}
/*Footer Banners*/
.footer-banner-res-image {
  padding-top: 83%;
  position: relative;
  overflow: hidden;
}
.footer-banner-res-image img {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.footer-banner-res-title {
  font-size: 14px;
  font-weight: 700;
  overflow-wrap: break-word;
}
.footer-banner-res-item:nth-child(2n+1) .footer-banner-res-image {
  border-top-left-radius: 200px;
  border-top-right-radius: 200px;
  margin-bottom: 10px;
}
.footer-banner-res-item:nth-child(2n+2) .footer-banner-res-image {
  border-bottom-left-radius: 200px;
  border-bottom-right-radius: 200px;
  margin-top: 10px;
  -ms-flex-order: 2;
  order: 2;
}
.footer-banner-res-item:nth-child(2n+2) .footer-banner-res-title {
  -ms-flex-order: 1;
  order: 1;
}
.footer-banner-res-wrap:hover .footer-banner-res-image img {
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
/*Footer Important Links*/
#footer-important-links .important-link-wrap {
  min-height: 90px;
}
#footer-important-links .important-link-image {
  height: 40px;
  margin-bottom: 10px;
}
.community-leader-image {
  position: relative;
  padding-top: 66%;
  overflow: hidden;
}
.community-leader-image.left {
  padding-top: 97.3033%;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
}
/*Footer*/
footer {
  overflow: hidden;
}
footer img {
  height: 105px;
}
.footer-top {
  background-color: #292a67;
  border-bottom-right-radius: 40px;
}
.footer-social a {
  width: 25px;
  height: 25px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default);
  border-radius: 50%;
  font-size: 17px;
  line-height: 1;
}
.footer-social a:hover {
  background-color: var(--primary);
  color: white;
}
.footer-right {
  border-top-left-radius: 40px;
}
.footer-menu li:not(:last-child) {
  margin-bottom: 5px;
}
footer a:hover {
  color: var(--default-yellow);
}

footer a:hover .footer-contact-icon{
  /*color: var(--default-yellow);*/
  filter: brightness(0) saturate(100%) invert(80%) sepia(35%) saturate(5889%) hue-rotate(3deg) brightness(110%) contrast(100%);
}




/*Responsive - Mobile First*/
/* sm */
@media (min-width: 576px) {
  /*Modal*/
  .modal-dialog-bottom {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - 3.5rem);
  }
  .modal-dialog-bottom .modal-content {
    border-radius: 40px;
  }
  /*Homepage Slider*/
  .homepage-slider-image {
    padding-top: 80%;
  }
  /*Top Attractions*/
  .top-attractions-tab-item:not(:last-child) {
    margin-bottom: 20px;
  }
  .top-attractions-tab-icon {
    height: 40px;
    margin-bottom: 10px;
  }
  /*Contact*/
  .contact-header-image {
    padding-top: 100%;
  }
}
/* md */
@media (min-width: 768px) {
  /*All*/
  :root {
    --body-size: 16px;
  }
  /*Header*/
  header .logo img {
    height: 135px;
  }
  /*Forms*/
  .form-control-with-label.line-control textarea.form-control {
    height: 205px;
  }
  /*Fixed Header*/
  .fixed-header .logo img {
    height: 50px;
  }
  /*Homepage Slider*/
  .homepage-slider-image {
    padding-top: 65%;
  }
  .owl-carousel.homepage-slider-carousel .owl-nav button {
    top: 200px;
    bottom: 70px;
  }
  /*Important Links*/
  .important-link-wrap {
    min-height: 180px;
  }
  .important-link-image {
    height: 55px;
    margin-bottom: 20px;
  }
  /*Top Attractions*/
  .owl-carousel.top-attractions-carousel .owl-nav button {
    width: 100px;
    height: 100px;
    border-width: 2px;
    font-size: 20px;
  }
  .owl-carousel.top-attractions-carousel .owl-nav button:after {
    border-top-width: 2px;
    border-right-width: 2px;
  }
  /*Featured Articles*/
  .homepage-feature-article-arrow {
    width: 25px;
    height: 25px;
  }
  /*Featured Projects*/
  #featured-projects:before {
    height: 50vw;
  }
  .featured-projects-tab {
    padding: 8px 15px;
  }
  .featured-projects-item.left {
    margin-top: -45px;
  }
  .featured-projects-title {
    font-size: 30px;
  }
  .featured-projects-desc {
    font-size: 20px;
  }
  /*360 - Video*/
  .attraction-publish-action-over {
    min-height: 28vw;
  }
  .attraction-publish-action-over .icon svg {
    height: 75px;
  }
  /*Contact*/
  .contact-header-image {
    padding-top: 75%;
  }
  .contact-header-image::after {
    height: 250px;
  }
  .contact-header-over {
    padding-top: 250px;
  }
  /*Footer Banners*/
  .footer-banner-res-title {
    font-size: 17px;
  }
  /*Footer Important Links*/
  #footer-important-links .important-link-wrap {
    min-height: 125px;
  }
  #footer-important-links .important-link-image {
    height: 50px;
    margin-bottom: 15px;
  }
  /*Footer*/
  .footer-top {
    border-bottom-right-radius: 75px;
  }
  footer img {
    height: 130px;
  }
  .footer-social a {
    width: 45px;
    height: 45px;
    font-size: 30px;
  }
  .footer-right {
    border-top-left-radius: 75px;
  }
  .footer-menu li:not(:last-child) {
    margin-bottom: 15px;
  }
}
/* lg */
@media (min-width: 992px) {

  .homepage-slider-image {
    padding-top: 50%;
  }



  /*All*/
  .circle-text-wrap {
    width: 275px;
    height: 275px;
  }
  .circle-text {
    width: 275px;
    height: 275px;
  }
  .circle-text span {
    height: 137.5px;
  }
  /*Top Attractions*/
  .top-attractions-tab-wrap {
    background-color: rgba(255, 255, 255, 0.7);
    padding-top: 100%;
  }
  .top-attractions-car-image {
    padding-top: 585px;
  }
  .top-attractions-car-image::after {
    width: 300px;
  }
  .top-attractions-front {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 160px;
    z-index: 3;
    pointer-events: none;
  }
  .top-attractions-tab-icon {
    height: 40px;
    margin-bottom: 10px;
  }
  .owl-carousel.top-attractions-carousel .owl-nav .owl-next {
    right: 200px;
  }
  /*Featured Articles*/
  .homepage-feature-articles-swiper.with-pseudos::after {
    width: 250px;
  }
  /*Featured Projects*/
  .featured-projects-item.left {
    margin-top: -125px;
  }
  /*Page Header Section*/
  .page-header-border {
    padding-bottom: 80px;
  }
  /*Contact*/
  .contact-map {
    min-height: 47vw;
  }
  .my-contact-form .text-danger {
    text-align: right;
  }
  .contact-page-info p:not(:last-child) {
    margin-bottom: 1.7em;
  }
  /*Footer Banners*/
  .footer-banner-res-item:nth-child(2n+2) {
    margin-top: 30px;
  }
  /*Footer*/
  .footer-right {
    border-top: 10px solid var(--default);
    border-left: 10px solid var(--default);
  }
}
/* xl */
@media (min-width: 1200px) {
  /*All*/
  :root {
    --body-size: 18px;
  }
  /*Header*/
  header .logo img {
    height: 165px;
  }
  /*Fixed Header*/
  .fixed-header .logo img {
    height: 70px;
  }
  /*Homepage Slider*/
  .homepage-slider-image {
    /*padding-top: 50%;*/
    padding-top: 40.85%;
  }
  .owl-carousel.homepage-slider-carousel .owl-nav button {
    width: 210px;
    height: 210px;
    font-size: 40px;
  }
  .owl-carousel.homepage-slider-carousel .owl-nav .owl-prev {
    font-size: 20px;
  }
  .homepage-slider-bottom {
    bottom: 54px;
  }
  /*Important Links*/
  .important-link-image {
    height: 70px;
  }
  /*Top Attractions*/
  .owl-carousel.top-attractions-carousel .owl-nav button {
    width: 210px;
    height: 210px;
    font-size: 40px;
  }
  /*Featured Projects*/
  .featured-projects-title {
    font-size: 40px;
  }
  .featured-projects-desc {
    font-size: 26px;
  }
  /*Page Header Section*/
  .page-header-border {
    padding-bottom: 100px;
  }
  /*Layout - Community Leader*/
  .community-leader-text .circle-text-wrap {
    left: -125px;
  }
  /*Contact*/
  .contact-header-image {
    padding-top: 50%;
  }
}
/* xxl */
@media (min-width: 1500px) {
  /*Header*/
  header .logo img {
    height: 195px;
  }
  /*Forms*/
  .form-control-with-label.line-control textarea.form-control {
    height: 250px;
  }
  /*Homepage Slider*/
  .owl-carousel.homepage-slider-carousel .owl-nav button {
    top: 225px;
  }
  /*Important Links*/
  .important-link-wrap {
    min-height: 275px;
  }
  /*Top Attractions*/
  .top-attractions-car-image {
    padding-top: 840px;
  }
  .top-attractions-car-image::after {
    width: 450px;
  }
  .top-attractions-front {
    width: 240px;
  }
  .top-attractions-tab-item:not(:last-child) {
    margin-bottom: 35px;
  }
  .top-attractions-tab-icon {
    height: 70px;
    margin-bottom: 25px;
  }
  .owl-carousel.top-attractions-carousel .owl-nav .owl-next {
    right: 350px;
  }
  /*Layout - Community Leader*/
  .community-leader-text .circle-text-wrap {
    left: 0;
  }
  /*360 - Video*/
  .attraction-publish-action-over {
    min-height: 25vw;
  }
  .attraction-publish-action-over .icon svg {
    height: 100px;
  }
  /*Contact*/
  .contact-header-image::after {
    height: 350px;
  }
  .contact-header-over {
    padding-top: 350px;
  }
  /*Footer Banners*/
  .footer-banner-res-title {
    font-size: 20px;
  }
  /*Footer Important Links*/
  #footer-important-links .important-link-wrap {
    min-height: 140px;
  }
  /*Footer*/
  .footer-top {
    border-bottom-right-radius: 250px;
  }
  footer img {
    height: 160px;
  }
  .footer-right {
    border-top-left-radius: 250px;
  }
}
/* xxxl */
@media (min-width: 1750px) {
  /*Layout - Community Leader*/
  .community-leader-text .circle-text-wrap {
    top: -255px;
  }
}
/*Responsive - Desktop First*/
/* xxl */
@media (max-width: 1749.98px) {

}
/* xl */
@media (max-width: 1499.98px) {

}
/* lg */
@media (max-width: 1199.98px) {
  .footer-column:first-child::before {
    content: '';
    position: absolute;
    top: -16px;
    left: 0;
    margin-left: -20px;
    margin-right: -20px;
    z-index: 1;
    width: 130%;
    border-top: 1px solid rgba(255, 255, 255, 0.7);
  }
  .footer-column {
    position: relative;
  }
}
/* md */
@media (max-width: 991.98px) {
  /*Contact*/
  .contact-page-info-circle {
    position: relative;
    z-index: 1;
  }
  .contact-page-info-circle:before {
    content: "";
    position: absolute;
    left: -1000px;
    right: -1000px;
    top: 0;
    bottom: -1000px;
    background-color: white;
    z-index: -1;
  }
  /*Footer*/
  .footer-column {
    position: relative;
    /*margin-top: 15px;*/
    /*padding-top: 15px;*/
    /*border-top: 1px solid rgba(255,255,255,0.5);*/
  }

  .footer-column:first-child::before {
    content:'';
    position: absolute;
    top:-16px;
    left:0;
    margin-left: -20px;
    margin-right: -20px;
    z-index: 1;
    width: 130%;
    border-top: 1px solid rgba(255,255,255,0.7);
  }
  .footer-column:first-child {
    margin-top: 30px;
  }



}
/* sm */
@media (max-width: 767.98px) {

}
/* xs */
@media (max-width: 575.98px) {
  /*Modal*/
  .modal-dialog-bottom {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: end;
    align-items: end;
    min-height: calc(100% - 50px);
    margin: 50px 0 0;
  }
  .modal-dialog-bottom .modal-content {
    border-radius: 40px 40px 0 0;
  }
  /*Featured Articles*/
  .homepage-feature-articles-swiper .swiper-slide {
    width: auto;
  }
  .homepage-feature-article-item {
    width: 215px;
  }
}

