@charset "UTF-8";
/************************************************
*                                               *
*                  VARIABLES                    *
*                                               *
************************************************/
/************************************************
*                                               *
*                   MIXINS                      *
*                                               *
************************************************/
/************************************************
*                                               *
*              LANGUAGE SECTION                 *
*                                               *
************************************************/
@import url("https://fonts.googleapis.com/css?family=Ubuntu&display=swap");
.language-preference {
  float: right;
}
.language-preference .language-form {
  display: inline-block;
}
.language-preference .language-form button {
  border: none;
  color: #ff8017;
  font-size: 16px;
  background: none;
}
.language-preference .language-form a {
  color: #ff8017;
  font-size: 16px;
  text-decoration: none;
}

/************************************************
*                                               *
*               HEADER SECTION                  *
*                                               *
************************************************/
.wabi-header {
  width: 100%;
  background: #fff;
}
.wabi-header nav {
  /* Grid templating */
  display: grid;
  grid-gap: 0;
  grid-template-columns: auto auto auto;
  grid-template-areas: "logo . nav-menu" "  .  . hamburger-menu";
}
@media only screen and (min-width: 1px) and (max-width: 802px) {
  .wabi-header nav {
    padding-bottom: 10px;
  }
}
.wabi-header nav #nav-toggle {
  display: none;
}
.wabi-header nav .burger-menu {
  display: none;
}
@media only screen and (min-width: 1px) and (max-width: 802px) {
  .wabi-header nav .burger-menu {
    display: block;
  }
}
.wabi-header nav .logo-img {
  width: 150px;
  grid-area: logo;
  padding-top: 0.65em;
}
.wabi-header nav .logo-img .header-logo {
  width: 150px;
  height: 60px;
}
.wabi-header nav .logo-img #hidden-logo {
  width: 60px;
  height: 60px;
  display: none;
  grid-area: logo;
}
.wabi-header nav .nav-menu {
  height: 100%;
  z-index: 1000;
  list-style: none;
  grid-area: nav-menu;
  place-self: center right;
}
@media only screen and (min-width: 1px) and (max-width: 802px) {
  .wabi-header nav .nav-menu {
    opacity: 0;
    clear: both;
    display: none;
  }
}
.wabi-header nav li {
  height: 100%;
  line-height: 6;
  position: relative;
  display: inline-block;
}
@media only screen and (min-width: 1px) and (max-width: 802px) {
  .wabi-header nav li {
    width: 66%;
    height: auto;
    display: block;
    margin-left: 17%;
    text-align: center;
  }
  .wabi-header nav li li:hover .dropdown {
    width: 58%;
    z-index: 1;
    display: block;
  }
}
.wabi-header nav li:hover {
  background: #ff8017;
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
}
.wabi-header nav li:hover a {
  color: #ffffff;
}
@media only screen and (min-width: 1px) and (max-width: 802px) {
  .wabi-header nav li:hover {
    background: none;
  }
}
.wabi-header nav .dropdown {
  width: 117px;
  z-index: 1000;
  display: none;
  position: absolute;
  background-color: black;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}
.wabi-header nav li:hover > .dropdown {
  display: block;
  width: 100%;
  text-align: center;
}
@media only screen and (min-width: 1px) and (max-width: 802px) {
  .wabi-header nav li:hover > .dropdown {
    width: 66%;
  }
}
.wabi-header nav .dropdown a {
  color: #ff8017;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
.wabi-header nav .dropdown a:hover {
  color: #ff8017;
  background-color: #f1f1f1;
}
.wabi-header nav a {
  position: relative;
  padding: 0 32px;
  text-decoration: none;
  color: #ff8017;
  background: 0 0;
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
  font-size: 24px;
  line-height: 1.5em;
}
@media only screen and (min-width: 1px) and (max-width: 802px) {
  .wabi-header nav input + label {
    top: 40px;
    z-index: 5;
    right: 40px;
    width: 45px;
    height: 60px;
    position: absolute;
  }
  .wabi-header nav input + label span {
    left: 0;
    top: 7px;
    height: 2px;
    width: 100%;
    display: block;
    transition: 0.5s;
    margin-top: -1px;
    background: #ff8017;
    position: absolute;
  }
  .wabi-header nav input + label span:first-child {
    top: -3px;
  }
  .wabi-header nav input + label span:last-child {
    top: 17px;
  }
  .wabi-header nav label:hover {
    cursor: pointer;
  }
  .wabi-header nav input:checked + label {
    margin-top: -48px;
    margin-right: -41px;
  }
  .wabi-header nav input:checked + label span {
    top: 50%;
    opacity: 0;
    position: relative;
  }
  .wabi-header nav input:checked + label span:first-child {
    opacity: 1;
    transform: rotate(405deg);
  }
  .wabi-header nav input:checked + label span:last-child {
    opacity: 1;
    transform: rotate(-405deg);
  }
}
.wabi-header nav #nav-toggle:checked ~ .nav-menu {
  top: 0;
  left: 0;
  z-index: 3;
  opacity: 0.9;
  width: 100%;
  height: 100%;
  display: block;
  position: fixed;
  overflow: hidden;
  background: #0e0e0e;
  -webkit-transition: opacity 0.45s ease-out 0.15s;
  -moz-transition: opacity 0.45s ease-out 0.15s;
  -o-transition: opacity 0.45s ease-out 0.15s;
  transition: opacity 0.45s ease-out 0.15s;
}
.wabi-header .active-link {
  background: #ff8017;
}
.wabi-header .active-link a {
  color: #ffffff;
}

/************************************************
*                                               *
*                  VARIABLES                    *
*                                               *
************************************************/
/************************************************
*                                               *
*                   MIXINS                      *
*                                               *
************************************************/
/************************************************
*                                               *
*               FOOTER SECTION                  *
*                                               *
************************************************/
footer {
  width: 100%;
  padding-top: 50px;
  background: black;
}
footer .foot-container {
  padding: 0;
}
footer .foot-container hr {
  width: 89%;
  margin-top: 22px;
  border-top: 1px solid #eeeeee;
}
footer .foot-container p {
  margin: 0;
  color: #fff;
  font: 18px Lato;
}
footer .foot-container a {
  color: #fff;
  transition: all 0.25s;
  text-decoration: none;
}
footer .foot-container a:hover {
  color: #ff8017;
}
footer .top-section {
  text-align: center;
}
footer .top-section .fi {
  line-height: 1;
  display: inline-block;
}
footer .top-section ul {
  padding: 0;
  margin-bottom: 30px;
}
footer .top-section li:first-child {
  margin-left: 0px;
}
footer .top-section li {
  font-size: 80px;
  list-style: none;
  margin-left: 50px;
  display: inline-block;
  font-family: FontAwesome;
}
@media only screen and (min-width: 1px) and (max-width: 802px) {
  footer .top-section li {
    font-size: 40px;
  }
}
footer .bottom-section {
  padding-left: 50px;
}
footer .bottom-section a {
  color: #ff8017;
}
footer .bottom-section ul {
  margin-bottom: 0;
  list-style: none;
  text-align: left;
  padding-left: 28px;
  padding-bottom: 45px;
}
@media only screen and (min-width: 1px) and (max-width: 802px) {
  footer .bottom-section ul {
    padding-left: 0px;
  }
}
footer .bottom-section li {
  line-height: 1.428571429;
  font-size: 16px;
  margin: 0 0 7px;
  padding-left: 1px;
  position: relative;
}
footer .bottom-section li:before {
  color: #ff8017;
  content: "";
  font-family: FontAwesome;
}
footer .bottom-section .about:after {
  content: "About Us";
}
@media only screen and (min-width: 1px) and (max-width: 802px) {
  footer .bottom-section .about:after {
    content: "About";
  }
}
footer .bottom-section .privacy:after {
  content: "Privacy Policy";
}
@media only screen and (min-width: 1px) and (max-width: 802px) {
  footer .bottom-section .privacy:after {
    content: "Privacy";
  }
}
footer .bottom-section .terms:after {
  content: "Terms & Conditions";
}
@media only screen and (min-width: 1px) and (max-width: 802px) {
  footer .bottom-section .terms:after {
    content: "T & C";
  }
}
footer .bottom-section .cancel:after {
  content: "Cancellation & Refund Policy";
}
@media only screen and (min-width: 1px) and (max-width: 802px) {
  footer .bottom-section .cancel:after {
    content: "Cancellation";
  }
}

/************************************************
*                                               *
*                  VARIABLES                    *
*                                               *
************************************************/
/************************************************
*                                               *
*                   MIXINS                      *
*                                               *
************************************************/
/* How to use the above:
@include font-face("NexaBold", font-files("nexa_bold-webfont.woff", "nexa_bold-webfont.ttf", "nexa_bold-webfont.svg", "nexa_bold-webfont.eot"));
*/
/************************************************
*                                               *
*                FONTS SECTION                  *
*                                               *
************************************************/
/************************************************
*                                               *
*                 BODY SECTION                  *
*                                               *
************************************************/
body {
  margin: 0;
  background: black;
  /* Remove side scroll */
  overflow-x: hidden;
}

/************************************************
*                                               *
*                MAIN SECTION                   *
*                                               *
************************************************/

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