@import url("https://cdn-uicons.flaticon.com/3.0.0/uicons-bold-rounded/css/uicons-bold-rounded.css");
@import url("https://cdn-uicons.flaticon.com/3.0.0/uicons-regular-rounded/css/uicons-regular-rounded.css");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "DM Sans", sans-serif;
}

body {
  background-color: #000000;
}

html {
  scroll-behavior: smooth;
  scroll-padding: 0;
}

header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0;
  position: fixed;
  width: 100%;
  height: 13vh;
  top: 10px;
  left: 0;
  z-index: 2;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: row;
  gap: 0;
  position: relative;
  width: 80%;
  max-width: 1604px;
  height: 100%;
  border-radius: 1em;
  background: rgba(20, 20, 20, 0.19);
  backdrop-filter: blur(8px) saturate(180%);
  -webkit-backdrop-filter: blur(50px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.219);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}
header nav picture {
  z-index: 2;
}
header nav picture .header-logo {
  width: 50px;
}
header nav .desktop-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 1.2em;
  list-style: none;
  z-index: 2;
}
header nav .desktop-menu li a {
  text-decoration: none;
  color: #FFFFFF;
  font-weight: 300;
  transition: color 0.3s ease;
}
header nav .desktop-menu li a:hover {
  opacity: 0.7;
}
header nav .content {
  display: block;
  position: relative;
  cursor: pointer;
  font-size: 20px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: none;
}
header nav .content input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
header nav .content .checkmark {
  position: relative;
  top: 0;
  left: 0;
  height: 1.3em;
  width: 1.3em;
}
header nav .content .checkmark span {
  width: 32px;
  height: 2px;
  background-color: #FFFFFF;
  position: absolute;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
header nav .content .checkmark span:nth-child(1) {
  top: 10%;
}
header nav .content .checkmark span:nth-child(2) {
  top: 50%;
}
header nav .content .checkmark span:nth-child(3) {
  top: 90%;
}
header nav .content input:checked + .checkmark span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  -webkit-transform: translateY(-50%) rotate(45deg);
  -moz-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  -o-transform: translateY(-50%) rotate(45deg);
}
header nav .content input:checked + .checkmark span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  -webkit-transform: translateY(-50%) rotate(-45deg);
  -moz-transform: translateY(-50%) rotate(-45deg);
  -ms-transform: translateY(-50%) rotate(-45deg);
  -o-transform: translateY(-50%) rotate(-45deg);
}
header nav .content input:checked + .checkmark span:nth-child(3) {
  transform: translateX(-50px);
  -webkit-transform: translateX(-50px);
  -moz-transform: translateX(-50px);
  -ms-transform: translateX(-50px);
  -o-transform: translateX(-50px);
  opacity: 0;
}
header nav #mobile-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.2em;
  background-color: #000000;
  position: fixed;
  list-style: none;
  width: 100%;
  min-height: 100vh;
  z-index: 9;
  display: none;
}
header nav #mobile-menu li a {
  text-decoration: none;
  color: #FFFFFF;
  font-weight: 300;
  transition: color 0.3s ease;
}
header nav #mobile-menu li a:hover {
  opacity: 0.7;
}
header nav .header-quote-button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0;
  text-decoration: none;
  background-color: transparent;
  border: 0.1em solid #FFFFFF;
  color: #FFFFFF;
  border-radius: 0.8em;
  width: auto;
  height: 3em;
  padding: 0 2.5em;
}
header nav .grid-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  border-radius: 1em;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
header nav .grid-line {
  flex: 1;
  border-right: 1px solid rgba(255, 255, 255, 0.079);
  height: 100%;
  background: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.085) 0%, transparent 100%);
}
header nav .grid-line:last-child {
  border-right: none;
}

#hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  width: 100%;
  height: 100vh;
  background-image: url("../img/background-hero.webp");
  background-size: cover;
  background-position: start;
  z-index: 1;
}
#hero-section .section-container {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 1em;
  width: 85%;
}
#hero-section .section-container .section-logo {
  width: 120px;
  max-width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
#hero-section .section-container h1 {
  font-size: 2.4em;
  font-weight: 400;
  color: #FFFFFF;
}
#hero-section .section-container h1 span {
  position: relative;
  color: #D98200;
}
#hero-section .section-container p {
  font-size: 1.2em;
  color: #F4F4F4;
  font-weight: 200;
  width: 50%;
}
#hero-section .section-buttons {
  margin-top: 2em;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 1em;
  width: 85%;
}
#hero-section .section-buttons .primary-buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 1em;
  width: auto;
}
#hero-section .section-buttons .primary-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0;
  background-color: #D98200;
  color: #FFFFFF;
  position: relative;
  text-decoration: none;
  font-weight: 600;
  width: auto;
  height: 3.8em;
  padding: 0 2.5em;
  border-radius: 0.6em;
  font-size: 0.9em;
  border: 0.13em solid #fcbb21;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
#hero-section .section-buttons .primary-buttons a i {
  position: absolute;
  right: 0.3em;
  top: 0;
  rotate: 45deg;
  font-size: 1.5em;
}
#hero-section .section-buttons .primary-buttons a:hover {
  background-color: #fcbb21;
}
#hero-section .section-buttons .primary-buttons button {
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.2117647059);
  color: rgba(255, 255, 255, 0.4588235294);
  font-weight: 300;
  width: auto;
  height: 3.8em;
  padding: 0 1.5em;
  border-radius: 0.6em;
  font-size: 0.9em;
  border: 0.14em solid rgba(102, 112, 133, 0.062745098);
  transition: background-color 0.3s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: not-allowed;
}
#hero-section .section-buttons .secondary-buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 1em;
  width: auto;
}
#hero-section .section-buttons .secondary-buttons button {
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.2117647059);
  color: rgba(255, 255, 255, 0.4588235294);
  font-weight: 300;
  width: auto;
  height: 3.8em;
  padding: 0 1.5em;
  border-radius: 0.6em;
  font-size: 0.9em;
  border: 0.14em solid rgba(102, 112, 133, 0.062745098);
  transition: background-color 0.3s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: not-allowed;
}

#case-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0;
  background-color: #FFFFFF;
  width: 100%;
  height: 100vh;
  position: relative;
  background-image: url("../img/case-bg.svg");
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
  z-index: 1;
}
#case-section .glass {
  position: absolute;
  top: 0;
  width: 100%;
  max-width: 1604px;
  height: 15vh;
  overflow: hidden;
  backdrop-filter: blur(8px) saturate(180%);
  -webkit-backdrop-filter: blur(50px) saturate(180%);
}
#case-section .glass .grid-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 0;
  pointer-events: none;
}
#case-section .glass .grid-line {
  flex: 1;
  border-right: 1px solid rgba(255, 255, 255, 0.079);
  height: 100%;
  background: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.075) 0%, transparent 100%);
}
#case-section .glass .grid-line:last-child {
  border-right: none;
}
#case-section .section-case {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 1.3em;
  width: 35%;
  height: auto;
}
#case-section .section-case h2 {
  font-size: 2.4em;
  font-weight: 400;
  color: #000000;
  line-height: 1.2em;
}
#case-section .section-case h2 span {
  color: #D98200;
}
#case-section .section-case p {
  font-size: 1.2em;
  color: #000000;
  font-weight: 200;
  width: 100%;
}
#case-section .section-case a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0;
  background-color: #D98200;
  color: #FFFFFF;
  position: relative;
  text-decoration: none;
  font-weight: 600;
  width: auto;
  height: 3.8em;
  padding: 0 2.4em;
  border-radius: 0.6em;
  font-size: 0.9em;
  border: 0.13em solid #fcbb21;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
#case-section .section-case a i {
  position: absolute;
  right: 0.3em;
  top: 0;
  rotate: 45deg;
  font-size: 1.5em;
}
#case-section .section-case a:hover {
  background-color: #fcbb21;
}
#case-section .case-carrosel {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  width: 50%;
  height: 100%;
  padding: 5em 0 0 0;
  overflow: hidden;
}
#case-section .case-carrosel .owl-carousel {
  position: relative;
}
#case-section .case-carrosel .owl-carousel .item1 {
  background-image: url("../img/cases/build.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
#case-section .case-carrosel .owl-carousel .item2 {
  background-image: url("../img/cases/gym.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
#case-section .case-carrosel .owl-carousel .item3 {
  background-image: url("../img/cases/medicine.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
#case-section .case-carrosel .owl-carousel .item4 {
  background-image: url("../img/cases/odonto.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
#case-section .case-carrosel .owl-carousel .item5 {
  background-image: url("../img/cases/health.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
#case-section .case-carrosel .owl-carousel .item6 {
  background-image: url("../img/cases/stetic.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

#service-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3em;
  width: 100%;
  height: auto;
  padding: 8em 0 2em 0;
  position: relative;
  background-image: url("../img/service-bg.svg");
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
  z-index: 1;
}
#service-section .service-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  height: auto;
  z-index: 2;
  flex-wrap: wrap;
}
#service-section .service-content h2 {
  font-size: 2.4em;
  font-weight: 400;
  color: #FFFFFF;
}
#service-section .service-content h2 span {
  color: #D98200;
}
#service-section .service-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7em;
  z-index: 2;
  width: 100%;
}
#service-section .service-container .service-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: row;
  gap: 5em;
  position: relative;
  width: 85%;
  height: auto;
  flex-wrap: wrap;
}
#service-section .service-container .service-header a {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 1em;
  position: relative;
  z-index: 3;
  width: 300px;
  max-width: 100%;
  text-decoration: none;
  transition: transform 0.7s ease;
}
#service-section .service-container .service-header a h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0.3em;
  font-size: 1em;
  color: #D98200;
  font-weight: 400;
  text-transform: uppercase;
}
#service-section .service-container .service-header a h4 {
  font-size: 1.3em;
  color: #FFFFFF;
  font-weight: 400;
}
#service-section .service-container .service-header a .line {
  background-color: rgba(255, 255, 255, 0.1294117647);
  width: 100%;
  height: 0.1em;
  opacity: 0.7;
}
#service-section .service-container .service-header a p {
  font-size: 1.1em;
  color: #FFFFFF;
  font-weight: 200;
  width: 100%;
}
#service-section .service-container .service-header a:hover {
  transform: scale(1.05);
}
#service-section .service-container .service-header a:hover .line {
  background-color: #D98200;
}
#service-section .service-container .service-main {
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: row;
  gap: 5em;
  position: relative;
  width: 85%;
  height: auto;
  flex-wrap: wrap;
}
#service-section .service-container .service-main a {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 1em;
  position: relative;
  z-index: 3;
  width: 300px;
  max-width: 100%;
  text-decoration: none;
  transition: transform 0.7s ease;
}
#service-section .service-container .service-main a h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0.3em;
  font-size: 1em;
  color: #D98200;
  font-weight: 400;
  text-transform: uppercase;
}
#service-section .service-container .service-main a h4 {
  font-size: 1.3em;
  color: #FFFFFF;
  font-weight: 400;
}
#service-section .service-container .service-main a .line {
  background-color: rgba(255, 255, 255, 0.1294117647);
  width: 100%;
  height: 0.1em;
  opacity: 0.7;
}
#service-section .service-container .service-main a p {
  font-size: 1.1em;
  color: #FFFFFF;
  font-weight: 200;
  width: 100%;
}
#service-section .service-container .service-main a:hover {
  transform: scale(1.05);
}
#service-section .service-container .service-main a:hover .line {
  background-color: #D98200;
}
#service-section .service-number {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: row;
  gap: 5em;
  z-index: 2;
  width: 100%;
  padding: 3em 0;
  border-top: 0.1em solid rgba(255, 255, 255, 0.123);
}
#service-section .service-number .item:nth-child(1),
#service-section .service-number .item:nth-child(2),
#service-section .service-number .item:nth-child(3),
#service-section .service-number .item:nth-child(4) {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.3em;
  width: 220px;
}
#service-section .service-number .item:nth-child(1) h3,
#service-section .service-number .item:nth-child(2) h3,
#service-section .service-number .item:nth-child(3) h3,
#service-section .service-number .item:nth-child(4) h3 {
  font-size: 2.5em;
  color: #FFFFFF;
  font-weight: 600;
}
#service-section .service-number .item:nth-child(1) p,
#service-section .service-number .item:nth-child(2) p,
#service-section .service-number .item:nth-child(3) p,
#service-section .service-number .item:nth-child(4) p {
  font-size: 1em;
  color: #FFFFFF;
  font-weight: 300;
}

#differences-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2em;
  background-color: #FFFFFF;
  width: 100%;
  height: auto;
  padding: 9em 0 4em 0;
  position: relative;
  background-image: url("../img/dif-bg.svg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  z-index: 1;
}
#differences-section .dif-glass {
  position: absolute;
  top: 0;
  width: 100%;
  max-width: 1604px;
  height: 50vh;
  overflow: hidden;
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(50px) saturate(180%);
  z-index: 1;
}
#differences-section .dif-glass .grid-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 0;
  pointer-events: none;
}
#differences-section .dif-glass .grid-line {
  flex: 1;
  border-right: 1px solid rgba(255, 255, 255, 0.079);
  height: 100%;
  background: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.075) 0%, transparent 100%);
}
#differences-section .dif-glass .grid-line:last-child {
  border-right: none;
}
#differences-section .section-diff {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.2em;
  width: auto;
  height: auto;
  z-index: 2;
}
#differences-section .section-diff h2 {
  font-size: 2.4em;
  font-weight: 400;
  color: #000000;
  line-height: 1.2em;
}
#differences-section .section-diff h2 span {
  color: #D98200;
}
#differences-section .content-diff {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: row;
  gap: 2em;
  width: auto;
  height: auto;
  max-height: 100%;
  z-index: 2;
  position: relative;
  flex-wrap: wrap;
}
#differences-section .content-diff .diff-challenge {
  background-color: #F4F4F4;
  width: 499px;
  max-width: 100%;
  height: 780px;
  box-shadow: rgba(0, 0, 0, 0.095) 0 5px 20px;
  border-radius: 1em;
  border: 0.1em solid #CBCBCB;
  position: relative;
}
#differences-section .content-diff .diff-challenge .challenge-header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0;
  background-color: #FFFFFF;
  width: 100%;
  height: 100px;
  border-bottom: 0.1em solid #EAECF0;
  border-radius: 1em 1em 0 0;
}
#differences-section .content-diff .diff-challenge .challenge-header h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0.5em;
  width: 100%;
  font-size: 1.4em;
  font-weight: 400;
  color: #000000;
}
#differences-section .content-diff .diff-challenge .challenge-header h2 i {
  color: #000000;
}
#differences-section .content-diff .diff-challenge .challenge-main {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: column;
  gap: 1em;
  width: 100%;
  height: 90%;
  border-radius: 0 0 1em 1em;
  padding: 1.5em;
}
#differences-section .content-diff .diff-challenge .challenge-main .main-item:nth-child(1),
#differences-section .content-diff .diff-challenge .challenge-main .main-item:nth-child(2),
#differences-section .content-diff .diff-challenge .challenge-main .main-item:nth-child(3),
#differences-section .content-diff .diff-challenge .challenge-main .main-item:nth-child(4),
#differences-section .content-diff .diff-challenge .challenge-main .main-item:nth-child(5),
#differences-section .content-diff .diff-challenge .challenge-main .main-item:nth-child(6),
#differences-section .content-diff .diff-challenge .challenge-main .main-item:nth-child(7),
#differences-section .content-diff .diff-challenge .challenge-main .main-item:nth-child(8) {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: row;
  gap: 1em;
  background-color: #FFFFFF;
  width: 100%;
  height: 4em;
  border-radius: 0.7em;
  padding: 1em;
}
#differences-section .content-diff .diff-challenge .challenge-main .main-item:nth-child(1) i,
#differences-section .content-diff .diff-challenge .challenge-main .main-item:nth-child(2) i,
#differences-section .content-diff .diff-challenge .challenge-main .main-item:nth-child(3) i,
#differences-section .content-diff .diff-challenge .challenge-main .main-item:nth-child(4) i,
#differences-section .content-diff .diff-challenge .challenge-main .main-item:nth-child(5) i,
#differences-section .content-diff .diff-challenge .challenge-main .main-item:nth-child(6) i,
#differences-section .content-diff .diff-challenge .challenge-main .main-item:nth-child(7) i,
#differences-section .content-diff .diff-challenge .challenge-main .main-item:nth-child(8) i {
  color: #000000;
  font-size: 1.7em;
}
#differences-section .content-diff .diff-challenge .challenge-main .main-item:nth-child(1) p,
#differences-section .content-diff .diff-challenge .challenge-main .main-item:nth-child(2) p,
#differences-section .content-diff .diff-challenge .challenge-main .main-item:nth-child(3) p,
#differences-section .content-diff .diff-challenge .challenge-main .main-item:nth-child(4) p,
#differences-section .content-diff .diff-challenge .challenge-main .main-item:nth-child(5) p,
#differences-section .content-diff .diff-challenge .challenge-main .main-item:nth-child(6) p,
#differences-section .content-diff .diff-challenge .challenge-main .main-item:nth-child(7) p,
#differences-section .content-diff .diff-challenge .challenge-main .main-item:nth-child(8) p {
  font-size: 1em;
  color: #000000;
  font-weight: 400;
}
#differences-section .content-diff .diff-challenge .challlenge-line {
  position: absolute;
  bottom: -3em;
  width: 100%;
  height: 0.1em;
  background-color: #F4F4F4;
}
#differences-section .content-diff .diff-challenge .challenge-point {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: row;
  gap: 1em;
  position: absolute;
  bottom: -13em;
  background-color: #FFFFFF;
  width: 100%;
  height: 7.7em;
  box-shadow: rgba(0, 0, 0, 0.095) 0 5px 20px;
  border-radius: 1em;
  border: 0.1em solid #CBCBCB;
  padding: 2em;
}
#differences-section .content-diff .diff-challenge .challenge-point p {
  font-size: 1em;
  color: #000000;
  font-weight: 400;
}
#differences-section .content-diff .diff-challenge .challenge-point i {
  position: absolute;
  right: 0.5em;
  top: 0.5em;
  color: #D98200;
  font-size: 1.7em;
}
#differences-section .content-diff .diff-challenge .challenge-point .line:nth-child(3) {
  position: absolute;
  top: -0.15em;
  left: 2em;
  width: 5%;
  height: 0.18em;
  background-color: #D98200;
}
#differences-section .content-diff .diff-challenge .challenge-point .line:nth-child(4) {
  position: absolute;
  top: -0.15em;
  left: 5em;
  width: 15%;
  height: 0.18em;
  background-color: #D98200;
}
#differences-section .content-diff .diff-solution {
  background-color: #F4F4F4;
  width: 499px;
  max-width: 100%;
  height: 985px;
  box-shadow: rgba(0, 0, 0, 0.095) 0 5px 20px;
  border-radius: 1em;
  border: 0.1em solid #CBCBCB;
  position: relative;
}
#differences-section .content-diff .diff-solution .solution-header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0;
  background-color: #000000;
  width: 100%;
  height: 100px;
  border-bottom: 0.1em solid #EAECF0;
  border-radius: 1em 1em 0 0;
}
#differences-section .content-diff .diff-solution .solution-header h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0.5em;
  width: 100%;
  font-size: 1.4em;
  font-weight: 400;
  color: #FFFFFF;
}
#differences-section .content-diff .diff-solution .solution-header h2 i {
  color: #D98200;
}
#differences-section .content-diff .diff-solution .solution-header h2 span {
  color: #D98200;
}
#differences-section .content-diff .diff-solution .solution-main {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: column;
  gap: 1em;
  width: 100%;
  height: 90%;
  border-radius: 0 0 1em 1em;
  padding: 1.5em;
  position: relative;
}
#differences-section .content-diff .diff-solution .solution-main .main-item:nth-child(1),
#differences-section .content-diff .diff-solution .solution-main .main-item:nth-child(2),
#differences-section .content-diff .diff-solution .solution-main .main-item:nth-child(3),
#differences-section .content-diff .diff-solution .solution-main .main-item:nth-child(4),
#differences-section .content-diff .diff-solution .solution-main .main-item:nth-child(5),
#differences-section .content-diff .diff-solution .solution-main .main-item:nth-child(6),
#differences-section .content-diff .diff-solution .solution-main .main-item:nth-child(7),
#differences-section .content-diff .diff-solution .solution-main .main-item:nth-child(8),
#differences-section .content-diff .diff-solution .solution-main .main-item:nth-child(9) {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: row;
  gap: 1em;
  background-color: #FFFFFF;
  width: 100%;
  height: 4em;
  border-radius: 0.7em;
  padding: 1em;
}
#differences-section .content-diff .diff-solution .solution-main .main-item:nth-child(1) i,
#differences-section .content-diff .diff-solution .solution-main .main-item:nth-child(2) i,
#differences-section .content-diff .diff-solution .solution-main .main-item:nth-child(3) i,
#differences-section .content-diff .diff-solution .solution-main .main-item:nth-child(4) i,
#differences-section .content-diff .diff-solution .solution-main .main-item:nth-child(5) i,
#differences-section .content-diff .diff-solution .solution-main .main-item:nth-child(6) i,
#differences-section .content-diff .diff-solution .solution-main .main-item:nth-child(7) i,
#differences-section .content-diff .diff-solution .solution-main .main-item:nth-child(8) i,
#differences-section .content-diff .diff-solution .solution-main .main-item:nth-child(9) i {
  color: #D98200;
  font-size: 1.7em;
}
#differences-section .content-diff .diff-solution .solution-main .main-item:nth-child(1) p,
#differences-section .content-diff .diff-solution .solution-main .main-item:nth-child(2) p,
#differences-section .content-diff .diff-solution .solution-main .main-item:nth-child(3) p,
#differences-section .content-diff .diff-solution .solution-main .main-item:nth-child(4) p,
#differences-section .content-diff .diff-solution .solution-main .main-item:nth-child(5) p,
#differences-section .content-diff .diff-solution .solution-main .main-item:nth-child(6) p,
#differences-section .content-diff .diff-solution .solution-main .main-item:nth-child(7) p,
#differences-section .content-diff .diff-solution .solution-main .main-item:nth-child(8) p,
#differences-section .content-diff .diff-solution .solution-main .main-item:nth-child(9) p {
  font-size: 1em;
  color: #000000;
  font-weight: 400;
}
#differences-section .content-diff .diff-solution .solution-main a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0;
  position: absolute;
  bottom: 2em;
  background-color: #D98200;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  width: 90%;
  height: 4em;
  padding: 0 2.5em;
  border-radius: 0.6em;
  font-size: 0.9em;
  box-shadow: rgba(0, 0, 0, 0.095) 0 5px 20px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
#differences-section .content-diff .diff-solution .solution-main a i {
  position: absolute;
  right: 0.3em;
  top: 0;
  rotate: 45deg;
  font-size: 1.5em;
}
#differences-section .content-diff .diff-solution .solution-main a:hover {
  background-color: #fcbb21;
}

#methodology-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3em;
  width: 100%;
  height: 100vh;
  position: relative;
  padding: 6em 0 0 0;
  z-index: 1;
}
#methodology-section .meth-bg {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  width: 583px;
  height: 613px;
  z-index: 2;
}
#methodology-section .meth-bg #overlay {
  display: none;
}
#methodology-section .section-meth {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 0.5em;
  z-index: 3;
  width: 85%;
}
#methodology-section .section-meth h2 {
  font-size: 2.4em;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.2em;
}
#methodology-section .section-meth h2 span {
  color: #D98200;
}
#methodology-section .section-meth p {
  font-size: 1.2em;
  color: #FFFFFF;
  font-weight: 200;
  width: 100%;
}
#methodology-section .owl-carousel {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: row;
  gap: 0;
  width: 85%;
  z-index: 3;
}
#methodology-section .owl-carousel .slide {
  background-color: #0C0C0C;
  height: 250px;
  border: 0.1em solid rgba(255, 255, 255, 0.1294117647);
}
#methodology-section .owl-carousel .slide .numb {
  font-size: 1em;
}
#methodology-section .meth-button {
  width: 85%;
  z-index: 3;
}
#methodology-section .meth-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0;
  background-color: #D98200;
  color: #FFFFFF;
  position: relative;
  text-decoration: none;
  font-weight: 600;
  width: 20em;
  height: 3.8em;
  padding: 0 2.5em;
  border-radius: 0.6em;
  font-size: 0.9em;
  border: 0.13em solid #fcbb21;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 3;
}
#methodology-section .meth-button a i {
  position: absolute;
  right: 0.3em;
  top: 0;
  rotate: 45deg;
  font-size: 1.5em;
}
#methodology-section .meth-button a:hover {
  background-color: #fcbb21;
}
#methodology-section .glass {
  position: absolute;
  bottom: 0;
  width: 100%;
  max-width: 1604px;
  height: 35vh;
  overflow: hidden;
  z-index: 2;
  background: rgba(255, 111, 0, 0.123);
  backdrop-filter: blur(8px) saturate(180%);
  -webkit-backdrop-filter: blur(50px) saturate(180%);
  border-top: 0.1em solid #D98200;
}
#methodology-section .glass .grid-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 0;
  pointer-events: none;
}
#methodology-section .glass .grid-line {
  flex: 1;
  border-right: 1px solid rgba(255, 98, 0, 0.079);
  height: 100%;
  background: linear-gradient(to right, transparent 0%, rgba(255, 94, 0, 0.121) 0%, transparent 100%);
}
#methodology-section .glass .grid-line:last-child {
  border-right: none;
}

#offer-section {
  display: flex;
  align-items: center;
  justify-content: end;
  flex-direction: column;
  gap: 3em;
  width: 100%;
  height: 65vh;
  position: relative;
  background-image: url("../img/offer-bg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
#offer-section .offer-content {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: row;
  gap: 0;
  background-color: #0C0C0C;
  width: 85%;
  height: 15em;
  border: 0.1em solid rgba(255, 255, 255, 0.2117647059);
  border-radius: 1em;
  position: relative;
  overflow: hidden;
}
#offer-section .offer-content picture {
  position: relative;
  width: 300px;
  height: 100%;
}
#offer-section .offer-content picture img {
  width: 100%;
  height: 100%;
}
#offer-section .offer-content picture .glass {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0;
  position: absolute;
  top: 50%;
  right: -25%;
  transform: translateY(-50%);
  width: 100%;
  max-width: 150px;
  height: auto;
  overflow: hidden;
  border-radius: 0.5em;
  padding: 1em 2em;
  background: rgba(163, 163, 163, 0.11);
  backdrop-filter: blur(8px) saturate(180%);
  -webkit-backdrop-filter: blur(50px) saturate(180%);
}
#offer-section .offer-content picture .glass .grid-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 0;
  pointer-events: none;
}
#offer-section .offer-content picture .glass .grid-line {
  flex: 1;
  border-right: 1px solid rgba(255, 255, 255, 0.079);
  height: 100%;
  background: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.158) 0%, transparent 100%);
  z-index: 0;
}
#offer-section .offer-content picture .glass .grid-line:last-child {
  border-right: none;
}
#offer-section .offer-content picture .glass img {
  width: 3em;
}
#offer-section .offer-content .offer-text {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 1em;
  width: 70%;
  height: 100%;
  padding: 0 0 0 7em;
}
#offer-section .offer-content .offer-text h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0.2em;
  font-size: 1.9em;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.2em;
}
#offer-section .offer-content .offer-text p {
  font-size: 1.2em;
  color: #FFFFFF;
  font-weight: 200;
  padding: 0 2em 0 0;
}
#offer-section .offer-content .offer-text p b {
  color: #D98200;
}
#offer-section .offer-content .offer-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1em;
  position: absolute;
  top: 1em;
  right: 1em;
}
#offer-section .offer-content .offer-icons .icon:nth-child(1) {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1em;
  height: 3em;
  width: 3em;
  border: 0.1em solid rgba(255, 255, 255, 0.2117647059);
  border-radius: 0.5em;
}
#offer-section .offer-content .offer-icons .icon:nth-child(1) i {
  color: #D98200;
  font-size: 1.2em;
}
#offer-section .offer-content .offer-icons .icon:nth-child(2) {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1em;
  height: 3em;
  width: 3em;
  border: 0.1em solid rgba(255, 255, 255, 0.2117647059);
  border-radius: 0.5em;
}
#offer-section .offer-content .offer-icons .icon:nth-child(2) i {
  color: #D98200;
  font-size: 1.2em;
}
#offer-section a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0.5em;
  background-color: #21c45d;
  color: #FFFFFF;
  position: relative;
  text-decoration: none;
  font-weight: 500;
  width: auto;
  height: 3.8em;
  padding: 0 2em;
  border-radius: 0.6em;
  font-size: 0.9em;
  border: 0.13em solid #fcbb21;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
#offer-section a i {
  font-size: 1.5em;
}

#testimonials-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3em;
  width: 100%;
  height: 100vh;
  position: relative;
  background-image: url("../img/case-bg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 6em 0 0 0;
  z-index: 1;
  overflow: visible;
}
#testimonials-section .testimonial-content {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 0.5em;
  z-index: 3;
  width: 85%;
}
#testimonials-section .testimonial-content h2 {
  font-size: 2.4em;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.2em;
}
#testimonials-section .testimonial-content h2 span {
  color: #D98200;
}
#testimonials-section .testimonial-content p {
  font-size: 1.2em;
  color: #FFFFFF;
  font-weight: 200;
  width: 100%;
}
#testimonials-section .testimonial-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  width: 85%;
  height: auto;
  overflow: hidden;
  z-index: 3;
}
#testimonials-section .testimonial-carousel .owl-carousel {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: row;
  gap: 0;
  width: 100%;
  z-index: 3;
}
#testimonials-section .testimonial-carousel .owl-carousel .slide {
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
  gap: 1em;
  background-color: #F4F4F4;
  height: 300px;
  position: relative;
}
#testimonials-section .testimonial-carousel .owl-carousel .slide .owl-star {
  color: #D98200;
  font-size: 1.3em;
}
#testimonials-section .testimonial-carousel .owl-carousel .slide .owl-blockquote {
  font-size: 1em;
  color: #000000;
  font-weight: 400;
}
#testimonials-section .testimonial-carousel .owl-carousel .slide .owl-business {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.4588235294);
  font-weight: 500;
  text-transform: uppercase;
  opacity: 0.5;
}
#testimonials-section .testimonial-carousel .owl-carousel .slide .owl-icon {
  position: absolute;
  bottom: 1em;
  right: 1em;
}
#testimonials-section .testimonial-carousel .owl-carousel .slide .owl-icon i {
  color: #E8E8E8;
  font-size: 1.8em;
}

footer {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: row;
  gap: 0;
  height: 45vh;
  position: relative;
  z-index: 1;
}
footer .container {
  width: 85%;
}
footer .container .content {
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: row;
  gap: 0;
}
footer .container .content .footer-policy {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 0.3em;
  position: relative;
}
footer .container .content .footer-policy a {
  position: relative;
}
footer .container .content .footer-policy a .glass {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0;
  max-width: auto;
  height: auto;
  overflow: hidden;
  padding: 0.8em 3em;
  z-index: 1;
  background: rgba(255, 137, 47, 0.359);
  backdrop-filter: blur(8px) saturate(180%);
  -webkit-backdrop-filter: blur(50px) saturate(180%);
}
footer .container .content .footer-policy a .glass .grid-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 0;
  pointer-events: none;
}
footer .container .content .footer-policy a .glass .grid-line {
  flex: 1;
  border-right: 1px solid rgba(255, 255, 255, 0.119);
  height: 100%;
  background: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.253) 0%, transparent 100%);
  z-index: 0;
}
footer .container .content .footer-policy a .glass .grid-line:last-child {
  border-right: none;
}
footer .container .content .footer-policy a .glass img {
  width: 3em;
  z-index: 2;
}
footer .container .content .footer-policy p {
  font-size: 1.1em;
  color: #FFFFFF;
  font-weight: 200;
  width: 100%;
}
footer .container .content .footer-policy .policy {
  font-size: 1.1em;
  color: #FFFFFF;
  font-weight: 400;
  width: 100%;
}
footer .container .content .footer-policy .policy:hover {
  text-decoration: underline;
}
footer .container .content .footer-contact h4 {
  font-size: 1.2em;
  color: #FFFFFF;
  font-weight: 400;
}
footer .container .content .footer-contact ul {
  list-style: none;
}
footer .container .content .footer-contact ul li {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: row;
  gap: 0.7em;
  color: #FFFFFF;
  opacity: 0.7;
  font-size: 1.1em;
}
footer .container .content .footer-contact ul li a {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: row;
  gap: 0.7em;
}
footer .container .content .footer-contact ul li:hover {
  opacity: 1;
}
footer .container .content .footer-navigation h4 {
  font-size: 1.2em;
  color: #FFFFFF;
  font-weight: 400;
}
footer .container .content .footer-navigation ul {
  list-style: none;
}
footer .container .content .footer-navigation ul li {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: row;
  gap: 0;
  color: #FFFFFF;
  opacity: 0.7;
  font-size: 1.1em;
}
footer .container .content .footer-navigation ul li:hover {
  opacity: 1;
}
footer .container .content .footer-navigation ul li .lead {
  color: #fcbb21;
}
footer .container .content .copy {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 1.5em;
  padding: 1em 0 0 0;
  border-top: 0.1em solid rgba(255, 255, 255, 0.2117647059);
}
footer .container .content .copy p {
  font-size: 0.9em;
  color: #FFFFFF;
  opacity: 0.7;
  font-weight: 400;
}

::-moz-selection {
  background-color: #D98200;
  color: #FFFFFF;
}

::selection {
  background-color: #D98200;
  color: #FFFFFF;
}

@media (min-width: 770px) and (max-width: 1199px) {
  header {
    height: 12vh;
  }
  header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 0;
    width: 90%;
    border-radius: 15px;
    padding: 0 1.5em;
  }
  header nav picture .header-logo {
    width: 40px;
  }
  header nav .mobile-menu-icon {
    display: flex;
  }
  header nav .header-quote-button {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 0;
    display: none;
  }
  header nav ul {
    display: none;
  }
  header nav ul li a {
    font-size: 0.8em;
  }
  #hero-section {
    background-position: center;
    height: 100dvh;
    padding: 9em 0 3em 0;
  }
  #hero-section .section-container {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 0.8em;
    width: 90%;
  }
  #hero-section .section-container .section-logo {
    width: 100px;
    max-width: 100%;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  #hero-section .section-container h1 {
    font-size: 2.2em;
  }
  #hero-section .section-container h1 span .line {
    width: 10%;
  }
  #hero-section .section-container p {
    font-size: 1.1em;
    width: 100%;
  }
  #hero-section .section-buttons {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    width: 90%;
  }
  #hero-section .section-buttons .primary-buttons {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: row;
    gap: 0.5em;
    width: auto;
    flex-wrap: wrap;
  }
  #hero-section .section-buttons .primary-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 0.5em;
    width: auto;
    padding: 0 2.5em;
  }
  #hero-section .section-buttons .primary-buttons button {
    width: auto;
    padding: 0 2.5em;
  }
  #hero-section .section-buttons .secondary-buttons {
    display: none;
  }
  #case-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3em;
    height: auto;
    padding: 9em 0 3em 0;
  }
  #case-section .section-case {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 1.3em;
    width: 90%;
    height: auto;
  }
  #case-section .section-case h2 {
    font-size: 2.2em;
  }
  #case-section .section-case p {
    font-size: 1.1em;
  }
  #case-section .section-case a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 0;
    height: 3.8em;
    padding: 0 2.5em;
    font-size: 0.8em;
  }
  #case-section .case-carrosel {
    display: flex;
    align-items: center;
    justify-content: end;
    flex-direction: column;
    gap: 0;
    padding: 0;
    width: 480px;
    max-width: 100%;
  }
  #differences-section {
    background-position: bottom left;
    height: auto;
  }
  #differences-section .dif-glass {
    -webkit-backdrop-filter: blur(70px) saturate(180%);
            backdrop-filter: blur(70px) saturate(180%);
  }
  #differences-section .section-diff {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 0.2em;
    width: 90%;
  }
  #differences-section .section-diff h2 {
    font-size: 2.2em;
  }
  #differences-section .content-diff {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: row;
    gap: 2em;
    width: 90%;
  }
  #differences-section .content-diff .diff-challenge {
    width: 450px;
    max-width: 100%;
  }
  #differences-section .content-diff .diff-challenge .challlenge-line {
    display: none;
  }
  #differences-section .content-diff .diff-challenge .challenge-point {
    display: none;
  }
  #differences-section .content-diff .diff-solution {
    width: 450px;
    max-width: 100%;
    height: 1330px;
  }
  #differences-section .content-diff .diff-solution .solution-main .main-item:nth-child(1),
  #differences-section .content-diff .diff-solution .solution-main .main-item:nth-child(2),
  #differences-section .content-diff .diff-solution .solution-main .main-item:nth-child(3),
  #differences-section .content-diff .diff-solution .solution-main .main-item:nth-child(4),
  #differences-section .content-diff .diff-solution .solution-main .main-item:nth-child(5),
  #differences-section .content-diff .diff-solution .solution-main .main-item:nth-child(6),
  #differences-section .content-diff .diff-solution .solution-main .main-item:nth-child(7),
  #differences-section .content-diff .diff-solution .solution-main .main-item:nth-child(8),
  #differences-section .content-diff .diff-solution .solution-main .main-item:nth-child(9) {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: row;
    gap: 1em;
    background-color: #FFFFFF;
    width: 100%;
    height: 6.6em;
    border-radius: 0.7em;
    padding: 1em;
  }
  #differences-section .content-diff .diff-solution .solution-main a {
    height: 5em;
    bottom: 0;
  }
  #methodology-section {
    height: auto;
    padding: 9em 0 3em 0;
  }
  #methodology-section .meth-bg #overlay {
    display: flex;
  }
  #methodology-section .section-meth {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 0.5em;
    z-index: 3;
    width: 85%;
  }
  #methodology-section .section-meth h2 {
    font-size: 2.2em;
  }
  #methodology-section .section-meth p {
    font-size: 1.1em;
  }
  #methodology-section .owl-carousel {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: row;
    gap: 0;
    width: 85%;
    z-index: 3;
  }
  #methodology-section .owl-carousel .slide {
    height: 280px;
  }
  #methodology-section .owl-carousel .slide h3 {
    font-size: 1.2em;
  }
  #offer-section {
    padding: 5em 0 5em 0;
    height: auto;
  }
  #offer-section .offer-content {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    gap: 0;
    height: 100%;
    min-height: 630px;
    width: 430px;
    max-width: 100%;
    border-radius: 1.2em;
    padding: 0;
  }
  #offer-section .offer-content picture {
    width: 100%;
    height: auto;
  }
  #offer-section .offer-content picture img {
    width: 100%;
  }
  #offer-section .offer-content picture .glass {
    bottom: 50%;
    left: 25%;
    transform: translateY(-50%);
    width: 100%;
    max-width: 200px;
    height: 4.4em;
  }
  #offer-section .offer-content .offer-text {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 1em;
    width: 90%;
    padding: 2em 2em 0 2em;
  }
  #offer-section .offer-content .offer-text h3 {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 0.2em;
  }
  #offer-section .offer-content .offer-text p {
    padding: 0;
  }
  #offer-section .offer-content .offer-text p b {
    color: #D98200;
  }
  #offer-section .offer-content .offer-icons {
    display: none;
  }
}
@media (min-width: 439px) and (max-width: 769px) {
  header {
    height: 12vh;
  }
  header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 0;
    width: 90%;
    border-radius: 15px;
    padding: 0 1.5em;
  }
  header nav picture .header-logo {
    width: 40px;
  }
  header nav .content {
    display: flex;
  }
  header nav .header-quote-button {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 0;
    display: none;
  }
  header nav .desktop-menu {
    display: none;
  }
  #hero-section {
    background-position: center;
    height: 100dvh;
    padding: 9em 0 3em 0;
  }
  #hero-section .section-container {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 0.8em;
    width: 90%;
  }
  #hero-section .section-container .section-logo {
    width: 100px;
    max-width: 100%;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  #hero-section .section-container h1 {
    font-size: 2.2em;
  }
  #hero-section .section-container h1 span .line {
    width: 10%;
  }
  #hero-section .section-container p {
    font-size: 1.1em;
    width: 100%;
  }
  #hero-section .section-buttons {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    width: 90%;
  }
  #hero-section .section-buttons .primary-buttons {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: row;
    gap: 0.5em;
    width: auto;
    flex-wrap: wrap;
  }
  #hero-section .section-buttons .primary-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 0.5em;
    width: auto;
    padding: 0 2.5em;
  }
  #hero-section .section-buttons .primary-buttons button {
    width: auto;
    padding: 0 2.5em;
  }
  #hero-section .section-buttons .secondary-buttons {
    display: none;
  }
  #case-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3em;
    height: auto;
    padding: 9em 0 3em 0;
  }
  #case-section .section-case {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 1.3em;
    width: 90%;
    height: auto;
  }
  #case-section .section-case h2 {
    font-size: 2.2em;
  }
  #case-section .section-case p {
    font-size: 1.1em;
  }
  #case-section .section-case a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 0;
    height: 3.8em;
    padding: 0 2.5em;
    font-size: 0.8em;
  }
  #case-section .case-carrosel {
    display: flex;
    align-items: center;
    justify-content: end;
    flex-direction: column;
    gap: 0;
    padding: 0;
    width: 450px;
    max-width: 100%;
  }
  #service-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3em;
    height: auto;
    padding: 9em 0 4em 0;
  }
  #service-section .service-content {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: row;
    gap: 0;
    width: 90%;
    height: auto;
  }
  #service-section .service-content h2 {
    font-size: 2.2em;
  }
  #service-section .service-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5em;
    width: 90%;
  }
  #service-section .service-container .service-header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5em;
    width: 100%;
  }
  #service-section .service-container .service-header a {
    width: 450px;
    max-width: 100%;
  }
  #service-section .service-container .service-main {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5em;
    width: 100%;
  }
  #service-section .service-container .service-main a {
    width: 450px;
    max-width: 100%;
  }
  #differences-section {
    background-position: bottom left;
    height: auto;
  }
  #differences-section .dif-glass {
    -webkit-backdrop-filter: blur(70px) saturate(180%);
            backdrop-filter: blur(70px) saturate(180%);
  }
  #differences-section .section-diff {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 0.2em;
    width: 90%;
  }
  #differences-section .section-diff h2 {
    font-size: 2.2em;
  }
  #differences-section .content-diff {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2em;
    width: 90%;
  }
  #differences-section .content-diff .diff-challenge {
    width: 450px;
    max-width: 100%;
  }
  #differences-section .content-diff .diff-challenge .challlenge-line {
    display: none;
  }
  #differences-section .content-diff .diff-challenge .challenge-point {
    display: none;
  }
  #differences-section .content-diff .diff-solution {
    width: 450px;
    max-width: 100%;
    height: 1330px;
  }
  #differences-section .content-diff .diff-solution .solution-main .main-item:nth-child(1),
  #differences-section .content-diff .diff-solution .solution-main .main-item:nth-child(2),
  #differences-section .content-diff .diff-solution .solution-main .main-item:nth-child(3),
  #differences-section .content-diff .diff-solution .solution-main .main-item:nth-child(4),
  #differences-section .content-diff .diff-solution .solution-main .main-item:nth-child(5),
  #differences-section .content-diff .diff-solution .solution-main .main-item:nth-child(6),
  #differences-section .content-diff .diff-solution .solution-main .main-item:nth-child(7),
  #differences-section .content-diff .diff-solution .solution-main .main-item:nth-child(8),
  #differences-section .content-diff .diff-solution .solution-main .main-item:nth-child(9) {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: row;
    gap: 1em;
    background-color: #FFFFFF;
    width: 100%;
    height: 6.6em;
    border-radius: 0.7em;
    padding: 1em;
  }
  #differences-section .content-diff .diff-solution .solution-main a {
    height: 5em;
    bottom: 0;
  }
  #methodology-section {
    height: auto;
    padding: 9em 0 3em 0;
  }
  #methodology-section .meth-bg {
    width: 383px;
    height: auto;
  }
  #methodology-section .meth-bg #overlay {
    display: flex;
  }
  #methodology-section .section-meth {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 0.5em;
    z-index: 3;
    width: 90%;
  }
  #methodology-section .section-meth h2 {
    font-size: 2.2em;
  }
  #methodology-section .section-meth p {
    font-size: 1.1em;
  }
  #methodology-section .owl-carousel {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: row;
    gap: 0;
    width: 90%;
    z-index: 3;
  }
  #methodology-section .owl-carousel .slide {
    height: 330px;
  }
  #methodology-section .owl-carousel .slide h3 {
    font-size: 1.2em;
  }
  #methodology-section .owl-carousel .slide .numb {
    font-size: 0.7em;
  }
  #methodology-section .meth-button {
    width: 90%;
  }
  #offer-section {
    padding: 5em 0 5em 0;
    height: auto;
  }
  #offer-section .offer-content {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    gap: 0;
    height: 100%;
    min-height: 630px;
    width: 430px;
    max-width: 100%;
    border-radius: 1.2em;
    padding: 0;
  }
  #offer-section .offer-content picture {
    width: 100%;
    height: auto;
  }
  #offer-section .offer-content picture img {
    width: 100%;
  }
  #offer-section .offer-content picture .glass {
    bottom: 50%;
    left: 25%;
    transform: translateY(-50%);
    width: 100%;
    max-width: 200px;
    height: 4.4em;
  }
  #offer-section .offer-content .offer-text {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 1em;
    width: 90%;
    padding: 2em 2em 0 2em;
  }
  #offer-section .offer-content .offer-text h3 {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 0.2em;
  }
  #offer-section .offer-content .offer-text p {
    padding: 0;
  }
  #offer-section .offer-content .offer-icons {
    display: none;
  }
  #testimonials-section {
    padding: 5em 0 5em 0;
    height: auto;
  }
  #testimonials-section .testimonial-content {
    width: 90%;
  }
  #testimonials-section .testimonial-content h2 {
    font-size: 2.2em;
  }
  #testimonials-section .testimonial-content p {
    font-size: 1.1em;
  }
  #testimonials-section .testimonial-carousel {
    width: 90%;
  }
  #testimonials-section .testimonial-carousel .owl-carousel .slide {
    height: 350px;
  }
  footer {
    height: auto;
    padding: 2em 0 9em 0;
  }
  footer .container .content {
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-direction: column;
    gap: 5em;
  }
  footer .container .content .copy {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 0;
  }
  footer .container .content .copy p {
    width: 90%;
  }
}
@media (max-width: 440px) {
  header {
    height: 12vh;
  }
  header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 0;
    width: 90%;
    border-radius: 15px;
    padding: 0 1.5em;
  }
  header nav picture .header-logo {
    width: 40px;
  }
  header nav .content {
    display: flex;
  }
  header nav .header-quote-button {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 0;
    display: none;
  }
  header nav .desktop-menu {
    display: none;
  }
  #hero-section {
    background-position: center;
    height: 100dvh;
    padding: 9em 0 3em 0;
  }
  #hero-section .section-container {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 0.8em;
    width: 90%;
  }
  #hero-section .section-container .section-logo {
    width: 100px;
    max-width: 100%;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  #hero-section .section-container h1 {
    font-size: 2.2em;
  }
  #hero-section .section-container h1 span .line {
    width: 27%;
  }
  #hero-section .section-container p {
    font-size: 1.1em;
    width: 100%;
  }
  #hero-section .section-buttons {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    width: 90%;
  }
  #hero-section .section-buttons .primary-buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 0.5em;
    width: 100%;
  }
  #hero-section .section-buttons .primary-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 0.5em;
    width: 100%;
  }
  #hero-section .section-buttons .primary-buttons button {
    width: 100%;
  }
  #hero-section .section-buttons .secondary-buttons {
    display: none;
  }
  #case-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3em;
    height: auto;
    padding: 9em 0 3em 0;
  }
  #case-section .section-case {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 1.3em;
    width: 90%;
    height: auto;
  }
  #case-section .section-case h2 {
    font-size: 2.2em;
  }
  #case-section .section-case p {
    font-size: 1.1em;
  }
  #case-section .section-case a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 0;
    background-color: #D98200;
    position: relative;
    text-decoration: none;
    font-weight: 600;
    width: auto;
    height: 3.8em;
    padding: 0 2em;
    border-radius: 0.6em;
    font-size: 0.8em;
  }
  #case-section .case-carrosel {
    display: flex;
    align-items: center;
    justify-content: end;
    flex-direction: column;
    gap: 0;
    width: 90%;
    padding: 0;
  }
  #service-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3em;
    height: auto;
    padding: 9em 0 4em 0;
  }
  #service-section .service-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 0;
    width: 90%;
    height: auto;
  }
  #service-section .service-content h2 {
    font-size: 2.2em;
  }
  #service-section .service-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5em;
    width: 90%;
  }
  #service-section .service-container .service-header {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 5em;
    width: 100%;
  }
  #service-section .service-container .service-header a {
    width: 100%;
  }
  #service-section .service-container .service-main {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 5em;
    width: 100%;
  }
  #service-section .service-container .service-main a {
    width: 100%;
  }
  #differences-section {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    gap: 3em;
    background-position: bottom left;
    height: auto;
    padding: 5em 0 4em 0;
  }
  #differences-section .dif-glass {
    -webkit-backdrop-filter: blur(100px) saturate(180%);
            backdrop-filter: blur(100px) saturate(180%);
  }
  #differences-section .section-diff {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 0.2em;
    width: 90%;
  }
  #differences-section .section-diff h2 {
    font-size: 2.2em;
  }
  #differences-section .content-diff {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2em;
    width: 90%;
  }
  #differences-section .content-diff .diff-challenge {
    width: 100%;
    height: auto;
  }
  #differences-section .content-diff .diff-challenge .challenge-main .main-item:nth-child(1),
  #differences-section .content-diff .diff-challenge .challenge-main .main-item:nth-child(2),
  #differences-section .content-diff .diff-challenge .challenge-main .main-item:nth-child(3),
  #differences-section .content-diff .diff-challenge .challenge-main .main-item:nth-child(4),
  #differences-section .content-diff .diff-challenge .challenge-main .main-item:nth-child(5),
  #differences-section .content-diff .diff-challenge .challenge-main .main-item:nth-child(6),
  #differences-section .content-diff .diff-challenge .challenge-main .main-item:nth-child(7),
  #differences-section .content-diff .diff-challenge .challenge-main .main-item:nth-child(8) {
    height: 5em;
  }
  #differences-section .content-diff .diff-challenge .challlenge-line {
    display: none;
  }
  #differences-section .content-diff .diff-challenge .challenge-point {
    display: none;
  }
  #differences-section .content-diff .diff-solution {
    width: 100%;
    height: 1330px;
  }
  #differences-section .content-diff .diff-solution .solution-main .main-item:nth-child(1),
  #differences-section .content-diff .diff-solution .solution-main .main-item:nth-child(2),
  #differences-section .content-diff .diff-solution .solution-main .main-item:nth-child(3),
  #differences-section .content-diff .diff-solution .solution-main .main-item:nth-child(4),
  #differences-section .content-diff .diff-solution .solution-main .main-item:nth-child(5),
  #differences-section .content-diff .diff-solution .solution-main .main-item:nth-child(6),
  #differences-section .content-diff .diff-solution .solution-main .main-item:nth-child(7),
  #differences-section .content-diff .diff-solution .solution-main .main-item:nth-child(8),
  #differences-section .content-diff .diff-solution .solution-main .main-item:nth-child(9) {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: row;
    gap: 1em;
    background-color: #FFFFFF;
    width: 100%;
    height: 6.6em;
    border-radius: 0.7em;
    padding: 1em;
  }
  #differences-section .content-diff .diff-solution .solution-main a {
    height: 5em;
    bottom: 0;
  }
  #methodology-section {
    height: auto;
    padding: 9em 0 3em 0;
  }
  #methodology-section .meth-bg #overlay {
    display: flex;
  }
  #methodology-section .section-meth {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 0.5em;
    z-index: 3;
    width: 90%;
  }
  #methodology-section .section-meth h2 {
    font-size: 2.2em;
  }
  #methodology-section .section-meth p {
    font-size: 1.1em;
  }
  #methodology-section .owl-carousel {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: row;
    gap: 0;
    width: 90%;
    z-index: 3;
  }
  #methodology-section .owl-carousel .slide {
    height: 280px;
  }
  #methodology-section .owl-carousel .slide h3 {
    font-size: 1.2em;
  }
  #offer-section {
    padding: 5em 0 5em 0;
    height: auto;
  }
  #offer-section .offer-content {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    gap: 0;
    height: 100%;
    min-height: 600px;
    width: 90%;
    padding: 0;
  }
  #offer-section .offer-content picture {
    width: 100%;
  }
  #offer-section .offer-content picture .glass {
    bottom: 50%;
    left: 25%;
    transform: translateY(-50%);
    width: 100%;
    max-width: 200px;
    height: 4.4em;
  }
  #offer-section .offer-content .offer-text {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 1em;
    width: 90%;
    padding: 2em 2em 0 2em;
  }
  #offer-section .offer-content .offer-text h3 {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 0.2em;
  }
  #offer-section .offer-content .offer-text p {
    padding: 0;
  }
  #offer-section .offer-content .offer-icons {
    display: none;
  }
  #testimonials-section {
    padding: 5em 0 5em 0;
    height: auto;
  }
  #testimonials-section .testimonial-content h2 {
    font-size: 2.2em;
  }
  #testimonials-section .testimonial-content p {
    font-size: 1.1em;
  }
  #testimonials-section .testimonial-carousel {
    width: 90%;
  }
  footer {
    height: auto;
    padding: 2em 0 9em 0;
  }
  footer .container .content {
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-direction: column;
    gap: 5em;
  }
  footer .container .content .copy {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 0;
  }
  footer .container .content .copy p {
    width: 80%;
  }
}/*# sourceMappingURL=style.css.map */