@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
:root {
  /* COLORS */
  --primary: #14264c;
  --secondary: #223e7c;
  --thrid: #5f90ff;
  --text: #7D7D7D;
  --footer: #2D2D2D;
  /* FONTWEIGHT */
  --normal: 400;
  --medium: 500;
  --semi-bold: 600;
  --bold: 700;
  /* FONT */
  --title-1: calc(16px * 4);
  --title-2: calc(16px * 3.125);
  --title-3: calc(16px * 2.1875);
  --title-4: calc(16px * 1.25);
  --title-5: calc(16px * 1.125);
  --title-6: calc(16px * 0.875);
  /* Z-INDEX */
  --index-10: 10;
  --index-20: 20;
  --index-30: 30;
  --index-40: 40;
  --index-100: 100;
  --index-1000: 1000;
  --index-10000: 10000;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins","san-serif";
  line-height: 1;
}

img {
  max-width: 100%;
  object-fit: cover;
  display: flex;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

textarea {
  resize: none;
}

[class*="l-container"] {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.l-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .l-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

/* ================ HEADER =============== */
.header {
  display: grid;
  grid-template-columns: 262px 1fr;
  grid-template-rows: 102px;
  height: 100%;
}

@media screen and (max-width: 1024px) {
  .header {
    grid-template-columns: 180px 1fr;
  }
}

@media screen and (max-width: 768px) {
  .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
  }
}

.header__main {
  height: 102px;
  width: 100%;
  z-index: var(--index-10000);
  border-bottom: 1px solid #eee;
}

@media screen and (max-width: 768px) {
  .header__main {
    position: fixed;
    top: 0;
    background-color: #fff;
    height: 70px;
  }
  .header__img{
    width: 250px;
  }
}

.header__img {
  background-color: #fff;
  position: relative;
}

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

.header__buttom--toggle {
  border: 1px solid #eee;
  padding: 6px;
  border-radius: 3px;
  display: none;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .header__buttom--toggle {
    display: flex;
  }
}

.header__buttom--toggle svg {
  fill: #000;
  width: 20px;
}

.header__content {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .header__content {
    height: 100vh;
    position: absolute;
    top: 70px;
    left: 100%;
    display: flex;
    flex-direction: column;
    transition: all .5s ease;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 100000;
  }
}

@media screen and (max-width: 414px){
  .header__main{
    height: 55px;
  }

  .header__img{
    width: 150px;
  }

  .header__content{
    top: 55px;
  }
}

.header__content.show__menu {
  left: 0;
}

.header__primary {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background-color: #fff;
  height: 40%;
}

@media screen and (max-width: 768px) {
  .header__primary {
    order: 2;
    padding: 10px;
    justify-content: center;
    height: initial;
  }
}

.header__icons {
  display: grid;
  grid-template-columns: 150px repeat(4, 50px);
  justify-items: center;
  margin-right: 2%;
}

.header__icons .header__icon {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.header__icons .header__icon:not(:last-child) .icon {
  background-color: var(--secondary);
  border-radius: 50%;
  padding: 8px;
}

.header__icons .header__icon .icon {
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__icons .header__icon .icon svg {
  fill: #fff;
  width: 20px;
  height: auto;
}

.header__icons .header__icon:last-child {
  border-left: 1px solid var(--secondary);
}

.header__icons .header__icon:last-child .icon {
  position: relative;
}

.header__icons .header__icon:last-child .icon svg {
  fill: none;
  width: auto;
}

.header__icons .header__icon--count {
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: var(--thrid);
  border-radius: 50%;
  top: 0;
  right: 8px;
  font-size: 10px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__menu {
  background-color: var(--secondary);
  display: grid;
  grid-template-columns: 3fr 1fr;
  justify-content: flex-end;
  height: 60%;
}

@media screen and (max-width: 1024px) {
  .header__menu {
    grid-template-columns: 3fr 2fr;
  }
}

@media screen and (max-width: 768px) {
  .header__menu {
    grid-template-columns: 1fr;
    height: initial;
  }
}

.menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .menu {
    flex-direction: column;
    order: 2;
  }
}

@media screen and (max-width: 768px) {
  .menu__item {
    width: 100%;
  }
}

.menu__item{
  position: relative;
}

.menu__item:hover .submenu{
  display: block;
}

.menu__link {
  color: #fff;
  padding: 23px 20px;
  text-transform: uppercase;
  font-size: var(--title-6);
  letter-spacing: 0.2em;
  display: block;
}

@media screen and (max-width: 768px) {
  .menu__link {
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(238, 238, 238, 0.4);
  }
}

@media screen and (max-width: 1024px) {
  .menu__link {
    font-size: 10px;
  }
}

.menu__link:hover {
  color: var(--thrid);
}

/* ======== SUBMENU ========== */
.submenu{
  position: absolute;
  width: 200%;
  z-index: 1000;
  left: -50%;
  background-color: var(--secondary);
  right: 50%;
  display: none;
}

.submenu__item{
  border-bottom: 1px solid rgba(238, 238, 238, 0.4);
}

.submenu__link{
  padding: 15px;
  color: #FFF;
  font-size: var(--title-6);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
  text-align: center;
}

.submenu__link:hover{
  color: var(--thrid);
}

@media screen and (max-width: 1024px) {
  .submenu__link {
    font-size: 10px;
  }
}

@media screen and (max-width: 768px) {
  .submenu {
    position: relative;
    left: 0;
  }

  .submenu__item{
    padding-left: 20px;
  }

  .submenu__link{
    text-align: left;
  }
}

.menu__search {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10%;
  cursor: pointer;
  transition: all .5s ease;
}



@media screen and (max-width: 768px) {
  .menu__search {
    padding: 20px;
    justify-content: flex-start;
    display: none;
  }
}

.menu__search svg {
  width: 25px;
  height: 25px;
}

@media screen and (max-width: 1024px) {
  .menu__search svg {
    width: 20px;
    height: 20px;
  }
}

.menu__input {
  align-items: center;
  padding-right: 10px;
  position: relative;
  display: none;
  transition: all .5s ease;
}

@media screen and (max-width: 768px) {
  .menu__input {
    padding-right: 0;
    border-bottom: 1px solid rgba(238, 238, 238, 0.4);
    display: flex !important;
  }
}

.menu__input--close {
  position: absolute;
  right: 10px;
  cursor: pointer;
  padding: 10px;
  line-height: .6;
  background-color: #eee;
  border-radius: 50%;
}

@media screen and (max-width: 768px) {
  .menu__input--close {
    right: 5px;
  }
}

.menu__input--search {
  display: block;
  width: 100%;
  padding: 10px 40px 10px 10px;
  outline: none;
  border: none;
  transition: all .5s ease;
}

@media screen and (min-width: 1024px) {
  .menu__input--search {
    position: absolute;
    right: 10px;
    width: 300px;
  }
}

@media screen and (max-width: 1024px) {
  .menu__input--search {
    padding: 15px;
    padding-right: 40px;
  }
}

.hiden__body {
  overflow: hidden;
}

.sp__main {
  position: absolute;
  top: 61px;
  right: 10px;
  z-index: var(--index-10000);
  background-color: #fff;
  width: calc(100% - 10px);
  height: 400px;
  overflow: auto;
  border: 1px solid #eee;
  border-width: 0 1px 1px;
}

@media screen and (min-width: 1024px) {
  .sp__main {
    width: 300px;
  }
}

@media screen and (max-width: 1024px) {
  .sp__main {
    width: 300px;
  }
}

@media screen and (max-width: 768px) {
  .sp__main {
    top: 45px;
    right: 0;
    width: 100%;
    height: 400px;
  }
}

.sp__item {
  padding: 10px;
  display: flex;
  align-items: center;
  cursor: pointer;
  border-top: 1px solid #eee;
}

.sp__item--img {
  width: 25px;
  margin-right: 10px;
}

.sp__item--text {
  font-size: var(--title-6);
  color: var(--text);
}

.sp__item:hover {
  background-color: var(--secondary);
}

.sp__item:hover .sp__item--text {
  color: #fff;
}

/* ===================== BANNER =========  */
.banner {
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: var(--index-10);
}

.banner__main {
  background-image: url("../img/nosotros.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 300px;
  width: 100%;
  position: relative;
}

@media screen and (max-width: 768px) {
  .banner__main {
    margin-top: 55px;
  }
}

.banner__main:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(0deg, rgba(34, 62, 124, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}

.banner__title {
  margin-bottom: 20px;
}

.banner__navigation--item {
  color: #fff;
}

.banner__navigation--item:first-child {
  padding-right: 20px;
  border-right: 2px solid #fff;
}

.banner__navigation--item:last-child {
  padding-left: 20px;
  color: var(--thrid);
}

.history {
  /*display: flex;*/
}

.history__main {
  background-color: #fff;
}

.history__img {
  width: 20%;
    margin:auto;
    text-align:center;
}

@media screen and (max-width: 768px) {
  .history__img {
    display: none;
  }
}

.history__content {
  /*width: 70%;*/
  width: 100%;
  margin-bottom: 50px;
}

@media screen and (max-width: 1024px) {
  .history__content {
    width: 100%;
    margin-bottom: 0;
  }
}

.history__content--title {
  position: relative;
  margin-bottom: 20px;
  text-align:center;
}

.history__content--title:before {
  content: "NUESTRA";
  position: absolute;
  top: -20px;
  font-size: 16px;
  letter-spacing: 4px;
  color: var(--text);
  width: 100%;
display: flex;
justify-content: center;
}

@media screen and (max-width: 1024px) {
  .history__content--title:before {
    font-size: var(--title-6);
  }
}

.history__content--description {
  color: var(--text-dark);
  line-height: 30px;
}

@media screen and (max-width: 1024px) {
  .history__content--description {
    width: 100%;
    font-size: var(--title-6);
  }
}

.history__content--button {
  padding: 10px 20px;
  letter-spacing: 0.3em;
  font-weight: var(--semi-bold);
  display: inline-block;
  position: relative;
  font-size: 12px;
  cursor: pointer;
  line-height: 12px;
  background-color: var(--secondary);
  color: #fff;
  margin-top: 50px;
}

@media screen and (min-width: 768px) {
  .history__content--button {
    font-size: var(--title-6);
  }
}

.history__content--button:after {
  content: ">";
  margin-left: 15px;
  font-size: 20px;
  vertical-align: middle;
}

.history__content--button:active {
  transform: scale(0.99);
}

.map__main {
  background-color: #eee;
}

.map__title {
  margin-bottom: 70px;
  position: relative;
}

.map__title:before {
  content: "NUESTROS";
  position: absolute;
  top: -20px;
  font-size: 16px;
  letter-spacing: 4px;
  color: var(--text);
  left: 0;
  right: 0;
}

.map__title.mapa{
  text-align: right;
}

.map__title.mapa:before {
  content: "CONOCE";
  position: absolute;
  top: -20px;
  font-size: 16px;
  letter-spacing: 4px;
  color: var(--text);
  left: 0;
  right: 0;
  text-align: right;
}

@media screen and (max-width: 1024px) {
  .map__title:before {
    font-size: var(--title-6);
  }
}

.map__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(367px, 1fr));
  grid-gap: 40px;
}

.map__content--item {
  display: grid;
  grid-template-columns: 80px 1fr;
  grid-gap: 20px;
  margin-bottom: 80px;
}

.map__content--img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: rgba(34, 62, 124, 0.82);
  border-radius: 50%;
  padding: 20px;
}

.map__content--img img {
  position: relative;
}

.map__content--img::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  background-color: var(--secondary);
  border-radius: 50%;
}

.map__content--text h5 {
  margin-bottom: 10px;
  font-size: 25px;
}

.map__content--text p {
  line-height: 30px;
  color: var(--text-dark);
}

@media screen and (max-width: 1024px) {
  .map__content--text p {
    font-size: var(--title-6);
    line-height: 25px;
  }
}

.map__content--map__mapa {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 1024px) {
  .map__content--map__mapa {
    padding-left: 100px;
    padding-right: 100px;
  }
}

@media screen and (max-width: 1440px) {
  .map__content--map__mapa {
    padding: 0;
  }
}

.map__content--map__mapa:before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background-color: #e6e6e6;
  border-radius: 50%;
}

@media screen and (max-width: 768px) {
  .map__content--map__mapa:before {
    width: 300px;
    height: 300px;
  }
}

.map__content--map__mapa:after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background-color: #dadada;
  border-radius: 50%;
}

@media screen and (max-width: 768px) {
  .map__content--map__mapa:after {
    width: 200px;
    height: 200px;
  }
}

.map__content--map__mapa img {
  width: 100%;
  display: flex;
  position: relative;
  z-index: var(--index-10);
}

.map__content--menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 5px;
}

.experiencie__main {
  background-color: #fff;
}

.experiencie__first {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(367px, 1fr));
  grid-gap: 50px;
  margin-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .experiencie__first .experiencie__img {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .experiencie__first .experiencie__content {
    padding: 0;
  }
}

.experiencie__first .experiencie__content--title {
  position: relative;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 20px;
}

@media screen and (max-width: 1024px) {
  .experiencie__first .experiencie__content--title:before {
    font-size: var(--title-6);
  }
}

.experiencie__first .experiencie__content--description {
  line-height: 30px;
  color: var(--text-dark);
  margin-bottom: 60px;
}

@media screen and (max-width: 1024px) {
  .experiencie__first .experiencie__content--description {
    font-size: var(--title-6);
    margin-bottom: 50px;
  }
}

.experiencie__first .experiencie__content--img {
  position: relative;
  text-align: center;
  display: flex;
  justify-content: center;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .experiencie__first .experiencie__content--img {
    width: 80%;
  }
}

.experiencie__first .experiencie__content--img:after {
  content: "2015 - 2016";
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  color: var(--secondary);
  font-weight: var(--bold);
  letter-spacing: 0.1em;
}

.experiencie__secondary .experiencie__content--title {
  position: relative;
  margin-bottom: 20px;
}

.experiencie__secondary .experiencie__content--description {
  line-height: 30px;
  color: var(--text-dark);
}

@media screen and (max-width: 1024px) {
  .experiencie__secondary .experiencie__content--description {
    font-size: var(--title-6);
  }
}

.politica__main {
  background-color: #eee;
}

.politica__title {
  margin-bottom: 30px;
}

.politica__description {
  line-height: 30px;
  color: var(--text-dark);
}

@media screen and (max-width: 1024px) {
  .politica__description {
    font-size: var(--title-6);
  }
}

/* ===================  FOOTER ========================== */
.footer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  padding: 64px 0;
  font-size: 12px;
}

@media screen and (max-width: 768px) {
  .footer {
    grid-template-columns: 1fr;
    grid-gap: 40px;
  }
}

.footer__main {
  background-color: var(--footer);
  position: relative;
  width: 100%;
}

.footer__item:first-child {
  display: flex;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .footer__item:not(:last-child) {
    border-right: 2px solid #fff;
  }
}

@media screen and (max-width: 768px) {
  .footer__item:first-child {
    order: 1;
  }
}

.footer__item--title {
  color: #fff;
  font-size: var(--title-4);
  font-weight: var(--semi-bold);
  margin-bottom: 30px;
}

.footer__item--text {
  color: #fff;
  line-height: 20px;
}

.footer__item--links {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 28px;
}

@media screen and (max-width: 768px) {
  .footer__item--links {
    grid-template-columns: 1fr 1fr;
  }
}

.footer__item--link {
  cursor: pointer;
  color: #fff;
}

.footer__item--link:hover {
  color: var(--secondary);
}

.footer__item--icons {
  display: flex;
  align-items: center;
  height: 100%;
}

.footer__item--icon {
  cursor: pointer;
}

.footer__item--icon svg {
  width: 20px;
  height: 20px;
}

.footer__item--icon:not(:last-child) {
  margin-right: 20px;
  padding-right: 20px;
  border-right: 2px solid #fff;
}

@media screen and (min-width: 768px) {
  .footer__item--icon:not(:last-child) {
    padding-left: 20px;
  }
}

.title-1 {
  font-size: var(--title-1);
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .title-1 {
    font-size: var(--title-2);
  }
}

.title-2-primary {
  font-size: var(--title-2);
  color: #fff;
}

.title-2-secondary {
  font-size: var(--title-2);
  color: var(--secondary);
}

@media screen and (max-width: 1024px) {
  .title-2-secondary {
    font-size: var(--title-3);
  }
}

.title-3-primary {
  font-size: var(--title-3);
  color: #fff;
}

.title-3-primary-secondary {
  font-size: var(--title-3);
  color: #fff;
}

.title-3-secondary {
  font-size: var(--title-3);
  color: var(--secondary);
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

.space-between{
  justify-content: space-between;
}

.form {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 20px;
  width: 100%;
}

.form__item--label {
  color: #fff;
  font-weight: var(--semi-bold);
  margin-bottom: 10px;
  display: block;
}

.form__item--input {
  outline: none;
  padding: 10px;
  border: 1px solid #ddd;
  display: block;
  width: 100%;
}

.mapa {
  width: 100%;
  z-index: var(--index-10);
}

.mapa__item {
  position: relative;
}

.mapa__item--path {
  fill: #fff;
  stroke: #ddd;
  stroke-width: 3px;
}

.mapa__item > .mapa__item--path {
  fill: #a70000ed;
  stroke: #fff;
}

.mapa__item > .mapa__item--path.active {
  fill: #690404ed;
  stroke-width: 7px;
}

.mapa__modal {
  position: absolute;
  z-index: var(--index-10);
  background-color: rgba(34, 62, 124, 0.78);
  padding: 10px 20px;
  width: 208px;
  border-radius: 10px;
  color: #fff;
  text-align: center;
}

.mapa__modal--title {
  font-weight: var(--semi-bold);
  font-size: var(--title-5);
  margin-bottom: 10px;
}

.mapa__modal--description {
  font-size: 11px;
  line-height: 20px;
}

.mapa__modal:after {
  position: absolute;
  bottom: -20px;
  top: 10px;
  right: -20px;
  width: 20px;
  height: 20px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid rgba(34, 62, 124, 0.78);
}

.mapa__modal1{
    position: absolute;
    left: 1349.168701171875px;
    top: 2107.33740234375px;
    bottom: 360.9829406738281px;
    right: 1643.0611572265625px;
    width: 15px;
    height: 15px;
    background-color: #a70000ed;
    border-radius: 50%;
    z-index: 100;
}

@media screen and (max-width: 1366px) {
  .mapa__modal1{
    /*position: absolute;*/
    left: 969.0218505859375px;
    top: 2095.043701171875px;
    bottom: 223.32594299316406px;
    right: 1237.13134765625px;
    }
}

@media screen and (max-width: 1024px) {
  .mapa__modal1{

        left: 725.0718994140625px;
    top: 2045.143798828125px;
    bottom: 324.624116897583px;
    right: 927.9212646484375px;
    }
}

@media screen and (max-width: 768px) {
  .mapa__modal1{
      
        left: 341.38673400878906px;
    top: 2545.773468017578125px;
    bottom: 797.423828125px;
    right: 659.2292633056641px;
    }
}
@media screen and (max-width: 375px) {
  .mapa__modal1{
    left: 175.21719360351562px;
    top: 3220.56561279296875px;
    bottom: 405.842041015625px;
    right: 348.38800048828125px;
    }
}

    