/***
    The new CSS reset - version 1.11.2 (last updated 15.11.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap");
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Fix mobile Safari increase font-size on landscape mode */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Reapply the pointer cursor for anchor tags */
a,
button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu,
summary {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input,
textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
  box-sizing: border-box;
}

/* reset default text opacity of input placeholder */
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
  box-sizing: border-box;
}

/* Remove details summary webkit styles */
::-webkit-details-marker {
  display: none;
}

html,
body {
  color: white;
  font-family: "Noto Sans", Arial, sans-serif;
  background-color: black;
}

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

.none {
  display: none !important;
}

.title {
  font-size: 72px;
  font-weight: 500;
}

a:hover,
button:hover {
  opacity: 0.6;
}

.select-menu-wrapper {
  border-radius: 10px;
  background-color: white;
}
.select-menu-wrapper .select-menu {
  position: relative;
  width: 100%;
  max-width: 406px;
  border-radius: 10px;
}
.select-menu-wrapper .select-menu__selected {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border: 1px solid #7d7c85;
  width: 100%;
  height: 58px;
  padding: 19px 23px 20px 22px;
  border-radius: 10px;
}
.select-menu-wrapper .select-menu .select-menu__value {
  font-size: 14px;
  color: #292828;
}
.select-menu-wrapper .select-menu__options {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: white;
  border-radius: 10px;
  z-index: 1;
  overflow-y: auto;
  display: none;
}
.select-menu-wrapper .select-menu__option {
  padding: 14px 10px 12px 21px;
  font-size: 14px;
  color: #292828;
  cursor: pointer;
}
.select-menu-wrapper .select-menu__option:hover, .select-menu-wrapper .select-menu__option.active {
  font-weight: 700;
  background-color: rgba(34, 33, 33, 0.19);
  font-weight: bold;
}
.select-menu-wrapper.open {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select-menu-wrapper.open .select-menu__icon {
  transform: rotate(180deg);
}
.select-menu-wrapper.open .select-menu__options {
  padding-top: 4px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  display: block;
}

.careers__form,
.contact-us__form {
  display: none;
}

.careers__form.active,
.contact-us__form.active {
  display: block;
}

.bold {
  font-weight: 700;
}

.modal {
  display: none;
  align-items: center;
  position: fixed;
  z-index: 3;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
}

/* Modal Content/Box */
.modal-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  border-radius: 25px;
  background-color: #000;
  margin: 0 auto;
  padding: 40px;
  border: 1px solid #888;
  max-width: 500px;
  justify-content: space-between;
}
.modal-content a {
  text-decoration: none;
  font-weight: 700;
}
.modal-content .modal-title {
  font-weight: 700;
  font-size: 24px;
}

.modal-content .buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.modal-content .buttons button {
  padding: 10px;
  border: 1px solid white;
  border-radius: 10px;
  cursor: pointer;
  width: 100px;
}

.header {
  padding-top: 26px;
  position: relative;
}
.header:not(.cookies-page):not(.privacy-page):not(.terms-page) {
  background-image: url("./../assets/images/hero-section.png");
  background-size: cover;
  aspect-ratio: 1440/809;
}

.header__nav-desktop {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo a {
  font-weight: 700;
  display: block;
}

.nav__logo img {
  display: block;
  max-height: 46.6px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 57px;
}

.nav__link {
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
}

.nav__link.btn {
  background-color: transparent;
  padding: 18px 50px;
  border-radius: 10px;
  border: 1px solid white;
}

.header__content {
  margin-top: 160px;
  text-align: left;
}

.header__title {
  font-size: 24px;
  margin-bottom: 13px;
}

.header__content h1 {
  max-width: 586px;
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 40px;
}

.header__description {
  max-width: 586px;
  font-size: 14px;
  line-height: 24px;
}

.header__nav-mobile {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  position: relative;
}

.nav__links-mobile {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: black;
  padding: 20px 0;
  z-index: 1;
}

.hamburger-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  z-index: 10;
}

.hamburger-menu div {
  width: 2rem;
  height: 0.25rem;
  background: white;
  border-radius: 10px;
  transition: all 0.3s linear;
  position: relative;
  transform-origin: 1px;
}

.hamburger-menu.active div:nth-child(1) {
  transform: rotate(45deg);
}

.hamburger-menu.active div:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active div:nth-child(3) {
  transform: rotate(-45deg);
}

.header__nav-mobile.active .nav__links-mobile {
  display: flex;
}

@media (max-width: 992px) {
  .header__content {
    margin-top: 72px;
  }
  .header__nav-desktop {
    display: none;
  }
  .header__nav-mobile {
    display: flex;
  }
}
.about-us {
  margin-top: 155px;
}

.about-us__content {
  display: flex;
  align-items: center;
  gap: 52px;
}

.about-us__image {
  flex-basis: 50%;
  overflow: hidden;
}

.about-us__image img {
  width: 100%;
  height: auto;
}

.about-us__text {
  flex-basis: 50%;
}

.about-us__title {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 40px;
}

.about-us__description {
  max-width: 586px;
  font-size: 14px;
  line-height: 24px;
}

@media (max-width: 1024px) {
  .about-us {
    margin-top: 72px;
  }
}
@media (max-width: 768px) {
  .about-us {
    margin-top: 80px;
  }
  .about-us__content {
    flex-direction: column;
  }
  .about-us__image {
    flex-basis: auto;
    width: 100%;
    border-radius: 10px;
  }
  .about-us__text {
    flex-basis: auto;
    text-align: center;
  }
  .about-us__title {
    font-size: 36px;
    margin-bottom: 20px;
  }
  .about-us__description {
    max-width: 100%;
  }
}
.our-services {
  padding-top: 160px;
  position: relative;
  background-image: url("../../assets/images/our-services.png");
  background-size: cover;
  aspect-ratio: 1440/826;
}
.our-services__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.our-services__text {
  flex: 0 1 552px;
}
.our-services__title {
  line-height: 68px;
  font-size: 50px;
  font-weight: 700;
}
.our-services__list {
  flex: 0 1 722px;
  display: flex;
  flex-direction: column;
}
.our-services__item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 22px 0 48px 0;
  gap: 10px;
}
.our-services__item-title {
  line-height: 33px;
  font-size: 24px;
  font-weight: 700;
}
.our-services__item-title.robotic {
  flex-basis: 220px;
}
.our-services__item-description {
  margin-top: 10px;
  font-size: 14px;
  line-height: 24px;
  flex: 0 1 409px;
  letter-spacing: -0.1px;
}
.our-services__item-description.robotic {
  margin-top: 44px;
}
.our-services__separator {
  width: 100%;
  height: 2px;
  background-color: #fff;
}
@media (max-width: 1024px) {
  .our-services {
    padding-top: 72px;
  }
  .our-services__content {
    flex-direction: column;
    align-items: center;
  }
  .our-services__text {
    flex-basis: auto;
    margin: 0 auto 40px;
  }
  .our-services__list {
    flex-basis: auto;
  }
  .our-services__item {
    padding: 22px 0;
    flex-direction: column;
    text-align: left;
  }
  .our-services__item:last-child {
    padding-bottom: 0;
  }
  .our-services__item-title, .our-services__item-description {
    flex-basis: auto !important;
    margin-top: 0 !important;
  }
}
@media (max-width: 768px) {
  .our-services__separator {
    width: 100%;
  }
}

.industries-we-empower {
  text-align: center;
}
.industries-we-empower__title h2 {
  font-size: 50px;
  font-weight: bold;
}
.industries-we-empower__slider {
  max-width: 1280px;
  margin: 48px auto 0;
}
.industries-we-empower__slider .industries-we-empower__slide {
  display: none;
  position: relative;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s, transform 0.5s;
}
.industries-we-empower__slider .industries-we-empower__slide.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}
.industries-we-empower__slider .industries-we-empower__slide img {
  width: 100%;
  height: auto;
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}
.industries-we-empower__slider .industries-we-empower__slide .industries-we-empower__slide-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 96px;
  font-size: 16px;
  text-align: left;
}
.industries-we-empower__slider .industries-we-empower__slide .industries-we-empower__slide-title {
  font-weight: 700;
  font-size: clamp(1.5rem, 1.0357rem + 2.3214vw, 3.125rem);
  line-height: 68px;
}
.industries-we-empower__slider .industries-we-empower__slide .industries-we-empower__slide-description {
  margin-top: 24px;
  font-size: 14px;
  max-width: 340px;
}
.industries-we-empower__tabs {
  display: flex;
  justify-content: center;
}
.industries-we-empower__tabs .industries-we-empower__tab {
  opacity: 0.35;
  font-size: clamp(1rem, 0.8571rem + 0.7143vw, 1.5rem);
  font-weight: 700;
  flex: 1;
  background-color: transparent;
  padding: 18px 20px;
  line-height: 33px;
  position: relative;
  cursor: pointer;
  transition: opacity 0.3s;
}
.industries-we-empower__tabs .industries-we-empower__tab.active {
  opacity: 1;
}
.industries-we-empower__tabs .industries-we-empower__tab.active::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 20px);
  height: 4px;
  background-color: #a401e0;
  transition: width 0.3s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1024px) {
  .industries-we-empower {
    margin-top: 72px;
  }
}
@media (max-width: 600px) {
  .industries-we-empower__slider .industries-we-empower__slide img {
    height: 400px;
    object-fit: cover;
    object-position: 60% center;
  }
  .industries-we-empower__slider .industries-we-empower__slide .industries-we-empower__slide-text {
    left: 32px;
  }
  .industries-we-empower__tabs {
    flex-direction: column;
  }
  .industries-we-empower__tabs .industries-we-empower__tab.active::before {
    bottom: 0;
    top: auto;
  }
}
.our-approach {
  padding: 80px 0;
}
.our-approach__title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 48px;
  text-align: center;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  transition: top 0.3s ease, transform 0.3s ease;
}
.our-approach__cards {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.our-approach__card {
  width: 100%;
  max-width: 416px;
  height: 300px;
  background-image: radial-gradient(circle, #c262e6, #8c27b1);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}
.our-approach__card-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 80%;
  opacity: 1;
  transition: all 0.3s ease;
  text-align: center;
}
.our-approach__card-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  position: relative;
  top: 0;
  transition: top 0.3s ease;
}
.our-approach__card-description {
  margin: 0 auto;
  max-width: 292px;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, height 0.3s ease, margin-top 0.3s ease;
}
.our-approach__card-description.middle {
  max-width: 304px;
}
.our-approach__card:hover {
  background-color: #a401e0;
}
.our-approach__card:hover .our-approach__title {
  top: 0;
  transform: translateY(0);
}
.our-approach__card:hover .our-approach__card-title {
  top: -36px;
}
.our-approach__card:hover .our-approach__card-description {
  opacity: 1;
  height: auto;
}
.our-approach__card img {
  position: absolute;
  transition: top 0.3s ease;
  width: 229px;
  height: 229px;
  transform-origin: center;
}
.our-approach__card.first-card .left-bottom, .our-approach__card.third-card .left-bottom {
  bottom: 0;
  left: -120px;
  transform: rotate(45deg);
  top: 90px;
}
.our-approach__card.first-card .right-top, .our-approach__card.third-card .right-top {
  right: -120px;
  transform: rotate(225deg);
  top: -40px;
}
.our-approach__card.first-card:hover .left-bottom, .our-approach__card.third-card:hover .left-bottom {
  top: 200px;
}
.our-approach__card.first-card:hover .right-top, .our-approach__card.third-card:hover .right-top {
  top: -150px;
}
.our-approach__card.second-card .left-top {
  left: -120px;
  transform: rotate(45deg);
  top: -40px;
}
.our-approach__card.second-card .right-bottom {
  bottom: 0;
  right: -120px;
  transform: rotate(225deg);
  top: 90px;
}
.our-approach__card.second-card:hover .left-top {
  top: -150px;
}
.our-approach__card.second-card:hover .right-bottom {
  top: 200px;
}

@media (max-width: 600px) {
  .our-approach__cards {
    flex-direction: column;
    align-items: center;
  }
}
.careers {
  position: relative;
  background-image: url("./../../assets/images/careers.png");
  background-size: cover;
  aspect-ratio: 1440/691;
  padding: 66px 0 69px 0;
}
.careers.active .careers__content {
  align-items: flex-start;
}
.careers.active .careers__info {
  flex-basis: 367px;
}
.careers__content {
  display: flex;
  gap: 60px;
  justify-content: space-evenly;
  align-items: center;
}
.careers__info {
  flex: 0 1 416px;
  text-align: left;
}
.careers__title {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 32px;
}
.careers__description {
  font-size: 14px;
  line-height: 1.5;
}
.careers__form {
  background-image: url("./../../assets/images/form-background.png");
  background-size: cover;
  aspect-ratio: 524/556;
  border-radius: 16px;
  flex: 0 1 524px;
  position: relative;
  padding: 44px 59px 48px 59px;
}
.careers__form-fields {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.careers__form-field {
  border: 1px solid #7d7c85;
  width: 100%;
  height: 58px;
  padding: 19px 23px 20px 22px;
  border-radius: 10px;
}
.careers__form-field {
  background-color: white;
  color: #292828;
  font-size: 14px;
}
.careers__form-description {
  font-size: 14px;
  font-weight: 700;
  margin: 22px 0;
}
.careers__form .careers__form-upload {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 42px;
}
.careers__form .careers__form-upload .careers__form-upload-btn {
  width: 146px;
  height: 48px;
  display: flex;
  align-items: center;
  background-color: transparent;
  border: 1px solid white;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  text-wrap: nowrap;
  padding: 16px 20px 16px 18px;
  cursor: pointer;
}
.careers__form .careers__form-upload .careers__form-upload-btn:hover {
  opacity: 0.5;
}
.careers__form .careers__form-upload .careers__form-upload-btn img {
  margin-right: 14px;
}
.careers__form .careers__form-upload .careers__form-upload-text {
  opacity: 0.55;
  font-size: 14px;
}
.careers__form .careers__form-upload-file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.careers__form .careers__form-upload-file-input::-webkit-file-upload-button {
  visibility: hidden;
}
.careers__form .careers__form-upload-filename {
  font-size: 14px;
  opacity: 0.6;
}
.careers__form-submit {
  background-color: #8c27b1;
  width: 187px;
  height: 58px;
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 18px 74px;
  cursor: pointer;
  display: block;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .careers {
    padding-top: 0;
  }
  .careers .careers__title {
    text-align: center;
  }
  .careers__content {
    flex-direction: column;
  }
  .careers__info {
    flex-basis: auto;
    margin-bottom: 40px;
  }
  .careers__form, .contact-us__form {
    flex-basis: auto;
    width: 100%;
    max-width: 600px;
  }
  .careers__form .select-menu-wrapper, .contact-us__form .select-menu-wrapper {
    width: 100%;
  }
  .careers__form .select-menu-wrapper .select-menu, .contact-us__form .select-menu-wrapper .select-menu {
    max-width: 100%;
  }
  .careers__form-fields {
    flex-direction: column;
    align-items: center;
  }
  .careers__form-field,
  .careers__form-select {
    max-width: 100%;
  }
  .careers__form-submit {
    text-align: center;
    width: 100%;
  }
}
@media (max-width: 430px) {
  .careers__form {
    padding: 30px;
  }
  .contact-us__form .contact-us__form-row {
    flex-direction: column;
  }
}
.contact-us {
  margin-top: 90px;
  background: linear-gradient(181deg, #292828, #161616);
  padding: 54px 0 0 0;
  text-align: center;
}
.contact-us .container .contact-us__address {
  font-size: 14px;
  padding: 20px 0;
}
.contact-us__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.contact-us__title {
  font-size: 50px;
  font-weight: 700;
  line-height: 68px;
}
.contact-us__description {
  font-size: 14px;
  max-width: 416px;
  line-height: 24px;
}
.contact-us__button {
  background-color: transparent;
  border: 1px solid white;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  padding: 18px 40px;
  cursor: pointer;
  max-width: 332px;
  width: 100%;
}

.contact-us__form {
  background-image: url("./../../assets/images/form-background.png");
  background-size: cover;
  aspect-ratio: 853/658;
  border-radius: 16px;
  flex: 0 1 853px;
  position: relative;
  padding: 44px 38px 39px 38px;
}
.contact-us__form-fields {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-us__form-fields input,
.contact-us__form-fields textarea {
  width: 100%;
}
.contact-us__form-row {
  display: flex;
  gap: 26px;
}
.contact-us__form-row .select-menu-wrapper {
  flex: 1;
}
.contact-us__form-row .select-menu-wrapper .select-menu {
  max-width: 100%;
}
.contact-us__form-field {
  border: 1px solid #7d7c85;
  width: 100%;
  height: 58px;
  padding: 19px 23px 20px 22px;
  border-radius: 10px;
  background-color: white;
  color: #292828;
  font-size: 14px;
}
.contact-us__form-field.google-captcha {
  width: auto;
}
.contact-us__form-field label {
  font-size: 14px;
  font-weight: 700;
  color: #292828;
  margin-bottom: 8px;
  display: block;
}
.contact-us__form-field .contact-us__form-input {
  border: none;
  padding: 0;
  height: auto;
  font-size: 14px;
  color: #292828;
}
.contact-us__form-field .contact-us__form-input::placeholder {
  color: #292828;
  font-size: 14px;
}
.contact-us__form-field textarea {
  border: none;
  padding: 0;
  height: 120px;
  font-size: 14px;
  color: #292828;
  resize: none;
}
.contact-us__form-field textarea::placeholder {
  color: #292828;
  font-size: 14px;
}
.contact-us__form-submit {
  background-color: #8c27b1;
  width: 187px;
  height: 58px;
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 18px 74px;
  cursor: pointer;
  display: block;
  margin: 0 0 0 auto;
}

@media (max-width: 1024px) {
  .contact-us {
    margin-top: 0;
  }
}
.footer {
  height: auto;
  padding: 17px 0;
  display: flex;
  align-items: center;
  text-wrap: nowrap;
}
.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 10px;
  gap: 10px;
}
.footer__link {
  font-size: 14px;
  text-decoration: none;
  opacity: 0.55;
  transition: opacity 0.3s;
}
.footer__link:hover {
  opacity: 1;
}
.footer__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.footer .pages {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.footer .pages span {
  font-size: 14px;
  text-decoration: none;
  opacity: 0.55;
  transition: opacity 0.3s;
}

@media (max-width: 768px) {
  .footer__content {
    flex-direction: column;
    align-items: center;
  }
}

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