@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
:root {
  --primary: #0F4E95;
  --secondary: #11A0EC;
  --tertiary: #95560F;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: "Inter", sans-serif;
}
html > * {
  background-color: #f0f0f0;
}
html body {
  overflow-x: hidden;
}

button {
  cursor: pointer !important;
}

#direct {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  background: #25D366;
  width: 4rem;
  height: 4rem;
  z-index: 25;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
#direct > img {
  width: 2rem;
  height: 2rem;
}
#direct:hover {
  filter: brightness(2);
  -webkit-filter: brightness(2);
}

body > nav {
  width: 100%;
  padding: 0 1rem;
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 10px 10px rgba(15, 78, 149, 0.2);
}
body > nav #logo {
  height: 2.5rem;
}
body > nav #nav-top {
  padding: 1rem 0;
}
body > nav #nav-top > a {
  display: flex;
}
body > nav #burger {
  background-color: transparent;
  border: none;
  display: none;
  flex-direction: column;
  gap: 3px;
}
body > nav #burger span {
  background-color: var(--primary);
  width: 1.25rem;
  height: 3px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
body > nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
body > nav ul li a {
  text-decoration: none;
  color: var(--primary);
  font-size: 0.8rem;
  transition: color 0.5s ease;
  -webkit-transition: color 0.5s ease;
  -moz-transition: color 0.5s ease;
  -ms-transition: color 0.5s ease;
  -o-transition: color 0.5s ease;
}
body > nav ul li a:hover {
  color: var(--tertiary);
}
body > nav ul li a.active {
  font-weight: 600;
}

header {
  padding: 5rem 2rem 0;
  position: relative;
  background-image: url("./assets/BG IMG.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: calc(100vh - 4rem);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  gap: min(2rem, 15%);
  align-items: center;
}
header * {
  position: relative;
}
header h1 {
  font-size: 7rem;
  color: var(--secondary);
  display: flex;
  align-items: center;
}
header h2 {
  color: #fff;
  max-width: 47.5vw;
  font-size: 1.25rem;
}
header button {
  flex-basis: 100%;
  margin: 0 3rem;
  background-color: var(--primary);
  border: none;
  display: flex;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
header button a {
  padding: 1rem 3rem;
  width: 100%;
  height: 100%;
  font-size: 1rem;
  text-decoration: none;
  color: #fff;
}
header button:hover {
  background-color: var(--secondary);
}
header button:focus {
  background-color: var(--tertiary);
}
header #word-frame {
  display: flex;
  margin-left: 0.5rem;
  height: 7rem;
  align-items: center;
  overflow: hidden;
}
header #word-container {
  display: flex;
  flex-direction: column;
}
header #word-container * {
  padding: 0.8rem 0;
}
header::before {
  content: "";
  background-color: #000000;
  opacity: 0.75;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

footer {
  color: #fff;
  max-width: 100%;
  background-color: var(--primary);
  display: flex;
  flex-direction: column;
}
footer > #company {
  padding: 2rem 1rem;
  flex-grow: 1;
}
footer > #company > h3 {
  font-size: 1.25rem;
}
footer > #company address {
  margin: 1rem 0;
  font-size: 0.75rem;
  font-style: normal;
}
footer > #company > a {
  text-decoration: none;
  color: #fff;
  font-size: 0.75rem;
}
footer > #company > a:hover, footer > #company > a:focus {
  text-decoration: underline;
}
footer > #company #link {
  display: flex;
  flex-direction: row;
  gap: 6rem;
  padding-top: 2.25rem;
}
footer > #company #link nav ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
}
footer > #company #link nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 400;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
footer > #company #link nav ul li a:hover {
  color: var(--secondary);
}
footer > #company #link nav ul li a:focus {
  color: var(--tertiary);
}
footer > #company #link #social p {
  font-weight: 600;
  margin-bottom: 1.25rem;
}
footer > #company #link #social ul {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  list-style-type: none;
}
footer > #company #link #social ul li a {
  position: relative;
  display: flex;
}
footer > #company #link #social ul li a::before {
  position: absolute;
  content: "";
  background-color: transparent;
  width: 67.5%;
  height: 67.5%;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  transition: all 0.5 ease;
  -webkit-transition: all 0.5 ease;
  -moz-transition: all 0.5 ease;
  -ms-transition: all 0.5 ease;
  -o-transition: all 0.5 ease;
}
footer > #company #link #social ul li a:hover::before, footer > #company #link #social ul li a:focus::before {
  background-color: var(--secondary);
}
footer > #company #link #social ul li a img {
  z-index: 2;
}
footer #copyright {
  height: 3rem;
  background-color: #7DCCF6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(1rem + 5vw);
}
footer #copyright img {
  height: 2rem;
}
footer #copyright p {
  color: #000;
  font-weight: 300;
}

@keyframes slide {
  0%, 17.5% {
    left: 0;
  }
  20%, 37.5% {
    left: -100vw;
  }
  40%, 57.5% {
    left: -200vw;
  }
  60%, 77.5% {
    left: -300vw;
  }
  80%, 97.5% {
    left: -400vw;
  }
  100% {
    left: 0;
  }
}
main#home section:nth-child(1) {
  box-shadow: 0 10px 10px rgba(15, 78, 149, 0.2);
}
main#home section:nth-child(1) #slide {
  width: 100%;
  position: relative;
  overflow: hidden;
}
main#home section:nth-child(1) #slide a {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  gap: 0.625rem;
}
main#home section:nth-child(1) #slide #slide-container {
  width: 500vw;
  display: flex;
  position: relative;
  animation: slide 15s ease-in infinite;
  -webkit-animation: slide 15s ease-in infinite;
}
main#home section:nth-child(1) #slide #slide-container .slide-card {
  position: relative;
  width: 100vw;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}
main#home section:nth-child(1) #slide #slide-container .slide-card * {
  position: relative;
}
main#home section:nth-child(1) #slide #slide-container .slide-card::before {
  content: "";
  background-color: #000000;
  opacity: 0.75;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
main#home section:nth-child(1) #slide #slide-container .slide-card::after {
  content: "";
  background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0.4) 80%, rgb(255, 255, 255));
  opacity: 0.75;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
main#home section:nth-child(1) #slide #slide-container .slide-card h3 {
  max-width: 75%;
  color: #fff;
  font-weight: 500;
}
main#home section:nth-child(1) #slide #slide-container .slide-card h3 strong {
  color: var(--secondary);
}
main#home section:nth-child(1) #slide #slide-container .slide-card:nth-child(1) {
  background: url("/assets/BG1.png") no-repeat center 25%;
  background-size: cover;
}
main#home section:nth-child(1) #slide #slide-container .slide-card:nth-child(2) {
  background: url("/assets/BG2.png") no-repeat center 25%;
  background-size: cover;
}
main#home section:nth-child(1) #slide #slide-container .slide-card:nth-child(3) {
  background: url("/assets/BG3.png") no-repeat center 25%;
  background-size: cover;
}
main#home section:nth-child(1) #slide #slide-container .slide-card:nth-child(4) {
  background: url("/assets/BG4.png") no-repeat center 25%;
  background-size: cover;
}
main#home section:nth-child(1) #slide #slide-container .slide-card:nth-child(5) {
  background: url("/assets/BG5.png") no-repeat center 25%;
  background-size: cover;
}
main#home section:nth-child(2) {
  padding: 2rem;
  position: relative;
  height: calc(99vh + 11vw);
  width: 100%;
}
main#home section:nth-child(2) h2 {
  position: relative;
  font-size: 3rem;
  text-align: center;
  color: var(--primary);
  z-index: 10;
}
main#home section:nth-child(2) #process {
  position: absolute;
  top: 0;
  left: 0;
  padding-left: 2rem;
  display: flex;
  gap: 1rem;
  width: 100%;
}
main#home section:nth-child(2) #process img {
  height: calc(99vh + 11vw);
}
main#home section:nth-child(2) #process #step {
  flex-grow: 1;
  position: relative;
}
main#home section:nth-child(2) #process #step .step {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: absolute;
  width: 100%;
}
main#home section:nth-child(2) #process #step .step h4 {
  font-weight: 600;
  color: var(--secondary);
}
main#home section:nth-child(2) #process #step .step p {
  font-size: 0.8rem;
  width: 85%;
  font-weight: 300;
}
main#home section:nth-child(2) #process #step .step:nth-child(1) {
  top: calc(19.6vh + 1.9vw);
}
main#home section:nth-child(2) #process #step .step:nth-child(2) {
  top: calc(45.6vh + 5vw);
}
main#home section:nth-child(2) #process #step .step:nth-child(3) {
  top: calc(71.75vh + 7.75vw);
}
main#home section:nth-child(3) {
  max-width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 2rem;
  background-color: rgba(17, 160, 236, 0.1450980392);
}
main#home section:nth-child(3) h2 {
  align-self: start;
}
main#home section:nth-child(3) #pros {
  max-width: 100%;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 2rem;
  gap: 3rem;
}
main#home section:nth-child(3) #pros > div {
  width: 40%;
  display: flex;
  gap: 1rem;
  align-items: center;
}
main#home section:nth-child(3) #pros > div img {
  width: 3rem;
  height: 3rem;
}
main#home section:nth-child(3) #pros > div div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
main#home section:nth-child(3) #pros > div div h5 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary);
}
main#home section:nth-child(3) #pros > div div p {
  font-size: 0.75rem;
  font-weight: 300;
}
main#home section:nth-child(3) > p {
  max-width: 75%;
  font-size: 1.25rem;
  text-align: center;
  margin: 2rem 0 1rem;
}
main#home section:nth-child(3) button {
  margin: 1rem 0 0;
  align-self: center;
  width: fit-content;
  border: none;
  display: flex;
  background: var(--primary);
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
main#home section:nth-child(3) button a {
  padding: 1.5rem 3rem;
  width: 100%;
  height: 100%;
  font-size: 1rem;
  text-decoration: none;
  color: #fff;
}
main#home section:nth-child(3) button:hover {
  background-color: var(--secondary);
}
main#home section:nth-child(3) button:focus {
  background-color: var(--tertiary);
}

main#services {
  padding: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
}
main#services section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
main#services section h1 {
  max-width: 90%;
  font-size: 2.5rem;
  margin: 1rem 0 3rem;
  color: var(--primary);
  text-align: center;
}
main#services section .step {
  max-width: 100%;
  display: none;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
main#services section .step#step-0-0 .service-card {
  width: calc(33% - 2rem);
}
main#services section .step .service-card {
  display: flex;
  flex-direction: column;
  font-family: inherit;
  font-size: 1rem;
  text-align: left;
  background-color: #f5f7f9;
  border: 1px solid #dddddd;
  border-radius: 1rem;
  width: calc(25% - 2rem);
  box-shadow: 0 4px 6px rgba(15, 78, 149, 0.0980392157);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
}
main#services section .step .service-card:hover, main#services section .step .service-card:focus {
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
}
main#services section .step .service-card:hover img, main#services section .step .service-card:focus img {
  object-fit: cover;
  filter: saturate(2);
  -webkit-filter: saturate(2);
}
main#services section .step .service-card img {
  object-fit: cover;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 1rem 1rem 0 0;
  -webkit-border-radius: 1rem 1rem 0 0;
  -moz-border-radius: 1rem 1rem 0 0;
  -ms-border-radius: 1rem 1rem 0 0;
  -o-border-radius: 1rem 1rem 0 0;
}
main#services section .step .service-card .desc-card {
  padding: 1.5rem;
}
main#services section .step .service-card .desc-card #step-0-0 h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 1rem;
}
main#services section .step .service-card .desc-card h3 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 1rem;
}
main#services section .step .service-card .desc-card p {
  font-size: 0.75rem;
  color: #000;
  font-weight: 300;
}
main#services section .step .submit {
  flex-basis: 100%;
  background-color: #25D366;
  border: none;
  color: #fff;
  font-size: 1rem;
  padding: 1rem 3rem;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
main#services section .step .submit:hover, main#services section .step .submit:focus {
  background-color: var(--primary);
}
main#services section .step .back {
  min-width: 7rem;
  flex-basis: 100%;
  background-color: transparent;
  border: 0.25rem solid var(--primary);
  color: var(--primary);
  font-size: 1rem;
  padding: 0.5rem 1.5rem;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
main#services section .step .back:hover, main#services section .step .back:focus {
  color: #fff;
  border: 0.25rem solid var(--tertiary);
  background-color: var(--tertiary);
}
main#services section .step.active {
  display: flex;
}
main#services section .form-content {
  max-width: 100%;
  display: flex;
  gap: 1rem;
  flex-direction: column;
}
main#services section .form-content .form-row {
  max-width: 100%;
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
main#services section .form-content .form-row .label-div {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
main#services section .form-content .form-row .input-div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
main#services section .form-content .form-row .input-div .invalid {
  border: 2px solid red !important;
}
main#services section .form-content .form-row .input-div label {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
main#services section .form-content input[type=text] {
  background-color: transparent;
  font-size: 1rem;
  outline: none;
  padding: 0.25rem 0.5rem;
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--primary);
}
main#services section .form-content input[type=text]:focus {
  border-bottom: 1px solid var(--tertiary);
}
main#services section .form-content input[type=radio] {
  cursor: pointer;
}
main#services section .form-content input[type=radio]:checked {
  background-color: #000;
}

main#about {
  display: flex;
  flex-direction: column;
}
main#about section:nth-child(1) {
  overflow-x: hidden;
  max-width: 100%;
  min-height: calc(100vh - 4rem);
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}
main#about section:nth-child(1) div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
  gap: 2rem;
}
main#about section:nth-child(1) div h1 {
  font-size: 2.75rem;
}
main#about section:nth-child(1) div h1 span {
  color: var(--secondary);
}
main#about section:nth-child(1) div h1::first-line {
  font-size: 2rem;
}
main#about section:nth-child(1) div p {
  font-size: 1.25rem;
  max-width: 75%;
}
main#about section:nth-child(1) img {
  filter: brightness(50%);
  width: 45%;
  /* flex-grow: 1; */
  aspect-ratio: 1/1;
  object-fit: cover;
  -webkit-filter: brightness(50%);
}
main#about section:nth-child(2) {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
main#about section:nth-child(2) #visi {
  width: 50%;
  padding: 3rem;
  background-color: var(--primary);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
main#about section:nth-child(2) #visi h2 {
  font-size: 5rem;
}
main#about section:nth-child(2) #visi p {
  max-width: 80%;
  font-size: 2rem;
}
main#about section:nth-child(2) #misi {
  width: 50%;
  padding: 3rem;
  background-color: var(--secondary);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
main#about section:nth-child(2) #misi h2 {
  font-size: 5rem;
}
main#about section:nth-child(2) #misi li {
  font-size: 1rem;
}
main#about section:nth-child(2) #misi ol {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  list-style-position: inside;
}
main#about section:nth-child(3) {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 3rem;
  gap: 2rem;
}
main#about section:nth-child(3) h2 {
  font-size: 3.5rem;
  text-align: center;
}
main#about section:nth-child(3) #values {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
main#about section:nth-child(3) #values .value {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  width: 50%;
  padding: 3rem;
}
main#about section:nth-child(3) #values .value img {
  width: 6rem;
  height: 6rem;
}
main#about section:nth-child(3) #values .value div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
main#about section:nth-child(3) #values .value div h3 {
  color: var(--secondary);
}

main#contact {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
main#contact > div {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 3rem;
}
main#contact > div h1 {
  font-size: 5rem;
  color: var(--primary);
  display: flex;
  align-items: center;
}
main#contact > div #word-frame {
  display: flex;
  margin-left: 0.5rem;
  height: 7rem;
  align-items: center;
  overflow: hidden;
}
main#contact > div #word-container {
  display: flex;
  flex-direction: column;
}
main#contact > div #word-container * {
  padding: 0.8rem 0;
}
main#contact > div address {
  font-style: normal;
  font-size: 1rem;
}
main#contact > div ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
}
main#contact > div ul li a {
  color: var(--secondary);
  text-decoration: none;
  display: flex;
  gap: 1rem;
  align-items: center;
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
}
main#contact > div ul li a h3 {
  position: relative;
  min-width: 8rem;
}
main#contact > div ul li a h3::after {
  content: ":";
  position: absolute;
  top: 0;
  left: 7rem;
}
main#contact > div ul li a:hover {
  color: var(--primary);
}
main#contact iframe {
  flex-grow: 1;
  justify-self: end;
  border: 0;
  width: 40%;
  aspect-ratio: 1/1;
}

@media only screen and (max-width: 385px) {
  :root {
    font-size: 12px;
  }
  body > nav {
    flex-direction: column;
    padding: 0;
  }
  body > nav #nav-top {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
  }
  body > nav #nav-top.active {
    border-bottom: 1px solid var(--primary);
  }
  body > nav #burger {
    display: flex;
  }
  body > nav #burger.active span:first-child {
    transform-origin: -5.5% 50%;
    rotate: 45deg;
  }
  body > nav #burger.active span:not(:first-child):not(:last-child) {
    background-color: var(--primary) 0;
  }
  body > nav #burger.active span:last-child {
    transform-origin: -5.5% 50%;
    rotate: -45deg;
  }
  body > nav ul {
    display: none;
    flex-direction: column;
    top: -5.25rem;
    left: 0;
    width: 100%;
    gap: 0;
    align-items: center;
  }
  body > nav ul li {
    width: 100%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    padding: 1rem;
  }
  body > nav ul li:not(:last-child):after {
    content: "";
    background: var(--primary);
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 50%;
    height: 1px;
  }
  body > nav ul.active {
    top: 5.25rem;
    display: flex;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  body > nav ul.active::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    z-index: -1;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  header {
    flex-direction: row;
    height: calc(100vh - 9rem);
    justify-content: center;
    padding: 5rem 0;
    align-items: center;
  }
  header h1 {
    margin-top: 0rem;
    font-size: 4rem;
    align-self: center;
  }
  header h2 {
    margin-top: 0;
    max-width: 80vw;
    width: 75%;
  }
  header button {
    align-self: center;
  }
  footer #company #link {
    gap: 6rem;
  }
  footer #social p {
    font-weight: 600;
    margin-bottom: 1.25rem;
  }
  footer #social ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 9rem;
  }
  main#home section:nth-child(2) h2 {
    font-size: 1.75rem;
  }
  main#home section:nth-child(3) {
    padding: 2rem 3rem;
  }
  main#home section:nth-child(3) h2 {
    text-align: center;
  }
  main#home section:nth-child(3) #pros {
    flex-wrap: nowrap;
    flex-direction: column;
    padding: 3rem 0 0;
  }
  main#home section:nth-child(3) #pros > div {
    min-width: 100%;
  }
  main#home section:nth-child(3) > p {
    max-width: 100%;
  }
  main#home section:nth-child(3) button {
    margin: 1rem 0 0;
  }
  main#services section h1 {
    align-self: flex-start;
    text-align: left;
    font-size: 2rem;
    max-width: 60%;
  }
  main#services section .step {
    align-items: center;
    flex-direction: column;
  }
  main#services section .step#step-0-0 .service-card {
    width: 100%;
  }
  main#services section .step .service-card {
    width: 75%;
  }
  main#services section .step .submit {
    justify-self: center;
    margin: 0;
  }
  main#services section .form-content {
    align-items: flex-start;
    padding-left: 0;
  }
  main#services section .form-content .form-row {
    margin: 0.25rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  main#services section .form-content .form-row .label-div {
    width: 100%;
    flex-direction: row;
  }
  main#services section .form-content .form-row .input-div {
    align-items: start;
    width: 100%;
    flex-direction: column;
  }
  main#services section .form-content .form-row .input-div input[type=text] {
    font-size: 1rem;
    outline: none;
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--primary);
  }
  main#services section .form-content .form-row .input-div input[type=text]:focus {
    border-bottom: 1px solid var(--tertiary);
  }
  main#about section:nth-child(1) {
    flex-direction: column;
  }
  main#about section:nth-child(1) div h1 {
    font-size: 2rem;
  }
  main#about section:nth-child(1) div p {
    font-size: 1.25rem;
    max-width: 95%;
  }
  main#about section:nth-child(1) img {
    width: 100%;
    aspect-ratio: 16/9;
  }
  main#about section:nth-child(2) {
    flex-direction: column;
  }
  main#about section:nth-child(2) #visi {
    width: 100%;
    gap: 2rem;
  }
  main#about section:nth-child(2) #visi h2 {
    font-size: 4rem;
  }
  main#about section:nth-child(2) #visi p {
    max-width: 100%;
    font-size: 1.5rem;
  }
  main#about section:nth-child(2) #misi {
    width: 100%;
  }
  main#about section:nth-child(2) #misi h2 {
    font-size: 4rem;
  }
  main#about section:nth-child(2) #misi li {
    font-size: 1rem;
  }
  main#about section:nth-child(3) h2 {
    font-size: 2.25rem;
    text-align: center;
  }
  main#about section:nth-child(3) #values {
    width: 100%;
    display: flex;
    flex-direction: column;
    /* flex-wrap: wrap; */
  }
  main#about section:nth-child(3) #values .value {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 1rem;
  }
  main#about section:nth-child(3) #values .value img {
    width: 4rem;
    height: 4rem;
  }
  main#contact {
    flex-direction: column;
  }
  main#contact > div {
    padding: 2.5rem;
  }
  main#contact > div h1 {
    font-size: 3rem;
  }
  main#contact iframe {
    width: 100%;
  }
}
@media only screen and (min-width: 386px) and (max-width: 480px) {
  :root {
    font-size: 16px;
  }
  body > nav {
    flex-direction: column;
    padding: 0;
  }
  body > nav #nav-top {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
  }
  body > nav #nav-top.active {
    border-bottom: 1px solid var(--primary);
  }
  body > nav #burger {
    display: flex;
  }
  body > nav #burger.active span:first-child {
    transform-origin: 7.5% 50%;
    rotate: 45deg;
  }
  body > nav #burger.active span:not(:first-child):not(:last-child) {
    background-color: var(--primary) 0;
  }
  body > nav #burger.active span:last-child {
    transform-origin: 7.5% 50%;
    rotate: -45deg;
  }
  body > nav ul {
    display: none;
    flex-direction: column;
    top: -5.25rem;
    left: 0;
    width: 100%;
    gap: 0;
    align-items: center;
  }
  body > nav ul li {
    width: 100%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    padding: 1rem;
  }
  body > nav ul li:not(:last-child):after {
    content: "";
    background: var(--primary);
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 50%;
    height: 1px;
  }
  body > nav ul.active {
    top: 5.25rem;
    display: flex;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  body > nav ul.active::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    z-index: -1;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  header {
    height: calc(100vh - 9rem);
    justify-content: space-around;
    padding: 1rem 0;
    align-items: center;
  }
  header h1 {
    margin-top: 0;
    font-size: 4rem;
  }
  header h2 {
    margin-top: 0;
    max-width: 80vw;
    width: 75%;
  }
  header button {
    flex-basis: auto;
  }
  footer #company #link {
    gap: 6rem;
  }
  footer #social p {
    font-weight: 600;
    margin-bottom: 1.25rem;
  }
  footer #social ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 9rem;
  }
  main#home section:nth-child(2) h2 {
    font-size: 1.75rem;
  }
  main#home section:nth-child(3) {
    padding: 2rem 3rem;
  }
  main#home section:nth-child(3) h2 {
    text-align: center;
  }
  main#home section:nth-child(3) #pros {
    flex-wrap: nowrap;
    flex-direction: column;
    padding: 3rem 0 0;
  }
  main#home section:nth-child(3) #pros > div {
    min-width: 100%;
  }
  main#home section:nth-child(3) > p {
    max-width: 100%;
  }
  main#home section:nth-child(3) button {
    margin: 1rem 0 0;
  }
  main#services section h1 {
    align-self: flex-start;
    text-align: left;
    font-size: 2rem;
    max-width: 60%;
  }
  main#services section .step {
    align-items: center;
    flex-direction: column;
  }
  main#services section .step#step-0-0 .service-card {
    width: 100%;
  }
  main#services section .step .service-card {
    width: 75%;
  }
  main#services section .step .submit {
    justify-self: center;
    margin: 0;
  }
  main#services section .form-content {
    align-items: flex-start;
    padding-left: 0;
  }
  main#services section .form-content .form-row {
    margin: 0.25rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  main#services section .form-content .form-row .label-div {
    width: 100%;
    flex-direction: row;
  }
  main#services section .form-content .form-row .input-div {
    align-items: start;
    width: 100%;
    flex-direction: column;
  }
  main#services section .form-content .form-row .input-div input[type=text] {
    font-size: 1rem;
    outline: none;
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--primary);
  }
  main#services section .form-content .form-row .input-div input[type=text]:focus {
    border-bottom: 1px solid var(--tertiary);
  }
  main#about section:nth-child(1) {
    flex-direction: column;
  }
  main#about section:nth-child(1) div h1 {
    font-size: 2rem;
  }
  main#about section:nth-child(1) div p {
    font-size: 1.25rem;
    max-width: 95%;
  }
  main#about section:nth-child(1) img {
    width: 100%;
    aspect-ratio: 16/9;
  }
  main#about section:nth-child(2) {
    flex-direction: column;
  }
  main#about section:nth-child(2) #visi {
    width: 100%;
    gap: 2rem;
  }
  main#about section:nth-child(2) #visi h2 {
    font-size: 4rem;
  }
  main#about section:nth-child(2) #visi p {
    max-width: 100%;
    font-size: 1.5rem;
  }
  main#about section:nth-child(2) #misi {
    width: 100%;
  }
  main#about section:nth-child(2) #misi h2 {
    font-size: 4rem;
  }
  main#about section:nth-child(2) #misi li {
    font-size: 1rem;
  }
  main#about section:nth-child(3) h2 {
    font-size: 2.25rem;
    text-align: center;
  }
  main#about section:nth-child(3) #values {
    width: 100%;
    display: flex;
    flex-direction: column;
    /* flex-wrap: wrap; */
  }
  main#about section:nth-child(3) #values .value {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 1rem;
  }
  main#about section:nth-child(3) #values .value img {
    width: 4rem;
    height: 4rem;
  }
  main#contact {
    flex-direction: column;
  }
  main#contact > div {
    padding: 2.5rem;
  }
  main#contact > div h1 {
    font-size: 3rem;
  }
  main#contact iframe {
    width: 100%;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  :root {
    font-size: 18px;
  }
  header {
    flex-direction: row;
  }
  header h1 {
    margin-top: 1rem;
    font-size: 5rem;
  }
  header h2 {
    margin-top: 0rem;
    text-align: center;
    min-width: 80%;
  }
  footer #company #link {
    gap: 5rem;
  }
  main#home section:nth-child(1) #slide #slide-container .slide-card {
    aspect-ratio: 9/8;
  }
  main#home section:nth-child(2) h2 {
    font-size: 2rem;
  }
  main#home section:nth-child(3) #pros {
    flex-wrap: nowrap;
    flex-direction: column;
  }
  main#home section:nth-child(3) #pros > div {
    width: 90%;
  }
  main#home section:nth-child(3) button {
    margin: 2rem 0 0;
  }
  main#services section h1 {
    font-size: 2rem;
    max-width: 60%;
  }
  main#services section .step {
    align-items: center;
    flex-direction: column;
  }
  main#services section .step#step-0-0 .service-card {
    width: 75%;
  }
  main#services section .step .service-card {
    width: 50%;
  }
  main#services section .step .submit {
    margin: 0;
  }
  main#services section .form-content {
    padding-left: 2rem;
  }
  main#services section .form-content .form-row {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
  }
  main#services section .form-content .form-row .label-div {
    width: 100%;
    display: flex;
    flex-direction: row;
  }
  main#services section .form-content .form-row .input-div {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
  }
  main#about section:nth-child(1) {
    flex-direction: column;
  }
  main#about section:nth-child(1) div h1 {
    font-size: 2rem;
  }
  main#about section:nth-child(1) div p {
    font-size: 1.25rem;
    max-width: 95%;
  }
  main#about section:nth-child(1) img {
    width: 100%;
    aspect-ratio: 16/9;
  }
  main#about section:nth-child(2) {
    flex-direction: column;
  }
  main#about section:nth-child(2) #visi {
    width: 100%;
    gap: 2rem;
  }
  main#about section:nth-child(2) #visi h2 {
    font-size: 4rem;
  }
  main#about section:nth-child(2) #visi p {
    max-width: 100%;
    font-size: 1.5rem;
  }
  main#about section:nth-child(2) #misi {
    width: 100%;
  }
  main#about section:nth-child(2) #misi h2 {
    font-size: 4rem;
  }
  main#about section:nth-child(2) #misi li {
    font-size: 1rem;
  }
  main#about section:nth-child(3) h2 {
    font-size: 2.25rem;
    text-align: center;
  }
  main#about section:nth-child(3) #values {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  main#about section:nth-child(3) #values .value {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 1rem;
  }
  main#about section:nth-child(3) #values .value img {
    width: 4rem;
    height: 4rem;
  }
  main#contact {
    flex-direction: column;
  }
  main#contact > div h1 {
    font-size: 3rem;
  }
  main#contact iframe {
    width: 100%;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1200px) {
  :root {
    font-size: 20px;
  }
  header {
    justify-content: space-evenly;
  }
  header h1 {
    margin-top: 0;
    font-size: 7rem;
  }
  header h2 {
    margin-top: 0;
    padding: 0 1rem;
  }
  header button {
    flex-basis: auto;
  }
  footer #company #link {
    gap: 8rem;
  }
  main#home section:nth-child(1) #slide #slide-container .slide-card {
    aspect-ratio: 10/7;
  }
  main#home section:nth-child(1) #slide #slide-container .slide-card h3 {
    font-size: 3rem;
  }
  main#home section:nth-child(2) h2 {
    font-size: 2rem;
  }
  main#home section:nth-child(2) #process #step .step h4 {
    font-size: 1.75rem;
  }
  main#home section:nth-child(2) #process #step .step p {
    font-size: 1rem;
  }
  main#home section:nth-child(3) h2 {
    margin: 1rem 1rem 2rem;
    font-size: 3rem;
  }
  main#home section:nth-child(3) #pros > div > div h5 {
    font-size: 1.5rem;
  }
  main#home section:nth-child(3) #pros > div > div p {
    font-size: 1rem;
  }
  main#services section h1 {
    max-width: 75%;
  }
  main#services section .step {
    flex-wrap: wrap;
  }
  main#services section .step .service-card {
    width: 30%;
  }
  main#services section .step .service-card .desc-card {
    padding: 1rem;
  }
  main#services section .form-content .form-row {
    flex-wrap: wrap;
  }
  main#about section:nth-child(1) div h1 {
    font-size: 2rem;
  }
  main#about section:nth-child(1) div p {
    font-size: 1.25rem;
    max-width: 95%;
  }
  main#about section:nth-child(1) img {
    aspect-ratio: unset;
  }
  main#about section:nth-child(2) #visi {
    width: 100%;
    gap: 2rem;
  }
  main#about section:nth-child(2) #visi h2 {
    font-size: 4rem;
  }
  main#about section:nth-child(2) #visi p {
    max-width: 80%;
    font-size: 1.75rem;
  }
  main#about section:nth-child(2) #misi {
    width: 100%;
  }
  main#about section:nth-child(2) #misi h2 {
    font-size: 4rem;
  }
  main#about section:nth-child(2) #misi li {
    font-size: 1rem;
  }
  main#about section:nth-child(3) h2 {
    font-size: 2.25rem;
    text-align: center;
  }
  main#about section:nth-child(3) #values {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  main#about section:nth-child(3) #values .value {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 1rem;
  }
  main#about section:nth-child(3) #values .value img {
    width: 4rem;
    height: 4rem;
  }
  main#contact {
    max-width: 100%;
    flex-wrap: wrap;
  }
  main#contact > div h1 {
    font-size: 4rem;
  }
}
@media only screen and (min-width: 1201px) {
  :root {
    font-size: 22px;
  }
  header {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  main#home section:nth-child(1) #slide #slide-container .slide-card {
    aspect-ratio: 33/16;
  }
  main#home section:nth-child(1) #slide #slide-container .slide-card h3 {
    font-size: 3.5rem;
  }
  main#home section:nth-child(2) #process #step .step h4 {
    font-size: 2rem;
  }
  main#home section:nth-child(2) #process #step .step p {
    font-size: 1.25rem;
  }
  main#home section:nth-child(3) h2 {
    margin: 1rem 1rem 2rem;
    font-size: 3rem;
  }
  main#home section:nth-child(3) #pros > div > div h5 {
    font-size: 1.5rem;
  }
  main#home section:nth-child(3) #pros > div > div p {
    font-size: 1rem;
  }
  footer #company #link {
    gap: 10rem;
  }
}

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