* {
  margin: 0;
  padding: 0;
  font: inherit;
}

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 11rem;
  overflow-x: hidden;
}

body {
  font-family: "Rubik", sans-serif;
  color: var(--colot-text-black);
  font-size: 1.6rem;
  font-weight: 400;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  display: inline-block;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background-color: transparent;
}

main {
  padding-top: 11.62rem;
}

:root {
  --width-text: 55.5rem;
  --font-bolder: 500;
  --font-boldest: 700;
  --color-main: #f53838;
  --color-main-tint: #c42d2d;
  --color-main-shade: #f98888;
  --color-main-light: #ffecec;
  --colot-text-black: #0b132a;
  --color-text-lighter: #4f5665;
  --color-text-light: #afb5c0;
  --color-background-gray: #f8f8f8;
  --color-border-gray: #dddddd;
  --radius-sm: 1rem;
  --radius-lg: 5rem;
  --shadow-main: 0rem 3.7rem 3.7rem -1rem rgba(245, 56, 56, 0.349);
  --shadow-black: 0rem 4.7rem 4.7rem -1rem rgba(13, 16, 37, 0.05);
}

.container {
  width: 100%;
  max-width: 114rem;
  margin: 0 auto;
}

.heading-primary,
.heading-secondary,
.heading-tertiary {
  color: var(--colot-text-black);
  font-weight: var(--font-bolder);
}

.heading-primary {
  font-size: 5rem;
  line-height: 1.4;
}

.heading-secondary {
  font-size: 3.5rem;
  line-height: 1.424;
  max-width: 43.5rem;
}

.heading-tertiary {
  font-size: 1.8rem;
  line-height: 1.6;
}

.description {
  font-size: 1.6rem;
  line-height: 1.875;
  max-width: 55.5rem;
  color: var(--color-text-lighter);
}

.li {
  font-size: 1.4rem;
  line-height: 2.142;
}

.btn-cta {
  color: #fff;
  background-color: var(--color-main);
  box-shadow: var(--shadow-main);
  transition: all 0.3s;
}

.btn-cta:hover {
  box-shadow: 0rem 3.7rem 3.7rem -1rem var(--color-main-light);
  background-color: var(--color-main-tint);
}

.btn-outline {
  position: relative;
  color: var(--color-main);
  background-color: #fff;
  border: 2px solid var(--color-main);
  border-radius: var(--radius-lg);
  z-index: 1;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.btn-outline:hover,
.btn-outline:active {
  color: white;
}

.btn-outline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  background-color: var(--color-main);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-in-out;
}

.btn-outline:hover::before {
  transform: scaleX(1);
}

.boldest {
  font-weight: var(--font-boldest);
}

.bolder {
  font-weight: var(--font-bolder);
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo__icon {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 0.8rem;
}

.logo__text {
  margin-left: 0.8rem;
  font-size: 2.4rem;
  font-weight: var(--font-boldest);
  color: var(--colot-text-black);
}

body {
  position: relative;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 9;
  box-shadow: var(--shadow-black);
  padding: 4.56rem 0 2.56rem;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .logo {
  user-select: none;
  display: flex;
  align-items: center;
}
.header .btns {
  font-weight: var(--font-bolder);
  display: flex;
  align-items: center;
}
.header .btn-outline {
  padding: 1.13rem 4.38rem;
  margin-inline-start: 3rem;
}
.header .btn-transparent {
  transition: all 0.3s;
}
.header .btn-transparent:hover {
  color: var(--color-main);
}

.nav__list {
  display: flex;
  gap: 4rem;
}

.nav__link {
  color: var(--color-text-lighter);
  border-bottom: 1px solid transparent;
  transition: all 0.4s;
}

.nav__link--active {
  color: var(--color-main);
  border-bottom: 1px solid var(--color-main);
}

.nav__link:hover {
  color: var(--color-main);
}

.mob__nav {
  display: none;
}

.section-hero {
  padding-top: 6.849rem;
  display: grid;
  grid-template-columns: var(--width-text) 1fr;
  align-items: center;
}
.section-hero .heading-primary {
  margin-bottom: 2rem;
}
.section-hero .description {
  margin-bottom: 5rem;
}
.section-hero .btn-cta {
  padding: 1.75rem 7.75rem;
  border-radius: var(--radius-sm);
  font-weight: var(--font-boldest);
  line-height: 1.56;
  box-shadow: var(--shadow-main);
}
.section-hero .btn-cta:hover {
  box-shadow: 0rem 3.7rem 3.7rem -1rem var(--color-main-light);
}

.section-hero .text-box {
  transform: translate(-100px, 0);
  opacity: 0;
  transition: all 0.6s;
}

.section-hero .img-box {
  transform: translate(100px, 0);
  opacity: 0;
  transition: all 0.6s;
}

.hero__img {
  transform: translateX(6.7rem);
  width: 100%;
}

.section-statistics {
  margin: 5rem 0 9.58rem;
  padding: 3.721rem 0;
  display: flex;
  justify-content: space-between;
  box-shadow: var(--shadow-black);
}

.section-statistics,
.map {
  transform: translate(0, 100px);
  opacity: 0;
  transition: all 0.6s;
}

.stat-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.65rem;
  height: 12.5573rem;
  width: 100%;
}

.stat-item:nth-child(2) {
  border-left: 2px solid #eeeff2;
  border-right: 2px solid #eeeff2;
  margin: 0 1rem;
}

.stat-icon-box {
  padding: 1.55rem;
  background-color: var(--color-main-light);
  border-radius: 50%;
  display: flex;
}

.stat-text-box {
  display: flex;
  flex-direction: column;
}

.stat-num__wrapper {
  display: flex;
  align-items: center;
  font-size: 2.5rem;
  font-weight: var(--font-boldest);
  line-height: 1.2;
}

.stat-type {
  color: var(--color-text-lighter);
  font-size: 2rem;
  line-height: 1.5;
}

.section-features {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 6rem;
}
.section-features .text-box {
  max-width: 43.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transform: translate(100px, 0);
  opacity: 0;
  transition: all 0.6s;
}
.section-features .img-box {
  transform: translate(-100px, 0);
  opacity: 0;
  transition: all 0.6s;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1.08rem;
}

.feature-icon,
.company {
  transform: scale(0);
  opacity: 0;
  transition: all 0.8s;
}

.section-why-choose {
  padding-bottom: 8rem;
}

.header-why-choose {
  text-align: center;
  margin-bottom: 5rem;
  transform: translate(0, 100px);
  opacity: 0;
  transition: all 0.6s;
}
.header-why-choose .heading-secondary {
  max-width: none;
  margin-bottom: 1.5rem;
}
.header-why-choose .description {
  max-width: 60rem;
  margin: 0 auto;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.why-choose-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 4rem 2.5rem 3.5rem;
  background-color: #fff;
  border: 2px solid #eee;
  border-radius: 1.2rem;
  transform: scale(0);
  opacity: 0;
  transition: all 0.5s;
}
.why-choose-card .heading-tertiary {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: var(--font-boldest);
  font-size: 1.8rem;
}
.why-choose-card .description {
  max-width: none;
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--text-color-secondary);
}
.why-choose-card:hover {
  border-color: var(--color-main);
  box-shadow: 0 1rem 4rem rgba(245, 56, 56, 0.12);
  transform: translateY(-0.5rem);
}

.why-choose-icon {
  width: 6.4rem;
  height: 6.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-main-light);
  border-radius: 50%;
}
.why-choose-icon svg {
  width: 3.2rem;
  height: 3.2rem;
}

.header-map,
.header-testimonial {
  transform: translate(-200px, 0);
  opacity: 0;
  transition: all 0.6s;
}

.btn-cta {
  border-radius: var(--radius-lg);
}

.section-map {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.map__img {
  padding: 4rem;
  margin-top: 15.581rem;
}

.header-map,
.header-testimonial {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.section-featured-in {
  margin: 3.58 0 5rem;
  padding: 7.416rem 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-featured-in img {
  height: auto;
}

.section-testimonial .description {
  color: var(--colot-text-black);
}

.swiper {
  overflow: visible;
  padding: 6rem 0 0;
  text-align: left;
  transform: translate(0, 100px);
  opacity: 0;
  transition: all 0.6s;
}

.testimonial {
  width: 100%;
  height: 25.6rem;
  padding: 3rem;
  border-radius: var(--radius-sm);
  border: 2px solid #ddd;
  flex-shrink: 0;
  transition: all 0.3s;
}
.testimonial .description {
  font-size: 1.6rem;
  line-height: 3rem;
}

.testimonial:hover {
  border: 2px solid var(--color-main);
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.person-info {
  display: flex;
  flex-direction: column;
  color: var(--color-text-lighter);
  font-family: Rubik;
  font-size: 1.4rem;
}

.person-rating {
  margin-inline-start: auto;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.buttons-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6rem 0 0;
}

.carosal-btns {
  display: flex;
  align-items: center;
  gap: 1rem;
  transform: translate(-100px, 0);
  opacity: 0;
  transition: all 0.6s;
}
.carosal-btns .bullet {
  height: 1.5rem;
  width: 1.5rem;
  border-radius: 50%;
  background-color: #dde0e4;
  transition: all 0.3s;
}
.carosal-btns .bullet:hover {
  background-color: black;
}
.carosal-btns .bullet--selected {
  width: 4.5rem;
  border-radius: var(--radius-sm);
  background-color: var(--color-main);
}

.carosal-btns .btn:hover {
  background-color: var(--colot-text-black);
}

.arrow-btns {
  display: flex;
  gap: 2rem;
  transform: translate(50px, 0);
  opacity: 0;
  transition: all 0.6s;
}

.testimonal-prev-btn,
.testimonal-next-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.8rem;
  border: 2px solid var(--color-main);
  border-radius: 50%;
  transition: all 0.3s;
}
.testimonal-prev-btn path,
.testimonal-next-btn path {
  color: var(--color-main);
}

.testimonal-prev-btn:hover,
.testimonal-next-btn:hover {
  background-color: var(--color-main);
}
.testimonal-prev-btn:hover .arrow-icon,
.testimonal-prev-btn:hover .arrow-icon path,
.testimonal-next-btn:hover .arrow-icon,
.testimonal-next-btn:hover .arrow-icon path {
  stroke: #fff;
  fill: #fff;
}

.testimonal-prev-btn:disabled,
.testimonal-next-btn:disabled {
  border-color: var(--color-main-shade);
  pointer-events: none;
  z-index: 3;
}
.testimonal-prev-btn:disabled .arrow-icon path,
.testimonal-next-btn:disabled .arrow-icon path {
  fill: var(--color-main-shade);
}

.hero-download {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.section-other-downloads {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 4rem 0 0;
}

.other-downloads-label {
  max-width: none;
}

.other-downloads-btns {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.download-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.6rem 2.4rem;
  border: 2px solid var(--color-main);
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--color-main);
  background-color: #fff;
  transition: all 0.3s;
  user-select: none;
}
.download-btn:hover {
  background-color: var(--color-main);
  color: #fff;
}

.download-btn--primary {
  background-color: var(--color-main);
  color: #fff;
  border-color: var(--color-main);
  padding: 1.8rem 3.2rem;
  box-shadow: var(--shadow-main);
}
.download-btn--primary:hover {
  background-color: var(--color-main-tint);
  box-shadow: 0rem 3.7rem 3.7rem -1rem var(--color-main-light);
}

.download-btn.selected {
  background-color: var(--color-main);
  color: #fff;
}
.download-btn.selected .download-arrow {
  transform: rotate(180deg);
}

.download-btn-icon {
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
}

.download-btn-text {
  font-size: 1.6rem;
  font-weight: var(--font-bolder);
  white-space: nowrap;
}

.download-arrow {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.download-list {
  display: none;
  position: absolute;
  top: calc(100% + 0.8rem);
  left: 0;
  min-width: 100%;
  background-color: #fff;
  border: 2px solid var(--color-border-gray);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-black);
  z-index: 10;
  overflow: hidden;
}

.download-list-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.6rem;
  cursor: pointer;
  color: var(--colot-text-black);
  transition: background-color 0.2s;
}
.download-list-item:hover {
  background-color: var(--color-main-light);
}
.download-list-item svg {
  width: 2.8rem;
  height: 2.8rem;
  flex-shrink: 0;
}

.download-list-item-text {
  font-size: 1.4rem;
  font-weight: var(--font-bolder);
  white-space: nowrap;
  display: flex;
  flex-direction: column;
}

.download-list-item-sub {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--color-text-lighter);
}

.section-cta {
  background-color: #fff;
  padding: 5.85rem 7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-black);
  transform: translate(0, 100%);
  opacity: 0;
  transition: all 0.6s;
}
.section-cta .btn-cta {
  padding: 1.75rem 6.5rem;
  border-radius: var(--radius-sm);
}

.footer {
  background-color: var(--color-background-gray);
  padding: 18rem 0 10rem;
}
.footer .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.footer .container .about {
  max-width: 34rem;
}

.footer .description {
  margin: 2rem 0 3rem;
}

.social-links {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}

.social-link {
  height: 3.36rem;
  width: 3.36rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  box-shadow: 0rem 0.7rem 0.7rem -0.1rem rgba(0, 0, 0, 0.05);
  transition: all 0.4s;
}
.social-link .icon {
  height: 1.9rem;
  transition: all 0.3s;
}

.social-link:hover {
  box-shadow: 0rem 0.7rem 0.7rem -0.1rem transparent;
}

.copyright {
  color: var(--color-text-light);
}

.footer-nav {
  display: flex;
  justify-content: space-between;
}
.footer-nav .nav-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-nav li {
  line-height: 1.8;
  color: var(--color-text-lighter);
}

footer .nav-link:hover {
  text-decoration: underline;
}

.legal-content {
  padding: 14rem 4rem 8rem;
  max-width: 80rem;
  margin: 0 auto;
}
.legal-content section {
  margin-bottom: 4rem;
}
.legal-content .heading-secondary {
  max-width: none;
  margin-bottom: 2rem;
  font-size: 2.4rem;
}
.legal-content .heading-tertiary {
  margin-bottom: 1rem;
  margin-top: 2rem;
}
.legal-content p {
  font-size: 1.6rem;
  line-height: 1.875;
  color: var(--color-text-lighter);
  margin-bottom: 1.5rem;
}
.legal-content ul, .legal-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}
.legal-content ul {
  list-style: disc;
}
.legal-content ol {
  list-style: decimal;
}
.legal-content li {
  font-size: 1.6rem;
  line-height: 2;
  color: var(--color-text-lighter);
}
.legal-content a {
  color: var(--color-main);
  text-decoration: underline;
}
.legal-content a:hover {
  color: var(--color-main-tint);
}
.legal-content strong {
  font-weight: var(--font-bolder);
  color: var(--colot-text-black);
}

.legal-title {
  margin-bottom: 1.5rem;
  font-size: 4rem;
}

.legal-meta {
  font-size: 1.6rem;
  color: var(--color-text-lighter);
  margin-bottom: 0.5rem;
}

.legal-highlight {
  background-color: var(--color-main-light);
  border-left: 4px solid var(--color-main);
  padding: 2.5rem 3rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 3rem 0;
}
.legal-highlight p {
  margin-bottom: 1rem;
}

.legal-toc {
  background-color: var(--color-background-gray);
  padding: 2.5rem 3rem;
  border-radius: var(--radius-sm);
  margin: 3rem 0 4rem;
}
.legal-toc ol {
  padding-left: 2rem;
}
.legal-toc li {
  line-height: 2.2;
}
.legal-toc a {
  color: var(--color-main);
  text-decoration: none;
}
.legal-toc a:hover {
  text-decoration: underline;
}

.legal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.legal-grid-item {
  background-color: var(--color-background-gray);
  padding: 2rem;
  border-radius: var(--radius-sm);
}

.legal-related {
  margin-top: 6rem;
  padding-top: 4rem;
  border-top: 2px solid var(--color-border-gray);
}
.legal-related .heading-secondary {
  margin-bottom: 1rem;
}

.legal-related-links {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.legal-related-link {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 2rem;
  border: 2px solid var(--color-border-gray);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.3s;
}
.legal-related-link strong {
  font-size: 1.8rem;
}
.legal-related-link span {
  font-size: 1.4rem;
  color: var(--color-text-lighter);
}
.legal-related-link:hover {
  border-color: var(--color-main);
  text-decoration: none;
}

@media (max-width: 75em) {
  html {
    font-size: 56.25%;
  }
  .header {
    padding: 0;
  }
  .header .logo {
    margin-right: auto;
  }
  .header .container {
    justify-content: initial;
    gap: 4rem;
  }
  main {
    padding-inline-start: 4rem;
    padding-inline-end: 4rem;
  }
  .footer {
    padding: 17rem 4rem 6rem;
  }
  .header .container {
    padding: 2rem;
  }
  .header .btn-outline {
    padding: 0.8rem 2.4rem;
  }
  .logo__icon {
    width: 2.8rem;
    height: 2.8rem;
  }
  .logo__text {
    font-size: 2rem;
  }
  .section-hero {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
  .hero__img {
    transform: initial;
  }
  .heading-primary {
    font-size: 4rem;
  }
  .section-features {
    padding-bottom: 9rem;
  }
  .section-features .img-box img {
    max-width: 100%;
  }
  .section-map img {
    width: 100%;
    margin-top: 2rem;
  }
  .section-featured-in {
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
  }
  .section-featured-in img {
    max-width: 20rem;
  }
  .section-testimonial {
    margin-bottom: -10rem;
  }
}
@media (max-width: 54em) {
  html {
    font-size: 50%;
  }
  .heading-secondary {
    font-size: 2.8rem;
  }
  .heading-tertiary .header .btns {
    margin-left: auto;
  }
  .heading-tertiary .header .btn-outline {
    margin-inline-start: 1rem;
    margin-inline-end: 1rem;
  }
  .nav {
    position: absolute;
    top: 6.3rem;
    left: 0%;
    height: 100vh;
    width: 100vw;
    padding-bottom: 30rem;
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(10px);
    transform: translateX(100%);
    transition: all 0.3s;
  }
  .nav__list {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  .mob__nav {
    display: block;
  }
  .nav__checkbox {
    display: none;
  }
  .nav__label {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    cursor: pointer;
  }
  .burger_bar {
    background-color: black;
    height: 0.3rem;
    width: 2.8rem;
    transition: all 0.3s;
  }
  .nav__checkbox:checked ~ .nav__label .burger_bar:nth-child(1) {
    transform: translateY(3px) rotate(40deg);
  }
  .nav__checkbox:checked ~ .nav__label .burger_bar:nth-child(2) {
    opacity: 0;
    visibility: hidden;
  }
  .nav__checkbox:checked ~ .nav__label .burger_bar:nth-child(3) {
    transform: translateY(-10px) rotate(-40deg);
  }
  .header:has(.nav__checkbox:checked) .nav {
    transform: translateX(0);
  }
  .section-hero {
    grid-template-columns: 1fr;
    padding-top: 4rem;
  }
  .section-hero .heading-primary {
    margin-bottom: 1rem;
  }
  .section-hero .description {
    margin-bottom: 3rem;
  }
  .section-hero .btn-cta {
    padding: 1.35rem 5.35rem;
  }
  .section-hero .img-box {
    display: flex;
    justify-content: center;
  }
  .section-hero .hero__img {
    width: 100%;
  }
  .section-statistics {
    margin: 9rem auto;
    padding: 4rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    align-self: center;
  }
  .stat-item {
    justify-content: flex-start;
    height: 10rem;
  }
  .stat-item:nth-child(2) {
    border: none;
    margin: 0;
  }
  .stat-text-box {
    flex-direction: row;
    gap: 1rem;
  }
  .section-features {
    flex-direction: column;
    gap: 2rem;
  }
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-featured-in img {
    width: 12rem;
  }
  .header-testimonial {
    gap: 1rem;
  }
  .testimonials {
    padding: 5rem 0;
  }
  .arrow-btns .btn {
    padding: 1.2rem;
  }
  .hero-download {
    align-items: stretch;
  }
  .other-downloads-btns {
    flex-direction: column;
    align-items: center;
  }
  .section-cta {
    padding: 5rem;
    flex-direction: column;
    gap: 3rem;
    text-align: center;
  }
  .footer {
    padding-top: 20rem;
  }
  .footer .container {
    grid-template-columns: 1fr;
    gap: 6rem;
  }
  .footer-nav {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .footer-nav .nav-list {
    padding: 2rem 3rem;
    gap: 0.5rem;
  }
  .footer-nav li:first-child {
    margin: 0;
  }
  .legal-content {
    padding-top: 10rem;
  }
  .legal-grid {
    grid-template-columns: 1fr;
  }
  .legal-related-links {
    flex-direction: column;
  }
}
@media (max-width: 27em) {
  .header .container {
    gap: 2rem;
  }
  .header .container .logo {
    flex: 1;
  }
  .header .container .logo__icon {
    width: 2.4rem;
    height: 2.4rem;
  }
  .header .container .logo__text {
    font-size: 1.8rem;
  }
  .header .container .btns {
    font-size: 1.4rem;
    gap: 1rem;
  }
  .header .container .btns .btn-outline {
    display: none;
  }
  .mob__nav {
    margin-inline-start: auto;
    margin-inline-end: 0.5rem;
  }
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
  .section-statistics {
    margin: 5rem auto;
  }
  .testimonial {
    padding: 2rem;
    width: 32rem;
  }
  .testimonial .description {
    font-size: 1.4rem;
  }
  .footer {
    padding-top: 25rem;
  }
  .footer .container {
    gap: 4rem;
  }
}
@media (min-width: 75em) {
  .swiper-slide {
    width: 40rem !important;
  }
}
.enlarge {
  transform: scale(1) !important;
  opacity: 1 !important;
}

.moveBack {
  transform: translate(0, 0) !important;
  opacity: 1 !important;
}

.moveSlightlyBack {
  transform: translate(0, 50%) !important;
  opacity: 1 !important;
}
