body{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 22px;
    line-height: 1.6;
    background: var(--bg-color);
    color: #333;
}

@media (max-width: 719px) {
  body{
    line-height: 1.4;
  } 
}

img{
    max-width: 100%;
}

a{
    color: var(--primary-color);
}

header{
    min-height: 100vh;
    background-position: 100% 0;
    background-size: 50%;
    background-repeat:no-repeat;
    position: relative;
}

header.collapsed{
  min-height: auto;
}

.down{
    width: 40px;
    cursor: pointer;
}

@media (max-width: 719px) {
  .down{
    width: 30px;
    margin-top: 30px;
  }
}


.down svg{
    width: 100%;
}

.prefooter{
    background-color: var(--bg-color);
}

footer{
    background-color: var(--primary-color);
    color: white;
    font-size: 18px;
}

footer .container{
    padding: 0;
}

footer a{
    color: white;
    text-decoration: none;
}

footer a:hover{
    text-decoration: underline;
}

aside{
    border-top: 1px solid var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
    height: 80px;
    overflow: hidden;
}

aside .container{
    padding: 0;
}

main{
    padding-top: 90px;
}

@media (max-width: 719px) {
  main{
    padding-top: 30px;
  }
}

h1, h2, h3, h4, h5{
    margin: 0;
    padding: 0;
}

h1, h2{
    font-weight: bold;
    text-transform: uppercase;
    color: var(--primary-color);
    font-size: 35px;
    margin-bottom: 2em;
    margin-top: 2em;
}

@media (max-width: 719px) {
  h1, h2{
    font-size: 25px;
    margin-bottom: 1em;
    margin-top: 1em;
  }
}

h1{
    margin-right: 1em;
    margin-bottom: 0;;
}

h3{
    font-weight: normal;
    text-transform: uppercase;
    color: var(--primary-color);
    font-size: 26px;
    margin-bottom: 0.5em;
}

p{
  margin-top:0;
  margin-bottom: 1.5em;
}

b{
  font-weight: bold;
  color: var(--primary-color);
}

.container{
    width: 100%;
    max-width: 1400px;
    height: 100%;
    padding-bottom: 70px;
}

@media (max-width: 719px) {
  .container{
    padding-bottom: 30px;
  }
}


.logo{
    max-height: 90px;
    margin-top: 90px;
}

@media (max-width: 719px) {
  .logo{
      margin-top: 10px;
  }
}


.hero-image{
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/* if screen is less than 720px wide */
@media (max-width: 719px) {
    .hero-image{
        position: relative;
        height: 50vh;
        left: 0;
        width: 100%;
    }
}

.card{
    height: 300px;
    width: 100%;
    position: relative;
    display: block;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
}

.card:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0, 0.3);
    z-index: 2;
    transition: 0.5s;
    opacity: 0;
}

.card:hover:before{
    opacity: 1;
}

.card span{
    background-color: var(--primary-color);
    text-align: center;
    color: white;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0.5em 0;
}

.team{
    margin-bottom: 50px;
}

@media (max-width: 719px) {
  .team{
    margin-bottom: 0;
  }
}


.team img{
    margin-top: 8px;
    border-radius: 2px;
}

@media (max-width: 719px) {
  .team img{
   max-height: 160px;
  }
}



/* CAROUSEL */

.carousel {
    display: flex;
    left: -100%;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    transform: translateX(100%);
  }
  @media (min-width: 30em) {
    .carousel {
      left: -33.33333%;
      transform: translateX(33.33333%);
    }
  }
  @media (min-width: 40em) {
    .carousel {
      left: -20%;
      transform: translateX(20%);
    }
  }
  
  .carousel.is-reversing {
    transform: translateX(-100%);
  }
  @media (min-width: 30em) {
    .carousel.is-reversing {
      transform: translateX(-33.33333%);
    }
  }
  @media (min-width: 40em) {
    .carousel.is-reversing {
      transform: translateX(-20%);
    }
  }
  
  .carousel.is-set {
    transform: none;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  }
  
  .carousel-seat {
    flex: 1 0 100%;
    order: 2;
    text-align: center;
  }

  .carousel-seat img{
    max-height: 60px;
    margin: 10px;
    display: inline-block;
    max-width: 90%;
  }

  .carousel-seat:nth-child(even) {
    
  }
  
  @media (min-width: 30em) {
    .carousel-seat {
      flex-basis: 50%;
    }
  }
  @media (min-width: 40em) {
    .carousel-seat {
      flex-basis: 20%;
    }
  }
  
  .carousel-seat.is-ref {
    order: 1;
  }
  
table{
  border-collapse: collapse;
  border: none;
  margin-bottom: 1em;;
}

td{
  padding: 3px;
  border: 1px solid #ccc;
  text-align: left;
  vertical-align: top;
}

.thead{
  background-color: var(--primary-color);
  color: white;
  font-weight: bold;
}


.privacy main{
  font-size: 18px;
}

.privacy p{
  margin-bottom: 0.5em;
}