@import url("clash-display.css");
* {
  outline: none;
}

body {
  margin: 0 auto;
  font-family: 'ClashDisplay-Medium';
}

.section {
  width: 100%;
  height: 100vh;
  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;
  position: relative;
}

.section h1 {
  font-family: 'ClashDisplay-Semibold';
  margin: 0;
  font-size: 5em;
  text-align: center;
  line-height: .9em;
}

.section h2 {
  font-family: 'ClashDisplay-Semibold';
  margin: 0;
  font-size: 5em;
  text-align: center;
  line-height: .9em;
  margin-bottom: 2vh;
}

.section h2.big-line-text {
  font-size: 4em;
}

.section h2.even-bigger-text {
  font-size: 6em;
}

.section h2.huge-text {
  font-size: 15em;
  letter-spacing: 20px;
  font-family: 'ClashDisplay-Bold';
}

.section h2.huge-text.logo-jump {
  font-size: 4em;
  font-family: 'ClashDisplay-Bold';
  letter-spacing: unset;
  background: #eeeeef;
  color: #1a181a;
  border: 2px solid #1a181a;
  padding: 10% 20%;
  border-radius: 50%;
  -webkit-animation: logo-jump 2s;
          animation: logo-jump 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.section h2.purple,
.section h2 .purple {
  color: #9472fff5;
}

.section .top-line-text {
  color: #efefef;
  font-size: 1.2em;
  left: 10%;
  top: 7%;
  position: absolute;
}

.section .top-line-text .purple {
  color: #9472fff5;
  font-family: 'ClashDisplay-Semibold';
  font-size: 1.33em;
  margin: 3px;
}

.section .content-set {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.section .content-set .big-center-illustration {
  width: 25%;
}

.section .content-set .subheading-text {
  font-family: 'ClashDisplay-Medium';
  font-size: 1.35em;
  font-style: italic;
}

.section .content-set .subheading-text b {
  color: #9472fff5;
}

.section .content-set .subheading-text.regular {
  font-family: 'ClashDisplay-Regular';
  font-size: 1.4em;
}

.section .content-set p.big {
  width: 50%;
  font-size: 2em;
}

.section .content-set .big-list {
  text-align: center;
}

.section .content-set .big-list h4 {
  font-family: 'ClashDisplay-Semibold';
  margin: 0;
  font-size: 1.5em;
  text-align: center;
  line-height: .9em;
  margin-bottom: 2vh;
  color: #9472fff5;
}

.section .content-set .big-list p {
  color: #efefef;
  font-size: 2.2em;
}

.section .content-set .big-list p.left {
  text-align: left;
}

.section .content-set .big-list .link {
  border-bottom: 3px solid;
  cursor: pointer;
  display: initial;
}

.section .content-set .bottom-line-text {
  color: #6d6e72;
  font-style: italic;
  text-transform: uppercase;
  padding-top: 20vh;
  font-family: 'ClashDisplay-Semibold';
  font-size: 1.2em;
}

.section .boxes {
  display: -ms-grid;
  display: grid;
  width: 80%;
  margin: 0 auto;
  -ms-grid-columns: 32% 32% 32%;
      grid-template-columns: 32% 32% 32%;
  grid-column-gap: 1.33%;
  grid-row-gap: 3vh;
}

.section .boxes .box {
  width: 100%;
  background: #9472fff5;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5%;
  height: 30vh;
}

.section .boxes .box .box_title {
  font-size: 2em;
}

.section .boxes .box .box_title span {
  display: block;
  margin-bottom: 1vh;
}

.section .boxes .box p {
  color: #1a181a;
}

.section .badge {
  background: #eeeeef;
  color: #1a181a;
  padding: 7px 14px;
  font-family: 'ClashDisplay-Semibold';
  text-transform: uppercase;
  font-style: oblique;
  font-size: 1.1em;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-transform: rotate(355deg);
          transform: rotate(355deg);
  margin-top: -0.4vh;
}

.section.small {
  height: 50vh;
}

.section.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 10%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 10vh;
}

.section.dark {
  background: #191718;
  color: #efefef;
}

.section.light {
  background: #efefef;
  color: #181617;
}

.section.purple {
  background: #9472fff5;
  color: #191718;
}

.fixed-con {
  z-index: 9724790009779558 !important;
  background-color: #f7f8fc;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
}

.VIpgJd-ZVi9od-aZ2wEe-wOHMyf {
  z-index: 9724790009779 !important;
  top: 0;
  left: unset;
  right: -5px;
  display: none !important;
  border-radius: 50%;
  border: 2px solid gold;
}

.VIpgJd-ZVi9od-aZ2wEe-OiiCO {
  width: 80px;
  height: 80px;
}

/*hide google translate link | logo | banner-frame */
.goog-logo-link,
.gskiptranslate,
.goog-te-gadget span,
.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame,
div#goog-gt- {
  display: none !important;
}

.goog-te-gadget {
  color: transparent !important;
  font-size: 0px;
}

.goog-text-highlight {
  background: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

/*google translate Dropdown */
#google_translate_element select {
  background: none;
  color: #191718;
  border: none;
  border-radius: 3px;
  padding: 6px 8px;
  font-weight: 600;
  border-radius: 3px;
  border: 1px solid;
}

@-webkit-keyframes logo-jump {
  from {
    scale: 0.1;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    scale: 1;
    -webkit-transform: rotate(355deg);
            transform: rotate(355deg);
  }
}

@keyframes logo-jump {
  from {
    scale: 0.1;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    scale: 1;
    -webkit-transform: rotate(355deg);
            transform: rotate(355deg);
  }
}

@media screen and (min-width: 220px) and (max-width: 692px) {
  .section {
    height: auto;
    min-height: 100vh;
  }
  .section.small {
    min-height: 50vh;
  }
  .section.footer {
    height: 15vh;
    min-height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .section h2.big-line-text {
    font-size: 3em;
  }
  .section h2.even-bigger-text {
    font-size: 2.2em;
    line-height: 1.6em;
    width: 85%;
    text-align: inherit;
  }
  .section h2.huge-text {
    font-size: 7em;
  }
  .section .content-set .big-center-illustration {
    width: 65%;
    margin: 4vh 0;
  }
  .section .content-set .subheading-text.regular {
    width: 85%;
  }
  .section .content-set p.big {
    width: 85%;
    font-size: 1.5em;
  }
  .section .content-set .bottom-line-text {
    font-size: 1.1em;
  }
  .section .content-set .big-list p {
    font-size: 1.5em;
  }
  .section .content-set .big-list p.left {
    text-align: left;
    font-size: 1.4em;
    line-height: 1.6em;
    width: 85%;
    margin-left: 5%;
  }
  .section .content-set .big-list p.info {
    width: 85%;
    margin: 0 auto;
    margin-top: 3vh;
    margin-bottom: 3vh;
  }
  .section .top-line-text {
    top: 5%;
  }
  .section .boxes {
    -ms-grid-columns: 100%;
        grid-template-columns: 100%;
    padding-top: 20vh;
  }
  .section .boxes .box {
    min-height: 33vh;
    height: auto;
    margin-bottom: 2vh;
  }
  .section .boxes .box p {
    font-size: 1.2em;
  }
}
/*# sourceMappingURL=main.css.map */