/* Google Fonts - Poppins & Ubuntu */
/* ------------------------------------------------------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  scroll-behavior: smooth;
}
/* ------------------------------------------------------------------------------------------------------------- */


/* Custom Scroll Bar */
/* ------------------------------------------------------------------------------------------------------------- */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #4d4d4d;
}
::-webkit-scrollbar-thumb {
  background: #fff;
  border-radius: 12px;
}
::-webkit-scrollbar-thumb:hover {
  background: #D4D4D4;
}
/* ------------------------------------------------------------------------------------------------------------- */


/* Navbar */
/* ------------------------------------------------------------------------------------------------------------- */
nav {
  /* position: fixed; */
  width: 100%;
  padding: 16px 0;
  z-index: 998;
  transition: all 0.3s ease;
  background: #333333;
}
nav .navbar {
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
}
nav .navbar .logo span {
  font-weight: 800;
  font-size: 35px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}
nav .navbar .menu {
  display: flex;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 550;
  color: #fff;
  transition: all 0.3s ease;
}
nav .navbar .menu li {
  list-style: none;
  margin: 0 20px;
}
nav .navbar .menu li a {
  color: #fff;
  transition: all 0.3s ease;
}
nav .navbar .menu li a:hover {
  color: #ed9121;
  transition: all 0.3s ease;
}
.navbar .navbar-contactButtons {
  color: #fff;
  font-size: 30px;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
}
.navbar .emailBtn-navbar {
  color: #fff;
  transition: all 0.3s ease;
}
.navbar .emailBtn-navbar:hover {
  color: #ed9121;
  transition: all 0.3s ease;
}
.navbar .whatsappBtn-navbar {
  color: #fff;
  transition: all 0.3s ease;
  margin-left: 10px;
}
.navbar .whatsappBtn-navbar:hover {
  color: #ed9121;
  transition: all 0.3s ease;
}
/* ------------------------------------------------------------------------------------------------------------- */


/* Home */
/* ------------------------------------------------------------------------------------------------------------- */
.home {
  height: 100vh;
  width: 100%;
  background-color: #1a1a1a;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  font-family: "Poppins", sans-serif;
  margin-bottom: -80px;
}
.home .home-content {
  width: 90%;
  height: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 15px;
}
.home .ChargeFix_Logo {
  display: flex;
  float: right;
  height: 500px;
  margin-top: -140px;
}
.home .text-one {
  color: #fff;
  font-size: 70px;
  font-weight: 800;
  margin-bottom: -6px;
  margin-top: -70px;
}
.home .text-two {
  font-size: 70px;
  font-weight: 700;
  margin-bottom: 0px;
  color: #ed9121;
}
.home .text-three {
  font-size: 30px;
  font-weight: 500;
  padding: 21px 0px;
  margin-left: 1px;
  color: #fff;
  width: 65%;
}
.home .contact-us-btn {
  margin-left: 2px;
  margin-top: 15px;
}
.home .contact-us-btn .contact-us-icon {
  display: inline-flex;
  margin-right: 4px;
}
.home .contact-us-btn a {
  display: inline-block;
  outline: none;
  padding: 8px 16px;
  font-size: 28px;
  font-weight: 600;
  background: #333333;
  color: #fff;
  cursor: pointer;
  transition: all 0.4s ease;
  font-family: "Poppins", sans-serif;
  text-decoration: none; /* Prevent underline on the <a> */
  border-style: outset;
  border-width: 4px;
  border-color: #ed9121;
  border-radius: 8px;
}
.home .contact-us-btn span {
  color: #fff;
}
.home .contact-us-btn a:hover {
  border-color: #ed9121;
  background-color: #1a1a1a;
  color: #ed9121;
  /* transform: scale(1.015); */
  /* margin-left: 5px; */
}
/* ------------------------------------------------------------------------------------------------------------- */


/* About Us */
/* ------------------------------------------------------------------------------------------------------------- */
section {
  padding-top: 40px;
  padding-bottom: 3px;
  background-color: #333333;
}
section .content {
  width: 80%;
  margin: 40px auto;
  font-family: "Poppins", sans-serif;
}
.about .about-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about .content {
  padding-bottom: 6px;
}
.about .content .titleNosotros {
  display: flex;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  margin-top: -43px;
  margin-bottom: 55px;
}
.about .content .titleNosotros span {
  color: #fff;
  font-size: 38px;
  font-weight: 650;
  position: relative;
  padding-bottom: 2px;
}
.about .content .titleNosotros span::before,
.about .content .titleNosotros span::after {
  content: "";
  position: absolute;
  height: 4px;
  width: 100%;
  background: #ed9121;
  left: 0;
  bottom: 0;
}
.about .content .titleNosotros span::after {
  bottom: -9px;
  width: 70%;
  left: 50%;
  transform: translateX(-50%);
}
.about .about-details .left {
  width: 45%;
}
.about .left img {
  width: 512px;
  height: 341px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 8px 8px 3px #191919;
}
.about-details .right {
  width: 55%;
}
.about-details .right .topicMision {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
  margin-bottom: 16px;
}
.about-details .right .textMision {
  color: #fff;
  font-size: 19px;
  font-weight: 400;
  margin-bottom: 20px;
}
.about-details .right p {
  text-align: left;
  color: #fff;
}
.about .about-details .experience {
  display: flex;
  align-items: center;
  margin-top: -22px;
  margin-bottom: -12px;
}
.about-details .experience .num {
  color: #ed9121;
  font-size: 60px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}
.about-details .experience .exp {
  color: #fff;
  margin-left: 13px;
  font-size: 18px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}
/* ------------------------------------------------------------------------------------------------------------- */


/* Services */
/* ------------------------------------------------------------------------------------------------------------- */
.services {
  background-color: #1a1a1a;
}
.services .content {
  padding-top: 4px;
}
.services .content .titleServicio {
  display: flex;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  margin-top: -40px;
  margin-bottom: 26px;
}
.services .content .titleServicio span {
  color: #fff;
  font-size: 38px;
  font-weight: 650;
  position: relative;
  padding-bottom: 2px;
}
.services .content .titleServicio span::before,
.services .content .titleServicio span::after {
  content: "";
  position: absolute;
  height: 4px;
  width: 100%;
  background: #ed9121;
  left: 0;
  bottom: 0;
}
.services .content .titleServicio span::after {
  bottom: -9px;
  width: 70%;
  left: 50%;
  transform: translateX(-50%);
}
.services .boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #fff;
  margin-bottom: 44px;
}
.services .boxes .box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #333333;
  margin: 15px -48px;
  width: 420px;
  height: 255px;
  align-items: center;
  text-align: center;
  padding: 20px 15px;
  border-style: outset;
  border-width: 4px;
  border-color: #ed9121;
  border-radius: 12px;
  transition: all 0.4s ease;
}
.services .boxes .box .icon {
  height: 50px;
  width: 50px;
  background: #ed9121;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  color: #fff;
  margin: 0 auto -1px auto;
  transition: all 0.4s ease;
}
.services .boxes .box .topicBoxes1 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 14px;
  margin-bottom: 6px;
  font-family: "Poppins", sans-serif;
}
.services .boxes .box .textBoxes1 {
  font-size: 17.5px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}
.services .boxes .box .textBoxes1 a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  transition: all 0.3s ease;
}
/* ------------------------------------------------------------------------------------------------------------- */


/* Technologies */
/* ------------------------------------------------------------------------------------------------------------- */
.technologies {
  background-color: #333333;
}
.technologies .content {
  padding: 40px 0;
}
.technologies .content .titleTecnologias {
  display: flex;
  justify-content: center;
  text-align: center;
  font-family: "Poppins", sans-serif;
  margin-top: -82px;
  margin-bottom: 38px;
}
.technologies .content .titleTecnologias span {
  color: #fff;
  font-size: 38px;
  font-weight: 650;
  text-align: center;
  position: relative;
  padding-bottom: 7px;
}
.technologies .content .titleTecnologias span::before,
.technologies .content .titleTecnologias span::after {
  content: "";
  position: absolute;
  height: 4px;
  width: 100%;
  background: #ed9121;
  left: 0;
  bottom: 0;
}
.technologies .content .titleTecnologias span::after {
  bottom: -9px;
  width: 70%;
  left: 50%;
  transform: translateX(-50%);
}
.technologies .boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #fff;
  margin-bottom: -38px;
}
.technologies .boxes .box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #1a1a1a;
  margin: 15px -48px;
  width: 308px;
  height: 320px;
  align-items: center;
  text-align: center;
  padding: 5px 15px;
  border-style: outset;
  border-width: 4px;
  border-color: #ed9121;
  border-radius: 12px;
  transition: all 0.4s ease;
}
.technologies .boxes .box .icon {
  height: 50px;
  width: 50px;
  background: #ed9121;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  color: #fff;
  margin: 0 auto -1px auto;
  transition: all 0.4s ease;
}
.technologies .boxes .box .topicBoxes2 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 14px;
  margin-bottom: 6px;
  font-family: "Poppins", sans-serif;
}
.technologies .boxes .box .textBoxes2 {
  font-size: 18px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}
/* ------------------------------------------------------------------------------------------------------------- */


/* Contact */
/* ------------------------------------------------------------------------------------------------------------- */
.contact {
  background-color: #1a1a1a;
}
.contact .content {
  margin: 0 auto;
  padding-top: 48px;
  padding-bottom: 30px;
}
.contact .text {
  width: 80%;
  text-align: center;
  margin: auto;
  color: #fff;
}
.contact .content .titleContacto {
  display: flex;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  margin-top: -42px;
  margin-bottom: 25px;
}
.contact .content .titleContacto span {
  color: #fff;
  font-size: 38px;
  font-weight: 650;
  position: relative;
  padding-bottom: 8px;
}
.contact .content .titleContacto span::before,
.contact .content .titleContacto span::after {
  content: "";
  position: absolute;
  height: 4px;
  width: 100%;
  background: #ed9121;
  left: 0;
  bottom: 0;
}
.contact .content .titleContacto span::after {
  bottom: -9px;
  width: 70%;
  left: 50%;
  transform: translateX(-50%);
}
.contact .topicContacto {
  font-size: 30px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 15px;
  font-family: "Poppins", sans-serif;
}
.contact .textContacto {
  font-size: 22px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  margin-bottom: 10px;
} 
.contact .contactButtons {
  display: flex;
  justify-content: center;
  align-items: center;
}
.submitBtn {
  border-style: outset;
  border-width: 4px;
  border-color: #ed9121;
}
.contactButtons .submitButton {
  width: 11%;
  height: 1.8em;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contactButtons .submitButton span {
  font-size: 22px;
}
.email {
  margin-top: 100px;
}
.contact .contactButtons .contactIcons {
  display: inline-flex;
  margin-right: 2px;
}
.contact .contactButtons button {
  outline: none;
  padding: 8px 20px;
  margin: 10px;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 600;
  background: #333333;
  color: #fff;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.4s ease;
  border-style: solid;
  border-width: 3px;
  border-color: #ed9121;
}
.contact .wspButton button{
  margin: 24px;
}
.contact .contactButtons button:hover {
  border-color: #ed9121;
  background-color: #1a1a1a;
  color: #fff;
}
.contact .contactButtons .btnEmail span {
  color: #fff;
}
.contact .contactButtons .btnEmail span:hover {
  color: #fff;
}
.contact .contactButtons .btnWhatsApp {
  background-color: #157a46;
  border-color: #fff;
}
.contact .contactButtons .btnWhatsApp span {
  color: #fff;
}
.contact .contactButtons .btnWhatsApp:hover {
  border-color: #157a46;
  background-color: #1a1a1a;
  color: #157a46;
}
.contact .text-ubicacion {
  font-size: 18px;
  font-weight: 600;
  margin-top: 16px;
  margin-bottom: 2px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}
.contact .emailContactoText {
  font-size: 18px;
  font-weight: 500;
  margin-top: 15px;
  margin-bottom: 2px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}
.contact .emailContactoText a {
  font-weight: 600;
}
.contact #formAdvIcon{
  margin-top: 25px;
}
/* ------------------------------------------------------------------------------------------------------------- */


/* Contact Form */
/* ------------------------------------------------------------------------------------------------------------- */
.fontFamily {
  font-family: "Poppins", sans-serif;
}
.contact-form-title-text {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}
.formErrorStyle {
  color: rgb(255, 167, 3);
}
.formError {
  border: 1px solid #ccc;
  border-radius: 4px;
  display: inline-block;
  background-color: #ff0000;
  margin-top: 10px;
  margin-bottom: 10px;
}
.formMessage {
  margin-top: 22px;
}
.formSuccess {
  border: 1px solid #ccc;
  border-radius: 4px;
  border-color: #ed9121;
  display: inline-block;
  background-color: #4caf50;

  margin-top: 10px;
  margin-bottom: 10px;
}
input,
textarea {
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  background-color: #333333;
  color: #ccc;
  resize: none; /* Disable resizing */
}
input[type="submit"] {
  background-color: #4caf50;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100px;
}
input[type="submit"]:hover {
  background-color: #207a25;
}
/* ------------------------------------------------------------------------------------------------------------- */


/* Footer */
/* ------------------------------------------------------------------------------------------------------------- */
footer {
  background: #333333;
  padding: 22px 0;
  text-align: center;
  font-family: "Poppins", sans-serif;
}
footer .textFooter {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
}
footer .textFooter span {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}
/* ------------------------------------------------------------------------------------------------------------- */


/* Scroll Up Arrow Button */
/* ------------------------------------------------------------------------------------------------------------- */
.scroll-up-button a {
  position: fixed;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
  color: #fff;
  background: #ed9121;
  padding: 7px 12px;
  font-size: 18px;
  border-radius: 6px;
  box-shadow: 3px 3px 2px #191919;
  transition: all 0.4s ease;

  opacity: 0;
  pointer-events: none;

  &.show {
    opacity: 1;
    pointer-events: auto;
  }
}
.scroll-up-button a:hover {
  background: #fff;
  color: #ed9121;
  transform: scale(1.1);
}
/* ------------------------------------------------------------------------------------------------------------- */