/* Padding */

.padding {
  padding: 16px;
}

/* Row */

.row {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.row::after {
  content: "";
  clear: both;
  display: table;
}

body {
  top: 0 !important;
  padding-bottom: 40px;
}

.goog-te-banner-frame {
  top: auto;
  bottom: 0;
}

/* Colunm */

[class*="col-"] {
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* Colunm - Desktop */

.col-1 {
  width: 8.33%;
}

.col-2 {
  width: 16.66%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.33%;
}

.col-5 {
  width: 41.66%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.33%;
}

.col-8 {
  width: 66.66%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.33%;
}

.col-11 {
  width: 91.66%;
}

.col-12 {
  width: 100%;
}

/* Colunm - Tablet */

@media only screen and (max-width: 768px) {
  .col-s-1 {
    width: 8.33%;
  }
  .col-s-2 {
    width: 16.66%;
  }
  .col-s-3 {
    width: 25%;
  }
  .col-s-4 {
    width: 33.33%;
  }
  .col-s-5 {
    width: 41.66%;
  }
  .col-s-6 {
    width: 50%;
  }
  .col-s-7 {
    width: 58.33%;
  }
  .col-s-8 {
    width: 66.66%;
  }
  .col-s-9 {
    width: 75%;
  }
  .col-s-10 {
    width: 83.33%;
  }
  .col-s-11 {
    width: 91.66%;
  }
  .col-s-12 {
    width: 100%;
  }
}

/* Colunm - Mobile */

@media only screen and (max-width: 600px) {
  [class*="col-"] {
    width: 100%;
  }
}

/* Bottom Border */

.bottom-border {
  position: relative;
  border-bottom: 5px solid #fff;
}

.bottom-border::before,
.bottom-border::after {
  content: "";
  position: absolute;
  top: 100%;
  height: 5px;
  width: 33.33%;
}

.bottom-border::before {
  left: 0;
  background: var(--first-color);
}

.bottom-border::after {
  right: 0;
  background: var(--second-color);
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 40%;
  background-color: #000;
  margin-top: -68px;
}

.hero .background {
  opacity: 0.83;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.hero .logo {
  width: 80%;
  max-width: 500px;
  position: absolute;
  top: 55%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-animation: logo 1s ease-in-out forwards;
  -moz-animation: logo 1s ease-in-out forwards;
  -o-animation: logo 1s ease-in-out forwards;
  animation: logo 1s ease-in-out forwards;
}

.hero .logo img {
  width: 100%;
}

.hero .logo h2 {
  font-family: var(--second-font);
  font-size: 32px;
  color: #fff;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .hero {
    padding-top: 60%;
  }
}

@keyframes logo {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Banner */

.banner {
  position: relative;
  padding-top: 500px;
  background-color: #000;
  margin-top: -68px;
}

.banner-image {
  opacity: 0.83;
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.banner-text {
  text-align: center;
  position: absolute;
  top: 60%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-animation: bannerText 1s ease-out forwards;
  -moz-animation: bannerText 1s ease-out forwards;
  -o-animation: bannerText 1s ease-out forwards;
  animation: bannerText 1s ease-out forwards;
}

.banner-text h1 {
  font-size: 54px;
  color: #fff;
  line-height: 1;
  padding-bottom: 5px;
  /* text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.75); */
}

.banner-text h1::before,
.banner-text h1::after {
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
}

@keyframes bannerText {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media only screen and (max-width: 768px) {
  .banner-text h1 {
    font-size: 36px;
  }
}

/* Zig Zag */

.zig-zag-container {
  padding: 32px;
  /* overflow: auto; */
  position: relative;
  background: #000;
  border-bottom: 5px solid #fff;
}

.zig-zag-image {
  opacity: 0.83;
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.zig-zag-image + .row .col-text {
  height: 400px;
  position: relative;
}

.zig-zag-image + .row .col-text div,
.zig-zag-panel {
  display: inline-block;
  background: rgba(255, 255, 255, 0.8);
  padding: 16px;
}

.zig-zag-image + .row .col-text div {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.zig-zag-image + .row h3 {
  display: inline-block;
  color: #000;
  padding-bottom: 4px;
  margin-bottom: 8px;
  position: relative;
  border-bottom: 3px solid #fff;
}

.zig-zag-image + .row h3::before,
.zig-zag-image + .row h3::after {
  content: "";
  position: absolute;
  top: 100%;
  height: 3px;
  width: 33.33%;
}

.zig-zag-image + .row h3::before {
  left: 0;
  background: var(--first-color);
}

.zig-zag-image + .row h3::after {
  right: 0;
  background: var(--second-color);
}

.zig-zag-image + .row p {
  font-size: 16px;
  margin: 0;
  color: #575757;
}

.zig-zag-container .row {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: auto;
}

.zig-zag-container .row:after {
  content: "";
  display: table;
  clear: both;
}

.zig-zag-container .col-text,
.zig-zag-container .col-content {
  width: 50%;
  padding: 32px;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.zig-zag-container.zig-zag-left .col-content,
.zig-zag-container.zig-zag-right .col-text {
  float: left;
}

.zig-zag-container.zig-zag-left .col-text,
.zig-zag-container.zig-zag-right .col-content {
  float: right;
}

.zig-zag-container .col-content img,
.zig-zag-container .col-text div:first-child {
  width: 100%;
  max-width: 480px;
  display: block;
  margin: auto;
}

.zig-zag-container .col-content div {
  padding-top: 45%;
}

.zig-zag-container .col-content iframe {
  border: 0;
  width: 100%;
  height: 336px;
}

.zig-zag-container .largecta {
  background-color: var(--second-color);
}

.zig-zag-container .col-text .largecta {
  margin-top: 16px;
}

@media screen and (max-width: 992px) {
  .zig-zag-container {
    padding: 16px;
  }
  .zig-zag-container .col-text,
  .zig-zag-container .col-content {
    width: 100%;
    text-align: center;
    padding: 16px;
  }
}

/* Cards */

.card-container {
  text-align: center;
  padding: 32px;
  max-width: 1200px;
  margin: auto;
}

.card {
  overflow: hidden;
  position: relative;
  display: inline-block;
  width: 22%;
  margin: 16px 1%;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.card-image {
  display: block;
  padding-top: 100%;
  position: relative;
  border-bottom: 5px solid #fff;
}

.card-image::before,
.card-image::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 100%;
  height: 5px;
  width: 33.33%;
}

.card-image::before {
  left: 0;
  background: var(--first-color);
}

.card-image::after {
  right: 0;
  background: var(--second-color);
}

.card-image img {
  object-fit: cover;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.card-details {
  display: block;
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  padding: 16px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.card-text {
  font-family: var(--first-font);
  color: #000;
  font-weight: bold;
  font-size: 1.5em;
}

.card:hover .card-image img {
  top: 45%;
  width: 110%;
  height: 110%;
}

@media only screen and (max-width: 1200px) {
  .card {
    width: 30%;
    margin: 1.5%;
  }
}

@media only screen and (max-width: 992px) {
  .card {
    width: 45%;
    margin: 2%;
  }
}

@media only screen and (max-width: 600px) {
  .card {
    width: 95%;
    margin: 2.5%;
  }
}

/* List */

ul.list {
  list-style: none;
}

ul.list li {
  color: #fff;
  font-size: 15px;
  line-height: 140%;
  margin-bottom: 12px;
}

ul.list li::before {
  content: "\2022";
  color: var(--second-color);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
