/* importing fonts */
@font-face {
  font-family: "Athletics";
  src: url("../fonts/Athletics\ Medium.otf");
  font-weight: 500;
}
@font-face {
  font-family: "Athletics";
  src: url("../fonts/Athletics\ Regular.otf");
  font-weight: 400;
}

:root {
  --content-width: clamp(200px, 92%, 1148px);
  --primary-color: #006ace;
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Athletics";
  font-weight: 500;
  color: black;
}
header {
  position: sticky;
  top: 0;
  background-color: black;
}
header .container {
  width: var(--content-width);
  margin: auto;
  height: 88px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

header .navigation {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
header .container ul {
  display: flex;
  gap: 32px;
  list-style: none;
}

header a {
  color: white;
  font-weight: 400;
}

header .container .socials ul {
  gap: 16px;
}

header.shadow {
  box-shadow: 0px 0px 4px rgb(215, 215, 215);
}

header.touch-device .navigation {
  display: flex;
  height: 100vh;
  flex-direction: column;
  gap: 32px;
  justify-content: flex-start;
  background-color: black;
  width: 100vw;
  position: absolute;
  top: 64px;
  left: 0;
  padding-top: 40px;
  padding-left: 32px;
}
header.touch-device nav ul {
  flex-direction: column;
}

header .container nav ul a {
  text-decoration: none;
}

header .menu {
  display: none;
  cursor: pointer;
  margin-right: 12px;
}

header .menu img {
  width: 20px;
}

h1 {
  font-size: 80px;
  letter-spacing: -4px;
  line-height: 1;
}

h2 {
  font-size: 72px;
  letter-spacing: -4px;
  line-height: 1;
}

h3 {
  font-size: 48px;
  letter-spacing: -2px;
  line-height: 1;
}

h4 {
  font-size: 56px;
  letter-spacing: -2px;
  line-height: 1;
}

p {
  font-size: 18px;
  color: rgb(53, 53, 53);
  font-weight: 400;
}
/* 
h2 span {
  text-decoration: underline;
} */

a.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 64px;
  text-decoration: none;
  font-weight: 400;
}

a.btn.primary {
  background-color: black;
  color: white;
}

a.btn.secondary {
  border: 1px solid black;
}

.btns-container {
  display: flex;
  gap: 16px;
}

footer {
  background-color: black;
}

footer .container {
  width: var(--content-width);
  margin: auto;
  height: 88px;
  display: flex;
  align-items: center;
}
footer .container p {
  font-size: 16px;
}

footer p {
  color: white;
}

/* breakpoints */

@media screen and (max-width: 1920px) {
}
@media screen and (max-width: 1680px) {
  h1 {
    font-size: 76px;
  }

  h2 {
    font-size: 68px;
  }
}

@media screen and (max-width: 1440px) {
  h1 {
    font-size: 72px;
    letter-spacing: -3px;
  }

  h2 {
    font-size: 64px;
    letter-spacing: -3px;
  }
}

@media screen and (max-width: 1200px) {
  h1 {
    font-size: 68px;
  }

  h2 {
    font-size: 60px;
  }
}

@media screen and (max-width: 1080px) {
  h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 56px;
  }
}

@media screen and (max-width: 960px) {
  header {
    box-shadow: 0px 0px 4px rgb(215, 215, 215);
  }
  header .navigation {
    display: none;
  }

  header .menu {
    display: block;
  }

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 48px;
  }

  h3 {
    font-size: 40px;
  }
}

@media screen and (max-width: 720px) {
  .btns-container {
    justify-content: center;
  }

  footer .container {
    justify-content: center;
  }
}

@media screen and (max-width: 600px) {
  header .container {
    height: 72px;
  }

  footer .container {
    height: 72px;
  }
  .btns-container {
    flex-direction: column;
    width: var(--content-width);
    margin: 0px auto;
  }

  a.btn {
    width: 100%;
    padding: 13px 0px;
  }

  footer {
    margin-top: 36px;
  }
}

/* phone breakpoints */

@media screen and (max-width: 480px) {
  p {
    font-size: 16px;
  }
}

@media screen and (max-width: 425px) {
  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 44px;
  }

  h3 {
    font-size: 28px;
    letter-spacing: -1px;
  }
}

@media screen and (max-width: 360px) {
}

@media screen and (max-width: 320px) {
  h1 {
    font-size: 40px;
    letter-spacing: -2px;
  }

  h2 {
    font-size: 36px;
    letter-spacing: -2px;
  }
}

@media screen and (max-width: 280px) {
}

@media screen and (max-width: 240px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 20px;
  }
}
