/*
|--------------------------------------------------------------------------
| Table of Contents
|--------------------------------------------------------------------------
| 0.1 Config, Functions, Mixins, Imports,
| 1.0 Base styling
| 2.0 Utility Classes
| 3.0 Componentes
| 4.0 Layout
| 5.0 Page Specific
|--------------------------------------------------------------------------*/
/*
|--------------------------------------------------------------------------
| 0.1 Import Config
|--------------------------------------------------------------------------
*/
@import url("https://use.typekit.net/ecv5nok.css");
@import url("https://fonts.googleapis.com/css?family=Lato:300,400,700");
/*
|--------------------------------------------------------------------------
| 0.2 Animation styling
|--------------------------------------------------------------------------
*/
body {
  -webkit-transition: opacity 0.7s ease-in-out;
  -o-transition: opacity 0.7s ease-in-out;
  transition: opacity 0.7s ease-in-out;
}

.js body {
  opacity: 0;
}

.js body.is-loaded {
  opacity: 1;
}

/*
|--------------------------------------------------------------------------
| 1.0 Base styling
|--------------------------------------------------------------------------
*/
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*, *::after, *::before {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  font-size: 18px;
}

body {
  background-color: #ffffff;
  color: #4D4090;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 2px;
  -webkit-text-size-adjust: 100%;
  -webkit-font-feature-settings: "kern" 1;
  -moz-font-feature-settings: "kern" 1;
  -o-font-feature-settings: "kern" 1;
  font-feature-settings: "kern" 1;
  -webkit-font-kerning: normal;
  font-kerning: normal;
}

img {
  height: auto;
  max-width: 100%;
}

figure {
  margin: 0;
}

a {
  color: #4D4090;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

b, strong {
  font-weight: 700;
}

/* Paragraphs
------------------------------------- */
p {
  margin-top: 0;
}

p:last-child {
  margin-bottom: 0;
}

p a:link {
  border-bottom: 1px solid #4D4090;
  color: #4D4090;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

p a:link:hover {
  border-bottom: 1px solid transparent;
}

/* Lists
------------------------------------- */
ul, ol {
  margin-left: 0;
  padding-left: 0;
  list-style-position: inside;
}

li > ul,
li > ol {
  margin-bottom: 0;
}

ol > li {
  padding-left: 0;
}

dl {
  margin: 0;
}

dl dt,
dl dd {
  margin: 0;
  padding: 0;
}

dl dt {
  float: left;
  font-family: 700;
  font-weight: bold;
  margin-right: 3px;
}

/* Headings
------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  color: #4D4090;
  font-weight: 400;
  line-height: 1.3;
  margin-top: 0;
}

h1 {
  font-family: "liquor-store", sans-serif;
  font-size: 141px;
  letter-spacing: 4px;
  line-height: 0.8;
  text-transform: uppercase;
}

@media screen and (max-width: 777px) {
  h1 {
    font-size: 80px;
  }
}

@media screen and (max-width: 666px) {
  h1 {
    font-size: 60px;
  }
}

h2 {
  font-family: "liquor-store", sans-serif;
  font-size: 54px;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  margin: 0 auto;
  padding-bottom: 30px;
  position: relative;
  z-index: 10;
  display: inline-block;
}

h2::before {
  content: url("../img/heading-circle.svg");
  height: 130px;
  position: absolute;
  width: 130px;
  top: -50px;
  left: -50px;
  z-index: -1;
}

h3 {
  color: #4D4090;
  font-size: 28px;
  line-height: 1.5;
}

@media screen and (max-width: 600px) {
  h3 {
    font-size: 24px;
  }
}

a.btn {
  border: 3px solid #4D4090;
  background-color: #4D4090;
  color: #ffffff;
  display: inline-block;
  font-family: "liquor-store", sans-serif;
  font-size: 22px;
  line-height: 1;
  padding: 16px 25px;
  text-transform: uppercase;
  -webkit-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

a.btn:hover {
  background-color: #ffffff;
  color: #4D4090;
  border-color: #ffffff;
  -webkit-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

a.btn.lila {
  color: #ffffff;
  border-color: #ffffff;
  padding: 16px 66px;
}

a.btn.lila:hover {
  background-color: #ffffff;
  color: #4D4090;
}

a.btn.lila::visited {
  color: #4D4090;
}

/*
|--------------------------------------------------------------------------
| 2.0 Utility Classes
|--------------------------------------------------------------------------
*/
.clearfix:after {
  content: ".";
  clear: both;
  display: block;
  height: 0px;
  visibility: hidden;
}

.ti {
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

/*
|--------------------------------------------------------------------------
| 3.0 Componentes
|--------------------------------------------------------------------------
*/
.primary-nav .nav {
  float: left;
  padding-top: 12px;
}

.primary-nav .nav a {
  margin-right: 15px;
}

@media screen and (max-width: 690px) {
  .primary-nav .nav {
    display: none;
  }
}

/*
|--------------------------------------------------------------------------
| 4.0 Layout
|--------------------------------------------------------------------------
*/
.hero {
  background-color: #74C09F;
  background-image: url("../img/header-background.jpg");
  background-position: center top;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  height: 80vh;
  min-height: 780px;
  position: relative;
  top: -110px;
  -webkit-transform: skew(0deg, -4deg);
  -ms-transform: skew(0deg, -4deg);
  -o-transform: skew(0deg, -4deg);
  transform: skew(0deg, -4deg);
  width: 100%;
}

@media screen and (max-width: 600px) {
  .hero {
    min-height: 600px;
    height: 75vh;
    padding-top: 60px;
  }
}

.hero .container {
  margin: 0 auto;
  max-width: 1140px;
  padding-left: 40px;
  padding-right: 40px;
  position: relative;
  height: 100%;
  top: 110px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
  -webkit-justify-content: left;
  -ms-flex-pack: left;
  justify-content: left;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.hero .container::after {
  content: url("../img/header-circle.svg");
  left: -470px;
  position: absolute;
  top: -570px;
  width: 1041px;
  z-index: -1;
}

@media screen and (max-width: 777px) {
  .hero .container::after {
    left: -363px;
    top: -360px;
    width: 800px;
  }
}

@media screen and (max-width: 500px) {
  .hero .container::after {
    left: -159px;
    top: -140px;
    width: 480px;
  }
}

.hero .logo {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: skew(0deg, 4deg);
  -ms-transform: skew(0deg, 4deg);
  -o-transform: skew(0deg, 4deg);
  transform: skew(0deg, 4deg);
}

.hero .logo img {
  height: 200px;
}

.hero .primary-nav {
  position: absolute;
  margin-right: 40px;
  top: 0;
  right: 0;
  top: 50px;
  -webkit-transform: skew(0deg, 4deg);
  -ms-transform: skew(0deg, 4deg);
  -o-transform: skew(0deg, 4deg);
  transform: skew(0deg, 4deg);
}

@media screen and (max-width: 600px) {
  .hero .primary-nav {
    left: 0;
    top: -60px;
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .hero .primary-nav .btn {
    width: 100%;
    text-align: center;
  }
}

.hero .hero-text {
  width: 690px;
  margin-top: 120px;
  margin-left: 25px;
  -webkit-transform: skew(0deg, 4deg);
  -ms-transform: skew(0deg, 4deg);
  -o-transform: skew(0deg, 4deg);
  transform: skew(0deg, 4deg);
}

.hero .hero-text h1 {
  -webkit-transform: rotate(356deg);
  -ms-transform: rotate(356deg);
  -o-transform: rotate(356deg);
  transform: rotate(356deg);
}

.js .logo {
  margin-top: -150px;
  -webkit-transition: all 1.2s ease-in-out;
  -o-transition: all 1.2s ease-in-out;
  transition: all 1.2s ease-in-out;
  -webkit-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  transition-delay: 0.4s;
  opacity: 0;
}

.js .hero-text {
  margin-top: 250px;
  -webkit-transition: all 1.2s ease-in-out;
  -o-transition: all 1.2s ease-in-out;
  transition: all 1.2s ease-in-out;
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
  opacity: 0;
}

.js .hero .container::after {
  -webkit-transition: all 1.7s ease-in-out;
  -o-transition: all 1.7s ease-in-out;
  transition: all 1.7s ease-in-out;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  opacity: 0;
}

.js .container.is-visible .logo {
  margin-top: 0px;
  opacity: 1;
}

.js .container.is-visible .hero-text {
  margin-top: 120px;
  opacity: 1;
}

.js .container.is-visible::after {
  opacity: 1;
  -webkit-animation-delay: 10s;
  -o-animation-delay: 10s;
  animation-delay: 10s;
}

.running {
  background-color: #4D4090;
  height: 78px;
  position: relative;
  top: -140px;
  left: 0;
  -webkit-transform: skew(0deg, -4deg);
  -ms-transform: skew(0deg, -4deg);
  -o-transform: skew(0deg, -4deg);
  transform: skew(0deg, -4deg);
  width: 100%;
}

.running p {
  color: #ffffff;
  font-family: "liquor-store", sans-serif;
  font-size: 32px;
  line-height: 1;
  margin-top: 23px;
  text-transform: uppercase;
}

@media screen and (max-width: 600px) {
  .running p {
    font-size: 22px;
  }
}

@media screen and (max-width: 600px) {
  .running {
    height: 68px;
  }
}

#content .section {
  margin: 0 auto;
  padding: 80px 40px 120px;
}

#content .section .content {
  max-width: 566px;
  margin: 0 auto;
  text-align: center;
}

/*
#content .section.deals, #content .section.map, #content .section.contact {
  background-color: #4D4090;
  -webkit-transform: skew(0deg, -4deg);
  -ms-transform: skew(0deg, -4deg);
  -o-transform: skew(0deg, -4deg);
  transform: skew(0deg, -4deg);
  padding: 160px 40px 180px;
}
*/

#content .section.deals, #content .section.map, #content .section.contact {
  background-color: #4D4090;
  -webkit-transform: skew(0deg, -4deg);
  -ms-transform: skew(0deg, -4deg);
  -o-transform: skew(0deg, -4deg);
  transform: skew(0deg, -4deg);
  padding: 160px 40px 10px;
}

#content .section.deals .content, #content .section.map .content, #content .section.contact .content {
  -webkit-transform: skew(0deg, 4deg);
  -ms-transform: skew(0deg, 4deg);
  -o-transform: skew(0deg, 4deg);
  transform: skew(0deg, 4deg);
  color: #ffffff;
}

#content .section.deals .content h2, #content .section.map .content h2, #content .section.contact .content h2 {
  color: #ffffff;
}

#content .section.deals p a, #content .section.map p a, #content .section.contact p a {
  color: #ffffff;
}

#content .section.deals p a:hover, #content .section.map p a:hover, #content .section.contact p a:hover {
  border-bottom: 2px solid #ffffff;
}

#content .section.deals p a:visited, #content .section.map p a:visited, #content .section.contact p a:visited {
  color: #ffffff;
}

#content .section.map {
  height: 50vh;
  max-height: 700px;
}

#content .section img {
  margin: 0 auto;
  display: block;
  padding-bottom: 30px;
  padding-top: 30px;
}

#content .section p.small {
  font-size: 14px;
}

#content .columns {
  padding: 40px 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 940px) {
  #content .columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

#content .columns .column {
  width: 450px;
  margin-right: 50px;
  position: relative;
}

@media screen and (max-width: 940px) {
  #content .columns .column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    margin-right: 0;
    margin-bottom: 22px;
  }
}

#content .columns .column p {
  line-height: 1;
}

#content .columns .column p:before {
  content: '\f058';
  display: inline-block;
  font-family: FontAwesome;
  font-size: 20px;
  margin-left: -1.3em;
  position: relative;
  top: 2px;
  width: 1.3em;
}

#content .columns .column:last-child {
  margin-right: 0px;
}

/*
|--------------------------------------------------------------------------
| 5.0 Page Specific
|--------------------------------------------------------------------------
*/
.js .section.fadeIn .section-wrapper {
  -webkit-transition: all 0.9s ease-in-out;
  -o-transition: all 0.9s ease-in-out;
  transition: all 0.9s ease-in-out;
  opacity: 0;
}

.js .section.fadeIn .section-wrapper.is-visible {
  opacity: 1;
}

.swiper-container {
  width: 100%;
  height: 100%;
  overflow: visible;
  margin: 77px auto;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-pagination {
  bottom: -40px !important;
}

.swiper-pagination span.swiper-pagination-bullet {
  height: 18px;
  width: 18px;
  border-radius: 0;
  border: 3px solid #4D4090;
  background-color: transparent;
  opacity: 1;
}

.swiper-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #4D4090;
}
