* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: "Inter Bold";
  src: url(/fonts/inter/static/Inter-Bold.ttf);
}
@font-face {
  font-family: "Inter Medium";
  src: url(/fonts/inter/static/Inter-Medium.ttf);
}
@font-face {
  font-family: "Inter Extra-Light";
  src: url(/fonts/inter/static/Inter-ExtraLight.ttf);
}
@font-face {
  font-family: "Code";
  src: url(/fonts/source_code_pro/static/SourceCodePro-Regular.ttf);
}
h1, h2, h3, h4, h5, h6, li, a {
  font-family: "Inter Bold";
  color: #ffffff;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 24px;
}

p, button, input, textarea {
  font-family: "Inter Extra-Light";
  color: #e8e6e6;
  font-size: 18px;
}

input, textarea {
  font-size: 16px;
}

a {
  text-decoration: none;
  font-size: 16px;
}

img {
  max-width: 100%;
}

body {
  background-color: #28282b;
  overflow-x: hidden;
}
body .body-content-wrapper {
  overflow-x: hidden;
}

button {
  cursor: pointer;
  background-color: transparent;
  border: none;
  border: 1px solid #39bde2;
  border-radius: 5px;
  padding: 10px 20px;
  transition: 0.5s;
}

button:hover {
  background-color: #39bde2;
  color: #000000;
  box-shadow: 0px 0px 20px 1px #39bde2;
}

.underline-style {
  position: relative;
  z-index: 1;
}

.underline-style::before {
  position: absolute;
  content: "";
  border-bottom: 18px solid #39bde2;
  width: 95%;
  left: 10%;
  top: 70%;
  z-index: -1;
}

.code-font {
  font-family: "Code";
}

.waves-spacer {
  aspect-ratio: 900/600;
  width: 100%;
  height: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.blob {
  position: absolute;
  z-index: -1;
}

.section-heading {
  width: 100%;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.left-side {
  width: 50%;
  height: 100%;
}

.right-side {
  width: 50%;
  height: 100%;
  float: right;
}

.hidden {
  opacity: 0;
}

.hidden-horizontal {
  opacity: 0;
  filter: blur(5px);
  transform: translateX(-100px);
  transition: all 1s;
}

.show-horizontal {
  opacity: 1;
  filter: blur(0px);
  transform: translateX(0);
}

.hidden-vertical {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(50px);
  transition: all 1s;
}

.show-vertical {
  opacity: 1;
  filter: blur(0px);
  transform: translateY(0);
}

.mobile-only {
  display: none;
}

@media (max-width: 1199px) {
  .mobile-only {
    display: block;
  }
  section {
    width: 100vw;
    overflow: hidden;
  }
  .hidden-horizontal {
    opacity: 1;
    filter: blur(0px);
    transform: translateX(0);
  }
}
@media (min-width: 1200px) and (max-width: 1500px) {
  .mobile-only {
    display: block;
  }
}
@media (min-width: 1501px) and (max-width: 1799px) {
  .mobile-only {
    display: block;
  }
}