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

::-webkit-scrollbar {
  width: 20px;
}

::-webkit-scrollbar-track {
  background-color: #E6FAFE;
}

::-webkit-scrollbar-thumb {
  height: 52px;
  background-color: #48dbfb;
  border-radius: 6px;
  border: solid 4px #E6FAFE;
}

.header {
  width: 100%;
  height: 86px;
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: .5s ease;
  transition: .5s ease;
  position: fixed;
  z-index: 800;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
   font-size: 62.5%;
}

.active-header {
  -webkit-box-shadow: 0px 62px 152px rgba(0, 0, 0, 0.19), 0px 18.6912px 45.8236px rgba(0, 0, 0, 0.123802), 0px 7.76336px 19.0328px rgba(0, 0, 0, 0.095), 0px 2.80786px 6.88378px rgba(0, 0, 0, 0.0661981);
          box-shadow: 0px 62px 152px rgba(0, 0, 0, 0.19), 0px 18.6912px 45.8236px rgba(0, 0, 0, 0.123802), 0px 7.76336px 19.0328px rgba(0, 0, 0, 0.095), 0px 2.80786px 6.88378px rgba(0, 0, 0, 0.0661981);
}

.navbar-desktop {
  max-width: 1920px;
  margin: 0 auto;
  padding: 10px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.logo {
  width: 120px;
  height: 52px;
  margin-left: 42px;
  z-index: 800;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 960px) {
  .logo {
    width: 100px;
    height: 70px;
  }
}

.navbar-desktop-item-1 {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navbar-desktop-item-2 {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

a {
  font-size: 1.4rem;
  text-decoration: none;
}

a .btn-pulse {
 color: #fff !important;
}

a:visited {
  color: #2f3640;
}

:root {
  --color-cta-passive: #0abde3;
  --color-cta-hover: #48dbfb;
  --color-cta-active: #0abde3;
  --transition-cta: 0.25s ease-in-out;
}

.btn-pulse {
  margin-top: 10px;
  margin-right: 46px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding: 0 32px;
  border-radius: 6px;
  line-height: 46px;
  overflow: hidden;
  color: #fff !important;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  text-overflow: ellipsis;
  white-space: normal;
  overflow: hidden;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: center;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  -webkit-box-shadow: 0 0 0 0 rgba(108, 92, 231, 0.35);
  box-shadow: 0 0 0 0 rgba(108, 92, 231, 0.35);
  -webkit-animation: pulse 1.5s infinite;
  animation: pulse 1.5s infinite;
}

@media screen and (max-width: 960px) {
  .btn-pulse {
    font-size: 10px;
    padding: 0 14px;
    margin-right: 0 !important;
  }
  .logo {
    margin: 0 !important;
  }
}

.btn-pulse:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-color: var(--color-cta-passive);
  -webkit-transition: background-color 400ms;
  transition: background-color 400ms;
}

.btn-pulse:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--color-cta-active);
  z-index: -1;
  width: 100%;
  padding-top: 120%;
  border-radius: 100%;
  opacity: 0;
  -webkit-transform: translateX(-50%) translateY(-50%) scale(0.2);
  transform: translateX(-50%) translateY(-50%) scale(0.2);
  transition: opacity 500ms, -webkit-transform 500ms;
  -webkit-transition: opacity 500ms, -webkit-transform 500ms;
  transition: opacity 500ms, transform 500ms;
  transition: opacity 500ms, transform 500ms, -webkit-transform 500ms;
  -webkit-transition-delay: 0, 100ms;
  transition-delay: 0, 100ms;
}

.btn-pulse:hover:before {
  background-color: var(--color-cta-hover);
}

.btn-pulse:active {
  color: #fff;
}

.btn-pulse:active:after {
  -webkit-transform: translateX(-50%) translateY(-50%) scale(1.1);
  transform: translateX(-50%) translateY(-50%) scale(1.1);
  transition: opacity 100ms, -webkit-transform 100ms;
  -webkit-transition: opacity 100ms, -webkit-transform 100ms;
  transition: opacity 100ms, transform 100ms;
  transition: opacity 100ms, transform 100ms, -webkit-transform 100ms;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  opacity: 1;
}

@-webkit-keyframes pulse {
  0% {
  }
  70% {
    -webkit-box-shadow: 0 0 0 50px rgba(90, 153, 212, 0);
    box-shadow: 0 0 0 50px rgba(90, 153, 212, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
    box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
  }
}

@keyframes pulse {
  0% {
  }
  70% {
    -webkit-box-shadow: 0 0 0 50px rgba(90, 153, 212, 0);
    box-shadow: 0 0 0 50px rgba(90, 153, 212, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
    box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
  }
}

strong {
  color: #000;
  font-family: 'Lato', sans-serif;
  font-size: 1.6rem;
  line-height: 140%;
}

@media screen and (max-width: 960px) {
  strong {
    font-family: 'Lato', sans-serif;
    font-size: 1.4rem;
    line-height: 150%;
  }
}

h2 {
  color: #000;
  font-family: 'Lato', sans-serif;
  font-size: 2.4rem;
  line-height: 100%;
}

@media screen and (max-width: 960px) {
  h2 {
    font-family: 'Lato', sans-serif;
    font-size: 2.4rem;
    line-height: 120%;
  }
}

h3 {
  color: #000;
  font-family: 'Lato', sans-serif;
  font-size: 1.8rem;
  line-height: 120%;
}

@media screen and (max-width: 960px) {
  h3 {
    font-family: 'Lato', sans-serif;
    font-size: 1.8rem;
    line-height: 120%;
  }
}

h4 {
  color: #000;
  font-family: 'Lato', sans-serif;
  font-size: 1.6rem;
  line-height: 130%;
}

@media screen and (max-width: 960px) {
  h4 {
    font-family: 'Lato', sans-serif;
    font-size: 1.6rem;
    line-height: 130%;
  }
}

p {
  color: #000;
  font-family: 'Lato', sans-serif;
  font-size: 1.4rem;
  line-height: 140%;
}

@media screen and (max-width: 960px) {
  p {
    font-family: 'Lato', sans-serif;
    font-size: 1.4rem;
    line-height: 150%;
  }
}

.time {
  font-size: 3.6rem;
  margin: 0 !important;
}

html {
  scroll-behavior: smooth;

  height: 100%;
}

body {
  width: 100%;
  height: 100vh;
  position: relative;
  scroll-behavior: smooth;
  background-color: #c4c4c4;
}

svg, img {
  display: block;
  width: 100%;
}
/*# sourceMappingURL=style.css.map */