/* FONTS */
@font-face {
  font-family: "Myriad Pro Regular";
  font-style: normal;
  font-weight: normal;
  src: local("Myriad Pro Regular"),
    url("../fonts/myriad/MYRIADPRO-REGULAR.woff") format("woff");
}

@font-face {
  font-family: "Myriad Pro Condensed";
  font-style: normal;
  font-weight: normal;
  src: local("Myriad Pro Condensed"),
    url("../fonts/myriad/MYRIADPRO-COND.woff") format("woff");
}

@font-face {
  font-family: "Myriad Pro Condensed Italic";
  font-style: normal;
  font-weight: normal;
  src: local("Myriad Pro Condensed Italic"),
    url("../fonts/myriad/MYRIADPRO-CONDIT.woff") format("woff");
}

@font-face {
  font-family: "Myriad Pro Light";
  font-style: normal;
  font-weight: normal;
  src: local("Myriad Pro Light"),
    url("../fonts/myriad/MyriadPro-Light.woff") format("woff");
}

@font-face {
  font-family: "Myriad Pro Semibold";
  font-style: normal;
  font-weight: normal;
  src: local("Myriad Pro Semibold"),
    url("../fonts/myriad/MYRIADPRO-SEMIBOLD.woff") format("woff");
}

@font-face {
  font-family: "Myriad Pro Semibold Italic";
  font-style: normal;
  font-weight: normal;
  src: local("Myriad Pro Semibold Italic"),
    url("../fonts/myriad/MYRIADPRO-SEMIBOLDIT.woff") format("woff");
}

@font-face {
  font-family: "Myriad Pro Bold Condensed";
  font-style: normal;
  font-weight: normal;
  src: local("Myriad Pro Bold Condensed"),
    url("../fonts/myriad/MYRIADPRO-BOLDCOND.woff") format("woff");
}

@font-face {
  font-family: "Myriad Pro Bold";
  font-style: normal;
  font-weight: normal;
  src: local("Myriad Pro Bold"),
    url("../fonts/myriad/MYRIADPRO-BOLD.woff") format("woff");
}

@font-face {
  font-family: "Myriad Pro Bold Italic";
  font-style: normal;
  font-weight: normal;
  src: local("Myriad Pro Bold Italic"),
    url("../fonts/myriad/MYRIADPRO-BOLDIT.woff") format("woff");
}

@font-face {
  font-family: "Myriad Pro Bold Condensed Italic";
  font-style: normal;
  font-weight: normal;
  src: local("Myriad Pro Bold Condensed Italic"),
    url("../fonts/myriad/MYRIADPRO-BOLDCONDIT.woff") format("woff");
}
* {
  outline: none !important;
  font-family: "Myriad Pro Regular";
}
/*UTILITIES*/
.myriad-bold {
  font-family: "Myriad Pro Bold" !important;
}
.myriad-light {
  font-family: "Myriad Pro Light" !important;
}
.background-red {
  background-color: #cd3035;
}
.background-blue {
  background-color: #111b2d;
  color: white;
}
.background-light-blue {
  background-color: rgb(25, 35, 62) !important;
  color: white;
}
.overflow-hidden {
  overflow: hidden !important;
}
.decoration-none {
  text-decoration: none !important;
}
/*UTILITIES*/

.contentNav {
  background-color: #111b2d;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 99999;
  padding: 1rem 1rem;
  width: 100vw;
  position: fixed;
}
.contentNav img {
  margin-top: 0.5rem;
  width: 10rem;
}
#contactoItem {
  display: initial;
}
.contentContactoNav {
  display: none;
}
#idiomaItem {
  display: flex;
  align-items: center;
  justify-content: start;
}
#imgWhatsapp {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 1.3rem;
  right: 0.5rem;
  z-index: 10;
}
#imgWhatsapp img {
  width: 3rem;
  margin: 0.2rem;
}
/* MENU
========================================== */
.menu {
  width: 50px;
  height: 50px;
  position: fixed;
  z-index: 21;
  right: 1%;
}
.menu span {
  position: relative;
  margin-top: 9px;
  margin-bottom: 9px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -15px;
  margin-top: -1.5px;
}
.menu span,
.menu span::before,
.menu span::after {
  display: block;
  width: 26px;
  right: 0;
  height: 3px;
  background-color: #fff;
  outline: 1px solid transparent;
  -webkit-transition-property: background-color, -webkit-transform;
  -moz-transition-property: background-color, -moz-transform;
  -o-transition-property: background-color, -o-transform;
  transition-property: background-color, transform;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.menu span::before,
.menu span::after {
  position: absolute;
  content: "";
}
.menu span::before {
  top: -9px;
  width: 26px;
}
.menu span::after {
  top: 9px;
  /* width: 33px; */
}
.menu.clicked span {
  background-color: transparent;
}
.menu.clicked span::before {
  -webkit-transform: translateY(9px) rotate(45deg);
  -moz-transform: translateY(9px) rotate(45deg);
  -ms-transform: translateY(9px) rotate(45deg);
  -o-transform: translateY(9px) rotate(45deg);
  transform: translateY(9px) rotate(45deg);
  width: 27px;
}
.menu.clicked span::after {
  -webkit-transform: translateY(-9px) rotate(-45deg);
  -moz-transform: translateY(-9px) rotate(-45deg);
  -ms-transform: translateY(-9px) rotate(-45deg);
  -o-transform: translateY(-9px) rotate(-45deg);
  transform: translateY(-9px) rotate(-45deg);
}
.menu.clicked span:before,
.menu.clicked span:after {
  background-color: #ffffff;
}
.menu:hover {
  cursor: pointer;
}
/*  NAV
========================================== */
#nav {
  background: #111b2d;
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  height: 100%;
  max-width: 100vw;
  width: 100%;
  padding: 100px 40px 60px 40px;
  overflow-y: auto;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  overflow: hidden;
}
#nav.show {
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
  transform: translateX(0px);
}
#nav.show ul.main li {
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
  transform: translateX(0px);
  opacity: 1;
}
.menu.clicked {
  position: fixed;
  z-index: 99;
}
#nav.show ul.main li:nth-child(1) {
  transition-delay: 0.15s;
}
#nav.show ul.main li:nth-child(2) {
  transition-delay: 0.3s;
}
#nav.show ul.main li:nth-child(3) {
  transition-delay: 0.45s;
}
#nav.show ul.main li:nth-child(4) {
  transition-delay: 0.6s;
}
#nav.show ul.main li:nth-child(5) {
  transition-delay: 0.75s;
}
#nav.show ul.main li:nth-child(6) {
  transition-delay: 0.9s;
}
#nav.show ul.main li:nth-child(7) {
  transition-delay: 1.05s;
}
#nav.show ul.main li:nth-child(8) {
  transition-delay: 1.2s;
}
#nav.show ul.main li:nth-child(9) {
  transition-delay: 1.35s;
}
#nav.show .about,
#nav.show .social,
#nav.show ul.sub {
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
  transition-delay: 0.85s;
}
#nav ul.main {
  list-style-type: none;
}
#nav ul.main li {
  -webkit-transform: translateX(40px);
  -moz-transform: translateX(40px);
  -ms-transform: translateX(40px);
  -o-transform: translateX(40px);
  transform: translateX(40px);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  float: none;
  list-style: none;
  color: #fff;
}
#nav ul.main li:last-of-type {
  margin-bottom: 0px;
}
#nav ul.main li a {
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1rem;
  display: block;
  padding: 10px 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#nav ul.main li a span {
  color: #55c9d2;
}
#nav ul.main li a:hover {
  color: #cd3035;
}
#nav ul.sub {
  list-style-type: none;
  margin-top: 40px;
  -webkit-transform: translateY(30px);
  -moz-transform: translateY(30px);
  -ms-transform: translateY(30px);
  -o-transform: translateY(30px);
  transform: translateY(30px);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
#nav ul.sub li {
  margin-bottom: 10px;
}
#nav ul.sub li:last-of-type {
  margin-bottom: 0px;
}
#nav ul.sub li a {
  color: #ffffff;
  font-family: "Raleway", sans-serif;
  letter-spacing: 1px;
  font-size: 0.9rem;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#nav ul.sub li a:hover {
  color: #cd3035;
}
/* telefonos */
.contentTxtTel {
  border: solid 2px #cd3035;
  border-radius: 10px;
  margin: 1rem 0px;
}
.txtTelefono {
  padding: 5px 1.5rem !important;
}
.contentIdiomas {
  padding: 0px 30px;
}
.contentIdiomas a {
  font-size: 1rem;
  font-weight: lighter;
  color: #fff;
  margin: 0px 0.9rem;
}
.btnMenuMovil {
  background-color: transparent;
  border: none;
  padding: 10px 0px;
  color: #fff;
  display: flex;
}
#collapseExample .card {
  background-color: #111b2d !important;
  color: #fff !important;
  padding: 0px 1.23rem !important;
}
#collapseExample .card ul {
  padding: 0px;
}
/*  OVERLAY
========================================== */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 7;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
}
.overlay.show {
  opacity: 0.8;
  visibility: visible;
}
/*Footer*/
footer {
  background-color: #111b2d;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 0px;
}
.contentLogoFooter img {
  width: 10rem;
}
.contentTxtFooter {
  color: #fff;
}
.contentTxtFooter,
.contentLogoFooter {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  text-align: center;
  margin: 2rem 0px;
}
.contentRedes {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}
.contentRedes img {
  width: 2.5rem;
}

/* Large devices (ipad, 768px and up) */
@media only screen and (min-width: 768px) {
  #nav {
    padding: 120px 30px 70px 20px;
  }
  .main {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  /* footer */
  .contentTxtFooter {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  #contentFooterTablet {
    display: flex;
    flex-direction: row;
  }
}

/* Large devices (large laptops and desktops, 1024px and up) */
@media only screen and (min-width: 1024px) {
}

/* Large devices (large laptops and desktops, 1280px and up) */
@media only screen and (min-width: 1280px) {
  .menu {
    display: none;
  }
  .contentNav {
    padding: 2rem 0rem;
    justify-content: center;
    width: 100vw;
  }
  .contentNav img {
    margin-top: 0rem;
    width: 10rem;
  }
  #contactoItem {
    display: none;
  }
  #idiomaItem {
    display: none;
  }
  .contentContactoNav {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .contentContactoNav a {
    color: #fff;
    text-decoration: none;
  }
  .contentContactoNav a:hover,
  .contentIdiomas a:hover {
    color: #cd3035;
  }
  .contentIdiomas a {
    margin: initial;
  }
  .contentContactoNav img {
    margin: 0px 1rem;
  }
  .contentIdiomas {
    margin-left: 1rem;
    padding: 0px;
  }
  #txtContacto {
    font-size: 1.3rem;
    font-weight: bold;
  }
  .contentTxtTel {
    margin: 0px 1rem;
  }
  /* dropdown */
  .nav-pills .nav-link.active,
  .nav-pills .show > .nav-link {
    color: #cd3035 !important;
    background-color: transparent !important;
  }
  .dropdown-menu {
    background-color: #111b2d !important;
  }
  .dropdown-item:hover {
    background-color: transparent !important;
  }

  /* footer */
  footer {
    background-color: #111b2d;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
}
/* Large devices (large laptops and desktops, 1366px and up) */
@media only screen and (min-width: 1366px) {
}

/* Large devices (large laptops and desktops, 1440px and up) */
@media only screen and (min-width: 1440px) {
}

/* Extra Large devices (large laptops and desktops, 1400px and up)*/
@media only screen and (min-width: 1920px) {
}
