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

:root {
  /* Colors */
  --color-primary: #1962ab;
  --color-bg: rgba(45, 44, 42, 1);
  --color-text: rgba(230, 217, 234, 1);

  /* Typography */
  --font-base: "ArialCustom", sans-serif;
  --font-size-base: 16px;
  --font-weight-normal: 400;
  --font-weight-bold: 700;

  /* Borders & Radius */
  --border-radius: 8px;
  --border-color: rgba(230, 217, 234, 1);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
}

html,
body {
  height: 100%;
  font-family: var(--font-base);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -5%;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.narrow {
  font-family: "ArialNarrow", sans-serif;
}

.black {
  font-family: "ArialBlack", sans-serif;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
  background-color: transparent;
}

ul,
ol {
  list-style: none;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.container {
  max-width: 1760px;
  padding: 0 20px;
  margin: 0 auto;
}

.link {
  color: var(--color-primary);
}

.link:hover {
  text-decoration: underline;
}

/* Header */
.header {
  padding: 20px 0;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
}

.header__nav {
  display: flex;
  gap: 50px;
}

.nav__link {
  text-transform: uppercase;
  font-weight: var(--font-weight-bold);
  line-height: 1;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__burger {
  display: none;
}

.header__search img,
.header__burger img {
  width: 25px;
  height: 25px;
}

/* Main */
.main__container {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.article {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.article__header {
  border-bottom: 1px solid var(--border-color);
  padding: 40px 0;
}

.article__title {
  font-size: 76px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.article__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(230, 217, 234, 1);
}

.article__sidebar {
  width: 100%;
  max-width: 400px;
}

.sidebar__title {
  font-size: 36px;
  line-height: 1.2;
}

.author {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.author__photo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.author__name {
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 !important;
}

.author__date {
  font-weight: var(--font-weight-bold);
  color: rgba(230, 217, 234, 0.7);
  margin-bottom: 0 !important;
}

.article__content {
  width: 100%;
  max-width: 1020px;
}

.article__container h2 {
  font-size: 36px;
  font-weight: 900;
}

.article__container h3 {
  font-weight: 900;
  margin-bottom: 15px;
}

.article__container p {
  font-weight: var(--font-weight-bold);
  margin-bottom: 20px;
}

/* Footer */
.footer {
  background-color: rgba(250, 247, 251, 1);
  color: rgba(65, 65, 65, 1);
  padding: 50px 0;
  letter-spacing: -5%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  font-weight: var(--font-weight-bold);
}

.footer__top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer__logo {
  font-weight: 900;
  font-size: 34px;
}

.footer__nav {
  display: flex;
  gap: 100px;
  flex-wrap: wrap;
}

.footer__link {
  font-weight: 700;
  text-transform: uppercase;
}

.footer__link:hover {
  text-decoration: underline;
}

.footer__content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer__disclaimer p:not(:last-child) {
  margin-bottom: 20px;
}

.footer__disclaimer,
.footer__legal {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(65, 65, 65, 1);
}

.footer__legal p:not(:last-child) {
  margin-bottom: 10px;
}

@media (max-width: 1024px) {
  body,
  .main__container {
    gap: 50px;
  }

  .article {
    gap: 50px;
  }

  .article__sidebar {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .article__header {
    padding: 20px 0px;
  }

  .article__title {
    font-size: 48px;
    line-height: 1.2;
  }

  .article__container {
    flex-direction: column;
  }

  .lander-form-field .lander-submit {
    font-size: 16px !important;
  }
  .lander-form-field .lander-submit:hover {
    font-size: 16px !important;
  }
}

@media (max-width: 768px) {
  body,
  .main__container,
  .footer {
    gap: 25px;
  }

  .container {
    padding: 0px 10px;
  }
  .header__nav {
    display: none;
  }

  .header__burger {
    display: block;
  }

  .article {
    gap: 25px;
  }

  .article__title {
    font-size: 32px;
  }

  .article__container h2 {
    font-size: 24px;
  }

  .footer {
    padding: 25px 0px;
  }

  .footer__content {
    gap: 25px;
  }

  .footer__top {
    justify-content: center;
    gap: 30px;
  }

  .footer__nav {
    row-gap: 20px;
    align-items: center;
    justify-content: center;
    column-gap: 50px;
  }

  .footer__legal p:not(:last-child) {
    margin-bottom: 20px;
  }
}

.lander-form {
  background-color: rgba(250, 247, 251, 1);
}

.iti__country-list {
  color: rgba(65, 65, 65, 1) !important;
}
