* {
  box-sizing: border-box;
  font-family: 'Saira', sans-serif;
  font-size: 13px;
  line-height: 21.19px;
  letter-spacing: 1px;
}

body {
  padding: 0;
  margin: 0;
  background-color: #131313;
}

ul {
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

a {
  text-decoration: none;
  color: white;
  &:hover {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  }
  &:active {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  }
}

.container {
}

.child {
  scroll-snap-align: start;
  padding: 0 148px;
  height: 100vh;
  min-height: 1200px;
}

.btn {
  border-radius: 80px;
  background-color: #212121;
  color: white;
  border: 1px solid #ffffff80;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
  height: 46px;
  cursor: pointer;
}

.text-title {
  font-family: 'Saira';
  text-transform: uppercase;
  font-weight: 600;
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: 0px;
  color: #ffffff;
  text-align: center;
}

.text-content {
  font-family: 'Saira';
  font-weight: 300;
  font-size: 20px;
  line-height: 36px;
  letter-spacing: 0px;
  vertical-align: middle;
  opacity: 0.65;
  color: #ffffff;
  text-align: center;
}

.btn:before {
  content: '';
  width: 1em;
  height: 1px;
  background-color: white;
  margin-right: 5px;
  transform: rotate(-45deg);
  display: inline-block;
  transition: transform 0.3s ease-in-out;
  transition-delay: 0.1s;
}

.btn:hover {
  color: #fff;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
  transition: box-shadow 0.3s ease-in-out 0.1s;
}
.btn:hover:before {
  transform: rotate(0deg);
}

header {
  height: 79px;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background: #ffffff03;
  box-shadow: 0px 1px 0px 0px #00000008;
  backdrop-filter: blur(12px);
  z-index: 1000;
  padding-left: clamp(16px, 2vw, 48px);
  padding-right: clamp(16px, 2.2vw, 48px);
  .wrap-header {
    img {
      width: 137px;
      height: 52px;
    }
  }
  .menu {
    margin-left: auto;
    ul {
      gap: 2em;
      li {
        position: relative;
        a {
          font-size: 1em;
          font-family: 'Dela Gothic One';
          line-height: 1em;
          letter-spacing: 1px;
          text-transform: uppercase;
          font-weight: 200;
        }
        .page-active::before {
          content: '';
          transform: translateX(-50%);
          border-radius: 100%;
          position: absolute;
          background: white;
          top: 100%;
          height: 6px;
          width: 6px;
          left: 50%;
        }
      }
    }
    .btn {
      width: clamp(90px, 10vw, 158px);
      background-color: white;
      color: black;
      height: clamp(18px, 4vw, 36px);
      margin-left: clamp(20px, 6vw, 46px);
      white-space: nowrap;
      &:before {
        content: '';
        width: 12px;
        height: 1px;
        background-color: black;
      }
      &:hover {
        background-color: black;
        color: white;
      }
      &:hover:before {
        background-color: white;
      }
    }
  }
}

.flex {
  display: flex;
  gap: 1em;
}

.item-slider {
  display: none;
  justify-content: center;
  gap: 8px;
}

.dots {
  text-align: center;
  margin-top: 10px;
}

.dot {
  width: 8px;
  height: 8px;
  margin: 8px;
  background-color: #ffffff33;
  display: inline-block;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background-color: white;
}

.menu.show {
  display: block;
}

#btnScroll {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  font-size: 20px;
  color: #131313;
  display: none;
}

.bottom-left-corner {
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 0.5px solid white;
  border-left: 0.5px solid white;
  height: 60px;
  width: 60px;
  transition: 0.3s ease-in-out;
}
.top-right-corner {
  position: absolute;
  top: 0;
  right: 0;
  border-top: 0.5px solid white;
  border-right: 0.5px solid white;
  height: 60px;
  width: 60px;
  transition: 0.3s ease-in-out;
}
.effect-hover {
  border: solid 1px transparent;
  transition: box-shadow 0.3s ease-in-out 0.1s, border 0.3s ease-in-out 0.1s;
}
.effect-hover:hover {
  box-shadow: 0 0 17px rgba(255, 255, 255, 0.3);
}
.effect-hover:hover .top-right-corner {
  border-top: 3px solid white !important;
  border-right: 3px solid white !important;
  height: 80px !important;
  width: 80px !important;
}
.effect-hover:hover .bottom-left-corner {
  border-bottom: 3px solid white !important;
  border-left: 3px solid white !important;
  height: 80px !important;
  width: 80px !important;
}

/* HOME PAGE */

.section-homepage-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(180deg, rgba(31, 48, 48, 0) 0%, #131313 100%), url('images/bg-hp.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0;
  img {
    margin-top: 271px;
  }
  h1 {
    font-family: 'Dela Gothic One';
    font-size: 48px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    color: #ffffff;
  }
  .text-content {
    margin: 14px 0 30px 0;
  }
  .btn {
    font-family: 'Dela Gothic One';
    text-transform: uppercase;
    min-width: 278px;
    height: 46px;
    gap: 12px;
    font-size: 14px;
    padding: 0 20px;
  }
}
.child.section-homepage-2,
.child.section-homepage-3 {
  min-height: auto;
  height: fit-content;
  padding-top: calc(5% + 70px);
  padding-bottom: 5%;
}
.section-homepage-2 {
  display: flex;
  justify-content: center;
  align-content: center;
  .wrap-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 45%;
    z-index: 2;

    .text-title {
      font-family: 'Dela Gothic One';
      line-height: 130%;
      font-weight: 500;
      width: 80%;
      text-align: left;
    }
    .text-content {
      max-width: 70%;
      text-align: left;
    }
  }
  .wrap-image {
    display: flex;
    width: 50%;
    justify-content: center;
    align-items: center;
    mix-blend-mode: screen;
    #img-about-auto {
      width: 100%;
      max-width: 600px;
      &:hover {
        content: url('images/robot-hover.png');
      }
    }
  }
}

.section-homepage-3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 10px;
  .logo-bg {
    width: 20%;
    height: auto;
    position: absolute;
    top: 40%;
    mix-blend-mode: screen;
    filter: grayscale(1) brightness(0.5);
    opacity: 0.3;
    z-index: 0;
  }
  .text-title {
    letter-spacing: -1px;
    font-weight: 500;
  }
  .text-content {
    line-height: 35.86px;
    text-align: center;
    max-width: 45%;
    margin-top: 8px;
  }

  section {
    display: flex;
    flex-direction: column;
    margin-top: 60px;
    z-index: 1;
    .title-solution {
      margin-top: 20px;
      color: white;
      text-transform: uppercase;
      font-size: 24px;
      min-height: 30px;
      padding: 0 10px;
      line-height: 1.5em;
    }
    .content-solution {
      font-family: 'Saira';
      font-weight: 200;
      font-size: 1.2em;
      line-height: 24.45px;
      padding: 0 10px;
      opacity: 0.7;
      color: white;
      margin-top: 18px;
      min-height: 100px;
    }
    .section-row-1 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .section-row-2 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .container-solution {
      display: grid;
      grid-template-columns: subgrid;
      background-color: #212121;
      margin: 0.2em;
      gap: 8px;
      padding: 11px;
      img {
        width: 100%;
        height: 230px;
      }

      .wrap-content {
        display: grid;
        grid-template-rows: subgrid;
        grid-row: span 3;
        padding: 2em;
        margin-top: 25px;
        .btn {
          margin-top: 20px;
          width: 160px;
          gap: 12px;
        }
      }

      .content-solution {
        font-family: 'Saira';
        font-weight: 200;
        font-size: 1.2em;
        line-height: 24.45px;
        opacity: 0.7;
        color: white;
        margin-top: 18px;
      }

      .btn {
        margin-left: 10px;
        margin-bottom: 20px;
        width: 160px;
        gap: 12px;
      }
    }
    .content-solution:nth-child(1),
    .content-solution:nth-child(2) {
      grid-column: span 1;
    }

    .content-solution:nth-child(3),
    .content-solution:nth-child(4),
    .content-solution:nth-child(5) {
      grid-column: span 1;
    }
  }
}

.toastify .toast-close {
  margin-left: auto;
  cursor: pointer;
  font-size: 16px;
}

.toastify {
  color: #000 !important;
  border: 1px solid #ddd;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  min-width: 300px;
}

.section-homepage-4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  .wrap-success-stories {
    width: 100%;
    display: flex;
    gap: 3em;

    .wrap-text {
      width: 50%;
      display: flex;
      flex-direction: column;
      padding: 0 65px;
      justify-content: center;
      .text-title {
        max-width: 80%;
      }
      .text-content {
        max-width: 80%;
        text-align: left;
      }
    }
    .video-container {
      position: relative;
      width: 70%;
      aspect-ratio: 16 / 9;
      max-height: fit-content;
      iframe {
        position: relative;
        width: 100%;
        aspect-ratio: 16 / 9;
        z-index: 1;
      }
      .bg-white {
        position: absolute;
        z-index: 0;
        background-color: white;
        width: 80%;
        top: -5%;
        right: -3%;
        height: 110%;
      }
    }
  }

  .success-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
    h3 {
      color: white;
      font-weight: 400;
      font-size: 24px;
      line-height: 31.2px;
      letter-spacing: -0.1px;
      text-align: center;
      vertical-align: middle;
      text-transform: uppercase;
    }
    p {
      font-weight: 300;
      font-size: 15px;
      line-height: 24.45px;
      color: white;
      width: 55%;
    }

    .success-images {
      grid-column: span 2;
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 20px;

      .slider {
        display: flex;
        flex-direction: column;
        gap: 8px;
        overflow: hidden;
        position: relative;
        transition: transform 0.3s ease-in-out;
      }
      img {
        width: calc(25% - 8px);
        height: 200px;
        border: 1px solid #ffffffcc;
        object-fit: cover;
      }
      .arrow {
        display: none;
      }
    }
  }
}

.section-homepage-5 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;

  .text-title {
    letter-spacing: -0.5px;
  }

  .text-content {
    font-size: 22px;
    line-height: 35.86px;
    margin-top: 10px;
    max-width: 36%;
    text-align: center;
  }

  .events-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1em;
  }

  .event-item {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 5;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #212121;
    padding: 40px 70px;
    position: relative;
    img {
      width: 100%;
      aspect-ratio: 5/2;
    }
    h2 {
      font-weight: 700;
      font-size: 18px;
      line-height: 23.4px;
      text-align: center;
      color: white;
    }
    p {
      font-family: 'Saira';
      font-weight: 400;
      font-size: 16px;
      line-height: 24.45px;
      text-align: center;
      color: #ffffffa6;
    }
    .btn {
      width: 160px;
      height: 52px;
      margin: auto;
    }
    .bottom-left-corner {
      position: absolute;
      bottom: 0;
      left: 0;
      border-bottom: 1px solid white;
      border-left: 1px solid white;
      height: 60px;
      width: 60px;
    }
    .top-right-corner {
      position: absolute;
      top: 0;
      right: 0;
      border-top: 1px solid white;
      border-right: 1px solid white;
      height: 60px;
      width: 60px;
    }
  }
  &:before,
  &:after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: transparent;
    border: 3px solid white;
    top: 0;
    left: 0;
  }
}

.section-homepage-6 {
  display: flex;

  .wrap-text {
    display: flex;
    flex-direction: column;
    width: 50%;
    height: 100%;

    .text-title {
      letter-spacing: -1px;
    }
    .text-content {
      font-weight: 400;
      font-size: 15px;
      line-height: 24.45px;
      margin-top: 30px;
      max-width: 80%;
    }
  }

  form {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 1em;

    .wrap-input {
      display: flex;
      gap: 1em;
    }

    .group-input {
      display: flex;
      flex-direction: column;
      gap: 1em;
      width: 100%;

      label {
        font-family: 'Saira';
        color: white;
        opacity: 0.8;
      }
      input {
        border: 1px solid #ffffff1a;
        background: #212121;
        border-radius: 4px;
        font-family: 'Saira';
        font-weight: 400;
        font-size: 15px;
        line-height: 24.45px;
        height: 41px;
        padding: 0 8px;
        color: white;
      }
      select {
        border: 1px solid #ffffff1a;
        background: #212121;
        border-radius: 4px;
        font-family: Saira;
        font-weight: 400;
        font-size: 15px;
        line-height: 24.45px;
        height: 41px;
        padding: 0 8px;
        color: white;
      }
      textarea {
        border: 1px solid #ffffff1a;
        background: #212121;
        border-radius: 4px;
        font-size: 1em;
        padding: 1em;
        color: white;
        height: 92px;
      }
    }

    button {
      text-transform: uppercase;
      border-radius: 80px;
      color: black;
      background-color: white;
      border: none;
      font-weight: 700;
      font-size: 15px;
      line-height: 24.45px;
      letter-spacing: 0%;
      text-align: center;
      vertical-align: middle;
      height: 41px;
      margin-top: 35px;
    }
    button:hover {
      box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
      transition: box-shadow 0.3s ease-in-out 0.1s;
    }
    p {
      font-family: 'Saira';
      color: #ffffff80;
      font-weight: 300;
      font-size: 13px;
      line-height: 24px;
      letter-spacing: 0%;
      vertical-align: middle;
      margin-bottom: 10em;
    }
  }
}

.section-homepage-7 {
  background-image: url('images/bg-hp-end.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section-apply-form {
  display: flex;
  justify-content: center;

  form {
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 1em;

    .wrap-input {
      display: flex;
      gap: 1em;
    }

    .group-input {
      display: flex;
      flex-direction: column;
      gap: 1em;
      width: 100%;

      label {
        font-family: 'Saira';
        color: white;
        opacity: 0.8;
      }
      input:not([type='file']) {
        border: 1px solid #ffffff1a;
        background: #212121;
        border-radius: 4px;
        font-family: 'Saira';
        font-weight: 400;
        font-size: 15px;
        line-height: 24.45px;
        height: 41px;
        padding: 0 8px;
        color: white;
      }
      input[type='file'] {
        display: none;
        & + label {
          font-size: 15px;
          color: rgba(0, 0, 0, 0.5);
          background-color: #d3d3d3;
          display: inline-block;
          cursor: pointer;
          height: 41px;
          padding: 0 8px;
          border-radius: 4px;
          display: flex;
          align-items: center;
        }
      }
    }

    button {
      text-transform: uppercase;
      border-radius: 80px;
      color: black;
      background-color: white;
      border: none;
      font-weight: 700;
      font-size: 15px;
      line-height: 24.45px;
      letter-spacing: 0%;
      text-align: center;
      vertical-align: middle;
      height: 41px;
      margin-top: 35px;
    }
    button:hover {
      box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
      transition: box-shadow 0.3s ease-in-out 0.1s;
    }
    p {
      font-family: 'Saira';
      color: #ffffff80;
      font-weight: 300;
      font-size: 13px;
      line-height: 24px;
      letter-spacing: 0%;
      vertical-align: middle;
      margin-bottom: 10em;
    }
  }
}

.section-other-position {
  display: flex;
  flex-direction: column;
  margin-top: 10%;
  gap: 16px;
  .item-position {
    padding: 24px;
    background-color: #212121;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    span {
      width: 80%;
      display: flex;
      flex-direction: column;
      gap: 40px;

      p {
        font-family: Saira;
        font-weight: 500;
        font-size: 24px;
        color: white;
      }
      .info-position {
        display: flex;
        flex-wrap: wrap;
        gap: 10%;
        .item-info {
          display: flex;
          gap: 12px;
          align-items: center;
          img {
            width: 24px;
            height: 24px;
          }
          P {
            font-family: 'Saira';
            font-weight: 300;
            font-size: 1.2em;
            color: white;
            opacity: 0.65;
          }
        }
      }
    }
    a {
      margin-left: auto;
      width: 150px;
    }
    .btn {
      margin-left: auto;
      width: 150px;
      &:hover {
        background-color: white;
        color: black;
      }
      &:hover::before {
        background-color: black;
      }
    }
  }
}
.child.section-end {
  min-height: auto;
  height: fit-content;
  margin-top: 100px;
  padding: 0;
}
.section-end {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 0 48px;
  .wrap-contact {
    display: flex;
    padding: 0 5%;

    .address-container {
      display: flex;
      flex-direction: column;
      p {
        font-family: 'Saira';
        font-weight: 400;
        font-size: 15px;
        line-height: 24.45px;
        color: white;
      }
      img {
        width: 171px;
        height: 51px;
        opacity: 0.4;
        margin: 30px 0;
      }
      .social-media {
        display: flex;
        gap: 20px;

        img {
          width: 24px;
          height: 24px;
          transition: filter 0.3s ease, opacity 0.3s ease;
          &:hover {
            filter: brightness(20);
            opacity: 1;
          }
        }
      }
    }
    .pages-container {
      display: flex;
      flex-direction: column;
      gap: 1em;
      margin-left: clamp(16px, 15vw, 280px);
      p {
        font-family: 'Saira';
        font-weight: 400;
        font-size: 15px;
        line-height: 24.45px;
        color: white;
        margin-bottom: 34px;
      }
      a {
        font-family: 'Saira';

        font-weight: 400;
        font-size: 16px;
        line-height: 24.45px;
        letter-spacing: 0%;
      }
    }

    .contact-container {
      margin-left: auto;
      .contact-item {
        display: flex;
        border-bottom: 1px solid #ffffff0d;
        color: white;
        padding: 12px;
        gap: 8em;
        p {
          font-family: 'Saira';
          font-weight: 400;
          font-size: 15px;
          line-height: 24.45px;
        }
        img {
          margin-left: auto;
        }
      }
    }
  }
  hr {
    height: 0.8px;
    width: 100%;
    background-color: white;
    opacity: 0.05;
    border: none;
    height: 1px;
    margin: 10% 0 2% 0;
  }

  footer {
    padding: 0 5%;

    p:first-child {
      color: white;
      opacity: 0.6;
      font-family: 'Saira';
      font-weight: 400;
      font-size: 14px;
      line-height: 22.82px;
    }
    p:last-child {
      font-family: 'Saira';
      font-weight: 400;
      font-size: 14px;
      line-height: 22.82px;
      color: white;
      margin-bottom: 48px;
    }
  }
}

@media screen and (max-width: 1024px) {
  header {
    height: 70px;

    .menu {
      font-size: 0.7em;
    }
    button {
      font-size: 0.7em;
    }
  }
  .child {
    height: max-content;
    padding: 8em 2em;
  }

  .section-homepage-1 {
    align-content: center;

    h1 {
      color: white;
      line-height: 1.5em;
      text-align: center;
    }
  }

  .section-homepage-2 {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    background-image: none;

    .wrap-text {
      align-items: center;
      width: 70%;
      .text-title {
        text-align: center;
        width: 100%;
      }
      .text-content {
        text-align: center;
        max-width: 100%;
      }
    }
    .wrap-image {
      img {
        margin: auto;
      }
    }
  }
  .section-homepage-3 {
    justify-content: start;

    .text-title {
      text-align: center;
    }
    .text-content {
      text-align: center;
      max-width: 80%;
    }
    section {
      display: grid;
      grid-template-columns: 1fr;
      /* gap: 2em; */
      .section-row-1 {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      }
      .section-row-2 {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      }
      .container-solution {
        .wrap-content {
          .title-solution {
            min-height: 0px;
          }
          .content-solution {
            min-height: 0px;
          }
        }
      }
    }
  }

  .section-homepage-4 {
    .wrap-success-stories {
      .text-title {
        max-width: 100%;
        text-align: center;
      }
      .text-content {
        max-width: 100%;
      }
    }
  }
  .section-homepage-5 {
    .text-title {
      text-align: center;
      margin-bottom: 20px;
    }
    .text-content {
      max-width: 80%;
    }

    .events-container {
      margin-top: 1em;
      grid-template-columns: 1fr;
      gap: 2em;
    }
  }
  .section-homepage-6 {
    .text-title-contact {
      text-align: center;
    }
  }
  .section-homepage-7 {
    background-size: cover;
    background-position: center;
    min-height: 500px;
  }

  .section-end {
    .wrap-contact {
      flex-wrap: wrap;
      .address-container {
        flex: 0 0 100%;
      }
      .pages-container {
        width: 50%;
        margin: 0;
      }
      .contact-container {
        width: 50%;
        margin: 0;
        padding: 0;
        .contact-item {
          gap: 1%;
        }
      }
    }
  }

  footer {
    padding: 0;
    p {
      color: white;
    }
  }
}

@media screen and (max-width: 640px) {
  .text-title {
    font-size: 30px;
  }

  .child {
    height: max-content;
    min-height: 80vh;
  }

  .section-homepage-1 {
    .text-content {
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    h1 {
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
    }
    img {
      margin-top: 60px;
    }
  }

  .section-homepage-2 {
    .wrap-text {
      width: 100%;
      .text-title {
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
      }
    }
    .wrap-image {
      width: 100%;
    }
  }

  .section-homepage-3 {
    .text-title {
      font-size: 28px;
      margin-top: 2em;
    }
    .text-content {
      max-width: 100%;
    }
    .container-solution {
      img {
        width: 100%;
        height: 150px !important;
      }
    }
  }

  .section-homepage-4 {
    position: relative;
    .text-title {
      font-size: 2em;
      margin-top: 2em;
    }

    .success-content {
      .success-images {
        img {
          width: calc(25% - 8px);
          height: 100px;
          border: 1px solid #ffffffcc;
          object-fit: contain;
        }
      }
      /* .success-images {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
        width: 70%;
        .slider {
          display: flex;
          gap: 20px;
          overflow-x: auto;
          overflow-y: hidden;
          width: 100%;
          scroll-snap-type: x mandatory;
          -webkit-overflow-scrolling: touch;
          padding-bottom: 10px;
        }

        img {
          width: 100%;
          height: 200px;
          border: none;
          object-fit: contain;
        }
        .arrow {
          display: block;
          position: absolute;
          top: 70%;
          transform: translateY(-50%);
          font-size: 20px;
          color: #d3d3d3;
          background: transparent;
          border: none;
          cursor: pointer;
          z-index: 10;
          padding: 0 10px;
          transition: color 0.3s;
        }

        .left {
          left: 10px;
        }

        .right {
          right: 10px;
        }
      } */
      p {
        width: 70%;
      }
    }
  }

  .section-homepage-5 {
    .text-title {
      font-size: 2em;
      margin-top: 2em;
    }
    .event-item {
      padding: 20px 20px;
    }
  }

  .section-homepage-6 {
    .text-title {
      margin-top: 2em;
    }
    .wrap-input {
      flex-direction: column;
    }
    form {
      width: 100%;
      padding: 1em 0;
    }
  }

  .section-homepage-7 {
  }

  .section-end {
    .text-title {
      font-size: 2em;
      margin-top: 2em;
    }
    .wrap-contact {
      .contact-container {
        .contact-item {
          img {
            display: none;
          }
        }
      }
    }
  }
}

#spinner-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}
.loader {
  width: 60px;
  height: 60px;
  border: 3px solid #fff;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
.loader::after {
  content: '';
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 4px solid transparent;
  border-bottom-color: #ff3d00;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
