@font-face {
  font-family: 'ITC Eras Std Bold';
  src: url('/fonts/ITC Eras Std Bold.otf') format('opentype');
  font-weight: bold;
  font-display: swap;
}

@font-face {
  font-family: 'ITC Eras Std Demi';
  src: url('/fonts/ITC Eras Std Demi.otf') format('opentype');
  font-display: swap;
}

@font-face {
  font-family: 'Noto Sans Bold';
  src: url('/fonts/NotoSans-Bold.ttf') format('truetype');
  font-display: swap;
}

:root {

  /* Typografia */
  --body-font: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --big-font-size: 32px;
  --normal-font-size: 16px;
  --small-font-size: 14px;
  --smaller-font-size: 12px;


  --font-title: 'ITC Eras Std Bold', sans-serif;
  --font-title-demi: 'ITC Eras Std Demi', sans-serif;
  --font-text: 'Open Sans', sans-serif;
  --font-text-noto-sans: 'Noto Sans Bold', sans-serif;

  /* z index */
  --z-fixed: 50;
  --z-modal: 80;
  --z-alert: 100;
  --z-spinner: 100;
  --z-preloader: 100;

  /* Grosores */
  --font-medium: 400;
  --font-semi-bold: 600;
  --font-bold: 700;

  /* Margenes */
  --mr-1: 8px;
  --mr-2: 16px;
  --mr-3: 20px;
  --mr-4: 26px;
  --mr-5: 32px;

  /* color */
  --secondary-color: #F57745;
  --third-color: #83C7F0;
  --fourth-color: #0876CD;
}



/* ============= BASE ============= */
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  font-family: var(--font-text);
  font-size: var(--normal-font-size);
  margin: 0 !important;
  top: 0 !important;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

p {
  text-align: left;
  font-family: var(--font-text);
  font-size: var(--normal-font-size);
  letter-spacing: 0px;
  color: #2E2E22;
  opacity: 1;
  line-height: 1.3;
}


.line__clamp-five {
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

.line__clamp-four {
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

.line__clamp-three {
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

.line__clamp-two {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

.line__clamp-one {
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

/* ============= REUSABLE CLASSES ============= */


.hidden__desktop {
  display: none !important;
}

.hidden__mobile {
  display: initial;
}

.overflow__page {
  overflow: hidden;
}

.section {
  padding: 4rem 0;
}

.section {
  padding: 6rem 0 5rem;
}

.section__title {
  margin: var(--mr-3) 0;
  text-align: center;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 30px;
  color: #052352;
  letter-spacing: 0px;
  text-transform: uppercase;
  opacity: 1;
  margin-bottom: 0;
}

.section__subtitle {
  text-align: center;
  font-family: var(--font-text);
  font-size: var(--normal-font-size);
  letter-spacing: 0px;
  color: #2E2E22;
  opacity: 1;
  font-weight: 500;
}

.secondary__color {
  color: #F57745;
}

.third__color {
  color: #0876CD;
}

.min__container {
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.max__container {
  max-width: 2160px;
  margin: 0 auto;
  overflow: hidden;
}

.grid--container {
  max-width: 1200px;
  display: grid;
  margin: 0 var(--mr-3);
}

.grid__content-container {
  max-width: 1030px;
  display: grid;
  margin: 0 var(--mr-3);
}

.grid__container-element {
  max-width: 1275px;
  display: grid;
  margin: 0 var(--mr-3);
  overflow: hidden;
}

.grid__container-login {
  max-width: 1000px;
  display: grid;
  margin: 0 var(--mr-3);
}

.step__component-date .btn,
.step__one-two--items .btn,
.btn {
  display: inline-block;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 8px 10px;
  border: none;
  outline: none;
  font-family: var(--font-title-demi);
  font-size: var(--normal-font-size);
  font-weight: bold;
  border-radius: 25px;
  cursor: pointer;
  background: rgba(28, 115, 239, 255);
  color: #FFFFFF;
}

.btn:hover {
  color: rgba(28, 115, 239, 255);
}

.btn::after {
  content: "";
  background: #FFFFFF;
  position: absolute;
  z-index: -1;
  padding: 8px 10px;
  display: block;
  top: 0;
  bottom: 0;
  left: -110%;
  right: 110%;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  transform: skew(10deg);
}

.btn:hover::after {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}


.hover__orange {
  cursor: pointer;
  transition: color 0.3s ease;
}

.hover__orange:hover {
  color: #F57745;
}

.title__info-header:hover~.description__info-header {
  color: rgba(131, 199, 240, 255)
}

.hidden__container {
  display: none;
}

.show__container {
  display: block;
}


/* ============= ANIMATIONS ============= */

.animated__text-left {
  animation: slideLeft 1s ease-out;
}

.animated__text-right {
  animation: slideRight 1s ease-out;
}

.animated__text-bottom {
  animation: slideBottom 1s ease-out;
}

@keyframes slideLeft {
  from {
    transform: translateX(-50%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideRight {
  from {
    transform: translateX(50%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideBottom {
  from {
    transform: translateY(50%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}







/* ============= SETTINGS SCROLL ANIMATIONS ============= */


.hidden,
.hidden__left {
  opacity: 0;
  transform: translateX(-50%);
  transition: all 1s;
}

.show {
  opacity: 1;
  transform: translateX(0);
}

.hidden__bottom {
  opacity: 0;
  transform: translateY(50%);
  transition: all 1s;
}

.show__bottom {
  opacity: 1;
  transform: translateY(0);
}

.hidden__right {
  opacity: 0;
  transform: translateX(50%);
  transition: all 1s;
}

.show__right {
  opacity: 1;
  transform: translateX(0);
}


.schedule:nth-child(2) {
  transition-delay: 400ms;
}


/* ============= Header & NavBar ============= */


.item__left-mobile,
.navbar__mobile {
  display: none;
}

.nav__desktop,
.info__header-desktop,
.login__desktop,
.social__list-desktop {
  display: block;
}


.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(245, 245, 245, 255);
  z-index: var(--z-fixed);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FFFFFF;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -35px;
  border-radius: 40px;
  padding: 0 50px 0 65px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.navbar__logo-container {
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
}

.navbar__logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 16px;
  color: #2E2E22;
}

.navbar__logo img {
  padding-right: 10px;
}

.tel__navbar {
  font-size: 16px;
  color: #2E2E22;
}

.tel__navbar:hover {
  color: #F57745;
}



.navbar__list {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.navbar__link {
  color: rgba(13, 42, 87, 255);
  text-align: center;
  font-family: var(--font-title-demi);
  font-size: 18px;
  letter-spacing: 0px;
  font-weight: 500;
  opacity: 1;
  transition: all 0.35s;
}

.navbar i {
  display: none;
}

.btn__open,
.btn__close {
  display: none;
}

.navbar__list {
  flex-direction: row;
  gap: 32px;
}

.navbar__item.active__link,
.navbar__item:hover {
  background: #F5F5F5;
}

.navbar__item {
  position: relative;
  padding: 20px;
  height: 100%;
  margin: 0;
  transition: all 0.3s ease;
}

.navbar__item.active__link::before,
.navbar__item::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 8px;
  transform: translateY(50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid rgba(8, 118, 205, 255);
  transition: all 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

.navbar__item.active__link::before,
.navbar__item:hover::before {
  left: 50%;
  transform: translateX(-50%) translateY(50%);
  width: 16px;
  height: 16px;
  opacity: 1;
}

.navbar__logo i {
  display: block;
}

.login__items {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: flex-start;
  text-align: left;
  font-family: var(--font-title-demi);
  font-size: 16px;
  line-height: 1.05;
  letter-spacing: 1px;
  color: #FFFFFF;
}

.language__options:hover p,
.login__items:hover {
  color: rgba(131, 199, 240, 255);
}



/* ============= header section ============= */

.info__header-container {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.info__list-header--content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__certificate-section .info__list-header--content,
.header__schedule-here .info__list-header--content {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
  padding-bottom: 45px;
}

.info__left-header {
  width: 375px;
  margin-right: 50px
}

.info__list-header-container {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 20px;
}

.social__links-top--container {
  background: #0876CD;
}

.social__links-top {
  display: grid;
  grid-template-columns: 1fr auto;
}

.info__header-elements {
  display: grid;
  grid-template-columns: 1fr auto;
}

.social__list-top--container {
  padding: 8px 0px 8px 0px;
  display: flex;
  justify-content: space-between;
}



.btn__header {
  display: flex;
  justify-content: left;
  z-index: 5;
  border-radius: 0;
  background: #0876CD;
}

.btn__header:hover {
  color: rgba(131, 199, 240, 255);
}

.img__hidden {
  display: none;
}

.image-switch {
  transition: all 0.3s ease-in-out;
}

.btn__header:hover~.image-switch {
  display: none;
}

.btn__header:hover~.img__hidden {
  display: inline-block;
}


.btn__header::after {
  background: #0876CD;
}


.btn__header-scroll {
  display: flex;
  justify-content: left;
  z-index: 5;
  border-radius: 0;
  background: rgba(4, 34, 81, 255);
}

.btn__header-scroll:hover {
  color: #F57745;
}

.img__hidden-two {
  display: none;
}

.image-switch-two {
  transition: all 0.3s ease-in-out;
}

.btn__header-scroll:hover~.image-switch-two {
  display: none;
}

.btn__header-scroll:hover~.img__hidden-two {
  display: inline-block;
}

.btn__header-scroll::after {
  background: rgba(4, 34, 81, 255);
}

.social__list-top {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 30px;
  align-items: center;
}

.social__list-top li i {
  font-size: 25px;
  color: #FFFFFF;
}

.social__list-top li i:hover {
  color: rgba(131, 199, 240, 255);
  cursor: pointer;
}

.social__links-top .language__options {
  color: #FFFFFF;
  display: flex;
  align-items: center;
  padding-right: 15px;
  width: 70px;
}

.language__options img {
  width: 20px;
  height: auto;
}

.info__header-container img {
  width: 200px;
  padding: 25px 0 60px 0;
}

.title__info-header {
  text-align: left;
  font-family: var(--font-title-demi);
  font-size: var(--normal-font-size);
  letter-spacing: 0px;
  font-weight: 500;
  color: #052352;
  opacity: 1;
}

.description__info-header {
  text-align: left;
  font-family: var(--font-text);
  font-size: var(--normal-font-size);
  letter-spacing: 0px;
  color: #2E2E22;
  opacity: 1;
}

/* ============= header scroll ============= */


.info__header-container--scroll {
  background: rgba(4, 34, 81, 255);
  border-bottom: 1px solid rgba(245, 245, 245, 255);
}

.info__header-content--scroll {
  display: grid;
  grid-template-columns: 1fr auto;
  justify-items: center;
}

.info__header-container--scroll .login__items {
  margin-right: 0;
  padding: 20px 0 50px 0;
}

.info__header-content--scroll .image__header-top {
  display: flex;
  justify-content: center;
  margin: 0;
}

.image__header-top {
  margin: 0;
  padding: 20px 0 50px 0;
  width: 150px;

}

.image__header-top img {
  width: 100%;
  height: 100%;
  object-fit: contain;

}



/* ============= translator settings ============= */

.goog-te-gadget img {
  display: none;
}

.goog-te-gadget-simple .VIpgJd-ZVi9od-xl07Ob-lTBxed span {
  display: none;
}

.goog-te-gadget-simple {
  background: url(../../images/arrow-down-white.webp) no-repeat right rgba(8, 118, 205, 255);
  background-size: 8px 10px;
  height: 20px;
  width: 15px;
  background-color: rgba(8, 118, 205, 255) !important;
  border: none !important;
}

.goog-logo-link {
  display: none !important;
}

.goog-te-gadget {
  color: transparent !important;
}

.goog-te-combo {
  font-size: 20px;
  background: #0876CD;
  color: transparent;
  border: none;
  position: absolute;
  padding: 0 !important;
  left: 62px;
}

.goog-te-gadget .goog-te-combo {
  margin: 0 !important;
}

.VIpgJd-ZVi9od-l4eHX-hSRGPd,
.VIpgJd-ZVi9od-l4eHX-hSRGPd:link,
.VIpgJd-ZVi9od-l4eHX-hSRGPd:visited,
.VIpgJd-ZVi9od-l4eHX-hSRGPd:hover,
.VIpgJd-ZVi9od-l4eHX-hSRGPd:active {
  display: none !important;
}

.goog-te-combo option[value=""] {
  display: none !important;
}

.language__options {
  position: relative;
  max-width: 140px;
}

.img__language {
  /* width: 116px; */
  display: flex;
  align-items: center;
  z-index: 2;
  justify-content: right;
  background: #0876CD;
}

.goog-te-combo::-ms-expand,
.goog-te-combo option:checked {
  display: none !important;
}

.language__options select {
  background: url(../../images/arrow-down-white.webp) no-repeat right #0876CD !important;
  cursor: pointer;
  background-size: 12px 15px !important;
  max-width: 70px;
}

.language__options select:hover {
  background: url(../../images/arrow-down-blue.webp) no-repeat right #0876CD !important;
  cursor: pointer;
  background-size: 11.5px 14px !important;
  max-width: 70px;
}


.goog-te-combo option {
  font-family: var(--font-text);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0px;
  color: #2E2E22;
  padding: 5px;
  box-shadow: none;
  background: #FFFFFF;
}

.goog-te-combo:focus {
  outline: none;
}

.img__language {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 44px;
  width: auto;
  align-items: center;
  gap: 5px;
  margin-right: 15px;
}

.img__language p {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  font-family: var(--font-title-demi);
  font-size: 16px;
  line-height: 1.05;
  letter-spacing: 1px;
  color: #FFFFFF;
  margin: 0;
}

.google__translater {
  position: relative;
}

.google__translater {
  position: relative;
}

.img__language {
  position: absolute;
  right: 0;
}

#google_translate_element {
  position: absolute;
  right: 10px;
}

.VIpgJd-ZVi9od-ORHb-OEVmcd {
  display: none !important;
}


/* ============= sweetalert settings ============= */

.swal2-container.swal2-bottom,
.swal2-container.swal2-center,
.swal2-container.swal2-top {
  z-index: var(--z-alert);
}


/* ============= spinner ============= */

.preloader {
  width: 124px;
  height: 24px;
  -webkit-mask:
    conic-gradient(from 135deg at top, #0000, #000 .5deg 90deg, #0000 90.5deg) 0 0,
    conic-gradient(from -45deg at bottom, #0000, #000 .5deg 90deg, #0000 90.5deg) 0 100%;
  -webkit-mask-size: 25% 50%;
  -webkit-mask-repeat: repeat-x;
  background: linear-gradient(#F57745 0 0) left/0% 100% no-repeat #ddd;
  animation: l13 2s infinite linear;
}

@keyframes l13 {
  100% {
    background-size: 100% 100%
  }
}

.preloader__container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #dbdbdb;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: var(--z-preloader);
}


/* ============= principal slider ============= */

.border__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  border: 3px solid #F57745;
  border-radius: 25px;
  padding: 5px;
}

.swiper-pagination {
  margin-bottom: 50px;
}

.swiper-pagination-bullet-active {
  background: #FFFFFF !important;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.2);
}

.swiper-pagination-bullet {
  width: 15px !important;
  height: 15px !important;
  background: #FFFFFF !important;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 8px !important;
}

/* ============= footer section ============= */

.title__column-three--footer {
  display: block;
}

.footer {
  margin-top: 4rem;
  padding: 4rem 0;
  background-color: #052352;
  overflow: hidden;
  position: relative;
}

.footer__container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.footer__column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 25px;
  z-index: 2;
}

.footer__row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  align-items: start;
  z-index: 2;
}

.footer__list {
  display: block;
  display: flex;
  flex-direction: column;
  gap: 21px;
  padding-left: 50px;
  align-self: flex-start;
  opacity: 85%;
}

.footer__list li a {
  transition: color 0.3s ease, font-weight 0.3s ease;
}

.footer__list li a:hover {
  color: #F57745;
}

.footer__list li a:active {
  font-weight: 700;
}

.orange:hover {
  color: #F57745;
  cursor: pointer;
}

.footer__link.active__footer-link {
  color: #F57745;
  font-weight: 700;
}

.footer__container ul li,
.footer__container p {
  text-align: left;
  font-family: var(--font-text);
  font-size: 18px;
  letter-spacing: 0px;
  color: #FAFAFA;
  opacity: 1;
  margin-bottom: 5px;
  z-index: 2;
}

.footer__row-text p:first-child {
  font-family: var(--font-title);
  font-size: var(--normal-font-size);
  font-weight: 800;
}


.footer__container h3 {
  text-align: left;
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0px;
  color: #FAFAFA;
  opacity: 1;
  margin: 0;
}

.footer__logo {
  padding: 0;
  margin: 0;
}

.footer__logo {
  width: 228px;
  height: 37px
}

p.text__bottom-footer--logo {
  opacity: 85%;
  font-weight: bold;
}

.footer__image {
  margin: 0;
  width: 70px;
  height: 60px;
  border-radius: 5px;
  overflow: hidden;
}

.footer__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer__icon {
  padding: 0;
  margin: 0;
  overflow: hidden;
  width: 20px;
}

.footer__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer__post p {
  margin: 0;
}

.footer__last-column {
  padding-left: 20px;
}

.second__info-footer {
  padding-top: 5px;
}

p.second__info-footer {
  font-size: 15px;
  opacity: 85%;
}

.line__footer-left--one {
  display: block;
  background: #0876CD;
  height: 8px;
  transform: rotate(70deg);
  position: absolute;
  bottom: -63px;
  left: -125px;
  width: 309px;
  z-index: 1;
}

.line__footer-left--two {
  display: block;
  background: #0876CD;
  height: 5px;
  transform: rotate(70deg);
  position: absolute;
  bottom: 0px;
  left: -125px;
  width: 337px;
  z-index: 1;
}

.line__footer-left--three {
  background: #0876CD;
  height: 1.5px;
  transform: rotate(70deg);
  position: absolute;
  bottom: 135px;
  left: -315px;
  width: 700px;
  z-index: 1;
}

.line__footer-left--four {
  background: #0876CD;
  height: 1.5px;
  transform: rotate(70deg);
  position: absolute;
  bottom: 135px;
  left: -274px;
  width: 700px;
  z-index: 1;
}

.line__footer-left--five {
  background: #0876CD;
  height: 1.5px;
  transform: rotate(70deg);
  position: absolute;
  bottom: 135px;
  left: -230px;
  width: 700px;
  z-index: 1;
}

.line__footer-right--one {
  display: block;
  background: #0876CD;
  height: 8px;
  transform: rotate(70deg);
  position: absolute;
  top: 0px;
  right: -167px;
  width: 404px;
  z-index: 1;
}

.line__footer-right--two {
  display: block;
  background: #0876CD;
  height: 5px;
  transform: rotate(70deg);
  position: absolute;
  top: 32px;
  right: -185px;
  width: 500px;
  z-index: 1;
}

.line__footer-right--three {
  display: block;
  background: #0876CD;
  height: 1.5px;
  transform: rotate(70deg);
  position: absolute;
  top: 121px;
  right: -235px;
  width: 700px;
  z-index: 1;
}

.line__footer-right--four {
  display: block;
  background: #0876CD;
  height: 1.5px;
  transform: rotate(70deg);
  position: absolute;
  top: 148px;
  right: -285px;
  width: 700px;
  z-index: 1;
}

.line__footer-right--five {
  display: block;
  background: #0876CD;
  height: 1.5px;
  transform: rotate(70deg);
  position: absolute;
  top: 148px;
  right: -205px;
  width: 700px;
  z-index: 1;
}

.data__terms-footer--content {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: flex-start;
  gap: 15px;
}

h3.subtitle__footer {
  text-align: left;
  font-family: var(--font-text);
  font-size: 15px;
  letter-spacing: 0px;
  color: #FAFAFA;
  opacity: 1;
  margin-bottom: 5px;
  z-index: 2;
  font-weight: 600;
  margin: 0;
  padding: 0;
}

h3.copyright__footer {
  text-align: left;
  font-family: var(--font-text);
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  padding: 0;
}

.terms__and-privacy--data {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  align-self: flex-start;
}

.copyright__footer a:hover,
.subtitle__footer a:hover {
  color: var(--secondary-color);
}

/* ============= services section ============= */

.img__desktop {
  display: block;
}

.section__page {
  padding-top: 220px;
}

.bg__first-card--service {
  margin: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
}

.bg__first-card--service img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.icon__diamond-container {
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  position: relative;
  margin-right: 8px;
}

.overlay__diamond-frame--left {
  width: 35px;
  height: 35px;
  background: transparent;
  border: 1.5px solid rgba(8, 118, 205, 255);
  transform: rotate(45deg);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: -30%;
  position: absolute;
}

.background__icon-diamond--info {
  width: 50px;
  height: 50px;
  background-color: rgba(8, 118, 205, 255);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s ease;
  z-index: 1;
}

.overlay__diamond-frame--right {
  width: 35px;
  height: 35px;
  background: transparent;
  border: 1.5px solid rgba(8, 118, 205, 255);
  transform: rotate(45deg);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: -30%;
  position: absolute;
}

.btn__blue:hover {
  color: #FFFFFF;
}

.btn__blue::after {
  content: "";
  background: #052352;
  position: absolute;
  z-index: -1;
  padding: 8px 10px;
  display: block;
  top: 0;
  bottom: 0;
  left: -110%;
  right: 110%;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  transform: skew(10deg);
}

.btn__blue:hover::after {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}


/* icons */

.info__list-header--content .icon__diamond-container .background__icon-diamond--info .material-symbols-outlined,
.footer__row .material-symbols-outlined,
.progress__bar-form--schedule .icon__diamond-container .background__icon-diamond--info .material-symbols-outlined {
  font-variation-settings:
    'FILL' 1,
    'wght' 300,
    'GRAD' 0,
    'opsz' 24
}

.info__list-header--content .icon__diamond-container .background__icon-diamond--info .material-symbols-outlined {
  color: #FFFFFF;
}


.footer__row .material-symbols-outlined {
  color: #FFFFFF;
}

.row__first-popular--post:hover *,
.row__secondary-popular--post:hover *,
.row__contact-email--footer:hover *,
.row__contact-location--footer:hover * {
  color: var(--secondary-color);
  cursor: pointer;
}


.row__location-header:hover *,
.row__contact-header:hover * {
  color: var(--third-color);
  cursor: pointer;
}

.support__agent-orange {
  display: none;
}

.navbar__logo-container:hover * .support__agent-orange {
  display: block;
}

.navbar__logo-container:hover * .support__agent-blue {
  display: none;
}

.navbar__logo-container:hover * {
  color: var(--secondary-color);
}


.icon__world-blue {
  display: none;
}

.language__options:hover * .icon__world-blue {
  display: block;
}

.language__options:hover * .icon__world-white {
  display: none;
}

.language__options:hover select {
  background: url(../../images/arrow-down-blue.webp) no-repeat right #0876CD !important;
  cursor: pointer;
  background-size: 11.5px 14px !important;
  max-width: 70px;
}


.progress__bar-form--schedule .icon__diamond-container .background__icon-diamond--info .material-symbols-outlined {
  color: #FFFFFF;
}

.data__schedule-content .material-symbols-outlined {
  color: #707070;
  font-size: 20px;
}

.appointment__confirmed-alert .btn__alert-modal--certificate {
  padding: 10px 150px;
}

.btn__container-modal--certificate .btn__newlatter-alert {
  padding: 10px 154px;
}


/* animation login */

.scale-up-bottom {
  -webkit-animation: scale-up-bottom 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  animation: scale-up-bottom 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

@-webkit-keyframes scale-up-bottom {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
  }
}

@keyframes scale-up-bottom {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
  }
}



.bottom__text-form {
  text-align: left;
  font-size: 15px;
  letter-spacing: 0px;
  color: #2E2E22;
  opacity: 1;
  margin: 15px 0;
}

.bottom__text-form a {
  text-decoration: underline;
}

.bottom__text-form a:hover {
  color: var(--secondary-color);
}


.btn__container-modal--certificate.btn__payment-successfully .border__btn {
  height: 50px;
  width: 341px;
  margin: 0;
}


.btn__payment-error .btn__form {
  padding: 10px 151px;
}

.btn__updated-password--container .border__btn,
.btn__appointment-container .border__btn {
  height: 50px;
  width: 365px;
  margin: 0;
}

.btn__updated-password--container .btn__updated-password,
.btn__appointment-container .btn__appointment-confirmed {
  padding: 10px 148px;
}


/* PDF */

.pspdfkit__container .pspdfkit__content {
  width: 100%;
  height: 100vh;
}

[lang="es"] .img__language {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 44px;
  width: auto;
  align-items: center;
  gap: 5px;
  margin-right: 15px;
}

.z-50 {
  z-index: 90 !important;
}

.edit__appointment-container {
  min-height: 100vh;
}


/* ============= Dropdown Nav ============= */

.nav__item-dropdown .dropdown__trigger .material-symbols-outlined {
  font-size: 15px;
  font-weight: 200;
}

.nav__item-dropdown .dropdown__trigger .expand__less-menu {
  display: none;
}

.nav__item-dropdown .dropdown__trigger .expand__more-menu {
  display: initial;
}

.nav__item-dropdown {
  position: relative;

  &:hover>.dropdown__menu-content {
    position: fixed;
    width: max-content;
    left: 0;
    right: 0;
    top: 185px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 15px;
    padding: 20px;
    border-radius: 25px;
    background-color: #FFFFFF;
    box-shadow: 0px 3px 6px #00000029;
    gap: 15px;
    opacity: 1;
    align-items: start;
    align-content: center;
    text-align: center;
  }

  &:hover>.dropdown__trigger .expand__less-menu {
    display: initial;
  }

  &:hover>.dropdown__trigger .expand__more-menu {
    display: none;
  }

  &:hover>.dropdown__menu-content .dropdown__menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: start;
    height: 100%;
  }
}

.dropdown__trigger {
  position: relative;

  &:focus+.dropdown__menu-content {
    position: fixed;
    width: max-content;
    left: 0;
    right: 0;
    top: 185px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 15px;
    padding: 20px;
    border-radius: 25px;
    background-color: #FFFFFF;
    box-shadow: 0px 3px 6px #00000029;
    gap: 15px;
    opacity: 1;
    align-items: start;
    align-content: center;
    text-align: center;
  }

  &:focus+.dropdown__menu-content .dropdown__menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: start;
    height: 100%;
  }
}

.dropdown__menu-content {
  text-align: left;
  position: absolute;
  top: 2.5rem;
  right: -10px;
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  width: 100%;

  a {
    color: var(--second-color);
  }
}

a.navbar__service-item {
  text-align: center;
  font-weight: bold;
  font-size: 17px;
  font-family: var(--text-title);
  letter-spacing: 0px;
  color: #052352;
  opacity: 1;
}

.dropdown__menu-content ul:not(:first-child) {
  border-left: 1px solid #00000029;
  padding-left: 5px;
}

.dropdown__menu-item a:hover {
  border-bottom: 5px solid #0876CD;
}

.scroll__active .nav__item-dropdown:hover>.dropdown__menu-content {
  top: 120px;
}

.hidden__item {
  display: none;
}