@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

:root {
  --gray: #949494;
  --gray-2: #b2b2b2;
  --gray-3: #9e9e9e;
  --gray-4: #9d9d9d;
  --gray-5: #636363;
  --gray-6: #5f5f5f;
  --black: #000000;
  --black-light: #444444;
  --black-light-2: #101010;
  --black-light-3: #1e1e1e;
  --white: #ffffff;
  --white-2: #fbfbfb;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  font-weight: 400;
}

html {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}
html::-webkit-scrollbar {
  display: none;
}

body {
  overflow: hidden;
  background-color: var(--black);
  color: var(--white);
  font-size: 16px;
}

* {
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

button {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease-in-out !important;
}

a:hover * {
  transition: all 0.3s ease-in-out !important;
  color: var(--gray-2) !important;
}

a:hover {
  transition: all 0.3s ease-in-out !important;
  color: var(--gray-2) !important;
}

ul {
  list-style: none;
}

section {
  margin: 100px 0;
}

input,
textarea {
  display: inline-block;
  border: none;
  background: transparent;
  outline: none;
}

textarea {
  resize: none;
}

address {
  font-style: normal;
}

img {
  object-fit: cover;
}

.logo {
  max-width: 300px;
}

.title {
  font-weight: 500;
  font-size: 36px;
  letter-spacing: 0.3px;
  line-height: 50.4px;
  text-align: center;
  text-transform: uppercase;
}

.title-sm {
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.subtitle {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.section-paragraph {
  text-align: center;
  font-size: 24px;
  color: var(--white);
  max-width: 980px;
  letter-spacing: 0.1px;
  line-height: 33.6px;
}

.section-paragraph.small {
  font-size: 20px;
  font-weight: 400;
  color: var(--gray-3);
  max-width: 624px;
}

.section-paragraph span {
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.1px;
  line-height: 33.6px;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 50px;
}

.link-btn {
  display: inline-block;
  width: 100%;
  padding: 26px;
  text-align: center;
  border: 1px solid var(--black-light);
  background-color: var(--black-light-2);
  color: var(--gray);
  line-height: 28px;
  margin-top: 30px;
}

.earth-container {
  position: fixed;
  z-index: 999;
  bottom: 40px;
  right: 40px;
}

.earth {
  position: relative;
  width: 75px;
  height: 75px;
  transform: scale(0.7);
  background: #101010 url("/images/earth.webp");
  border-radius: 50%;
  box-shadow: 0 0 0.96px #ffffff, 0 0 1.92px #ffffff, 0 0 6.72px #ffffff,
    0 0 13.44px #ffffff, 0 0 23.04px #ffffff, 0 0 40.32px #ffffff;
  animation: animate 12s linear infinite;
}

.dropdown-link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px !important;
  line-height: 15px;
}

@keyframes animate {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 219px 0;
  }
}

@media (max-width: 1200px) {
  .title {
    font-size: 30px;
  }

  .section-paragraph,
  .section-paragraph span {
    font-size: 18px;
    line-height: 1.4;
  }

  section {
    margin: 60px 0;
  }

  .container {
    padding: 0 20px;
  }
}

@media (max-width: 1000px) {
  .title {
    font-size: 25px;
    line-height: 1.2;
  }

  .link-btn {
    padding: 20px;
    font-size: 15px;
    line-height: 1.4;
  }

  .title-sm {
    font-size: 25px;
  }
}

@media (max-width: 800px) {
  .title {
    font-size: 20px;
    line-height: 1.2;
  }

  .title-sm {
    font-size: 20px;
  }

  .subtitle {
    font-size: 12px;
  }
}

@media (max-width: 600px) {
  .join-team__btn {
    width: 100% !important;
  }
}
