@charset "UTF-8";
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 
   ADIMEDIA: Debe contener todos los elementos comunes de armazon/estructura/columnas que afecten tanto a la home como a las páginas interiores 
   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
body {
  display: -ms-grid;
  display: grid;
      grid-template-areas: "header" "content" "footer";
  -ms-grid-columns: minmax(0, 1fr);
  grid-template-columns: minmax(0, 1fr);
  -ms-grid-rows: auto 1fr auto;
  grid-template-rows: auto 1fr auto;
  height: 100vh;
}

main {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: content;
}

header {
  background-image: url(../images/header-bck.jpg);
  background-position: center;
  position: relative;
}
header:before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  width: 100%;
  display: block;
  background: url(../images/header-lineas.png) top left no-repeat;
  opacity: 0.3;
}
header:after {
  position: absolute;
  content: "";
  bottom: 0;
  width: 100%;
  height: 3.625rem;
  display: block;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(80%, rgba(0, 0, 0, 0.6)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 80%);
}

.header--home {
  background-image: url(../images/header-bck--home.jpg);
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: cover;
}

.header__degradadoTop {
  background: -webkit-gradient(linear, left top, left bottom, from(#000000), color-stop(80%, rgba(0, 0, 0, 0)));
  background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 80%);
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
}

.header__top {
  position: relative;
  text-align: right;
  z-index: 1;
}

.header__ppal {
  position: relative;
  z-index: 2;
  padding-top: 1.5rem;
  padding-bottom: 4.5rem;
}
.header--home .header__ppal {
  padding-bottom: 0;
}

.menuLang__lista {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0.75rem 0;
  padding: 0;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.menuLang__lista > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 25px;
  height: 25px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  text-decoration: none;
  border: 1px solid white;
  font-size: 0.75rem;
  border-radius: 25px;
  margin: 3px;
}
.menuLang__lista > li > a:hover {
  background-color: var(--colorPrimary);
  border-color: var(--colorPrimary);
}
.menuLang__lista > li.lang-active > a {
  background-color: var(--colorPrimary);
  border-color: var(--colorPrimary);
}

.menuPpal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.menuPpal a, .menuPpal span {
  display: block;
  color: white;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1.125rem;
  line-height: 1.375rem;
  padding: 0 0.563rem;
}
.menuPpal a:hover {
  color: var(--colorPrimary);
}
.menuPpal > .menuPpal__item {
  border-left: 1px solid white;
  -ms-flex-preferred-size: 9rem;
      flex-basis: 9rem;
  position: relative;
}
.menuPpal > .menuPpal__item > ul {
  display: none;
  position: absolute;
  background-color: black;
  padding-top: 1.563rem;
  padding-bottom: 1.563rem;
  top: 42px;
  left: -1px;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
          box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
}
.menuPpal > .menuPpal__item > ul > .menuPpal__item {
  margin: 0 1.563rem;
  padding-right: 1.563rem;
  -ms-flex-preferred-size: 9rem;
      flex-basis: 9rem;
  position: relative;
}
.menuPpal > .menuPpal__item > ul > .menuPpal__item a, .menuPpal > .menuPpal__item > ul > .menuPpal__item span {
  color: var(--colorPrimary);
  font-size: 1rem;
  line-height: 1.375rem;
  padding: 0.25rem 0.563rem;
}
.menuPpal > .menuPpal__item > ul > .menuPpal__item a:hover, .menuPpal > .menuPpal__item > ul > .menuPpal__item span:hover {
  color: white;
}
.menuPpal > .menuPpal__item > ul > .menuPpal__item:hover > ul {
  display: block;
}
.menuPpal > .menuPpal__item:hover > ul {
  display: block;
}

.homeClaim {
  height: 45rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  position: relative;
  z-index: 1;
  padding: 5rem;
}
@media (max-width: 991px) {
  .homeClaim {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    height: 35rem;
  }
}

.homeClaim--videoBck {
  height: auto;
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.homeClaim__wrapper {
  border-left: 6px solid white;
  padding-left: 2rem;
  width: 90%;
}
@media (min-width: 992px) {
  .homeClaim__wrapper {
    width: 50%;
  }
}

.homeClaim__title {
  font-size: 4.5rem;
  line-height: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .homeClaim__title {
    font-size: 3rem;
    line-height: 2.625rem;
    margin-bottom: 1rem;
  }
}

.homeClaim__txt {
  font-size: 1.5rem;
  line-height: 1.75rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.homeClaim__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}

.masonry-item {
  width: 31.33%;
  margin: 1%;
}
@media (max-width: 1399px) {
  .masonry-item {
    width: 48%;
  }
}
@media (max-width: 991px) {
  .masonry-item {
    width: 98%;
    margin-bottom: 1.5rem;
  }
}

.cursos__form {
  border: 1px solid #C8C8C8;
  padding: 2rem 4rem;
}
@media (max-width: 991px) {
  .cursos__form {
    padding: 2rem;
  }
}

.cursos__lista {
  list-style: none;
  padding: 0;
  margin: 0 -1%;
}

.cursos__item {
  border: 1px solid #C8C8C8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
.cursos__item:hover {
  -webkit-box-shadow: 0px 0px 0px 5px rgb(0, 0, 0);
          box-shadow: 0px 0px 0px 5px rgb(0, 0, 0);
}
.cursos__item:not(:has(.cursos__img)) {
  padding-top: 3rem;
}

.cursos__item--gris {
  background-color: #ECECEC;
  border-color: #ECECEC;
}

.cursos__item--verde {
  background-color: var(--colorPrimary);
  border-color: var(--colorPrimary);
}

.cursos__content {
  padding: 2.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (max-width: 499px) {
  .cursos__content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.cursos__title {
  font-size: 2.25rem;
  line-height: 1;
  font-weight: bold;
}

.cursos__url {
  text-decoration: none;
  color: var(--colorText);
}
.cursos__url:hover {
  color: var(--colorText);
}
.cursos__url:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
}

.cursos__date {
  position: absolute;
  top: -1px;
  right: -1px;
  height: 70px;
  min-width: 70px;
  background-color: black;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0.75rem;
}

.cursos__dateItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  line-height: 1.5rem;
  padding: 0 0.375rem;
  border-left: 1px solid white;
}
.cursos__dateItem:first-child {
  border: none;
}
.cursos__dateItem small {
  font-size: 1rem;
  line-height: 1;
}

.cursos__years {
  position: absolute;
  top: -1px;
  right: -1px;
  background-color: black;
  color: white;
  padding: 0.75rem 1rem;
}

.cursos__yearsItem {
  border-bottom: 1px solid #7B7B7B;
}
.cursos__yearsItem:last-child {
  border: none;
}

.cursos__datos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
}

.cursos__datosType {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  font-size: 0.875rem;
  padding-right: 0.75rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-right: 1px solid rgba(0, 0, 0, 0.3);
}
.cursos__datosType:before {
  display: block;
  content: "";
  width: 32px;
  height: 30px;
  background-repeat: no-repeat;
  background-position: center center;
}
.cursos__datosType:last-child {
  padding-right: 0;
  border: none;
}

.cursos__datosType--hour:before {
  background-image: url(../images/cursos-reloj.svg);
}

.cursos__datosType--lang:before {
  background-image: url(../images/cursos-idioma.svg);
}

.cursos__datosType--online:before {
  background-image: url(../images/cursos-ordenador.svg);
}

.cursos__datosType--presencial:before {
  background-image: url(../images/cursos-persona.svg);
}

.cursos__datosType--maps:before {
  background-image: url(../images/cursos-maps.svg);
}

.cursos__desc {
  font-size: 1.125rem;
}

.cursos__labels {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.438rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 0.688rem;
  line-height: 1;
}

.cursos__label {
  display: block;
  background-color: #000;
  color: white;
  text-transform: uppercase;
  border-radius: 20px;
  text-decoration: none;
  padding: 0.188rem 0.625rem;
}
.cursos__label:hover {
  color: black;
  background-color: var(--colorPrimary);
}

.cursos__button {
  position: relative;
  z-index: 1;
}

.cursos__img {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
  margin: -1px;
  height: 310px;
}
.cursos__img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.cursos__status {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--colorBlue);
  color: white;
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 1;
  margin: -1px;
  padding: 1.125rem;
}

.news__lista {
  list-style: none;
  padding: 0;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, calc(25% - 15px)));
  gap: 20px;
}
@media (max-width: 1199px) {
  .news__lista {
    grid-template-columns: repeat(auto-fit, minmax(250px, calc(50% - 10px)));
  }
}
@media (max-width: 565px) {
  .news__lista {
    grid-template-columns: repeat(auto-fit, minmax(250px, 100%));
  }
}

.news__item {
  border: 1px solid #C8C8C8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
.news__content {
  padding: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.news__title {
  font-size: 1.625rem;
  line-height: 1;
  font-weight: bold;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.news__title a {
  color: black;
  text-decoration: none;
}

.news__labels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.438rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 0.688rem;
  line-height: 1;
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}

.news__label {
  display: block;
  background-color: #33CCCC;
  color: white;
  text-transform: uppercase;
  border-radius: 20px;
  text-decoration: none;
  padding: 0.188rem 0.625rem;
}

.news__img {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
  margin: -1px;
  aspect-ratio: 338/223;
}
.news__img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 
   ADIMEDIA: Debe contener todos los elementos comunes de contenido que afecten tanto a la home como a las páginas interiores 
   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --fontDefault: "Source Sans 3", sans-serif;
  --colorText: black;
  --colorPrimary: #B1B100;
  --colorBlue: #33CCCC;
}

body,
html {
  scroll-behavior: smooth;
}

body,
html,
button,
input,
select,
textarea {
  font-family: var(--fontDefault);
  color: var(--colorText);
}

.mod__title {
  font-size: 3.75rem;
  line-height: 3rem;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  text-align: center;
  margin: 5rem 0 2rem 0;
}
.mod__title:after {
  display: block;
  content: "";
  width: 63px;
  height: 6px;
  background-color: black;
}
@media (max-width: 991px) {
  .mod__title {
    font-size: 2.5rem;
    gap: 0.5rem;
  }
}

.mh-auto {
  min-height: auto !important;
}

.banner__tipo1 {
  position: relative;
  background-color: black;
}

.banner__tipo1Claim {
  height: 45rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  position: relative;
  z-index: 1;
  padding: 5rem;
}
@media (max-width: 991px) {
  .banner__tipo1Claim {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    height: 35rem;
  }
}

.banner__tipo1Claim--videoBck {
  height: auto;
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.banner__tipo1Claim__wrapper {
  border-left: 6px solid white;
  padding-left: 2rem;
  width: 90%;
}
@media (min-width: 992px) {
  .banner__tipo1Claim__wrapper {
    width: 50%;
  }
}

.banner__tipo1Claim__title {
  font-size: 4.5rem;
  line-height: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .banner__tipo1Claim__title {
    font-size: 3rem;
    line-height: 2.625rem;
    margin-bottom: 1rem;
  }
}

.banner__tipo1Claim__txt {
  font-size: 1.5rem;
  line-height: 1.75rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.banner__tipo1Claim__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}

.banner__tipo1Img {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.banner__tipo1Img:before {
  display: block;
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: black;
  opacity: 0.5;
}
.banner__tipo1Img img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}

.banner__tipo1Video {
  position: absolute;
  z-index: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.banner__tipo2 {
  min-height: 485px;
  padding: 5rem 0;
  position: relative;
  background: url(../images/banner-tipo2-bck-default.jpg) center no-repeat;
  background-size: cover;
}
.banner__tipo2:not(.banner__tipo2--innovacion) {
  color: white;
}

.banner__tipo2Title {
  text-transform: uppercase;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1rem;
  letter-spacing: 0.35em;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 10;
}
@media (max-width: 991px) {
  .banner__tipo2Title {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.banner__tipo2Subtitle {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 2.375rem;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .banner__tipo2Subtitle {
    font-size: 2.25rem;
    line-height: 2.125rem;
  }
}

.banner__tipo2Cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 10;
}
@media (max-width: 991px) {
  .banner__tipo2Cont {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

.banner__tipo2Cont1 {
  width: 40%;
  padding-right: 1.5rem;
  border-right: 6px solid white;
}
@media (max-width: 991px) {
  .banner__tipo2Cont1 {
    padding-right: 0;
    border: none;
    width: auto;
  }
}

.banner__tipo2Cont2 {
  width: 60%;
  padding-left: 1.5rem;
  border-left: 6px solid white;
  margin-left: -6px;
  font-family: Arial;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.875rem;
}
@media (max-width: 991px) {
  .banner__tipo2Cont2 {
    width: auto;
    margin-left: 0;
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.banner__tipo2--innovacion {
  background-color: #CCCC33;
  background-image: url(../images/inno-europa.svg);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: auto;
}
.banner__tipo2--innovacion:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  background: url(../images/inno.svg) center right no-repeat;
  background-size: cover;
  max-width: 50%;
}
.banner__tipo2--innovacion:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  background: url(../images/inno-bck.svg) bottom center no-repeat;
  background-size: cover;
  mix-blend-mode: color-dodge;
}
.banner__tipo2--innovacion .banner__tipo2Cont1 {
  width: 30%;
  border-color: black;
}
.banner__tipo2--innovacion .banner__tipo2Cont2 {
  width: 50%;
  border-color: black;
}
@media (max-width: 991px) {
  .banner__tipo2--innovacion {
    padding-bottom: 18rem;
    background-position: bottom 20px right;
  }
  .banner__tipo2--innovacion .banner__tipo2Cont1 {
    width: auto;
  }
  .banner__tipo2--innovacion .banner__tipo2Cont2 {
    width: auto;
  }
}

footer {
  background-color: #454545;
  padding: 1.625rem 0;
  color: white;
}
footer a {
  color: white;
}
footer a:hover {
  color: white;
  text-decoration: none;
}

.footer__wrapper, .footer__partners {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
}
@media (max-width: 1399px) {
  .footer__wrapper, .footer__partners {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 3rem;
  }
}
@media (max-width: 991px) {
  .footer__wrapper, .footer__partners {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.footer__partners {
  gap: 3rem;
}

.footer__logoppal {
  padding: 1.125rem 0;
}

.footer__title {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 0 0.5rem 0;
}

.footer__contacto, .footer__enlaces {
  font-size: 0.75rem;
  line-height: 1.5rem;
  border-left: 1px solid white;
  padding-left: 1.125rem;
  margin: 0.75rem 0;
}
@media (max-width: 991px) {
  .footer__contacto, .footer__enlaces {
    border: none;
    padding: 0;
    text-align: center;
  }
}

.footer__contactoInfo {
  margin-bottom: 0;
}

.footer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 991px) {
  .footer__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.5rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 2rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer__menu li {
    border-left: 1px solid white;
    padding-left: 0.5rem;
    line-height: 1;
  }
  .footer__menu li:first-child {
    border: none;
  }
}

.btn {
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border-radius: 100px;
  line-height: 1;
  font-family: Arial, Helvetica, sans-serif;
}
.btn:hover {
  background-color: black;
  border-color: black;
  color: white;
}

.btn-outline-light {
  color: white;
  border-color: white;
}

.btn-success {
  background-color: var(--colorPrimary);
  border-color: var(--colorPrimary);
  color: black;
}

.btn-link {
  color: black;
}

.bg-light {
  background-color: #ECECEC !important;
}

.form-select, .form-control {
  color: #7B7B7B;
  border: 1px solid #C8C8C8;
  background-color: #ECECEC;
  font-size: 0.875rem;
  line-height: 1;
  border-radius: 2px;
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
  padding-left: 1.375rem;
  position: relative;
}

.form-control {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.form-select {
  background-image: url(../images/select.svg);
}