@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&family=Sora:wght@100..800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

html {
  scroll-behavior: smooth;
  margin: 0 !important;
  padding: 0;
}

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

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

.main-header {
  position: sticky;
  top: 0;
  z-index: 999;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 12px 5%;
  background-color: #f2f2f2;
  border-bottom: 1px solid white;
}
@media (min-width: 769px) {
  .main-header {
    padding: 16px 5%;
  }
}
.main-header .header-icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.main-header .header-icon .title {
  display: none;
}
@media (min-width: 769px) {
  .main-header .header-icon .title {
    display: flex;
  }
}
.main-header .hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: 30px;
  border: none;
  background: none;
  padding: 0;
  z-index: 1100;
  order: 1;
}
@media (max-width: 768px) {
  .main-header .hamburger-menu {
    display: flex;
  }
}
.main-header .hamburger-menu .bar {
  width: 30px;
  height: 3px;
  background: #003366;
  border-radius: 2px;
  margin: 3px 0;
  transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  display: block;
}
.main-header .hamburger-menu.active .bar1 {
  transform: rotate(45deg) translate(6px, 6px);
}
.main-header .hamburger-menu.active .bar2 {
  opacity: 0;
  transform: translateX(-20px);
}
.main-header .hamburger-menu.active .bar3 {
  transform: rotate(-45deg) translate(7px, -7px);
}
.main-header .navbar-menu {
  display: flex;
  list-style: none;
  flex-direction: row;
  gap: 32px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .main-header .navbar-menu {
    display: none;
  }
}
.main-header .navbar-menu li {
  display: flex;
  align-items: center;
  height: fit-content;
  position: relative;
  width: fit-content;
}
.main-header .navbar-menu li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #003366;
  transition: width 0.3s cubic-bezier(0.77, 0, 0.175, 1);
}
.main-header .navbar-menu li:hover {
  color: #003366;
}
.main-header .navbar-menu li:hover::after {
  width: 100%;
}
.main-header .navbar-menu li a {
  font-family: "Sora", sans-serif;
  font-weight: 300;
  font-style: Light;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #1b1b1f;
  border-bottom: 2px solid transparent;
  position: relative;
}
.main-header .navbar-menu li.contact {
  padding: 8px 24px;
  border-radius: 100px;
  background-color: rgba(254, 106, 0, 0.8);
}
.main-header .navbar-menu li.contact a {
  color: #f2f2f2;
  font-weight: 700;
  font-style: Bold;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
}
.main-header .navbar-menu li.contact:hover::after {
  width: 0;
}
.main-header .side-menu {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #f2f2f2;
  z-index: 1000;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}
@media (min-width: 769px) {
  .main-header .side-menu {
    display: none;
  }
}
.main-header .side-menu.active {
  max-height: 600px;
  opacity: 1;
  overflow: visible;
}
.main-header .side-menu .side-menu-content {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.main-header .side-menu .side-menu-content .navbar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.main-header .side-menu .side-menu-content .navbar-menu li {
  display: flex;
  align-items: center;
  height: fit-content;
  position: relative;
  width: fit-content;
}
.main-header .side-menu .side-menu-content .navbar-menu li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #003366;
  transition: width 0.3s cubic-bezier(0.77, 0, 0.175, 1);
}
.main-header .side-menu .side-menu-content .navbar-menu li:hover {
  color: #003366;
}
.main-header .side-menu .side-menu-content .navbar-menu li:hover::after {
  width: 100%;
}
.main-header .side-menu .side-menu-content .navbar-menu li a {
  font-family: "Sora", sans-serif;
  font-weight: 300;
  font-style: Light;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #1b1b1f;
  border-bottom: 2px solid transparent;
  position: relative;
}
.main-header .side-menu .side-menu-content .navbar-menu li.contact {
  padding: 8px 24px;
  border-radius: 100px;
  background-color: rgba(254, 106, 0, 0.8);
}
.main-header .side-menu .side-menu-content .navbar-menu li.contact a {
  color: #f2f2f2;
  font-weight: 700;
  font-style: Bold;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
}
.main-header .side-menu .side-menu-content .navbar-menu li.contact:hover::after {
  width: 0;
}

footer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 24px 5%;
  background-color: #f2f2f2;
}
@media (min-width: 769px) {
  footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 48px 5%;
  }
}
footer .info {
  grid-area: 1/1/2/3;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 769px) {
  footer .info {
    gap: 32px;
  }
}
footer .info a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media (min-width: 769px) {
  footer .info a {
    flex-direction: column;
    gap: 20px;
  }
  footer .info a .icon {
    width: 82px;
  }
}
footer .info .rrss {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media (min-width: 769px) {
  footer .info .rrss {
    align-items: flex-start;
  }
}
footer .info .rrss span {
  font-family: "Sora", sans-serif;
  font-weight: 300;
  font-style: Light;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #1b1b1f;
}
footer .info .rrss .social-menu {
  display: flex;
  flex-direction: row;
  gap: 38px;
}
@media (min-width: 769px) {
  footer .info .rrss .social-menu {
    gap: 24px;
  }
}
footer .info .rrss .social-menu li {
  display: flex;
  align-items: center;
  justify-content: center;
  height: fit-content;
  position: relative;
}
footer .menu {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: fit-content;
}
footer .menu.legal {
  justify-content: center;
  align-items: center;
  grid-area: 3/1/4/3;
}
@media (min-width: 769px) {
  footer .menu.legal {
    align-items: flex-start;
    justify-content: flex-start;
  }
}
footer .menu.legal .internal-menu.legal {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
  justify-content: center;
}
@media (min-width: 769px) {
  footer .menu.legal .internal-menu.legal {
    flex-direction: column;
  }
}
footer .menu.s2 {
  grid-area: 2/1/3/2;
}
footer .menu.s3 {
  grid-area: 2/2/3/3;
}
footer .menu span {
  font-family: "Sora", sans-serif;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #1b1b1f;
  font-weight: 700;
  font-style: Bold;
  font-size: 12px;
  vertical-align: middle;
}
footer .menu .internal-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #1b1b1f;
}
footer .menu .internal-menu.legal {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
  justify-content: center;
}
footer .menu .internal-menu li {
  list-style: none;
  position: relative;
}
footer .menu .internal-menu li a {
  font-family: Sora;
  font-weight: 300;
  font-style: Light;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #1b1b1f;
  border-bottom: 2px solid transparent;
  position: relative;
  transition: color 0.3s cubic-bezier(0.77, 0, 0.175, 1);
}
footer .menu .internal-menu li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #003366;
  transition: width 0.3s cubic-bezier(0.77, 0, 0.175, 1);
}
footer .menu .internal-menu li:hover a {
  color: #003366;
}
footer .menu .internal-menu li:hover::after {
  width: 100%;
}

@keyframes flamePulseMove {
  0% {
    transform: scaleX(1) scaleY(1) translateY(0px);
    opacity: 0.92;
    filter: blur(10px);
  }
  15% {
    transform: scaleX(1.04) scaleY(0.98) translateY(2px);
    opacity: 0.94;
    filter: blur(11px);
  }
  30% {
    transform: scaleX(1.08) scaleY(0.96) translateY(4px);
    opacity: 0.96;
    filter: blur(12px);
  }
  45% {
    transform: scaleX(1.12) scaleY(0.99) translateY(2px);
    opacity: 0.98;
    filter: blur(10px);
  }
  60% {
    transform: scaleX(1.08) scaleY(1.04) translateY(-2px);
    opacity: 0.96;
    filter: blur(11px);
  }
  75% {
    transform: scaleX(1.04) scaleY(1.08) translateY(-4px);
    opacity: 0.94;
    filter: blur(12px);
  }
  90% {
    transform: scaleX(1) scaleY(1.04) translateY(-2px);
    opacity: 0.92;
    filter: blur(11px);
  }
  100% {
    transform: scaleX(1) scaleY(1) translateY(0px);
    opacity: 0.92;
    filter: blur(10px);
  }
}
.section1 {
  display: flex;
  flex-direction: column;
  padding: 80px 5%;
  gap: 40px;
  background-color: #f2f2f2;
  position: relative;
  overflow: hidden;
}
.section1::before {
  content: "";
  position: absolute;
  top: 300px;
  left: -450px;
  width: 612px;
  height: 50px;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(90deg, #fe6a00 50%, rgba(254, 106, 0, 0.5) 75%, rgba(254, 106, 0, 0) 100%), linear-gradient(90deg, rgba(242, 242, 242, 0) 50%, #f2f2f2 100%);
  opacity: 0.92;
  filter: blur(10px);
  animation: flamePulseMove 3.8s cubic-bezier(0.77, 0, 0.175, 1) infinite alternate;
}
@media (min-width: 769px) {
  .section1::before {
    left: 0;
    top: 250px;
  }
}
@media (min-width: 769px) {
  .section1 {
    padding: 100px 5%;
  }
}
.section1 .title {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section1 .title h2 {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #003366;
}
@media (min-width: 769px) {
  .section1 .title h2 {
    font-weight: 700;
    font-style: Bold;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
  }
}
.section1 .title h3 {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #1b1b1f;
}
@media (min-width: 769px) {
  .section1 .title h3 {
    font-weight: 400;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
  }
}
.section1 .section1-text {
  font-family: "Sora", sans-serif;
  font-weight: 300;
  font-style: Light;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  position: relative;
}
@media (min-width: 769px) {
  .section1 .section1-text {
    width: 60%;
    align-self: flex-end;
  }
}
.section1 .section1-cards {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.section1 .section1-cards .swiper-wrapper {
  display: flex;
}
@media (min-width: 769px) {
  .section1 .section1-cards .swiper-wrapper {
    padding: 10px 0;
  }
}
.section1 .section1-cards .swiper-slide {
  background: #f2f2f2;
  border-radius: 4px;
  min-height: 300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  position: relative;
  padding: 24px;
  border: 1px solid white;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}
.section1 .section1-cards .swiper-slide:hover {
  box-shadow: 0px 4px 8px 0px rgba(88, 86, 86, 0.2392156863);
}
.section1 .section1-cards .swiper-slide .card-index {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
}
.section1 .section1-cards .swiper-slide .content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.section1 .section1-cards .swiper-slide .content h4 {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #1b1b1f;
}
.section1 .section1-cards .swiper-slide .content .card-text {
  font-family: "Sora", sans-serif;
  font-weight: 300;
  font-style: Light;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #1b1b1f;
}
.section1 .section1-cards .swiper-navigation {
  position: relative;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 16px;
  pointer-events: none;
}
@media (min-width: 769px) {
  .section1 .section1-cards .swiper-navigation {
    display: none;
  }
}
.section1 .section1-cards .swiper-navigation .swiper-button-prev,
.section1 .section1-cards .swiper-navigation .swiper-button-next {
  display: flex;
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
  pointer-events: auto;
  margin: 0 !important;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #1b1b1f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: background 0.2s, color 0.2s;
  border: none;
  padding: 7px;
}
.section1 .section1-cards .swiper-navigation .swiper-button-prev::after,
.section1 .section1-cards .swiper-navigation .swiper-button-next::after {
  display: none;
}
.section1 .section1-cards .swiper-navigation .swiper-button-prev::after {
  border-width: 10px 14px 10px 0;
  border-color: transparent black transparent transparent;
  margin-left: 8px;
}
.section1 .section1-cards .swiper-navigation .swiper-button-next::after {
  border-width: 10px 0 10px 14px;
  border-color: transparent transparent transparent black;
  margin-right: 8px;
}
.section1 .section1-cards .swiper-navigation .swiper-button-disabled {
  background: black !important;
  color: black !important;
  opacity: 0.5;
  cursor: not-allowed;
}
.section1 .section1-cards .swiper-navigation .swiper-button-prev:not(.swiper-button-disabled),
.section1 .section1-cards .swiper-navigation .swiper-button-next:not(.swiper-button-disabled) {
  background: #003366;
  color: #f2f2f2;
}
.section1 .section1-cards .swiper-navigation .swiper-button-prev:not(.swiper-button-disabled)::after,
.section1 .section1-cards .swiper-navigation .swiper-button-next:not(.swiper-button-disabled)::after {
  border-color: transparent #f2f2f2 transparent transparent;
}
.section1 .section1-cards .swiper-navigation .swiper-button-next:not(.swiper-button-disabled)::after {
  border-color: transparent transparent transparent #f2f2f2;
}

.section2 {
  display: flex;
  flex-direction: column;
  padding: 80px 5%;
  gap: 40px;
  background-color: black;
  color: #f2f2f2;
}
@media (min-width: 769px) {
  .section2 {
    padding: 100px 5%;
  }
}
.section2 .title {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.section2 .title h2 {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
}
@media (min-width: 769px) {
  .section2 .title h2 {
    font-size: 40px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
  }
}
.section2 .title .buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
@media (min-width: 769px) {
  .section2 .title .buttons {
    flex-direction: row;
    gap: 40px;
    width: 50%;
  }
}
.section2 .title .buttons button {
  border-radius: 100px;
  padding: 8px;
  width: 100%;
  border: none;
  color: white;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  background-color: #585656;
  transition: background-color 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  cursor: pointer;
}
.section2 .title .buttons button.active {
  background-color: rgba(254, 106, 0, 0.8);
}
.section2 .groups {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.section2 .groups .group {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 769px) {
  .section2 .groups .group {
    flex-direction: row;
  }
}
@media (min-width: 769px) {
  .section2 .groups .group:nth-child(even) {
    flex-direction: row-reverse;
  }
}
.section2 .groups .group .title-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #f2f2f2;
}
@media (min-width: 769px) {
  .section2 .groups .group .title-container {
    padding: 24px;
    width: 40%;
  }
}
.section2 .groups .group .title-container h4 {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
}
@media (min-width: 769px) {
  .section2 .groups .group .title-container h4 {
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
  }
}
.section2 .groups .group .title-container .group-text {
  font-family: "Sora", sans-serif;
  font-weight: 300;
  font-style: Light;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
}
.section2 .groups .group .img-container {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 358/165;
  overflow: hidden;
  width: 100%;
}
@media (min-width: 769px) {
  .section2 .groups .group .img-container {
    aspect-ratio: 648/300;
    width: 60%;
  }
}
.section2 .groups .group .img-container img {
  max-width: 100%;
  box-shadow: 0px 4px 8px 0px rgba(88, 86, 86, 0.2392156863);
  width: 100%;
}

.section3 {
  display: flex;
  flex-direction: column;
  padding: 80px 5%;
  background-color: #f2f2f2;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.section3::before {
  content: "";
  position: absolute;
  top: 200px;
  right: -450px;
  width: 612px;
  height: 50px;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(270deg, #fe6a00 50%, rgba(254, 106, 0, 0.5) 75%, rgba(254, 106, 0, 0) 100%), linear-gradient(270deg, rgba(242, 242, 242, 0) 50%, #f2f2f2 100%);
  opacity: 0.92;
  filter: blur(10px);
  animation: flamePulseMove 3.8s cubic-bezier(0.77, 0, 0.175, 1) infinite alternate;
}
@media (min-width: 769px) {
  .section3::before {
    right: 0;
    top: 100px;
  }
}
@media (min-width: 769px) {
  .section3 {
    padding: 100px 5%;
  }
}
.section3 .title {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section3 .title h2 {
  font-weight: 700;
  font-style: Bold;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #003366;
  font-family: "IBM Plex Sans", sans-serif;
}
@media (min-width: 769px) {
  .section3 .title h2 {
    font-weight: 700;
    font-style: Bold;
    font-size: 40px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
  }
}
.section3 .title h3 {
  font-weight: 400;
  font-style: Regular;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0%;
  color: #1b1b1f;
  font-family: "IBM Plex Sans", sans-serif;
}
@media (min-width: 769px) {
  .section3 .title h3 {
    font-weight: 400;
    font-style: Regular;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
  }
}
.section3 .section3-cards {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.section3 .section3-cards .card {
  background: #f2f2f2;
  min-height: 180px;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  position: relative;
  padding: 24px 24px 4px 24px;
  border: 1px solid white;
  box-shadow: 0px 4px 8px 0px rgba(88, 86, 86, 0.2392156863);
}
@media (min-width: 769px) {
  .section3 .section3-cards .card {
    padding: 24px;
    min-height: 144px;
  }
}
.section3 .section3-cards .card .content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.section3 .section3-cards .card .content h4 {
  font-weight: 700;
  font-style: Bold;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  font-family: "Sora", sans-serif;
}
.section3 .section3-cards .card .content .item-text {
  font-weight: 300;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  font-family: "Sora", sans-serif;
}
.section3 .section3-cards .swiper-wrapper {
  display: flex;
  width: 100%;
}
@media (min-width: 769px) {
  .section3 .section3-cards .swiper-wrapper {
    display: none;
  }
}
.section3 .section3-cards .swiper-wrapper .swiper-slide {
  background: #f2f2f2;
  min-height: 144px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  position: relative;
  padding: 24px 24px 4px 24px;
  border: 1px solid white;
  box-shadow: 0px 4px 8px 0px rgba(88, 86, 86, 0.2392156863);
}
.section3 .section3-cards .swiper-wrapper .swiper-slide .content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.section3 .section3-cards .swiper-wrapper .swiper-slide .content h4 {
  font-weight: 700;
  font-style: Bold;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  font-family: "Sora", sans-serif;
}
.section3 .section3-cards .swiper-wrapper .swiper-slide .content .item-text {
  font-weight: 300;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  font-family: "Sora", sans-serif;
}
.section3 .section3-cards .swiper-navigation {
  position: relative;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 16px;
  pointer-events: none;
}
@media (min-width: 769px) {
  .section3 .section3-cards .swiper-navigation {
    display: none;
  }
}
.section3 .section3-cards .swiper-navigation .swiper-button-prev,
.section3 .section3-cards .swiper-navigation .swiper-button-next {
  display: flex;
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
  pointer-events: auto;
  margin: 0 !important;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #1b1b1f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: background 0.2s, color 0.2s;
  border: none;
  padding: 7px;
}
.section3 .section3-cards .swiper-navigation .swiper-button-prev::after,
.section3 .section3-cards .swiper-navigation .swiper-button-next::after {
  display: none;
}
.section3 .section3-cards .swiper-navigation .swiper-button-prev::after {
  border-width: 10px 14px 10px 0;
  border-color: transparent black transparent transparent;
  margin-left: 8px;
}
.section3 .section3-cards .swiper-navigation .swiper-button-next::after {
  border-width: 10px 0 10px 14px;
  border-color: transparent transparent transparent black;
  margin-right: 8px;
}
.section3 .section3-cards .swiper-navigation .swiper-button-disabled {
  background: black !important;
  color: black !important;
  opacity: 0.5;
  cursor: not-allowed;
}
.section3 .section3-cards .swiper-navigation .swiper-button-prev:not(.swiper-button-disabled),
.section3 .section3-cards .swiper-navigation .swiper-button-next:not(.swiper-button-disabled) {
  background: #003366;
  color: #f2f2f2;
}
.section3 .section3-cards .swiper-navigation .swiper-button-prev:not(.swiper-button-disabled)::after,
.section3 .section3-cards .swiper-navigation .swiper-button-next:not(.swiper-button-disabled)::after {
  border-color: transparent #f2f2f2 transparent transparent;
}
.section3 .section3-cards .swiper-navigation .swiper-button-next:not(.swiper-button-disabled)::after {
  border-color: transparent transparent transparent #f2f2f2;
}
.section3 .section3-cards .section3-grid {
  display: none;
  padding: 10px 0;
}
@media (min-width: 769px) {
  .section3 .section3-cards .section3-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media (min-width: 1024px) {
  .section3 .section3-cards .section3-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.section4 {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 80px 5%;
  background-color: #e3e2e2;
  overflow: hidden;
}
@media (min-width: 769px) {
  .section4 {
    padding: 100px 5%;
  }
}
.section4 .title {
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 2;
  align-items: center;
}
.section4 .title .contrast {
  color: #f2f2f2 !important;
  z-index: 2;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.7), 0 2px 8px rgba(0, 0, 0, 0.7), 1px 1px 2px rgba(0, 0, 0, 0.5);
  transition: color 0.2s, text-shadow 1s;
}
.section4 .title h2 {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #003366;
  width: fit-content;
}
@media (min-width: 769px) {
  .section4 .title h2 {
    font-weight: 700;
    font-style: Bold;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
  }
}
.section4 .title h3 {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #1b1b1f;
  width: fit-content;
}
@media (min-width: 769px) {
  .section4 .title h3 {
    font-weight: 400;
    font-size: 40px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
  }
}
.section4 .section4-items {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.section4 .section4-items a {
  padding: 24px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.section4 .section4-items a h4 {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #1b1b1f;
  z-index: 2;
  transition: color 1s cubic-bezier(0.77, 0, 0.175, 1);
}
.section4 .section4-items a h4.color-animate {
  animation: textColorChange 1s forwards cubic-bezier(0.77, 0, 0.175, 1);
}
@keyframes textColorChange {
  0% {
    color: #1b1b1f;
    text-shadow: 0 0 0px rgba(254, 106, 0, 0.8);
  }
  30% {
    color: rgba(254, 106, 0, 0.8);
    text-shadow: 0 0 8px #003366;
  }
  60% {
    color: #003366;
    text-shadow: 0 0 12px rgba(254, 106, 0, 0.8);
  }
  100% {
    color: #f2f2f2;
    text-shadow: 0 0 16px #003366;
  }
}
@media (min-width: 769px) {
  .section4 .section4-items a h4 {
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
  }
}
.section4 .section4-items a .img-container {
  z-index: 2;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #003366;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s cubic-bezier(0.77, 0, 0.175, 1);
}
.section4 .section4-items a .img-container svg,
.section4 .section4-items a .img-container img {
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}
.section4 .section4-items a:hover {
  background-color: #003366;
  transition: background 1s cubic-bezier(0.77, 0, 0.175, 1);
  background-image: linear-gradient(90deg, transparent 0%, #003366 100%);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  animation: bgFill 1s forwards cubic-bezier(0.77, 0, 0.175, 1);
  cursor: none;
}
.section4 .section4-items a:hover h4 {
  color: #f2f2f2;
}
.section4 .section4-items a:hover .img-container {
  background-color: rgba(254, 106, 0, 0.8);
  animation: imgPulse 0.7s;
}
.section4 .section4-items a:hover .img-container svg,
.section4 .section4-items a:hover .img-container img {
  transform: scale(1.15) rotate(-10deg);
}
@keyframes imgPulse {
  0% {
    transform: scale(1) rotate(0deg);
  }
  40% {
    transform: scale(1.2) rotate(-10deg);
  }
  70% {
    transform: scale(0.95) rotate(5deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}
@keyframes bgFill {
  from {
    background-size: 0% 100%;
  }
  to {
    background-size: 100% 100%;
  }
}
.section4 .section4-items .hover-image {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  z-index: 1;
  transform: translate(-50%, -50%) scale(0.85) rotate(-4deg);
  transition: none;
  will-change: opacity, transform;
}
@media (min-width: 769px) {
  .section4 .section4-items .hover-image {
    display: block;
  }
}
.section4 .section4-items .hover-image img {
  width: 400px;
  aspect-ratio: 1/1;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  opacity: 0.95;
  transition: box-shadow 0.3s, opacity 0.3s;
}
.section4 .section4-items .hover-image.active {
  animation: hoverImageIn 0.45s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
.section4 .section4-items .hover-image.leaving {
  animation: hoverImageOut 0.35s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
@keyframes hoverImageIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.85) rotate(-4deg);
    filter: blur(12px);
  }
  60% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05) rotate(2deg);
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    filter: blur(0px);
  }
}
@keyframes hoverImageOut {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    filter: blur(0px);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.85) rotate(-8deg);
    filter: blur(12px);
  }
}

.section5 {
  background-color: #f2f2f2;
  padding: 80px 5%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}
.section5::before {
  content: "";
  position: absolute;
  top: 300px;
  left: -450px;
  width: 612px;
  height: 50px;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(90deg, #fe6a00 50%, rgba(254, 106, 0, 0.5) 75%, rgba(254, 106, 0, 0) 100%), linear-gradient(90deg, rgba(242, 242, 242, 0) 50%, #f2f2f2 100%);
  opacity: 0.92;
  filter: blur(10px);
  animation: flamePulseMove 3.8s cubic-bezier(0.77, 0, 0.175, 1) infinite alternate;
}
@media (min-width: 769px) {
  .section5::before {
    left: 0;
    top: 250px;
  }
}
.section5 .title {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section5 .title h2 {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #003366;
}
@media (min-width: 769px) {
  .section5 .title h2 {
    font-weight: 700;
    font-style: Bold;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
  }
}
.section5 .title h3 {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #1b1b1f;
}
@media (min-width: 769px) {
  .section5 .title h3 {
    font-weight: 400;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
  }
}
.section5 form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
@media (min-width: 769px) {
  .section5 form {
    width: 60%;
    align-self: flex-end;
  }
}
.section5 form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.section5 form .form-group input {
  z-index: 2;
  border: 1.5px solid #1b1b1f;
  border-radius: 100px;
  padding: 4px 16px;
  outline: none;
  transition: border-color 0.2s;
  font-family: "Sora", sans-serif;
  font-weight: 300;
  font-style: Light;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: left;
  vertical-align: middle;
  color: #585656;
  background-color: #f2f2f2;
}
.section5 form .form-group input:focus {
  border-color: rgba(254, 106, 0, 0.8);
}
.section5 form .form-group .input-error {
  color: #d71f26;
  font-size: 13px;
  font-weight: 500;
  margin-top: 4px;
  min-height: 18px;
  transition: opacity 0.2s;
}
.section5 form .contact-submit-btn {
  background: rgba(254, 106, 0, 0.8);
  color: #f2f2f2;
  border: none;
  border-radius: 100px;
  padding: 8px 24px;
  cursor: pointer;
  transition: background 0.2s;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  width: fit-content;
}
.section5 form .contact-submit-btn:hover {
  background: rgba(203, 84.7165354331, 0, 0.8);
}
.section5 form .form-success-toast {
  position: fixed;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  background: #f2f2f2;
  color: #1b1b1f;
  border: 1.5px solid #003366;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(25, 118, 210, 0.08);
  padding: 18px 32px;
  font-size: 17px;
  font-weight: 600;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s, top 0.4s;
}
.section5 form .form-success-toast.show {
  opacity: 1;
  pointer-events: auto;
  top: 56px;
}

.led-banner {
  width: 100%;
  overflow: hidden;
  background: transparent;
  padding: 0;
  margin: 0;
  background: #e3e2e2;
}
.led-banner .led-banner-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  animation: led-scroll 18s linear infinite;
  min-width: 100vw;
}
.led-banner .led-banner-item {
  color: #1b1b1f;
  font-family: "Sora", sans-serif;
  white-space: nowrap;
  padding: 24px 0;
  display: inline-block;
  font-weight: 300;
  font-style: Light;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
}
@media (min-width: 769px) {
  .led-banner .led-banner-item {
    font-weight: 400;
    font-size: 40px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
  }
}
.led-banner .led-banner-sep {
  color: #1b1b1f;
  font-size: 1.25rem;
  margin: 0 16px;
  font-weight: 400;
  vertical-align: middle;
}
@media (min-width: 769px) {
  .led-banner .led-banner-sep {
    font-weight: 400;
    font-size: 40px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
  }
}

@keyframes led-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.333%);
  }
}
.banner-swiper {
  width: 100%;
  height: 100%;
}
.banner-swiper .swiper-wrapper {
  height: 100%;
  display: flex;
  align-items: stretch;
}
.banner-swiper .swiper-wrapper .banner-slide {
  width: 100%;
  min-height: calc(100vh - 65px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 40px 5%;
  gap: 49px;
}
.banner-swiper .swiper-wrapper .banner-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 40.72%);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border-radius: inherit;
}
.banner-swiper .swiper-wrapper .banner-slide > * {
  position: relative;
  z-index: 2;
}
.banner-swiper .swiper-wrapper .banner-slide .banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  margin: 0 auto;
  max-width: 564px;
}
@media (min-width: 769px) {
  .banner-swiper .swiper-wrapper .banner-slide .banner-content {
    flex: 1;
  }
}
.banner-swiper .swiper-wrapper .banner-slide .banner-content .banner-title {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #f2f2f2;
  width: 80%;
}
@media (min-width: 769px) {
  .banner-swiper .swiper-wrapper .banner-slide .banner-content .banner-title {
    font-size: 40px;
    leading-trim: NONE;
    line-height: 100%;
  }
}
.banner-swiper .swiper-wrapper .banner-slide .banner-content .banner-text {
  font-family: "Sora", sans-serif;
  font-weight: 300;
  font-style: Light;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #f2f2f2;
}
.banner-swiper .swiper-wrapper .banner-slide .banner-content .banner-btn {
  display: inline-block;
  background: rgba(254, 106, 0, 0.8);
  color: #f2f2f2;
  font-family: "Sora", sans-serif;
  border-radius: 100px;
  padding: 8px 24px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: background 0.2s;
  font-weight: 700;
  font-style: Bold;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-top: 8px;
}
.banner-swiper .swiper-wrapper .banner-slide .banner-content .banner-btn:hover {
  background: rgba(203, 84.7165354331, 0, 0.8);
}
.banner-swiper .swiper-wrapper .banner-slide .banner-elements {
  display: flex;
  gap: 23px;
  width: 100%;
}
.banner-swiper .swiper-wrapper .banner-slide .banner-elements .banner-element {
  display: none;
  background: rgba(27, 27, 31, 0.4);
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: 4px;
  padding: 24px;
  box-shadow: 0 0 8px 2px rgba(27, 27, 31, 0.4) inset, 0 0 12px 2px rgba(27, 27, 31, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 769px) {
  .banner-swiper .swiper-wrapper .banner-slide .banner-elements .banner-element {
    padding: 34px 24px;
  }
}
.banner-swiper .swiper-wrapper .banner-slide .banner-elements .banner-element-1 {
  display: flex;
}
.banner-swiper .swiper-wrapper .banner-slide .banner-elements .banner-element-icon {
  max-height: 35px;
  max-width: 35px;
  object-fit: contain;
}
.banner-swiper .swiper-wrapper .banner-slide .banner-elements .banner-element-text {
  font-family: "Sora", sans-serif;
  font-weight: 300;
  font-style: Light;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #f2f2f2;
}
@media (min-width: 769px) {
  .banner-swiper .swiper-wrapper .banner-slide .banner-elements .banner-element-1,
  .banner-swiper .swiper-wrapper .banner-slide .banner-elements .banner-element-2,
  .banner-swiper .swiper-wrapper .banner-slide .banner-elements .banner-element-3 {
    display: flex;
  }
  .banner-swiper .swiper-wrapper .banner-slide .banner-elements .banner-element:nth-child(n+4) {
    display: none !important;
  }
}
.banner-swiper .swiper-button-prev,
.banner-swiper .swiper-button-next {
  top: auto !important;
  bottom: 220px;
  pointer-events: auto;
  margin: 0 !important;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #1b1b1f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: background 0.2s, color 0.2s;
  border: none;
  padding: 7px;
}
@media (min-width: 769px) {
  .banner-swiper .swiper-button-prev,
  .banner-swiper .swiper-button-next {
    top: 50% !important;
  }
}
.banner-swiper .swiper-button-prev::after,
.banner-swiper .swiper-button-next::after {
  display: none;
}
@media (min-width: 769px) {
  .banner-swiper .swiper-button-prev {
    left: 5% !important;
  }
}
.banner-swiper .swiper-button-prev::after {
  border-width: 10px 14px 10px 0;
  border-color: transparent black transparent transparent;
  margin-left: 8px;
}
@media (min-width: 769px) {
  .banner-swiper .swiper-button-next {
    right: 5% !important;
  }
}
.banner-swiper .swiper-button-next::after {
  border-width: 10px 0 10px 14px;
  border-color: transparent transparent transparent black;
  margin-right: 8px;
}
.banner-swiper .swiper-button-disabled {
  background: black !important;
  color: black !important;
  opacity: 0.5;
  cursor: not-allowed;
}
.banner-swiper .swiper-button-prev:not(.swiper-button-disabled),
.banner-swiper .swiper-button-next:not(.swiper-button-disabled) {
  background: #003366;
  color: #f2f2f2;
}
.banner-swiper .swiper-button-prev:not(.swiper-button-disabled)::after,
.banner-swiper .swiper-button-next:not(.swiper-button-disabled)::after {
  border-color: transparent #f2f2f2 transparent transparent;
}
.banner-swiper .swiper-button-next:not(.swiper-button-disabled)::after {
  border-color: transparent transparent transparent #f2f2f2;
}

/*# sourceMappingURL=styles.css.map */
