@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --curent-size: 1920;

  --font: "Montserrat", sans-serif;
}
body {
  background: #000;
}

.container {
  width: calc((1600 / var(--curent-size)) * 100vw);
  margin: 0 auto;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  padding: calc((10 / var(--curent-size)) * 100vw) 0;
}

#hero {
  width: 100%;
  height: calc((600 / var(--curent-size)) * 100vw);
  background-image: url(/assets/img/hero.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

#hero:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc((1 / var(--curent-size)) * 100vw);
  background: linear-gradient(
    90deg,
    rgba(203, 251, 73, 0) 0%,
    rgba(203, 251, 73, 1) 52%,
    rgba(203, 251, 73, 0) 100%
  );
}

#hero .container {
  height: 100%;
}

.text {
  position: absolute;
  top: calc((180 / var(--curent-size)) * 100vw);
  right: calc((120 / var(--curent-size)) * 100vw);
  width: calc((180 / var(--curent-size)) * 100vw);
  height: auto;
}

.logo svg {
  width: calc((180 / var(--curent-size)) * 100vw);
  height: auto;
}

.header-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

.header-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: calc((30 / var(--curent-size)) * 100vw);
  background: #cbfb49;
  padding: calc((10 / var(--curent-size)) * 100vw)
    calc((20 / var(--curent-size)) * 100vw);
  font-family: var(--font);
  font-size: calc((16 / var(--curent-size)) * 100vw);
  color: #000;
  font-weight: 500;
  text-decoration: none;
}

.hero-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
}

.hero-wrapper > p {
  font-family: var(--font);
  font-size: calc((18 / var(--curent-size)) * 100vw);
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: calc((6 / var(--curent-size)) * 100vw);
}

.hero-wrapper > h1 {
  font-family: var(--font);
  font-size: calc((80 / var(--curent-size)) * 100vw);
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  font-weight: 800;
  line-height: 0.7;
  margin: calc((20 / var(--curent-size)) * 100vw) 0
    calc((30 / var(--curent-size)) * 100vw) 0;
}

.hero-wrapper > h1 span {
  font-family: var(--font);
  font-size: calc((50 / var(--curent-size)) * 100vw);
  color: #cbfb49;
  font-weight: 500;
  text-transform: uppercase;
  font-weight: 800;
}

.hero-wrapper > span {
  font-family: var(--font);
  font-size: calc((18 / var(--curent-size)) * 100vw);
  color: #fff;
  font-weight: 500;
}

.hero-wrapper > a {
  margin-top: calc((20 / var(--curent-size)) * 100vw);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc((20 / var(--curent-size)) * 100vw);
  border-radius: calc((30 / var(--curent-size)) * 100vw);
  background: #cbfb49;
  padding: calc((20 / var(--curent-size)) * 100vw)
    calc((60 / var(--curent-size)) * 100vw);

  font-family: var(--font);
  font-size: calc((20 / var(--curent-size)) * 100vw);
  color: #000;
  font-weight: 600;
  text-decoration: none;
}

.hero-wrapper > a svg {
  width: calc((20 / var(--curent-size)) * 100vw);
  height: auto;
}

.hero-wrapper > ul {
  display: flex;
  align-items: flex-start;
  list-style: none;
  gap: calc((30 / var(--curent-size)) * 100vw);
  margin-top: calc((60 / var(--curent-size)) * 100vw);
  margin-bottom: calc((20 / var(--curent-size)) * 100vw);
}

.hero-wrapper > ul li {
  display: flex;
  align-items: center;
  gap: calc((10 / var(--curent-size)) * 100vw);
}

.hero-wrapper > ul li p {
  font-family: var(--font);
  font-size: calc((16 / var(--curent-size)) * 100vw);
  color: #fff;
  font-weight: 500;
}

.hero-wrapper > ul li img {
  width: calc((40 / var(--curent-size)) * 100vw);
  height: calc((40 / var(--curent-size)) * 100vw);
}

.items-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc((20 / var(--curent-size)) * 100vw);
  width: 100%;
  padding: calc((30 / var(--curent-size)) * 100vw) 0 0 0;
}

.items-wrapper > p {
  color: #fff;
  font-size: calc((24 / var(--curent-size)) * 100vw);
  font-family: var(--font);
  font-weight: 600;
  text-transform: uppercase;
}

.items-wrapper ul {
  display: flex;
  align-items: flex-start;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
}

.items-wrapper ul li {
  width: calc((240 / var(--curent-size)) * 100vw);
  height: calc((240 / var(--curent-size)) * 100vw);
  position: relative;
  overflow: hidden;
  border-radius: calc((20 / var(--curent-size)) * 100vw);
  border: calc((1 / var(--curent-size)) * 100vw) solid #ffffff88;
  padding: calc((10 / var(--curent-size)) * 100vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

.items-wrapper ul li:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    190deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 100%
  );
}

.items-wrapper ul li:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    270deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 100%
  );
  z-index: 1;
}

.items-wrapper ul li > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.items-wrapper ul li div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  height: 100%;
}

.items-wrapper ul li div img {
  width: calc((50 / var(--curent-size)) * 100vw);
  height: calc((50 / var(--curent-size)) * 100vw);
}

.items-wrapper ul li div p {
  color: #fff;
  font-size: calc((16 / var(--curent-size)) * 100vw);
  font-family: var(--font);
  font-weight: 600;
  margin-top: auto;
}

.items-wrapper ul li div span {
  margin-top: calc((16 / var(--curent-size)) * 100vw);
  color: #fff;
  font-size: calc((14 / var(--curent-size)) * 100vw);
  font-family: var(--font);
  font-weight: 400;
}

footer {
  padding: calc((20 / var(--curent-size)) * 100vw) 0
    calc((10 / var(--curent-size)) * 100vw) 0;
  width: 100%;
  position: relative;
  margin-top: calc((20 / var(--curent-size)) * 100vw);
}

footer:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc((1 / var(--curent-size)) * 100vw);
  background: linear-gradient(
    90deg,
    rgba(203, 251, 73, 0) 0%,
    rgba(203, 251, 73, 1) 52%,
    rgba(203, 251, 73, 0) 100%
  );
}

.footer-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.footer-wrapper > p {
  font-family: var(--font);
  font-size: calc((14 / var(--curent-size)) * 100vw);
  color: #fff;
  opacity: 0.7;
  font-weight: 500;
  text-transform: uppercase;
}

.footer-wrapper a {
  width: calc((320 / var(--curent-size)) * 100vw);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: calc((30 / var(--curent-size)) * 100vw);
  background: #cbfb49;
  padding: calc((10 / var(--curent-size)) * 100vw)
    calc((20 / var(--curent-size)) * 100vw);
  font-family: var(--font);
  font-size: calc((16 / var(--curent-size)) * 100vw);
  color: #000;
  font-weight: 500;
  text-decoration: none;
}

.footer-logo {
  width: calc((160 / var(--curent-size)) * 100vw);
  height: auto;
}

@media all and (max-width: 768px) {
  :root {
    --curent-size: 375;
  }

  .container {
    width: calc((355 / var(--curent-size)) * 100vw);
  }

  .hero-wrapper > ul {
    gap: calc((6 / var(--curent-size)) * 100vw);
    margin-top: calc((30 / var(--curent-size)) * 100vw);
    margin-bottom: calc((20 / var(--curent-size)) * 100vw);
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-wrapper > h1 {
    font-family: var(--font);
    font-size: calc((30 / var(--curent-size)) * 100vw);
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    font-weight: 800;
    line-height: 0.7;
    margin: calc((20 / var(--curent-size)) * 100vw) 0
      calc((30 / var(--curent-size)) * 100vw) 0;
  }

  .hero-wrapper > h1 span {
    font-size: calc((17 / var(--curent-size)) * 100vw);
  }

  .hero-wrapper > a {
    margin-top: auto;
    gap: calc((20 / var(--curent-size)) * 100vw);
    padding: calc((16 / var(--curent-size)) * 100vw)
      calc((10 / var(--curent-size)) * 100vw);
    width: 100%;
    font-size: calc((13 / var(--curent-size)) * 100vw);
  }

  .hero-wrapper > span {
    font-size: calc((13 / var(--curent-size)) * 100vw);
    max-width: calc((200 / var(--curent-size)) * 100vw);
  }

  .header-btn {
    font-size: calc((14 / var(--curent-size)) * 100vw);
  }

  .hero-wrapper > p {
    font-size: calc((12 / var(--curent-size)) * 100vw);
    letter-spacing: calc((6 / var(--curent-size)) * 100vw);
  }

  .logo svg {
    width: calc((120 / var(--curent-size)) * 100vw);
    height: auto;
  }

  .hero-wrapper > ul li img {
    width: calc((40 / var(--curent-size)) * 100vw);
    height: calc((40 / var(--curent-size)) * 100vw);
  }

  .hero-wrapper > ul li p {
    font-size: calc((12 / var(--curent-size)) * 100vw);
  }

  .text {
    display: none;
  }

  #hero {
    width: 100%;
    height: calc((674 / var(--curent-size)) * 100vw);
    background-image: url(/assets/img/hero-m.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center top;
    position: relative;
  }

  .hero-wrapper {
    padding-top: calc((80 / var(--curent-size)) * 100vw);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
  }

  .items-wrapper > p {
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }

  .items-wrapper ul {
    gap: calc((10 / var(--curent-size)) * 100vw);
  }

  .items-wrapper ul li {
    width: 100%;
    height: calc((135 / var(--curent-size)) * 100vw);
  }

  .items-wrapper ul li > img {
    object-fit: cover;
    background-position: center top;
  }

  .items-wrapper ul li div {
    width: 100%;
  }

  .items-wrapper ul li div img {
    position: absolute;
    bottom: 0;
    right: 0;
  }

  .footer-wrapper {
    flex-direction: column;
    align-items: center;
    gap: calc((20 / var(--curent-size)) * 100vw);
  }

  .footer-wrapper p {
    order: 100;
  }

  .footer-wrapper > p {
    font-size: calc((10 / var(--curent-size)) * 100vw);
  }
}
