@charset "UTF-8";
/* CSS Document */

@import url("reset.css");

/* Fonts */

@font-face {
    font-family: 'Akkordeon Three';
    src: url('../fonts/Akkordeon-Three.eot');
    src: url('../fonts/Akkordeon-Three.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Akkordeon-Three.woff2') format('woff2'),
        url('../fonts/Akkordeon-Three.woff') format('woff'),
        url('../fonts/Akkordeon-Three.ttf') format('truetype'),
        url('../fonts/Akkordeon-Three.svg#Akkordeon-Three') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Akkordeon Eight';
    src: url('../fonts/Akkordeon-Eight.eot');
    src: url('../fonts/Akkordeon-Eight.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Akkordeon-Eight.woff2') format('woff2'),
        url('../fonts/Akkordeon-Eight.woff') format('woff'),
        url('../fonts/Akkordeon-Eight.ttf') format('truetype'),
        url('../fonts/Akkordeon-Eight.svg#Akkordeon-Eight') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
html, body {
  font-size: 62.5%;  
  overflow-x: hidden;
  width: 100vw;
  font-family: Helvetica, sans-serif;
  font-weight: normal; 
  font-style: normal;
}
strong {
  font-weight: bold;
}
h1 {
  font-family: 'Akkordeon Eight';
  font-size: 9rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: white;
}
h2 {
  font-family: 'Akkordeon Three';
  font-size: 9rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: white;
}
h3 {
  display: inline;
  padding: 5px 30px 5px 10px 0;
  font-size: 2.2rem;
  font-weight: lighter;
  color: white;
}
p{
  color: white;
  font-weight: lighter;
  font-size: 1.7rem;
  text-align: left;
  line-height: 1.3em;
}
.flex-container {
    display: -s-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    }
.flex-item {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    }

.mainContainer {
  width: 100%;
  float: left;
  background-color: white;
}
.bkContainer {
  width:100%;
  height: 87vh;
  background-image: url("../images/MainBK1.jpg"); 
  background-position: top; 
  background-repeat: no-repeat; 
  background-size: cover; 
  position: relative;
}
.centralContainer {
  width:65%;
  margin: 0 auto;
}
#headerCont {
  width:100%;
  position: fixed;
  top: 0;
  z-index: 1;
}
#headerCont2 {
  display: none;
  width:100%;
  height: 52px;
  background: rgb(209,161,105);
  background: linear-gradient(31deg, rgba(209,161,105,1) 0%, rgba(180,81,44,1) 100%);
  position: fixed;
  top: 0;
  z-index: 1;
}
header {
  width:65%;
  height: 90px;
  margin: 0 auto;
  z-index: 1;
}
header .logo{
  width:135px;
  height: 100px;
  margin: 14px 0 0 18px;
  float: left;
}
header .boxRight{
  width:25%;
  height: 90px;
  float: right;
}
header .boxContact{
  width:66%;
  height: 110px;
  float: left;
}
header .boxMenu{
  width:33%;
  height: 110px;
  float: left;
}
header .contactIco{
  width:75%;
  opacity: 0.5;
  cursor: pointer;
  float: left;
}
header .contactIco:hover {
  opacity: 0.65;
}
#headerCont2 header {
  width:65%;
  height: 50px;
  margin: 0 auto;
  z-index: 1;
}
#headerCont2 header .logo{
  width:81px;
  height: 75px;
  margin: 4px 0 0 18px;
  float: left;
}
#headerCont2 header .boxRight{
  width:25%;
  height: 50px;
  float: right;
}
#headerCont2 header .boxContact{
  width:66%;
  height: 50px;
  float: left;
}
#headerCont2 header .boxMenu{
  width:33%;
  height: 50px;
  float: left;
}
#headerCont2 header .contactIco{
  width:60%;
  opacity: 0.5;
  cursor: pointer;
  float: left;
}
#headerCont2 header .contactIco:hover {
  opacity: 0.65;
}

/*Menu*/
#menuArea
{
  z-index:10000;
}
.menuInput {
display: none;}

.open {
  background-color: rgba(255, 255, 255, .5);
  width: 32px;
  height: 5px;
  display: block;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  top: 8px;
}

.open:before {
  content: "";
  background-color: #fff;
  width: 32px;
  height: 5px;
  display: block;
  border-radius: 2px;
  position: relative;
  top: -11px;
  transform: rotate(0deg);
  transition: all 0.3s ease;
  opacity: 0.5;
}

.open:after {
  content: "";
  background-color: #fff;
  width: 32px;
  height: 5px;
  display: block;
  border-radius: 2px;
  position: relative;
  top: 6px;
  transform: rotate(0deg);
  transition: all 0.3s ease;
  opacity: 0.5;
}

.menuOpen {
  width: auto;
  height: 27px;
  display: block; 
  cursor: pointer; 
}

.menuOpen:hover .open:before {
  top: -15px;
}

.menuOpen:hover .open:after {
  top: 11px;
}

.menu {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background: rgb(209,161,105);
  background: linear-gradient(31deg, rgba(209,161,105,1) 0%, rgba(180,81,44,1) 100%);
}

.menu label {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 20px;
  top: 20px;
  background-size: 100%;
  cursor: pointer;
}

.menu .menuContent {
  position: relative;
  top: 40%;
  margin: 0 11rem;
  font-size: 5.4rem;
  text-align: center;
  padding-bottom: 20px;
  margin-top: -170px;
}

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

.menu ul li a {
  display: block;
  color: white;
  text-decoration: none;
  transition: color 0.2s;
  padding: 10px 0;
}

.menu ul li a:hover {
  opacity: 0.6;
}
.menuEffects {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}

.menuEffects ul {
  transform: translateY(0%);
  transition: all 0.5s;
}
#menuToggle:checked ~ .menuEffects,
#menuToggle2:checked ~ .menuEffects {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s;
}
#menuToggle:checked ~ .menuEffects ul,
#menuToggle2:checked ~ .menuEffects ul {
  opacity: 1;
}
#menuToggle:checked ~ .menuOpen .open,
#menuToggle2:checked ~ .menuOpen .open {
  background-color: transparent;
}
#menuToggle:checked ~ .menuOpen .open:before,
#menuToggle2:checked ~ .menuOpen .open:before {
  content: "";
  background-color: white;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
#menuToggle:checked ~ .menuOpen .open:after,
#menuToggle2:checked ~ .menuOpen .open:after {
  content: "";
  background-color: white;
  transform: rotate(-45deg);
  position: relative;
  top: 0;
  right: 0;
  z-index: 1;
}
#menuToggle:not(:checked) ~ .menuEffects ul,
#menuToggle2:not(:checked) ~ .menuEffects ul {
  transform: translateY(-30%);
}
/*Menu ends*/


.bannerContent {
  width:65%;
  position: absolute;
  bottom: 5vh;
}
.bannerContentInside {
  width: calc(100% - 36px);
  padding: 18px;
  display: inline-block;
}
.bannerIntro {
  width: 100%;  
  margin-bottom: 1.5rem;
  float: left;
}
.bannerText {
  width: 45%;
  margin: 15px 0 20px;
  float: left;
}
.bannerText p{
  font-size: 2.5rem;
}
.bannerFlecha{
  width:14%;
  cursor: pointer;
}
.bannerFlecha:hover{
  opacity: 0.7;
}
.bannerFranja{
  width: 100%;
  height: 18px;
  margin-top: 16vh;
  background-image: url("../images/franjaColores.svg"); 
  background-position: top; 
  background-repeat: repeat; 
}
.sectionContainer {
  width:65%;
  margin: 0 auto;
}
.sectionContainer h1 {
  color: #571b00;
}
.sectionContainer .col1 {
  width: 50%;
  margin-right: 10%;
  float: left;
}
.sectionContainer .col2 {
  width: 40%;
  float: left;
}
.sectionContainer .col3 {
  width: 40%;
  margin-right: 10%;
  float: left;
}
.sectionContainer .col4 {
  width: 50%;
  float: left;
}
.sectionContainer .colFull {
  width: 100%;
  margin-top: 60px;
  display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  float: left;
}
.sectionInsideQuienes  {
  width:100%;
  padding: 120px 18px;
  display: inline-block;
}
.simbolo{
  width:75px;
  height: 43px;
}
.sectionContainer h3 {
  padding: 0;
  font-size: 1.85rem;
  color: black;
  background-color: transparent;
}
.sectionContainer .titBlanco {
  color: #fff;
}
.sectionContainer h4 {
  padding: 0;
  font-size: 2.4rem;
  color: #fff;
  background-color: transparent;
  margin:25px 0 -10px 0 ;
}
.sectionContainer p {
  color: #505050;
  width: 70%;
  margin:25px 0 0 0 ;
}
.sectionContainer .colFull h4 {
  width: 100%;
  padding: 0;
  font-size: 2.4rem;
  color: #fff;
  background-color: transparent;
  margin:0 ;
  float: left;
}
.sectionContainer .items {
  margin: 40px 3% 0 0 !important;
  -webkit-order: 0;
  -ms-flex-order: 0;
  order: 0;
  -webkit-flex: 0 1 30%;
  -ms-flex: 0 1 30%;
  flex: 0 1 30%;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  align-self: auto;
}
.sectionContainer .itemsCol1{
  width: 15%;
  margin-right: 5%;
  float: left;
}
.sectionContainer .itemsCol2{
  width: 80%;
  float: left;
}
.sectionContainer .itemsCol2 p{
  width: 100%;
  margin: 0;
  font-weight: lighter;
  font-size: 1.5rem;
  text-align: left;
  line-height: 1.2em;
  color: #fff !important;
}
.fixed1 {
  width:100%;
  height: 100vh;
  background-image: url("../images/MainBK1.jpg"); 
  background-position: top; 
  background-repeat: no-repeat; 
  background-size: cover; 
  position: fixed !important;
  z-index: -1 !important;
}
#Proyecto, #Licenciamiento {
  background: rgb(209,161,105) !important;
  background: linear-gradient(31deg, rgba(209,161,105,1) 0%, rgba(180,81,44,1) 100%) !important;
}
#Proyecto p, #Licenciamiento p{
  color: #fff;
}
.roundCorners {
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
}
#Equipo .perfilesCont{
  width: 100%;
  display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 5vh;
}
#Equipo .perfiles{
  margin: 65px 5% 25px  !important;
  -webkit-order: 0;
  -ms-flex-order: 0;
  order: 0;
  -webkit-flex: 0 1 22%;
  -ms-flex: 0 1 22%;
  flex: 0 1 22%;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  align-self: auto;
}
#Equipo .perfiles .pic{
  width: 100%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
#Equipo .perfiles .nombre{
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  color:  #c57724;
  margin-top: 20px;
}
#Equipo .perfiles .cargo{
  font-size: 1.5rem;
  font-style: italic;
  text-align: center;
  margin-top: 4px;
}
#Equipo .perfiles .textoPerfil p{
  font-size: 1.5rem;
  width: 100%;
  text-align: center;
  margin: 25px 0 0 0;
}
.sectionInsideLic  {
  width:100%;
  display: -webkit-flex; /* Safari */     
  display: flex; /* Standard syntax */
}
#Licenciamiento .colIzq{
  width: 40%;
  float: left;
  margin-right: 2%;
  background-image: url("../images/ComunidadF1.jpg"); 
  background-position: top right; 
  background-repeat: no-repeat; 
  background-size: cover; 
  -webkit-flex: 1; /* Safari */
  -ms-flex: 1; /* IE 10 */
  flex: 1; /* Standard syntax */
}
#Licenciamiento .colDer{
  padding: 120px 18px;
  float: left;
  -webkit-flex: 1; /* Safari */
  -ms-flex: 1; /* IE 10 */
  flex: 1; /* Standard syntax */
}
#Licenciamiento .colDer h1{
  color: #571b00;
}
#Licenciamiento .colDer p{
  width: 70%;
  margin: 35px 0 0 0;
  font-weight: normal;
  font-size: 1.8rem;
  color: #571b00;
}
#Licenciamiento h4 {
width: 100%;
margin-bottom: 40px !important;
padding: 0;
font-size: 2.4rem;
color: #fff;
background-color: transparent;
margin: 0;
float: left;
}
#Licenciamiento ul {
width: 70%;
margin: 35px 0 0 0;
padding: 0;
font-weight: lighter;
font-size: 1.5rem;
text-align: left;
line-height: 1.2em;
color: #fff;
background-color: transparent;
list-style-type: disc;
float: left;
}
#Licenciamiento ul li {
margin-bottom: 30px !important;
}
#Licenciamiento .graph {
  text-align: center; 
  width: 50%; 
  margin-left: 70px;
}


#Contacto{
  background-image: url("../images/BKcontacto.svg"); 
  background-position: bottom; 
  background-repeat: no-repeat; 
  background-size: contain; 
}
#Contacto  h1{
  color: #571b00;
  font-size: 4rem;
  text-align: right;
}
#Contacto p{
  width: auto;
  color: #571b00;
  text-align: right;
  margin: 35px 0 0 0;
}
#Contacto .sectionInsideContacto{
  width: calc(50% - 36px);
  padding: 80px 18px;
  display: inline-block;
  float: left;
}
#Contacto a, #Contacto a:link{
  color: #571b00;
  text-decoration: none;
}
#Contacto a, #Contacto a:hover{
  color: #571b00;
  text-decoration: underline;
}
#LogoAndean {
  display: block !important;
}
#LogoAndean2 {
  display: none !important;
}

/*Media Quieries*/
@media (max-width: 1800px) {
  
}
@media (max-width: 1366px) {
  html, body {
    font-size: 44.4%;
  }
  .sectionContainer .col1 {
    width: 60%;
    margin-right: 5%;
    float: left;
  }
  .sectionContainer .col2 {
    width: 35%;
    float: left;
  }
  .sectionContainer p {
    color: #505050;
    width: 80%;
    margin:25px 0 0 50px ;
  }
  .sectionContainer h4 {
    margin: 25px 0 -10px 50px;
  }
}
@media (max-width: 1366px) and (height:1024px){
  html, body {
    font-size: 58.4%;
  }
  header {
    width: 80%;
 }
 #headerCont2 header {
    width: 80%;
  }
  .centralContainer {
    width: 80%;
  }
  .bannerContent {
    width: 80%;
  }
  .sectionContainer {
    width: 80%;
    margin: 0 auto;
  }
  #Licenciamiento .colDer p {
    width: 70%;
  }
  #Licenciamiento ul {
    width: 70%;
  }
  #Licenciamiento .graph {
    width: 60%;
  }
}
@media (max-width: 1112px) {
  html, body {
    font-size: 48%;
  }
  header {
    width: 80%;
 }
 #headerCont2 header {
    width: 80%;
  }
  .centralContainer {
    width: 80%;
  }
  .bannerContent {
    width: 80%;
  }
  .sectionContainer {
    width: 80%;
    margin: 0 auto;
  }

  
}
@media (max-width: 1023px) {
  
}
@media (max-width: 1024px) and (orientation:portrait){
  .bkContainer {
    height: 45vh;
  }
   p {
    font-size: 1.9rem;
  }
  .sectionContainer p {
    margin: 25px 0 0 0px;
  }
  .sectionContainer h4 {
    margin: 25px 0 -10px 0;
  }
  .sectionContainer .itemsCol2 p {
    font-size: 1.9rem;
  }
  #Equipo .perfiles {
    margin: 65px 5% 25px  !important;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 40%;
    -ms-flex: 0 1 40%;
    flex: 0 1 40%;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
  }
  #Equipo .perfiles .pic {
    width: 85%;
    margin: 0 10%;
  }
  .nombre {
    font-size: 2.1rem;
  }
  #Equipo .perfiles .cargo {
    font-size: 1.8rem;
  }
#Equipo .perfiles .textoPerfil p {
    font-size: 1.9rem;
  }
  #Licenciamiento .colDer p {
    width: 75%;
    font-size: 2rem;
  }
  
  #Licenciamiento ul {
    width: 75%;
    font-size: 1.9rem;
  }
  #Licenciamiento .graph {
    width: 75%;
  }
  .bkContainer {
    height: 60vh;
  }
  .bannerFranja {
    margin-top: 10vh;
  }
}
@media (max-width: 834px) and (orientation:portrait){ 
  header .boxRight, #headerCont2 header .boxRight{
    width: 41%;
  }
  .sectionContainer .items {
    margin: 40px 5% 0 0 !important;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 45%;
    -ms-flex: 0 1 45%;
    flex: 0 1 45%;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
  }
  .sectionContainer p {
    width: 90%;
  }
  #Licenciamiento .colDer p {
    margin: 35px 0 0 0px;
    width: 85%;
  }
  #Licenciamiento ul {
    width: 85%;
    margin: 35px 0 0 0px;}
  }
  #Licenciamiento .graph {
    width: 85%;
    margin-left: 0 !important;
  }
@media (max-width: 768px) and (orientation:portrait){ 
  .bannerFranja {
    margin-top: 5vh;
  }
}
@media (max-width: 1112px) and (orientation:landscape){
  
}
@media (max-width: 1023px) and (orientation:landscape){ 
  
}
@media (max-width: 834px) {
  html, body {
    font-size: 40%;
  }
  p {
    font-size: 1.9rem;
  }
  h1, h2 {
    font-size: 7rem;
  }
  .bannerFranja {
margin-top: 1vh;
}
  header {
    height: 62px;
    margin: 0 auto;
  }
  header .logo {
    width: 81px;
    height: 62px;
    margin: 4px 0 0 18px;
    float: left;
  }
  header .boxRight {
    width: 43%;
    height: 62px;
  }
  header .boxContact {
    height: 62px;
  }
  header .boxMenu {
    height: 62px;
  }
  .bkContainer {
    height: 95vh;
  }
  #headerCont2 header .boxRight {
    width: 43%;
  }
  #headerCont2 header .boxContact {
    height: 50px;
    float: left;
  }
  .menuOpen {
    height: 20px;
  }
  .bannerText {
    margin: 10px 0 10px;
  }
  .bannerFlecha {
    width: 16%;
  }
  .sectionInsideQuienes {
    padding: 80px 18px;
  }
  .sectionContainer .col2 {
    margin-top: 40vh;
  }
  .sectionContainer p {
    margin: 25px 0 0 0px;
    width: 90%;
  }
  .sectionContainer h4 {
    margin: 25px 0 -10px 0px;
  }
  .sectionContainer .items {
    margin: 40px 5% 0 0 !important;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 45%;
    -ms-flex: 0 1 45%;
    flex: 0 1 45%;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
  }
  .sectionContainer .itemsCol2 p {
    font-size: 1.9rem;
    line-height: 1.3em;
  }
  #Equipo .perfiles {
    margin: 65px 7% 25px  !important;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 35%;
    -ms-flex: 0 1 35%;
    flex: 0 1 35%;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
  }
  #Equipo .perfiles .nombre {
    font-size: 2.2rem;
  }
  #Equipo .perfiles .cargo {
    font-size: 1.9rem;
  }
  #Equipo .perfiles .textoPerfil p {
    font-size: 1.9rem;
  }
  #Licenciamiento .colDer p {
    width: 90%;
    margin: 20px 0 0 0;
    font-size: 2.3rem;
  }
#Licenciamiento ul {
    width: 90%;
    margin: 25px 0 0 0;
    font-size: 1.9rem;
    line-height: 1.4em;
  }
  #Licenciamiento .graph {
    text-align: center;
    width: 80%;
    margin-left: 0;
  }
  #Contacto .sectionInsideContacto {
    width: calc(50% - 36px);
    padding: 40px 18px;
    display: inline-block;
    float: left;
  }
}
@media (max-width: 736px){
  html, body {
    font-size: 40%;
  }
  p {
    font-size: 1.9rem;
  }
  h1, h2 {
    font-size: 7rem;
  }
  .bannerFranja {
margin-top: 1vh;
}
  header {
    height: 62px;
    margin: 0 auto;
  }
  header .logo {
    width: 81px;
    height: 62px;
    margin: 4px 0 0 18px;
    float: left;
  }
  header .boxRight {
    width: 43%;
    height: 62px;
  }
  header .boxContact {
    height: 62px;
  }
  header .boxMenu {
    height: 62px;
  }
  .bkContainer {
    height: 95vh;
  }
  #headerCont2 header .boxRight {
    width: 43%;
  }
  #headerCont2 header .boxContact {
    height: 50px;
    float: left;
  }
  .menuOpen {
    height: 20px;
  }
  .bannerText {
    margin: 10px 0 10px;
  }
  .bannerFlecha {
    width: 16%;
  }
  .sectionInsideQuienes {
    padding: 80px 18px;
  }
  .sectionContainer .col2 {
    margin-top: 40vh;
  }
  .sectionContainer p {
    margin: 25px 0 0 0px;
    width: 90%;
  }
  .sectionContainer h4 {
    margin: 25px 0 -10px 0px;
  }
  .sectionContainer .items {
    margin: 40px 5% 0 0 !important;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 45%;
    -ms-flex: 0 1 45%;
    flex: 0 1 45%;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
  }
  .sectionContainer .itemsCol2 p {
    font-size: 1.9rem;
    line-height: 1.3em;
  }
  #Equipo .perfiles {
    margin: 65px 7% 25px  !important;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 35%;
    -ms-flex: 0 1 35%;
    flex: 0 1 35%;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
  }
  #Equipo .perfiles .nombre {
    font-size: 2.2rem;
  }
  #Equipo .perfiles .cargo {
    font-size: 1.9rem;
  }
  #Equipo .perfiles .textoPerfil p {
    font-size: 1.9rem;
  }
  #Licenciamiento .colDer p {
    width: 90%;
    margin: 20px 0 0 0;
    font-size: 2.3rem;
  }
#Licenciamiento ul {
    width: 90%;
    margin: 25px 0 0 0;
    font-size: 1.9rem;
    line-height: 1.4em;
  }
  #Licenciamiento .graph {
    text-align: center;
    width: 80%;
    margin-left: 0;
  }
  #Contacto .sectionInsideContacto {
    width: calc(50% - 36px);
    padding: 40px 18px;
    display: inline-block;
    float: left;
  }
}
@media (max-width: 736px) and (orientation:landscape){
  .menu .menuContent {
    top: 53%;
  }
}
@media (max-width: 667px) and (orientation:landscape){
  html, body {
    font-size: 36%;
  }
  header .boxRight, #headerCont2 header .boxRight {
    width: 45%;
  }
  .bkContainer {
    height: 109vh;
  }
}
@media (max-width: 568px) and (orientation:landscape){
  
}
@media (max-width: 414px) and (orientation:portrait){
  header, #headerCont2 header {
    width: 100%;
  }
  header .boxRight, #headerCont2 header .boxRight {
    width: 50%;
  }
  .centralContainer {
    width: 80%;
    margin: 0; */
  }
  .bkContainer {
    height: 65vh;
  }
  .bannerText {
    width: 75%;
  }
  .bannerFlecha {
    width: 29%;
  }
  .sectionInsideQuienes {
    padding: 40px 0px;
  }
  .sectionContainer .colFull {
    width: 90%;
  }
  .sectionContainer .col1 {
    width: 100%;
    margin-right: 0;
  }
  .sectionContainer .col2 {
    width: 70%;
    float: left;
    margin: 5vh 15% 0 !important;
  }
  .sectionContainer .col3 {
    display: none;
  }
  .sectionContainer .col4 {
    width: 100%;
    margin-top: 25px;
  }
  .sectionContainer p {
    width: 100%;
  }
  .sectionContainer .items {
    margin: 40px 0 0 0 !important;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 100%;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
  }
  .sectionInsideQuienesResp {
    padding: 80px 0px;
  }
  #Equipo .perfiles {
    margin: 40px 0% 25px  !important;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 90%;
    -ms-flex: 0 1 90%;
    flex: 0 1 90%;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
  }
  #Equipo .perfiles .pic {
    width: 70%;
    margin: 0 15%;
  }
  .sectionInsideLic {
    width: 100%;
    display: block;
  }
  #Licenciamiento .colIzq {
    width: 100%;
    height: 40vh;
  }
  #Licenciamiento .colDer {
    width: 80%;
    margin: 0 10%;
    padding: 60px 18px;
  }
  #Contacto .sectionInsideContacto {
    text-align: right;
    padding: 20px 0px !important;
    width: 98% !important;
  }
  #LogoAndean {
    display: none !important;
  }
  #LogoAndean2 {
    display: block !important;
    text-align: right;
    padding: 0 !important;
  }
}
@media (max-width: 375px) and (orientation:portrait){
  .bkContainer {
    height: 80vh;
  }
  header .boxRight, #headerCont2 header .boxRight {
    width: 62%;
  }
  
}
@media (max-width: 320px) and (orientation:portrait){
  .bkContainer {
    height: 85vh;
  }
 header .boxRight, #headerCont2 header .boxRight {
    width: 65%;
  }
  .bannerContent {
    width: 100%;
  }
  .menu .menuContent {
    font-size: 3.4rem;
  }

}