* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@font-face {
  font-family: GothamPro;
  src: url("/assets/fonts/Gotham Pro Regular.ttf");
}

@font-face {
  font-family: GothamPro;
  src: url("/assets/fonts/Gotham Pro Bold.ttf");
  font-weight: bold;
}

body {
  font-family: GothamPro;
}

.container {
  color: white;
  height: 100vh;
  width: 100vw;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.container-content {
  text-align: center;
  text-transform: uppercase;
}

.container-content_body {
  font-size: 45px !important;
}

.container-content h2 {
  font-size: 60px;
  line-height: 54px;
}

.container-content p {
  font-size: 36px;
}

.container-footer {
  position: absolute;
  width: 100%;
  bottom: 0;
  text-align: center;
  font-size: 10px;
  padding: 20px;
}

.container-footer img {
  width: 30%;
  max-width: 150px;
  height: auto;
  padding-bottom: 30px;
}

.container_bg {
  position: absolute;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.container-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 40px;
}

.container-heading_box {
  text-align: center;
  text-transform: uppercase;
}

.container-heading_box h2 {
  font-size: 28px;
}

.container-heading_box p {
  font-size: 11px;
}

.container-heading_main {
  text-transform: uppercase;
  font-size: 20px;
  text-align: center;
}

.container-heading_main span {
  font-size: 22px;
  font-weight: bold;
}

.container-cards {
  margin: 0 40px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: (1fr)[3];
      grid-template-rows: repeat(3, 1fr);
  gap: 20px;
}

.container-bottom {
  padding: 20px;
  text-align: center;
}

.container-bottom_text {
  font-size: 12px;
}

.container-finish {
  position: absolute;
  display: none;
  z-index: 200;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.container-finish_img {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  width: auto;
  -webkit-transform: translate(-50%, -46%);
          transform: translate(-50%, -46%);
}

.container-finish_heading {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 400;
  font-size: 80px;
  text-transform: uppercase;
}

.btn {
  color: inherit;
  text-decoration: underline;
  font-family: inherit;
  padding: 10px;
  text-transform: uppercase;
  text-align: center;
}

.flip {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.card {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  position: relative;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.card_front, .card_back {
  width: auto;
  max-width: 100%;
  max-height: 100%;
  height: auto;
  position: absolute;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  border-radius: 4px;
}

.card_front {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

@media screen and (min-width: 820px) {
  .container-cards {
    max-width: 800px;
    width: 90%;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    -ms-grid-rows: (1fr)[2];
        grid-template-rows: repeat(2, 1fr);
  }
}
/*# sourceMappingURL=main.css.map */