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

html {
  box-sizing: border-box;
}

body {
  font-size: 18px;
  font-family: "Raleway", sans-serif;
  background: var(--color-black);
  color: var(--color-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Gotham", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
a {
  color: inherit;
}

.page {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100vh;
}

.container {
  max-width: 1460px;
  padding: 0 10px;
  margin: 0 auto;
}

footer {
  margin-top: auto;
}

.header {
  margin-top: 20px;
  z-index: 9;
}

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

.header .container > a > img {
  @media (max-width: 663px) {
    width: 100%;
    height: 100%;
  }
}

.header__wrapper-nav {
  position: relative;
  padding: 40px;
  margin-top: 50px;

  &::before {
    content: "";
    position: absolute;
    width: 100vw;
    height: 80px;

    background: var(--color-red);
    clip-path: polygon(2% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: -1;
  }
}

.header__nav-top {
  display: flex;
  align-items: center;
  float: right;
}

.header__nav-top--time,
.header__nav-top--phone,
.header__nav-top--selector {
  display: flex;
  align-items: center;
}

.header__wrapper-nav > nav {
  display: flex;
  margin-left: 30px;
  margin-top: 30px;
}

.header__wrapper-nav > nav > li:not(:first-child) {
  padding-left: 40px;
  padding-right: 40px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.header__wrapper-nav > nav > li:first-child {
  padding-right: 30px;
}

.header__wrapper-nav > nav > li a {
  font-size: 17px;

  &:hover {
    text-decoration: underline;
  }
}

.header__nav-top {
  display: flex;
  align-items: center;
  gap: 40px;

  margin-top: 20px;

  @media (max-width: 1475px) {
    margin-right: 100px;
  }
}

.header__wrapper {
  @media (max-width: 1405px) {
    display: none;
  }
}

.header__nav-top--list {
  display: none;
}

.header__nav-top--selector {
  gap: 10px;
  padding: 15px;

  border: 1px solid var(--color-red);
  border-radius: var(--border-radius-sm);

  cursor: pointer;
}

.header__menu {
  display: none;

  @media (max-width: 1405px) {
    display: block;
  }
}

.header__menu-menu {
  display: none;

  position: absolute;
  top: 20%;
  left: 0%;

  text-align: center;
  font-size: 24px;

  z-index: 999;
}

.header__menu-menu {
  background: url('../assets/images/Home/home-bg.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}

.header__menu-menu li {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  width: 100vw;
  padding: 40px;
}

.header__nav-top--language {
  position: relative;
}

.header__nav-top--list {
  background: var(--color-white);
  color: var(--color-black);
  padding: 20px;
  border-radius: var(--border-radius-sm);
  position: absolute;

  z-index: 9;
}

.header__nav-top--list.open {
  display: flex;
  flex-direction: column;

  gap: 10px;
  cursor: pointer;
}

.header__menu-menu.open {
  display: block;
}

.page.hide main,
.page.hide footer {
  display: none;
}

.header__menu-wrapper {
  display: flex;
  align-items: center;

  gap: 20px;
}

.header__menu-burger {
  width: 60px;
  height: 60px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  gap: 5px;

  border: 1px solid var(--color-red);
  border-radius: var(--border-radius-sm);
}

.header__menu-burger > div {
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: var(--border-radius-sm);
}

.header__menu-burger > div:nth-child(2) {
  width: 12px;
  margin-left: 15%;
}

.footer {
  margin-bottom: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.footer > .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
  padding-top: 50px;
}

.footer > .container > nav {
  display: flex;
}

.footer > .container > nav > li {
  padding: 0 40px;
}

.footer__list {
  display: flex;
  align-items: center;
  gap: 50px;
}

.footer__list > li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.home__header {
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  overflow: hidden;

  height: 100vh;
}

.swiper-slide {
  width: 100vw !important;
  height: 125vh !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.swiper-pagination-bullet {
  background: rgb(255, 255, 255, 0.8) !important;
  width: 14px !important;
  height: 14px !important;
}

.swiper-pagination-bullet-active {
  background: #fff !important;
}

.page__top-wrapper {
  display: flex;
  justify-content: end;
  align-items: end;
  gap: 10px;
  float: right;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}
