body {
  background: #F6F6F6;
  font-family: "Open Sans", sans-serif;
}

@media screen and (min-width: 1024px) {
  body {
    margin: 0;
  }
}

.desktop-fixed {
  display: none;
}

@media screen and (min-width: 1024px) {
  .desktop-fixed {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    background: #34B1BF;
    width: 50%;
    height: 100vh;
    position: fixed;
    padding: 0;
    margin: 0;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 2%;
  }
  .desktop-fixed .signup-container {
    color: #fff;
  }
  .desktop-fixed .signup-container h2 {
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-weight: bold;
  }
  .desktop-fixed .signup-container form input {
    height: 57px;
    padding-left: 20px;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    border-radius: 5px;
    border: none;
    margin-right: 10px;
    width: 30%;
  }
  .desktop-fixed .signup-container form .submit-btn {
    width: 170px;
    font-size: 16px;
    font-weight: bold;
    padding: 0;
    vertical-align: middle;
    color: #34B1BF;
    background: #fff;
    width: 20%;
    cursor: pointer;
  }
  .desktop-fixed .form h2 {
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
  }
  .desktop-fixed .form .frm-bldr ul {
    display: flex;
    flex-direction: row;
    list-style: none;
    padding-left: 0;
  }
  .desktop-fixed .form .frm-bldr ul .label-wrapper {
    display: none;
  }
  .desktop-fixed .form .frm-bldr ul input {
    height: 57px;
    border: none;
    border-radius: 5px;
    padding-left: 20px;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    margin-right: 10px;
    width: 90%;
  }
  .desktop-fixed .form .frm-bldr ul label {
    position: absolute;
    width: 100%;
    display: inline-block;
    padding: 0 20px;
    margin-top: 10px;
    padding-right: -41px;
    display: flex;
    flex-direction: row;
    justify-content: start;
    color: #fff;
    font-family: "Poppins", sans-serif;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1450px) {
  .desktop-fixed .form .frm-bldr ul label {
    max-width: 150px;
  }
}

@media screen and (min-width: 1024px) {
  .desktop-fixed .form .frm-bldr ul .btn-submit input {
    color: #34B1BF;
    font-size: 17px;
    background: #fff;
    padding: 0 40px;
  }
  .desktop-fixed form.frm-bldr div.submit-loading {
    background: url(../images/spinner.svg) no-repeat scroll center center;
    width: 100px;
    background-size: 30%;
    height: 100%;
  }
  .desktop-fixed .welcome-container {
    margin-top: 5%;
    float: left;
  }
  .desktop-fixed .welcome-container h2 {
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 33px;
    font-weight: bold;
    width: 80%;
  }
  .desktop-fixed .welcome-container .social-icons {
    margin-top: 10%;
  }
  .desktop-fixed .welcome-container .social-icons i {
    vertical-align: middle;
    font-size: 54px;
  }
  .desktop-fixed .welcome-container .social-icons a {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #fff;
    padding-right: 20px;
  }
  .desktop-fixed .welcome-container .social-icons a, .desktop-fixed .welcome-container .social-icons a:visited, .desktop-fixed .welcome-container .social-icons a:hover, .desktop-fixed .welcome-container .social-icons a:active {
    color: #fff;
    text-decoration: none;
  }
  .desktop-fixed .weather-container {
    display: flex;
    flex-direction: row;
    float: left;
    color: #fff;
    margin-top: 10%;
  }
  .desktop-fixed .weather-container .icon-container {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .desktop-fixed .weather-container .icon-container i {
    vertical-align: middle;
    font-size: 70px;
    padding-right: 20px;
  }
  .desktop-fixed .weather-container .icon-container p:nth-child(2) {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    border-right: 1px solid #fff;
    padding-right: 20px;
  }
  .desktop-fixed .weather-container .icon-container p:nth-child(2) span {
    font-size: 38px;
  }
  .desktop-fixed .weather-container .forcast-container {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding-left: 20px;
  }
  .desktop-fixed .weather-container .forcast-container p {
    margin: 0;
  }
  .desktop-fixed .weather-container .forcast-container .forecast-day {
    padding-right: 10px;
  }
}

@media screen and (min-width: 1024px) {
  .scroll-content {
    width: 50%;
    float: right;
    padding: 0 3%;
    margin-top: 0;
  }
}

@media screen and (max-width: 1024px) {
  .scroll-content {
    margin-top: 30vh;
    transition: 300ms linear;
  }
}

.offers-popup-container {
  animation-name: slide-down;
  animation-duration: 700ms;
  height: 30vh;
  width: 100%;
  margin-left: -8px !important;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  background-color: #34B1BF;
  position: fixed;
  top: 0;
  z-index: 5;
  transition: 300ms linear;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

@media screen and (min-width: 1024px) {
  .offers-popup-container {
    display: none;
  }
}

@keyframes slide-down {
  from {
    transform: translate3d(0, -35vh, 0);
  }
  to {
    transform: translate3d(0);
  }
}

.offers-popup-container h2 {
  font-weight: bold;
  font-size: 20px;
}

.offers-popup-container p {
  font-size: 14px;
}

.offers-popup-container a {
  background: #fff;
  color: #34B1BF;
  text-align: center;
  border-radius: 5px;
  height: 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.offers-popup-container a, .offers-popup-container a:visited, .offers-popup-container a:hover, .offers-popup-container a:active {
  color: #34B1BF;
  text-decoration: none;
}

.offers-popup-container .close {
  position: absolute;
  top: 5%;
  right: 5%;
}

.na-logo {
  text-align: center;
  height: 128px;
  margin-bottom: 20px;
}

.na-logo a {
  text-decoration: none;
}

.na-logo a img {
  padding-top: 20px;
  width: 250px;
}

.weather-social {
  border: 1px solid #ECE8E8;
  border-radius: 5px;
  height: 80px;
}

.weather-social i {
  color: #34B1BF;
}

.weather-social .item {
  width: 50%;
}

.weather-social .item:nth-child(1) {
  border-right: 1px solid #ECE8E8;
}

.weather-social .weather {
  display: flex;
  align-items: center;
  max-height: 80px;
  margin-top: 10px;
  text-align: center;
}

.weather-social .weather i {
  font-size: 41px;
  width: 50%;
}

.weather-social .weather .print {
  width: 50%;
}

.weather-social .weather .print .day {
  font-size: 8px;
  text-align: left;
}

.weather-social .weather .print strong {
  font-size: 22px;
}

.weather-social .social {
  padding-left: 10%;
  padding-right: 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.weather-social .social i {
  font-size: 23px;
}

.weather-social .social p {
  font-size: 8px;
}

.weather-social .social .icon-container {
  display: flex;
  justify-content: space-between;
}

@media screen and (min-width: 1024px) {
  .weather-social {
    display: none;
  }
}

.useful-cards {
  padding-top: 20px;
}

.useful-cards p {
  font-size: 14px;
  font-weight: bold;
  color: #34B1BF;
}

.useful-cards .cards-container .useful-card {
  height: 110px;
  width: 110px;
  padding-top: 10px;
  border: 1px solid #ECE8E8;
  border-radius: 5px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  cursor: pointer;
}

.useful-cards .cards-container .useful-card i {
  color: #34B1BF;
}

.useful-cards .cards-container .useful-card p {
  color: #5D5D5D;
  font-size: 13px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  margin-left: 20px;
  margin-right: 20px;
  text-transform: uppercase;
}

.useful-cards .cards-container .useful-card .modal-content {
  display: none;
}

.useful-cards .cards-container .food-card {
  background: #fff;
  width: 180px;
  margin-bottom: 40px;
}

.useful-cards .cards-container .food-card img {
  width: 180px;
}

.useful-cards .cards-container .food-card .text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
}

.useful-cards .cards-container .slick-slide {
  margin: 10px;
}

.useful-cards .cards-container .slick-dots {
  right: 0;
}

.useful-cards .cards-container .slick-dots .slick-active :before {
  font-size: 13px;
}

.useful-cards .cards-container .slick-dots li button:before {
  font-size: 8px;
  line-height: 20px;
  color: #34B1BF;
}

.useful-cards .cards-container .useful-card {
  height: 110px;
  width: 110px;
  padding-top: 10px;
  border: 1px solid #ECE8E8;
  border-radius: 5px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

.useful-cards .cards-container .useful-card i {
  color: #34B1BF;
}

.useful-cards .cards-container .useful-card p {
  color: #5D5D5D;
  font-size: 13px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  margin-left: 20px;
  margin-right: 20px;
  line-height: 15px;
  text-transform: uppercase;
}

.useful-cards .cards-container .useful-card .modal-content {
  display: none;
}

.useful-cards .cards-container .food-card {
  background: #fff;
  width: 180px;
  margin-bottom: 40px;
}

.useful-cards .cards-container .food-card img {
  width: 180px;
}

.useful-cards .cards-container .food-card .text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  height: 200px;
}

.useful-cards .cards-container .slick-slide {
  margin: 10px;
}

.useful-cards .cards-container .slick-dots {
  right: 0;
}

.useful-cards .cards-container .slick-dots .slick-active :before {
  font-size: 13px;
}

.useful-cards .cards-container .slick-dots li button:before {
  font-size: 8px;
  line-height: 20px;
  color: #34B1BF;
}

.food-cards-container .food-card {
  background: #fff;
  width: 180px;
  margin-bottom: 40px;
}

.food-cards-container .food-card img {
  width: 180px;
}

.food-cards-container .food-card .text-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  height: 200px;
  overflow: hidden;
}

.food-cards-container .food-card a, .food-cards-container .food-card a:visited, .food-cards-container .food-card a:hover, .food-cards-container .food-card a:active {
  text-decoration: none;
}

.food-cards-container .slick-slide {
  margin: 10px;
}

.food-cards-container .slick-dots {
  right: 0;
}

.food-cards-container .slick-dots .slick-active :before {
  font-size: 13px;
}

.food-cards-container .slick-dots li button:before {
  font-size: 8px;
  line-height: 20px;
  color: #34B1BF !important;
}

.modal {
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  padding: 0 10%;
  width: 90%;
  height: 80vh;
  position: fixed;
  z-index: 3;
  top: 5vh;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  background: #fff;
  font-family: "Poppins", sans-serif;
  border: 1px solid #ECE8E8;
  border-radius: 5px;
  transition: 400ms linear;
  display: none;
}

@media screen and (min-width: 1024px) {
  .modal {
    width: 50%;
  }
}

.modal #modal-icon-dest {
  color: #34B1BF;
}

.modal h2 {
  font-size: 16px;
  color: #5D5D5D;
}

.modal p {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  color: #707070;
}

.modal i {
  vertical-align: middle;
  padding-right: 5px;
}

.modal a {
  font-size: 14px;
  color: #34B1BF;
  border: 1px solid #34B1BF;
  border-radius: 5px;
  padding: 10px 20px;
  max-width: 200px;
  margin: auto;
  margin-top: 0;
  margin-bottom: 0;
}

.modal a, .modal a:visited, .modal a:hover, .modal a:active {
  color: #34B1BF;
  text-decoration: none;
}

.modal span {
  color: #6C7575;
  position: absolute;
  top: 2%;
  right: 2%;
  cursor: pointer;
}

@media screen and (max-width: 1024px) {
  .modal span {
    right: 4%;
  }
}

.food-cards {
  padding-top: 20px;
}

.food-cards h2 {
  color: #393939;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
}

.food-cards p {
  font-size: 14px;
  font-weight: bold;
  color: #34B1BF;
}

.food-cards .cards-container .food-card {
  background: #fff;
  width: 180px;
}

.food-cards .cards-container .food-card img {
  width: 180px;
}

.food-cards .cards-container .food-card .text-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  height: 200px;
  overflow: hidden;
}

.food-cards .cards-container .food-card .text-container p {
  color: #707070;
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
}

.food-cards .cards-container .slick-slide {
  margin: 10px;
}

.food-cards .cards-container .slick-dots {
  right: 0;
}

.food-cards .cards-container .slick-dots .slick-active :before {
  font-size: 13px;
}

.food-cards .cards-container .slick-dots li button:before {
  font-size: 8px;
  line-height: 20px;
  color: #34B1BF;
}

.spa-cards h2 {
  color: #677374;
}

.image-cards {
  margin-bottom: 50px;
  padding-top: 20px;
}

.image-cards p {
  font-size: 14px;
  font-weight: bold;
  color: #34B1BF;
}

.image-cards .image-container .image-card {
  position: relative;
}

.image-cards .image-container .image-card img {
  width: 265px;
}

.image-cards .image-container .image-card .image-content {
  position: absolute;
  bottom: 40px;
  left: 10px;
  text-align: left;
}

.image-cards .image-container .image-card .image-content h2 {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  margin: 0;
}

.image-cards .image-container .image-card .image-content p {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  margin-top: 0;
}

.image-cards .image-container .image-card .image-content a {
  background: #34B1BF;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  border-radius: 5px;
  padding: 10px 20px;
}

.image-cards .image-container .image-card .image-content a, .image-cards .image-container .image-card .image-content a:visited, .image-cards .image-container .image-card .image-content a:hover, .image-cards .image-container .image-card .image-content a:active {
  color: #fff;
  text-decoration: none;
}

.image-cards .image-container .image-card .image-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
}

.image-cards .image-container .slick-slide {
  margin: 10px;
}

.image-cards .image-container .slick-dots {
  right: 0;
}

.image-cards .image-container .slick-dots .slick-active :before {
  font-size: 13px;
}

.image-cards .image-container .slick-dots li button:before {
  font-size: 8px;
  line-height: 20px;
  color: #34B1BF;
}

.cta-container {
  text-align: center;
  padding-bottom: 100px;
}

@media screen and (min-width: 1024px) {
  .cta-container {
    display: flex;
    flex-direction: row;
  }
}

.cta-container .cta {
  width: 270px;
  height: 55px;
  border: 1px solid #676767;
  border-radius: 5px;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 15px;
}

.cta-container .cta i {
  vertical-align: middle;
  padding-right: 10px;
}

.cta-container .cta a {
  color: #676767;
}

.cta-container .cta a, .cta-container .cta a:visited, .cta-container .cta a:hover, .cta-container .cta a:active {
  color: #676767;
  text-decoration: none;
}

@media screen and (min-width: 1024px) {
  .cta-container .cta {
    width: 30%;
  }
}

.cta-container .social {
  color: #676767;
}

@media screen and (max-width: 1024px) {
  .cta-container .social {
    padding-top: 20px;
  }
}

.cta-container .social i {
  vertical-align: middle;
  padding-left: 5px;
}

.cta-container .social a {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #676767;
}

.cta-container .social a, .cta-container .social a:visited, .cta-container .social a:hover, .cta-container .social a:active {
  color: #676767;
  text-decoration: none;
}

.bottom-sticky {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: fixed;
  bottom: 0;
  left: 0;
  background: #fff;
  color: #34B1BF;
  width: 100%;
  height: 50px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}

.bottom-sticky i {
  vertical-align: middle;
  padding-right: 20px;
}

.bottom-sticky a, .bottom-sticky a:visited, .bottom-sticky a:hover, .bottom-sticky a:active {
  color: inherit;
  text-decoration: none;
}

@media screen and (min-width: 1024px) {
  .bottom-sticky {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */