/* Fonts */
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}


/* Variables and reset */
:root {
  --color-blue: #0066CC;
  --color-blue-dark: #004F9F;
  --color-red: #E30613;
  --color-black: #1C1C1C;
  --color-white: #F7F9FB;
  --color-gray: #4B5563;
  --text-shadow: 2px 2px 2px var(--color-black);
  --text-shadow-1px: 1px 1px 1px var(--color-black);
}

body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--color-black);
  background: var(--color-white);
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

ul, ol {
  list-style: none;
  padding: 0;
  font-size: 26px;
}

label {
  font-size: 20px;
}

/* Utilities and components */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

h1, .h1 {
  margin: 0;
  margin-bottom: 25px;
  font-size: 60px;
  line-height: 1;
  font-weight: 600;
}

h2, .h2 {
  margin: 0;
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 500;

  display: inline-block;
  padding-bottom: 7px;
  border-bottom: 4px solid transparent;
  text-shadow: var(--text-shadow);
}

h3, .h3 {
  margin: 0;
  margin-bottom: 15px;
  font-size: 28px;
  font-weight: 500;
}

p {
  margin: 0;
  margin-bottom: 15px;
  line-height: 1.4;
}

a {
  font-size: 26px;
}

button, .button {
  display: inline-block;
  border: 3px solid transparent;
  background: var(--color-blue);
  font-family: "Roboto", sans-serif;
  color: var(--color-white);
  font-size: 24px;
  text-align: center;
  line-height: 1.4;
  padding: 15px 40px;
  border-radius: 40px;
  cursor: pointer;
  transition: 0.3s ease;
  text-decoration: none;
}

button:hover, .button:hover {
  background: var(--color-blue-dark);
}

.button--red {
  background: transparent;
  color: var(--color-red);
  border-color: var(--color-red);
}

.button--red:hover {
  color: var(--color-white);
  background: var(--color-red);
}

@media (max-width: 1024px) {
  h1, .h1 {
    font-size: 40px;
  }

  h2, .h2 {
    font-size: 30px;
  }

  h3, .h3 {
    font-size: 22px;
  }

  p, ol, ul, button, .button, a {
    font-size: 20px;
  }
}

.hidden {
  display: none !important;
}

/* HEADER */
.header {
  background: var(--color-blue);
  position: relative;
}

.header__content {
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  font-size: 28px;
  color: var(--color-white);
  text-decoration: none;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header__nav-link {
  font-size: 22px;
  color: var(--color-white);
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: 0.3s ease;
}

.header__nav-link:hover {
  border-color: var(--color-white);
}

.header__menu-btn {
  display: none;
  padding: 0;
  border: none;
  background: none;
}

.header__menu-btn:hover {
  background: none;
}

.header__menu-btn__icon {
  width: 40px;
  background: none;
}

.header__menu-btn__icon:hover {
  background: none;
}

#menu.menu--open {
  display: flex;
}

@media (max-width: 768px) {
  .header__content {
    padding: 15px 0;
  }

  .header__menu-btn {
    display: block;
  }

  .header__nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-blue);
    z-index: 99;

    flex-direction: column;
    align-items: center;
    padding-top: 20%;
    gap: 40px;
  }

  .header__nav-link {
    font-size: 26px;
  }
}

/* FOOTER */
.footer {
  background: var(--color-blue);
  padding: 50px 0 20px 0;
}

.footer__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.footer__logo {
  font-size: 28px;
  color: var(--color-white);
  text-decoration: none;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__nav-link {
  display: inline-block;
  font-size: 22px;
  color: var(--color-white);
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: 0.3s ease-in-out;
}

.footer__nav-link:hover {
  border-color: var(--color-red);
}

.footer__adress {
  color: var(--color-white);
  width: 100%;
  font-size: 20px;
}

.footer__copyright {
  text-align: center;
  color: rgb(209, 209, 209);
  font-size: 20px;
  margin-top: 50px;
}

@media (max-width: 768px) {
  .footer__logo {
    width: 100%;
  }
}

@media (max-width: 375px) {
  .footer__logo {
    text-align: center;
  }

  .footer__top {
    flex-direction: column;
    align-items: center;
  }

  .footer__nav {
    text-align: center;
  }
}

/* COOKIES */
.cookies__banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  padding: 15px 0;
  border-top: 3px solid var(--color-red);
  background: var(--color-white);
  box-shadow: 0 -20px 30px rgba(0, 0, 0, 0.3);
}

.cookies__banner>.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cookies__text {
  font-size: 24px;
  margin: 0;
}

.cookies__link {
  font-size: 24px;
  color: var(--color-blue);
}

.cookies__btn {
  min-width: 200px;
}

@media (max-width: 1024px) {
  .cookies__text, .cookies__link, .cookies__btn {
    font-size: 18px;
  }

  .cookies__text br {
    display: none;
  }
}

@media (max-width: 768px) {
  .cookies__text, .cookies__link, .cookies__btn {
    font-size: 14px;
  }

  .cookies__btn {
    border: 2px solid var(--color-red);
    padding: 12px 40px;
  }
}

@media (max-width: 425px) {
  .cookies__banner>.container {
    flex-direction: column;
    gap: 10px;
  }
}