/*
SPACING SYSTEM (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

FONT SIZE SYSTEM (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98
*/

/* COLORS
color-ffffff: #FFFFFF;
color-f2a900: #F2A900;
color-0c1823: #0C1823;
color-23243d: #23243D;
color-27476e: #27476E;
color-e5e5e5: #E5E5E5;
color-fccb33: #FCCB33;
*/

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Titillium Web", sans-serif;
  line-height: 1.3;
}

/* ---------------------------- Navigation bar section ---------------------------- */
.nav-bar {
  background-color: #fccb33;
  position: fixed;
  z-index: 1;
  width: 100%;
  height: 100px;
  box-shadow: 2px 2px 2px 3px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
}
.nav-bar-container {
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: space-between;
  margin-left: 50px;
  margin-right: 80px;
}

.nav-bar img {
  height: 70px;
  width: auto;
}

.nav-bar ul {
  display: flex;
  align-items: center;
  justify-content: end;
  flex-grow: 1;
  flex-direction: row;
  margin-left: 1%;
  max-lines: 1;
}

.nav_link_cnt {
  padding: 20px;
  display: flex;
  flex-direction: row;
  align-items: end;
  transition: all ease 0.5s;
}

.nav_link_cnt :hover {
  transition: all ease 0.3s;
  transform: scale(1.2);
}

.nav_link {
  text-transform: uppercase;
  color: #0c1823;
  font-size: 14px;
  text-decoration: none;
  transition: all ease 0.1s;
  font-weight: bolder;
  text-align: center;
}

.nb_support_button {
  background-color: #27476e;
  border-radius: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-left: 20px;
  transition: all ease 0.3s;
}

.lnk_support_button {
  text-transform: uppercase;
  padding: 10px 15px 10px 15px;
  color: #e5e5e5;
  font-size: 14px;
  text-decoration: none;
  transition: all ease 0.1s;
  font-weight: bolder;
}

.nb_support_button:hover {
  transition: all ease 0.3s;
  transform: scale(1.2);
}

/* ---------------------------- Side  Bar Active Logic---------------------------- */

.side-bar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 240px;
  background-color: #27476e;
  z-index: 1;
  transition: all ease 0.5s;
}
.side-menu-button {
  position: fixed;
  display: flex;
  top: 0px;
  left: 220px;
  border-radius: 10px;
  background-color: #fccb33;
  width: 35px;
  height: 35px;
  transition: all ease 0.5s;
  box-shadow: 2px 0px 10px 5px rgba(0, 0, 0, 0.2);
}

.side-menu-icon {
  margin: auto auto;
  width: 30px;
  height: 30px;
}
.side-bar-container img {
  margin: auto auto;
  width: 200px;
  transition: all ease 0.5s;
}

.side-bar .nav-links-bar {
  transition: all ease 0.5s;
}

.nb_support_button {
  margin-left: 0px;
}

/* ---------------------------- Side  Bar Inactive Logic---------------------------- */

.side-bar.close {
  width: 0px;
  transition: all ease 0.5s;
}

.side-bar.close .side-menu-button {
  top: 0px;
  left: -10px;
  transition: all ease 0.5s;
}

.side-bar.close .side-bar-container img {
  width: 1px;
  display: none;
  transition: all ease 0.5s;
}

.side-bar.close .nav-links-bar {
  transition: all ease 2s;
  display: none;
}
/* ---------------------------- Index Bar section ---------------------------- */
.index-bar-section {
  display: inline-block;
  margin-left: 80px;
  padding-top: 130px;
  padding-bottom: 30px;
  color: #27476e;
}

.index-bar-section span {
  padding-left: 10px;
  padding-right: 10px;
  font-size: 14px;
}

.index-bar-section a {
  color: #27476e;
  text-decoration: none;

  font-size: 14px;
  cursor: default;
}

/* ---------------------------- Contact Section---------------------------- */

.contact-us-section {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.contact-section-cards {
  margin: 0px 0px 0px 64px;
}

.contact-section-title {
  color: #27476e;
  font-size: 30px;
  margin-bottom: 24px;
}

.contact-section-content {
  margin-bottom: 24px;
  width: 90%;
}

.contact-card-grid {
  display: grid;
  margin-top: 60px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.support-data-container {
  padding-left: 50px;
  border-radius: 10px;
  border: solid 5px #fccb33;
}

.employee-labor {
  color: #27476e;
  font-size: 20px;
  margin-bottom: 24px;
  padding-top: 50px;
}

.support-title {
  font-size: 24px;
}

.employee-card {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 100px;
}

.contact-name {
  font-size: 21px;
  font-weight: bold;
}

.contact-data {
  font-size: 18px;
}

.support-data {
  font-size: 20px;
}

.visme_d {
  width: 1000px;
}

/* ------------------------------ Contact Field Section ----------------------------------- */

.calendly-inline-widget {
  margin: 32px 34px 0px 0px;
  width: 400px;
}

.client-contact-wrapper {
  margin: 0px 10% 0px 0px;
}

.client-contact-form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  padding: 32px;
  border-radius: 5px;
  background-color: #e5e5e5;
  gap: 20px;
}

.client-contact-title {
  text-align: center;
  color: #27476e;
  font-size: 24px;
  margin: 0px 0px 12px 0px;
}

/* ---------------------------- InputBox Code ---------------------------- */
/*
=====
HELPERS
=====
*/

.ha-screen-reader {
  width: var(--ha-screen-reader-width, 1px);
  height: var(--ha-screen-reader-height, 1px);
  padding: var(--ha-screen-reader-padding, 0);
  border: var(--ha-screen-reader-border, none);

  position: var(--ha-screen-reader-position, absolute);
  clip: var(--ha-screen-reader-clip, rect(1px, 1px, 1px, 1px));
  overflow: var(--ha-screen-reader-overflow, hidden);
}

/*
=====
RESET STYLES
=====
*/

.field__input,
.field__input2 {
  --uiFieldPlaceholderColor: var(--fieldPlaceholderColor, #ffff);
  background-color: #ffff;
  border-radius: 25px;
  border: none;
  font-family: inherit;
  font-size: inherit;
}

/*
=====
CORE STYLES
=====
*/

.field {
  --uiFieldBorderWidth: var(--fieldBorderWidth, 2px);
  --uiFieldPaddingRight: var(--fieldPaddingRight, 1rem);
  --uiFieldPaddingLeft: var(--fieldPaddingLeft, 1rem);
  --uiFieldBorderColorActive: var(
    --fieldBorderColorActive,
    rgba(22, 22, 22, 1)
  );

  display: var(--fieldDisplay, inline-flex);
  position: relative;
  font-size: var(--fieldFontSize, 1rem);
}

.field__input {
  box-sizing: border-box;
  width: var(--fieldWidth, 100%);
  height: var(--fieldHeight, 3rem);
  padding: var(--fieldPaddingTop, 1.25rem) var(--uiFieldPaddingRight)
    var(--fieldPaddingBottom, 0.5rem) var(--uiFieldPaddingLeft);
  border-bottom: var(--uiFieldBorderWidth) solid
    var(--fieldBorderColor, rgba(0, 0, 0, 0.25));
}

.field__input:focus,
.field__input2:focus {
  outline: none;
}

.field__input::-webkit-input-placeholder,
.field__input2::-webkit-input-placeholder {
  opacity: 0;
  transition: opacity 0.2s ease-out;
}

.field__input::-moz-placeholder,
.field__input2::-moz-placeholder {
  opacity: 1;
  transition: opacity 0.2s ease-out;
}

.field__input:focus::-webkit-input-placeholder,
.field__input2:focus::-webkit-input-placeholder {
  opacity: 1;
  transition-delay: 0.2s;
}

.field__input:focus::-moz-placeholder,
.field__input2:focus::-moz-placeholder {
  opacity: 1;
  transition-delay: 0.2s;
}

.field__label-wrap {
  box-sizing: border-box;
  pointer-events: none;
  cursor: text;

  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.field__label-wrap::after {
  content: "";
  box-sizing: border-box;
  width: 100%;
  height: 0;
  opacity: 0;

  position: absolute;
  bottom: 0;
  left: 0;
}

.field__input:focus ~ .field__label-wrap::after,
.field__input2:focus ~ .field__label-wrap::after {
  opacity: 1;
}

.field__label {
  position: absolute;
  left: var(--uiFieldPaddingLeft);
  top: calc(50% - 0.5em);
  color: #27476e;
  line-height: 1;
  font-size: var(--fieldHintFontSize, inherit);

  transition: top 0.2s cubic-bezier(0.9, -0.15, 0.1, 1.15),
    opacity 0.2s ease-out, font-size 0.2s ease-out;
}

.field__input:focus ~ .field__label-wrap .field__label,
.field__input:not(:placeholder-shown) ~ .field__label-wrap .field__label,
.field__input2:focus ~ .field__label-wrap .field__label,
.field__input:not(:placeholder-shown) ~ .field__label-wrap .field__label {
  --fieldHintFontSize: var(--fieldHintFontSizeFocused, 0.75rem);

  top: var(--fieldHintTopHover, 0.25rem);
}

/*
=====
LEVEL 3. SETTINGS
=====
*/

.field {
  --fieldBorderColor: #ffff;
  --fieldBorderColorActive: #ffff;
}

.field_v3 {
  min-width: 70%;
}

.input-container {
  width: 100%;
  height: 15rem;
  background-color: #fff;
  border-radius: 25px;
}

.field-input {
  box-sizing: border-box;
  width: 90%;
  height: 11rem;
  margin: 3rem 1rem 1rem 1rem;
  border: none;
  outline: none;
  resize: none;
}

.field-input::-webkit-scrollbar {
  width: 0px;
}

.field__label2 {
  position: absolute;
  left: var(--uiFieldPaddingLeft);
  top: calc(10% - 0.5em);
  color: #27476e;
}

.information-button {
  display: flex;
  background-color: #fccb33;
  justify-content: center;
  align-items: center;
  margin: 40px auto auto auto;
  border-radius: 20px;
  width: fit-content;

  border: solid #fff 3px;
  transition: all ease 0.3s;
  box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
}

.information-button-text {
  font-size: 16px;
  color: black;

  text-decoration: none;
  padding: 10px 10px 10px 20px;
}

.arrow-icon {
  width: 24px;
  height: 24px;
  padding: 10px 10px 10px 0px;
}

.information-button:hover {
  transition: all ease 0.3s;
  background-color: #fff;
  border: solid #0c1823 3px;
  cursor: pointer;
}

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

/* ---------------------------- footer related links section ---------------------------- */

.related-links-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 100px;
  background-color: #23243d;
}
.related-links-section img {
  width: 50vh;
  height: 15vh;
}

.related-links-container {
  display: flex;
  gap: 100px;
}

.related-links {
  display: flex;
  gap: 100px;
  align-items: flex-start;
}

.contact-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.related-links ul li {
  list-style: none;
}

.related-links ul li a {
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
}

.related-links ul li a:hover {
  color: #f2a900;
}

.cell-number {
  display: flex;
  align-items: center;
  gap: 15px;
}

.phone-icon {
  width: 28px;
  height: 28px;
  stroke: #f2a900;
}

.cell-number p {
  color: #fff;
}

.number {
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.number p {
  color: #fff;
}

.user-icon {
  width: 28px;
  height: 28px;
  stroke: #f2a900;
}

.mail {
  margin-top: 15px;
  display: flex;
  gap: 15px;
  align-items: center;
}

.mail p {
  color: #fff;
}

.mail-icon {
  width: 28px;
  height: 28px;
  stroke: #f2a900;
}

.direction {
  margin-top: 15px;
  display: flex;
  gap: 15px;
  align-items: center;
}

.direction p {
  color: #fff;
}

.direction-icon {
  width: 28px;
  height: 28px;
  stroke: #f2a900;
}

/* ---------------------------- footer copyright section ---------------------------- */

.copyright-section p {
  background-color: #fccb33;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 40px;
  font-size: 10px;
}
/*/////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

/* ---------------------------- / Responsive ---------------------------- */

@media (max-width: 450px) {
  .nav-bar {
    display: none;
  }

  .side-bar {
    display: block;
  }
  /* -------- Boton de soporte en side bar ------- */

  .nav_link {
    color: #e5e5e5;
  }
  .nb_support_button {
    background-color: #27476e;
    border-radius: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    margin-left: 0px;
    transition: none;
  }

  .lnk_support_button {
    text-transform: uppercase;
    padding: 0px 0px 0px 0px;
    color: #e5e5e5;
    font-size: 14px;
    text-decoration: none;
    transition: all ease 0.1s;
  }

  /* ---------------------------- Index Bar section ---------------------------- */
  .index-bar-section {
    display: inline-block;
    margin-left: 50px;
    margin-right: 40px;
    padding-top: 50px;
    padding-bottom: 30px;
  }

  .index-bar-section span {
    font-size: 12px;
  }

  .index-bar-section a {
    font-size: 12px;
  }

  /* ---------------------------- Contact Section---------------------------- */

  .contact-us-section {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .contact-section-cards {
    margin: auto auto auto 10%;
  }

  .contact-section-title {
    color: #27476e;
    font-size: 20px;
    margin-bottom: 24px;
    width: 90%;
  }

  .contact-section-content {
    width: 90%;
  }
  .contact-section-content {
    font-size: 18px;
  }

  .contact-card-grid {
    display: inline;
    margin-top: 60px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }

  .support-data-container {
    background-color: #23243d;
  }

  .employee-labor {
    color: #27476e;
    font-size: 18px;
    margin-bottom: 24px;
    width: 90%;
  }

  .employee-card {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 50px;
  }

  .contact-name {
    font-size: 18px;
    font-weight: bold;
  }

  .contact-data {
    font-size: 18px;
  }

  .visme_d {
    width: auto;
  }

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

  /* ---------------------------- footer related links section ---------------------------- */

  .related-links-section {
    padding: 50px 30px;
  }
  .related-links-section img {
    display: none;
  }

  .related-links-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .related-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
