/*===============================================*/
/* SCSS VARIABLES / More variables in variables.scss */
/*===============================================*/
@import url(../css/reset.css);
.header__logo-title a img, .destination__details-buy a {
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s; }

/*===============================================*/
/* 1. IMPORTS		 						 */
/*===============================================*/
/*===============================================*/
/* 2. GENERAL		 						 */
/*===============================================*/
html, body {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
  /*  (10 px in REM size) */ }

body {
  font-family: 'Rubik', sans-serif;
  padding: 0;
  font-size: 1.6rem;
  margin: 0 auto;
  color: #232323;
  background-color: #ffffff;
  font-weight: 400; }

.clear {
  clear: both; }

p {
  padding: 0 0 10px 0;
  margin: 0px;
  text-align: left;
  line-height: 1.5; }
  p.align-center {
    width: 100%;
    text-align: center; }

a {
  text-decoration: none;
  color: #00a6ce; }
  a:hover {
    color: #40daff; }

a img {
  border: none; }

/*---------------------------*/
/* 2-1. HEADINGS             */
/*---------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.5px;
  padding: 0 0 40px 0;
  margin: 0;
  line-height: 1.3; }

h1 {
  font-size: 4.0rem; }

h2 {
  font-size: 3.0rem; }

h3 {
  font-size: 2.2rem; }

h4 {
  font-size: 2.0rem; }

h5 {
  font-size: 1.8rem; }

h6 {
  font-size: 1.6rem; }

/*===============================================*/
/* 3. HEADER 	 						 */
/*===============================================*/
/* BLOCK - header */
.header {
  width: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 777;
  padding: 10px 0; }
  .header--sticky {
    background-color: #00a6ce; }
  .header--page {
    background-color: #00a6ce; }
  .header__content {
    width: calc(100% - 160px);
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center; }
  .header__logo {
    display: flex;
    align-items: center;
    font-size: 1.6rem; }
    .header__logo-title a {
      margin-right: 20px; }
    .header__logo-link a {
      color: #fff;
      font-weight: 500; }
      .header__logo-link a:hover {
        color: #cccccc; }
  .header__menu ul {
    display: block; }
    .header__menu ul li {
      display: inline-block; }
      .header__menu ul li.search {
        background-image: url(../images/icons/search.svg);
        background-size: 24px 24px;
        background-position: 0 0;
        background-repeat: no-repeat;
        padding: 6px 0 6px 35px; }
      .header__menu ul li a {
        color: #fff;
        font-weight: 500; }
        .header__menu ul li a:hover {
          color: #cccccc; }

.header-page--sticky .header__logo-title a img {
  width: 100px; }

/*===============================================*/
/* SECTION 	 						 */
/*===============================================*/
.section {
  width: 100%; }
  .section__content {
    width: 1140px;
    margin: auto;
    padding: 50px 0; }
    .section__content--nopadding {
      padding: 0px; }
  .section__title {
    font-size: 5rem;
    font-weight: 300;
    width: 100%;
    padding: 0 0 40px 0;
    text-align: center; }
    .section__title--smaller {
      font-size: 3rem;
      font-weight: 500; }

.section--intro {
  width: 100%;
  height: 100%;
  background-color: #000;
  background-image: url(../images/meals_on_wheels_2025_splash.png);
  -webkit-background-size: 100%;
  -moz-background-size: 100%;
  -o-background-size: 100%;
  background-size: 100%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center center;
  position: relative;
  overflow: hidden; }

.intro {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center; }
  .intro__content {
    width: 60%;
    margin: auto;
    color: #fff;
    text-align: center; }
    .intro__content h1 {
      font-size: 9rem;
      font-weight: 400;
      letter-spacing: -3px; padding:0 0 20px 0;}
.intro__content h3 {
      font-size: 3rem;
      font-weight: 200;
      letter-spacing: -2px; padding:0 0 15px 0; }
    .intro__content p {
      font-size: 1.4rem;
      text-align: center;
      padding-bottom: 40px; line-height:1.7; }
    .intro__content span {
      font-size: 1.6rem; font-weight:700; }

button.trigger {
  position: fixed;
  bottom: 10px;
  left: 50%;
  z-index: 5000;
  display: block;
  margin-left: -0.6em;
  padding: 0;
  width: 1em;
  height: 1em;
  border: none;
  background: transparent;
  color: transparent;
  font-size: 2em;
  cursor: pointer; }

button.trigger.hidden {
  display: none; }

button.trigger::before {
  position: absolute;
  bottom: 100%;
  left: -100%;
  padding: 0;
  width: 300%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

button.trigger:focus {
  outline: none; }

.downanimated {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite; }

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0); }
  40% {
    -webkit-transform: translateY(-30px); }
  60% {
    -webkit-transform: translateY(-15px); } }

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0); }
  40% {
    transform: translateY(-30px); }
  60% {
    transform: translateY(-15px); } }

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce; }

/*===============================================*/
/* COUNTDOWN 						 */
/*===============================================*/
.countdown-text {
  width: 100%;
  text-align: center;
  font-size: 2.2rem;
  color: #767676; }

.countdown-link {
  width: 100%;
  display: block;
  text-align: center;
  font-size: 2.2rem;
  color: #00a6ce;
  padding-bottom: 40px; }

.hasCountdown {
  width: 100%;
  text-align: center; }

.countdown_rtl {
  direction: rtl; }

.countdown_holding span {
  color: #888; }

.countdown_row {
  clear: both;
  width: 100%;
  padding: 0px;
  text-align: center; }

.countdown_section {
  display: inline-block;
  text-align: center;
  padding: 0px 0 40px 0;
  margin: 0 1%;
  text-align: center;
  font-size: 1.6rem;
  text-transform: uppercase;
  color: #767676; }

span.countdown_amount {
  font-size: 8rem;
  font-weight: 300;
  letter-spacing: -0.5px;
  color: #00a6ce;
  padding: 0 0 0 0; }

.section__destination-title {
  width: 100%;
  border-top: 3px #00a6ce solid;
  border-bottom: 3px #00a6ce solid;
  padding: 40px 0;
  margin: 0px;
  text-align: center;
  font-weight: 500;
  font-size: 2.4rem; }

/*===============================================*/
/*   DESTIONATION 	 						 */
/*===============================================*/
.section--destination {
  width: 100%;
  background-color: #000;
  -webkit-background-size: 100%;
  -moz-background-size: 100%;
  -o-background-size: 100%;
  background-size: 100%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center center;
  position: relative;
  overflow: hidden;
  color: #fff; }

.destination {
  display: flex;
  justify-content: space-between;
  align-items: center; }
  .destination__image {
    width: 48%; }
    .destination__image img {
      display: block;
      max-width: 100%; }
  .destination--reverse .destination__image {
    order: 1; }
  .destination__details {
    width: 48%; }
    .destination__details a {
      color: #40daff; }
    .destination__details h3 {
      font-size: 6rem;
      font-weight: 300;
      padding: 0 0 40px 0; }
    .destination__details p {
      padding: 0 0 40px 0; }
    .destination__details ul {
      padding: 0 0 20px 0; }
      .destination__details ul li {
        line-height: 1.5; }
    .destination__details-view {
      width: 100%;
      text-align: center;
      display: block;
      padding-bottom: 20px; }
    .destination__details-buy {
      width: 100%;
      text-align: center;
      padding-bottom: 20px; }
      .destination__details-buy a {
        display: inline-block;
        color: #fff;
        border: 2px #fff solid;
        border-radius: 25px;
        padding: 15px 40px;
        font-weight: 500;
        font-size: 1.6rem;
        letter-spacing: 1px; }
        .destination__details-buy a:hover {
          background-color: #fff;
          color: #000; }
    .destination__details-qty {
      width: 100%;
      text-align: center;
      display: block;
      font-weight: 500; }

/*===============================================*/
/*   SHOP 	 						 */
/*===============================================*/
.section--shop {
  width: calc(100% - 160px);
  padding: 50px 0;
  margin: auto; }

/*===============================================*/
/*   SOCIAL 	 						 */
/*===============================================*/
.section--social {
  background-color: #eaf5f8; }

.social-icons {
  width: 100%;
  text-align: center; }
  .social-icons a {
    display: inline-block;
    padding: 0 10px; }

/*===============================================*/
/*   SPONSORS 	 						 */
/*===============================================*/
.sponsors {
  width: 100%;
  text-align: center;
  padding-bottom: 80px; }
  .sponsors a {
    display: inline-block;
    margin: 0 10px; }

/*===============================================*/
/*   PAGE 	 						 */
/*===============================================*/
.page {
  padding: 180px 0 40px 0; }
  .page__title {
    width: 100%;
    text-align: center;
    font-weight: 300;
    font-size: 5.4rem; }
  .page__subtitle {
    width: 100%;
    text-align: center;
    font-weight: 300;
    color: #767676; }
  .page__long-title {
    width: 100%;
    text-align: center;
    font-weight: 400;
    font-size: 2.4rem;
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #767676;
    line-height: 3;
    color: #fff; }
    .page__long-title hr {
      color: #fff; }

/*===============================================*/
/*   FOOTER 	 						 */
/*===============================================*/
/* BLOCK - footer */
.footer {
  width: 100%;
  background-image: url(../images/mbr-1920x1079.jpg);
  -webkit-background-size: 100%;
  -moz-background-size: 100%;
  -o-background-size: 100%;
  background-size: 100%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center center;
  position: relative;
  overflow: hidden;
  color: #fff; }
  .footer__content {
    padding: 50px 0;
    background-color: rgba(0, 0, 0, 0.5); }
  .footer__blocks {
    display: flex;
    justify-content: space-between;
    width: 1140px;
    margin: auto; }
    .footer__blocks ul li {
      line-height: 1.5; }
