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

button {
  text-decoration: none;
  border: none;
  background: #f19345;
}

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

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

::-webkit-scrollbar-thumb {
  height: 52px;
  background-color: #f19345;
  border-radius: 6px;
  border: solid 4px #f5f5f5;
}

.header {
  width: 100%;
  height: 86px;
  background-color: rgba(0, 0, 0, 0.5);
  -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);
}

.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: 300px;
  height: 52px;
  margin-left: 24px;
  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: 70px;
    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;
}

:root {
  --color-cta-passive: #f19345;
  --color-cta-hover: #FFC595;
  --color-cta-active: #f19345;
  --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: 10px;
  line-height: 46px;
  overflow: hidden;
  color: #f5f5f5 !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(255, 197, 149, 0.35);
  box-shadow: 0 0 0 0 rgba(255, 197, 149, 0.35);
  -webkit-animation: pulse 1.5s infinite;
  animation: pulse 1.5s infinite;
}

.btn-pulse:hover {
  color: #f5f5f5 !important;
}

@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:after:hover {
  color: #121213 !important;
}

.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);
  }
}



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 */