@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@300;400&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}
a {
  text-decoration: none;
}
body {
  background-color: black;
}
:root {
  --cd-blue: rgb(0, 118, 250);
  --cd-black: rgb(0, 0, 0);
  --cd-white: rgb(255, 255, 255);

  --cd-gray-1: rgb(25, 25, 25);
  --cd-gray-2: rgb(39, 39, 39);
  --cd-gray-3: rgb(43, 45, 46);
  --cd-gray-text: rgb(167, 167, 167);
}

h1 {
  font-size: clamp(2.25rem, 1.4rem + 1.5vw, 3.25rem);
  color: var(--cd-white);
}

h2 {
  font-size: clamp(1.75rem, 1rem + 1vw, 2.75rem);
}

.h3-fluid {
  font-size: calc(1rem + 1vw);
  line-height: calc(1.4rem + 1.2vw);
}

.p-fluid {
  font-size: clamp(1.25rem, 1.4rem + 1vw, 1.5rem);
}
.p-fluid2 {
  font-size: clamp(1rem, 1.15rem + 0.75vw, 1.25rem);
}

.error {
  position: absolute;
  top: -25px;
  color: red;
  font-size: 1.425rem;
}

.cent-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.cent-column {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#home-bg {
  display: none;
}

#whatsapp-logo {
  cursor: pointer;
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 5;
  transition: 500ms;
}
#whatsapp-logo:hover {
  transform: scale(1.1);
}

#whatsapp-logo img {
  width: 45px;
  filter: drop-shadow(2px 2px 1.5px black);
}

.link-box {
  display: flex;
  width: 100%;
  color: var(--cd-white);
  justify-content: center;
  align-items: center;
  transition: 500ms;
}
.link-box:hover {
  color: var(--cd-gray-2);
}
.link-box i {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  margin-right: 5px;
}
.link-box p {
  margin-bottom: 0;
}
/* ----- HEADER-END ----- */

/* ----- NAV ----- */
#nav-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  height: 11vh;
  z-index: 5;
  top: 0;
  background-color: var(--cd-black);
  font-size: 1.75rem;
}
#nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1050px;
}
.navbar-toggler {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--cd-blue);
  height: 30px;
  width: 35px;
  color: var(--cd-white);
  font-size: 1.5rem;
}

.nav-item {
  padding: 1.75rem 0rem;
}
.nav-item a {
  color: var(--cd-white);
  padding-left: 5px;
  transition: 500ms;
  cursor: pointer;
}
.nav-item a:hover {
  color: var(--cd-blue);
}
/* ----- NAV-END ----- */

/* ----- HOME ----- */
#home-section {
  overflow: hidden;
  background-color: var(--cd-gray-1);
  height: calc(100vh - 11vh);
}
#home-content {
  justify-content: start;
  position: relative;
  height: 100%;
  width: 1050px;
}

#home-content #home-text {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 2rem;
  padding: 0rem 2rem;
  flex-direction: column;
  width: 100%;
  font-size: 2rem;
  text-align: center;
  color: white;
}

#home-content #home-text p {
  color: var(--cd-gray-text);
}
#home-content #home-text button {
  background-color: var(--cd-blue);
  cursor: pointer;
  border: 0;
  margin: 2rem 0rem;
  height: 40%;
  width: 225px;
  height: 50px;
  border-radius: 5px;
  font-size: 2rem;
  color: rgb(239, 244, 255);
  transition: 500ms;
}
#home-content #home-text button:hover {
  transform: scale(1.01);
  background-color: rgb(3, 101, 212);
}
/* ----- HOME-END ----- */

#services-section {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 7rem 0rem;
  background-color: var(--cd-gray-2);
}

#arrow-back {
  position: absolute;
  top: 325px;
  left: 5%;
  z-index: 2;
}
#arrow-back i {
  color: rgb(177, 166, 166);
  font-size: 5rem;
}
#arrow-next {
  position: absolute;
  top: 325px;
  right: 5%;
  z-index: 2;
}
#arrow-next i {
  color: var(--cd-gray-text);
  font-size: 5rem;
}

#services-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1050px;
  color: var(--cd-white);
  flex-direction: column;
}
#services-header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}

#services-header p {
  font-size: 1.5rem;
  color: var(--cd-gray-text);
}
#services-boxes {
  display: grid;
  align-items: center;
  position: relative;
  justify-content: space-between;
  padding: 3rem 0rem;
  grid-template-columns: repeat(auto-fit, minmax(auto, 310px));
  width: 100%;
  transition: 500ms;
}
.service-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: var(--cd-gray-1);

  border-radius: 5px;
  width: 310px;
  height: 290px;
  transition: 500ms;
  border: 2.5px solid rgba(0, 0, 0, 0);
}
.service-box:hover {
  cursor: pointer;
  transform: scale(1.05);
  border: 2.5px solid var(--cd-blue);
}
.service-box-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 2rem;
  width: 100%;

  padding: 4rem 0rem 2rem 0rem;
  border-radius: 5px;
}

.service-box-content span {
  font-size: 2.25rem;
}

.service-box-content p {
  padding: 0.5rem;
  text-align: center;
  width: 90%;
  border-bottom: 0.1px solid rgb(65, 64, 64);
  color: var(--cd-gray-text);
}
.service-box > p {
  color: var(--cd-gray-text);
  margin-top: 1rem;
  font-size: 1rem;
}
.service-box-content i {
  font-size: 4rem;
  margin: 2rem;
}
.service-box-content h1 {
  margin-bottom: 2rem;
}
.service-box-content h3 {
  font-size: 3.25rem;
}
.service-box-content h5 {
  font-size: 1.5rem;
}
.service-box button {
  border: 0;
  color: white;
  font-size: 1.4rem;
  width: 150px;
  height: 40px;
  border-radius: 5px;
  background-color: var(--cd-blue);
  transition: 500ms;
}
.service-box button:hover {
  cursor: pointer;
  transform: scale(1.05);
  background-color: rgb(3, 101, 212);
}
div[main] {
  height: 400px;
}

#services-languages {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: var(--cd-gray-1);
  border-radius: 10px;
  padding: 3.5rem 3.5rem;
  margin: 5rem 0rem;
  flex-direction: column;
}
#services-languages > h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 5px;
  font-weight: 500;
}

#services-languages-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin: 2.5rem 0rem;
  gap: 3rem;
}
#services-languages-icons i {
  font-size: 5rem;
  filter: saturate(125%);
}

#service-explain {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 3rem 0rem;
  width: 100%;
}

#service-explain > h1 {
  width: 100%;
  text-align: center;
}
#service-explain > p {
  font-size: 1.5rem;
  color: rgb(180, 180, 180);
}

#service-explain-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: row;
  padding: 3rem 0rem;
  width: 100%;
  height: 300px;
}
.explain-step {
  display: flex;
  justify-content: space-evenly;
  text-align: center;
  align-items: center;
  height: 100%;
  padding: 1rem 2rem;
  width: calc(100% / 3);
  flex-direction: column;
}
.explain-step > i {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--cd-blue);
  font-size: 4.5rem;
  height: 30%;
}
.explain-step > span {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  height: 10%;
}
.explain-step > p {
  display: flex;
  text-align: center;
  align-items: flex-start;
  height: 50%;
  color: var(--cd-gray-text);
}
.explain-step:nth-of-type(odd) {
  background-color: var(--cd-gray-1);
}
.explain-step:nth-of-type(even) {
  background-color: var(--cd-gray-3);
}
.explain-step:first-of-type {
  border-radius: 10px 0px 0px 10px;
}
.explain-step:last-of-type {
  border-radius: 0px 10px 10px 0px;
}

/* ----- CONTACT ----- */
#contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  padding: 7rem 0rem;
  background-color: var(--cd-gray-1);
}
#contact-content > h1 {
  font-size: 4rem;
}
#contact-content > p {
  text-align: center;
  font-size: 1.75rem;
  color: var(--cd-gray-text);
}
#contact-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

  width: 1050px;
  height: 305px;
}

#contact-text-form {
  margin-top: 5rem;
  width: 100%;
  height: 100%;
}

#contact-text {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;

  height: 100%;
  width: 100%;
}
#contact-text #contact-header {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
  flex-direction: column;
  width: 100%;
}

#contact-text #contact-header p {
  color: var(--cd-gray-text);
}

#contact-text #contacts-boxes {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 1.5rem 0rem;
  color: var(--cd-white);
  width: 100%;
}
#contact-text #contacts-boxes .contact-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 2rem 0rem 0rem 0rem;
  width: 100%;
}
#contact-text #contacts-boxes .contact-box .contact-icon i {
  width: 35px;
  font-size: 4.5rem;
  margin-right: 2rem;
  color: var(--cd-blue);
}

#contact-text #contacts-boxes .contact-box .contact-info h1 {
  font-size: 1.75rem;
}
#contact-text #contacts-boxes .contact-box .contact-info a {
  font-size: 1.25rem;
  color: var(--cd-blue);
}

#contact-form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  border-radius: 15px;
}
#contact-form h1 {
  color: var(--cd-white);
  width: 500px;
  text-align: center;
  font-size: 2rem;
  padding: 1.5rem 0rem;
  border-radius: 10px;
}
#contact-form form {
  position: relative;
  width: 100%;
}
#contact-form input,
#contact-form textarea,
#contact-form select {
  font-size: 1.25rem;
  border: 0;
  width: 100%;
  display: block;
  color: black;
  padding: 0.75rem 1rem;
  border-radius: 5px;
  margin-bottom: 1.25rem;
  margin-top: 3px;
}
#contact-form textarea {
  max-height: 151.5px;
  min-height: 151.5px;
}

#contact-form input {
  border-radius: 5px;
}

#contact-form button {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  margin: auto;
  padding: 0rem;
  width: 100%;
  height: 40px;
  padding: 0rem 2rem;
  background-color: var(--cd-blue);
  color: white;
  border-radius: 10px;
  border: 0;
  box-shadow: 7px 7px 15px -10px black;
  transition: 500ms;
  cursor: pointer;
}
#contact-form button:hover {
  transform: scale(1.01);
  background-color: rgb(3, 101, 212);
}

#contact-form button i {
  font-size: 1.95rem;
  margin-left: 7.5px;
}

/* ----- CONTACT-END ----- */

/* ----- FOOTER ----- */
#footer-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 1.3rem;
  background-color: var(--cd-black);
}
#footer-content {
  width: 1050px;

  background-color: var(--cd-black);
}

#footer-social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
}
#footer-social-icons a {
  color: var(--cd-gray-text);
  transition: 500ms;
}
#footer-social-icons a:hover {
  color: var(--cd-blue);
}
#footer-social-icons i {
  font-size: 3.25rem;

  margin-left: 1rem;
}

/* ----- FOOTER-END ----- */

#nav-mobile-icon {
  display: none;
}
#nav-mobile-items {
  display: none;
}

#arrow-next {
  display: none;
}
#arrow-back {
  display: none;
}

@media (max-width: 1180px) {
  #contact-text #contact-header {
    align-items: center;
  }
  #nav-container {
    height: fit-content;
  }
  #arrow-next {
    display: block;
  }
  #arrow-back {
    display: block;
  }

  #header-content {
    width: 85%;
  }
  #nav-content {
    width: 85%;
  }
  #home-content {
    width: 85%;
  }
  #footer-content {
    width: 85%;
  }

  .nav-items {
    display: none;
  }

  #services-content {
    width: 100%;
  }
  #services-boxes {
    display: flex;
    flex-direction: row;

    align-items: center;
    justify-content: space-around;
    gap: 0px;
    width: unset;
    position: relative;
    left: 0;
    transition: all 500ms;
  }
  .service-box {
    width: 70vw;
    margin: 0rem 15vw;
  }
  .service-box[main] {
    width: 70vw;
  }

  #services-languages {
    width: 85%;
  }

  #contact-content {
    width: 85%;
    height: auto;
  }

  #nav-mobile-items {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 0px;
    padding: 0rem 2rem;
    overflow: auto;
    top: 65.5px;
    position: absolute;
    flex-direction: column;
    background-color: var(--cd-black);
    transition: 500ms;
    box-shadow: 15px 15px 20px -15px black;
  }

  #service-explain-steps {
    width: 85%;
    height: auto;
  }
  .explain-step {
    width: auto;
    padding: 5rem;
  }

  #nav-mobile-icon {
    display: block;
    background-color: var(--cd-blue);
    padding: 1rem 2rem;
    border-radius: 5px;
    color: var(--cd-white);
  }
  #nav-mobile-items .nav-item {
    width: 100%;
    text-align: center;
    margin: 0.5rem 0rem;
    padding: 1.75rem 2rem;
    border-bottom: 1px solid rgb(78, 78, 78);
    color: var(--cd-white);
  }
  #nav-mobile-items.menu-mobile-active {
    height: 350px;
  }
}
@media (max-width: 880px) {
  #contact-text-form {
    flex-direction: column;
  }
  #contact-text {
    margin-bottom: 2rem;
  }
  #home-bg {
    width: 250px;
  }
}
@media (max-width: 750px) {
  #home-bg {
    display: none;
  }
  #home-content #home-text {
    margin: 0;
    padding: 0;
    width: 100%;
  }
}
@media (max-width: 680px) {
  #whatsapp-logo img {
    width: 48.5px;
  }

  #contact-form textarea {
    max-height: 120px;
    min-height: 120px;
  }
}
@media (max-width: 600px) {
  #footer-content {
    flex-direction: column;
    gap: 2.5rem;
  }
  #footer-social-icons {
    display: none;
  }
  #footer-container {
    font-size: 1.25rem;
  }
}
@media (max-width: 450px) {
  #header-container {
    font-size: 1.2rem;
  }
}
