*,
*:before,
*:after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html, body  {
  height: 100%;
  width: 100%;
}
html{
  font-size: calc(8px + 8 * ((100vw - 500px) / 1500));
}
body{
  overflow-x: hidden;
}


h1, h2, h3 {
  font-family: AvenirNext;
}

_::-webkit-full-page-media, _:future, :root body, :root .pageSectionBody h1, :root .pageSectionBody h2, :root .pageSectionBody h3 {

  font-family: Avenir;

}

a{
  text-decoration: none;
}
#myPage{
  -webkit-perspective: 1000;
          perspective: 1000;
  background-color: black;
  overflow: hidden
}

#myPageHead {
  position: fixed;
  width: 100%;
  top: 0;
  left:0;
  padding: 2.5%;
  z-index: 5;
  transition: .5s ease-in-out;
  color:#fff;
  display: flex;
  justify-content: space-between;
}
#myPageHead.fixed {
  background: #000;
  color: #fff;
  padding: 1.5%;
}
#myPageHead.fixed:hover {
  padding: 2.5% 1.5%;
}
#headWrapLeft {
  display: flex;
  align-items: center;
}
#headWrapRight {
  display: flex;
  align-items: center;
}

#headWrapRight .socialElement {
  font-size: 32px;
  display: inline-block;
  margin: 0 10px;
}
#headWrapRight .socialElement a {
  color: #fff;
}
.pageSocials {
  white-space: nowrap;
}
.openMenu .pageSocials{
  pointer-events: none;
  opacity: 0.2;
}

#pageTitle {
  text-transform: uppercase;
  padding-left: 10px;
  position: relative;
  z-index: 1;
  /*font-size:42px;*/
  font-size: 2.7rem;
  margin-bottom: 0;
}
#pageTitle a {
  color: #fff;
  font-weight: 100;
}
#myPageNav{
  position: fixed;
  opacity: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.95);
  z-index: 4;
  transition: .5s;
  transform: scale(.5);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.openMenu #myPageNav {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.openMenu .actual .sectionTitle {
  transform: scale(0) !important;
}
.extend .actual .sectionTitle {
  transform: scale(0) !important;
}
#myPageNav nav {
  width: 100%;
  max-width: 1250px;
  padding: 30px;
  max-height: calc(100vh - 125px);
  overflow: auto;
  margin: 100px 20px 20px;
}
#myPageNav nav li {
  font-size: 25px;
  color: #fff;
  list-style: none;
  padding: 15px 0;
}
#myPageNav nav li a{
  color: rgba(255, 255, 255, 0.5);
}
#myPageNav nav li.actual a,
#myPageNav nav li:hover a{
  color: #fff;
}
#myPageWrap{
  min-height: 100vh;
}
#myPageWrap.trans{
  transition: transform .8s;
}
.pageSection{
  float: left;
  min-height: 100vh;
}
.pageSectionHead {
  height: 100vh;
  transition:2s;
  position: relative;
  background-size: cover !important;
  display: flex;
  align-items: center;
  justify-content: center;

 /**/ overflow: hidden;

}
.pageSectionHead .cover {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.5);
  display: none;
  z-index: 1;
}
.pageSectionHead .bg-image {
  background-size: cover !important;
  position: absolute;
  top: -25px;
  left: -25px;
  width: calc(100% + 50px);
  height: calc(100% + 50px);
  transform: translate(0px, 0px);
  transition: filter 2s;
  filter: grayscale(0%);
}

.pageSectionHead .sectionTitle {
  position: relative;
  text-align: center;
  z-index: 2;
  opacity: .1;
}
.pageSectionHead .sectionTitle img {
	max-width: calc(100% - 40px);
}
.pageSectionHead .sectionTitle h1 {
  color: #fff;
  text-transform: uppercase;
  font-size: 40px;
  text-align: center;
  font-weight: bold;
}
.pageSectionHead .openContent{
  position: absolute;
  bottom: 8%;
  right: 0;
  width: 100%;
  text-align: right;
  opacity: .1;
  z-index: 1;
}
.pageSectionHead .openContent.txt {
  right: 75px;
}
.pageSectionHead .openContent.links .openContentWrap {
  display: flex;
  justify-content: space-around;
  align-items: center;
}


.pageSectionHead .openContent.links .linkElement{
  margin: 0 4%;
  max-width: 300px;
  width:25%;
}
.linkElement img{
  width:100%;
}

.openContentElementWrap {
  display: inline-block;
}

.pageSectionHead .openContent .openContentElement {
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .3s;
  position: relative;
  display: inline-flex;
  font-size: 1.4rem;
  justify-content: center;
  align-items: center;
}

.pageSectionHead .openContent .openContentElement a {
  color: #fff;
  margin-right: 35px;
  display: block;
  font-weight: 100;
}
.pageSectionHead .openContent .openContentElementWrap:last-of-type .openContentElement a{
  margin-right: 0px;
}

.pageSectionHead .openContent .openContentElement:hover{
  transform: scale(1.1);
}



@keyframes dots {
  from { transform: scale(0); opacity: 1; }
  to { transform: scale(2); opacity: 0; }
}

.openContentElement .dot{
  width: 1.8rem;
  height: 1.8rem;
  display: inline-flex;
  margin-right: -1.5rem;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

span.dot:before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 50px;
  transform-origin: center;
  transform: scale(0);
  opacity: 1;

  animation-name: dots;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}


.pageSectionBody {
  display: none;
  background-color: #fff;
  min-height: calc(100vh - 75px);
  position: relative;
}



.backToTop{
  position: fixed;
  bottom: 25px;
  right: 25px;
  border: 1px solid #999;
  line-height: 1;
  padding: 25px 16px;
  border-radius: 50%;
  text-transform: uppercase;
  font-weight: bold;
  font-family: Avenir;
  color: #999;
  cursor: pointer;
  user-select: none;
  font-size: 12px;
}
.backToTop:hover{
  box-shadow: inset 1px 1px 10px 0px;
}

#pageLoader{
  position: fixed;
  z-index: 50;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: AvenirNext;
}
#pageLoader > div{
  position: relative;
  max-width: 600px;
}
#pageLoader .underline{
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    /*background: linear-gradient(to left, #ffffff , rgba(255,255,255,0));*/
    background-color: #fff;
    width: 0%;
    transition: 0.2s;
}
#pageLoader p {
  margin-bottom: 0;
}
.txt {
  font-size: 40px;
}
.text1 {
  white-space: nowrap;
  color: #ffffff14;
}
.text2 {
  width: 0%;
  position: absolute;
  bottom: 0;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
  color: #fff;
}
#afterLoad{
  display: none;
  text-align:center;
}
#afterLoad img{
  max-width: calc(100% - 40px);
}

.openContent .openContentWrap{
  width: 85%;
  margin: 0 auto;
}

.openContent.txt.sectionTitle {
  font-family: AvenirNext;
  color: white;
  line-height: 1;
  max-width: 950px;
}
.openContent.txt.sectionTitle h1 {
  text-align: right;
}
.openContent.txt.sectionTitle .sectionText {
  width: 100%;
}


/* CSS */
.hamburger {
  -webkit-transform: scale(1);
  transform: scale(1);
  position: relative;
  display: block;
  width: 68px;
  height: 68px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.burger-main {
  position: absolute;
  padding: 22px 17px;
  height: 68px;
  width: 68px;
}

.burger-inner {
  position: relative;
  height: 24px;
  width: 36px;
}

.burger-main span {
  position: absolute;
  display: block;
  height: 2px;
  width: 36px;
  border-radius: 2px;
  background: #fff;
}

.top {
  top: 0;
  transform-origin: 34px 2px;
}

.bot {
  bottom: 0;
  transform-origin: 34px 2px;
}

.hamburger.closed .bot {
  width: 20px !important;
}

.mid {
  top: 11px;
}

.svg-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 68px;
  height: 68px;
  overflow: hidden;
}

.circle {
  width: 68px;
  height: 68px;
}

.path {
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
  stroke-linejoin: round;
  stroke-width: 1.5px;
}

.hamburger.open .path {
  animation: dash-in 0.6s linear normal;
  animation-fill-mode: forwards;
}

.hamburger.closed .path {
  animation: dash-out 0.6s linear normal;
  animation-fill-mode: forwards;
}

.hamburger.open .top {
  animation: close-top-out 0.6s linear normal;
  animation-fill-mode: forwards;
}

.hamburger.open .bot {
  animation: close-bot-out 0.6s linear normal;
  animation-fill-mode: forwards;
}

.hamburger.closed .top {
  animation: close-top-in 0.6s linear normal;
  animation-fill-mode: forwards;
}

.hamburger.closed .bot {
  animation: close-bot-in 0.6s linear normal;
  animation-fill-mode: forwards;
}

.hamburger.open .mid {
  animation: burger-fill-out 0.6s linear normal;
  animation-fill-mode: forwards;
}

.hamburger.closed .mid {
  animation: burger-fill-in 0.6s linear normal;
}

.path-burger {
  position: absolute;
  top: 0;
  left: 0;
  height: 68px; 
  width: 68px;
  -webkit-mask: url(#mask);
  mask: url(#mask);
  -webkit-mask-box-image: url(../../images/mask.svg);
}

.animate-path {
  position: absolute;
  top: 0;
  left: 0;
  width: 68px;
  height: 68px;
}

.path-rotation {
  height: 34px;
  width: 34px;
  margin: 34px 34px 0 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.path-rotation:before {
  content: '';
  display: block;
  width: 30px;
  height: 34px;
  margin: 0 4px 0 0;
  background: #fff;
}

.hamburger.open .animate-path {
  animation: circle-in 0.6s linear normal;
  animation-fill-mode: forwards;
}

.hamburger.closed .animate-path {
  animation: circle-out 0.6s linear normal;
  animation-fill-mode: forwards;
}

@-webkit-keyframes dash-in {
  0% {
    stroke-dashoffset: 240;
  }

  40% {
    stroke-dashoffset: 240;
  }

  100% {
    stroke-dashoffset: 0;
  }

}

@keyframes dash-in {
  0% {
    stroke-dashoffset: 240;
  }

  40% {
    stroke-dashoffset: 240;
  }

  100% {
    stroke-dashoffset: 0;
  }

}

@-webkit-keyframes dash-out {
  0% {
    stroke-dashoffset: 0;
  }

  40% {
    stroke-dashoffset: 240;
  }

  100% {
    stroke-dashoffset: 240;
  }

}

@keyframes dash-out {
  0% {
    stroke-dashoffset: 0;
  }

  40% {
    stroke-dashoffset: 240;
  }

  100% {
    stroke-dashoffset: 240;
  }

}

@keyframes close-top-out {
  0% {
    left: 0;
    top: 0;
    transform: rotate(0deg);
  }

  20% {
    left: 0;
    top: 0;
    transform: rotate(15deg);
  }

  80% {
    left: -5px;
    top: 0;
    transform: rotate(-60deg);
  }

  100% {
    left: -5px;
    top: 1px;
    transform: rotate(-45deg);
  }

}

@keyframes close-bot-out {
  0% {
    left: 0;
    transform: rotate(0deg);
  }

  20% {
    left: 0;
    transform: rotate(-15deg);
  }

  80% {
    left: -5px;
    transform: rotate(60deg);
  }

  100% {
    left: -5px;
    transform: rotate(45deg);
  }

}

@keyframes close-top-in {
  0% {
    left: -5px;
    bot: 0;
    transform: rotate(-45deg);
  }

  20% {
    left: -5px;
    bot: 0;
    transform: rotate(-60deg);
  }

  80% {
    left: 0;
    bot: 0;
    transform: rotate(15deg);
  }

  100% {
    left: 0;
    bot: 1px;
    transform: rotate(0deg);
  }

}

@keyframes close-bot-in {
  0% {
    left: -5px;
    transform: rotate(45deg);
  }

  20% {
    left: -5px;
    transform: rotate(60deg);
  }

  80% {
    left: 0;
    transform: rotate(-15deg);
  }

  100% {
    left: 0;
    transform: rotate(0deg);
  }

}

@keyframes burger-fill-in {
  0% {
    width: 0;
    left: 36px;
  }

  40% {
    width: 0;
    left: 40px;
  }

  80% {
    width: 36px;
    left: -6px;
  }

  100% {
    width: 36px;
    left: 0px;
  }

}

@keyframes burger-fill-out {
  0% {
    width: 36px;
    left: 0px;
  }

  20% {
    width: 42px;
    left: -6px;
  }

  40% {
    width: 0;
    left: 40px;
  }

  100% {
    width: 0;
    left: 36px;
  }

}
@keyframes circle-out {
  0% {
    transform: rotate(0deg);
  }

  40% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(360deg);
  }

}

@keyframes circle-in {
  0% {
    transform: rotate(360deg);
  }

  40% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(0deg);
  }

}

#myPageNav ul {
  margin-bottom: 0;
  columns:2;
}
li.navSection {
  position: relative;
  padding-left: 35px !important;
}
li.navSection span {
  width: 25px;
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 0;
  opacity: 0;
  transition: .1s;
}

li.navSection.actual span,
li.navSection:hover span {
  opacity: 1;
}
li.navSection span img {
  width: 100%;
}

.mbr-gallery-item > div {
  padding: 20px; 
}



.arrows {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 200;
}

.leftArrow {
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  display: inline-block;
  width: 15px;
  margin-right: 5px;
  position: relative;
  left: 0;
}
.leftArrow:before {
  content: "";
  position: absolute;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  border-left: 2px solid rgba(255, 255, 255, 0.1);
  width: 10px;
  height: 10px;
  transform: rotate(-45deg);
  top: calc(50% - 4px);
}

.rightArrow {
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  display: inline-block;
  width: 15px;
  margin-left: 5px;
  position: relative;
}
.rightArrow:before {
  content: "";
  position: absolute;
  border-top: 2px solid hsla(0, 0%, 100%, 0.1);
  border-right: 2px solid rgba(255, 255, 255, 0.1);
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  top: calc(50% - 4px);
  right: 0;
}
:focus{
  outline:none;
}

[id^="galeria"] .contentSection .elementSection {
  overflow: hidden;
  cursor: pointer;
}
/*[id^="galeria"] .contentSection .elementSection:hover {
  filter: brightness(50%);
}*/
[id^="galeria"] .contentSection .elementSection img {
  transition: .5s;
}
/*[id^="galeria"] .contentSection .elementSection:hover img {
  transform-origin: center center;
  transform: scale(1.1);
}*/




.openContact{
  cursor: pointer;
}
#contactWrap.opened{
  opacity: 1;
  transform: scale(1); 
  pointer-events: auto;
}
#contactWrap {
  position: fixed;
  opacity: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.9);
  z-index: 7;
  transition: .5s;
  transform: scale(.5); 
  pointer-events: none; 
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
}
.contactCover{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.contactContent{
  width: calc(100% - 40px);
  max-width: 800px;
  position: relative;
  padding: 20px;
  max-height: calc(100vh - 40px);
  overflow: auto;
  margin: 20px;
}

.contactResponse {
    text-align: center;
    color: white;
    font-size: 20px;
}

label.contactElement {
  display: flex;
  margin-bottom: 50px;
  position: relative;
}

label.contactElement:after {
  content: "";
  display: block;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  transition: 1s;
  bottom: 0;
  left: 0;
  width: 0;
}
#contactWrap.opened .contactElement:after{
  width: 100%;
  transition-delay: .5s;
}

label.contactElement input, label.contactElement textarea {
  width: 100%;
  background: transparent;
  color: #fff;
  border: 0px;
  padding: 5px;
      font-size: 16px;
}

span.placeholder {
  color: #ffffff59;
  padding: 5px;
  white-space: nowrap;
  font-size: 25px;
}

.contactSubmit{
  margin-bottom: 0;
  text-align: right;
  display: block;
}
.contactSubmit input{
  border: 1px solid #ffffff59;
  display: inline-block;
  width: auto;
  padding: 5px 10px;
  color: #ffffff59;
  background-color: transparent;
      font-size: 25px;
}
.contactSubmit input:hover{
  border: 1px solid #ffffff;
  color: #ffffff;
  cursor:pointer;
}


.contactClose {
  color: #fff;
  position: fixed;
  right: calc(2.5% + -6px);
  top: calc(2.5% + 22px);
  pointer-events: none;
  cursor: pointer;
  z-index: 50;
  opacity:0;
  transition-delay: .5s;
  transition: .5s;
}
.crossWrap{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    padding-left: 9px;
    cursor: pointer;
}
.cross {
    border-bottom: 2px solid;
    width: 31px;
}
.cr1 {
    transform: rotate(45deg);
    transform-origin: left;
}
.cr2 {
    transform: rotate(-45deg);
    transform-origin: left;
}

.contactClose .svg-main{
  position: relative;
}

#contactWrap + .contactClose .path{
  animation: dash-out 0.6s linear normal;
  animation-fill-mode: forwards;
}
#contactWrap.opened + .contactClose .path{
  animation: dash-in 0.6s linear normal;
  animation-fill-mode: forwards;
}
#contactWrap.opened + .contactClose {
  opacity:1;
}
/*
.divvideo {
    position: relative;
    box-sizing: border-box;
    flex: 1 1 50%;
}
.divvideo iframe {
  box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    padding: 10px;
}
*/

  .divvideo,
  .divvideobig {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    padding: 10px;
  }
  .divvideo img, .divvideobig img {
    height: 100%;
    width: 100%;
  }
  .divvideobig {
    flex: 1 1 100%;
  }
  .divvideo {
    flex: 1 1 50%;
  }
  .divvideo iframe {
    padding: 10px;
  }
  .divvideo iframe,
  .divvideobig iframe {
    position: absolute;
    width:100%;
    height: 100% !important;
    top: 0;
    left: 0;
  }
  .amYtPlayer {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .ytPlayBtn {
    width: 60px;
    height: 40px;
    position: absolute;
    background-color: red;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.ytPlayBtn:before {
    content: "";
    border-top: 8px solid transparent;
    border-left: 13px solid #fff;
    border-bottom: 8px solid transparent;
}
.ytPlayBtn:hover {
    background-color: #252525;
}

.cid-qGkbZdqFA2 .form-group {
  flex: 1 1 auto;
  margin-bottom: 0rem; 
}

.cid-qGkbZdqFA2 .form-control {
  font-family: inherit !important;
  padding: .5rem .75rem !important;
  width: 100% !important;
  border: 2px solid #e8e8e8;
  border-radius: 0;
}

.copyright p, .copyright a {
  color: rgba(204, 204, 204, .7);
  font-size: 13px !important;
}


.social-list {
  align-items: center;
  justify-content: left;
}
.social-list .pageSocials .socialElement {
  font-size: 32px;
  display: inline-block;
  margin: 0 5px;
}
.social-list .pageSocials .socialElement a{
  color: #ffffff;
}

.social-list .socialElement.openContact {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.social-list .socialElement.openContact:hover {
  opacity: 1;
}
.footer4 .form-control,
.footer4 .btn {
  font-family: inherit !important;
}

.footer4 .form-group{
  flex:1 1 auto;
}

.footer4 .form-group input{
  width: 100%;
}

.footer4 .media-container-row  {
  align-items: center;
}

.foot-title {
  margin-bottom: .5rem !important;
} 


.ytPopup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 150;
  justify-content: center;
  align-items: center;
  background-color: rgba(0,0,0,.8);
}
.ytPopup .videoWrap {
  position: relative;
  width: 90%;
  max-height: 90%;
  padding-bottom: 50.6%;
  height: 0;
}
.ytPopup iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.ytPopupClose {
  color: #fff;
  position: absolute;
  top: 1%;
  right: .5%;
  padding: 32px;
  line-height: 1;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 50;
  border:1px solid #fff;
}

.btn {
  border-radius: 0px;
}
.btn-primary, .btn-primary:active {
  background-color: transparent;
  border-color: #fff;
  color: #ffffff;
}
.mbri-play{
  background-color: transparent !important;
  width: 4rem !important;
  height: 4rem !important;
}
.mbri-play:before {
  content: "";
  background-image: url(https://academiamedicacorporal.com/assets/images/playbutton.png);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  background-size: cover;
}
.cid-qGlE2oNLZQ .mbr-media span.mbri-play:before {
  position: absolute;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.form-control {
  margin-bottom: 0;
  min-height: 21px;
}

.btl-blue {
  color:#005d93;
  font-weight:bold;
}

@media (min-width: 1200px) {
  .footer4 > .container {
    max-width: 80% !important;
  }
}


.head {
  position: relative;
}
.head .titleBg {
  position: absolute;
  z-index: 0;
  top: 0px;
  left: 0px;
  width:100%;
  height: 100%;
}
.head .titleBg + * {
  position: relative;
}

/* MEDIAS */

@media screen and (max-width: 1490px) {
	.pageSectionHead .sectionTitle h1 {
		font-size: 30px;
	}
	.openContentWrap {
		font-size: 25px;
	}
	p {
		font-size: 20px !important;
	}
  .txt p{
    font-size: 30px !important;
  }
}

@media screen and (max-width: 1200px) and (orientation:landscape) {
.ytPopup .videoWrap {
    width: 70%;
    max-height: 90%;
    padding-bottom: 40%;
    height: 0;
}
}

@media screen and (max-width: 1200px) {


  #myPageNav nav li {
    font-size: 20px;
    padding: 15px 0;
  }
  li.navSection {
    padding-left: 30px !important;
  }
  li.navSection span {
    width: 20px;
  }

  label.contactElement {
    margin-bottom: 45px;
  }
  span.placeholder {
    font-size: 20px;
  }
  .contactSubmit input {
    font-size: 20px;
  }

  #pageTitle {
    font-size: 2rem;
  }
  #headWrapRight .socialElement {
    font-size: 2.2rem;
    margin: 0.6rem;
  }
  .pageSectionHead .openContent {
    padding-right: 5%;
    padding-left: 5%;
  }

  .socialElement .fa-youtube {
    font-size: 1.9rem;
    vertical-align: middle;
  }
  .socialElement .fa-instagram {
    font-size: 2.2rem;
    vertical-align: middle;
  }
  .socialElement .fa-facebook {
    font-size: 2rem;
    vertical-align: middle;
  }
  .socialElement .fa-envelope-o {
    font-size: 2.3rem;
    vertical-align: middle;
  }

  .openContent .openContentWrap {
    width: 100%;
    padding:0 20px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .pageSectionHead .openContent .openContentElement a {
    margin-right: 0px;
  }
  .openContentElementWrap {
    margin-top: 20px;
    display: block;
  }

  .openContent.txt .openContentWrap {
      justify-content: flex-end;
  }

	.pageSectionHead .openContent.links .linkElement{
	  width:15%;
	}
	.pageSectionHead .sectionTitle h1 {
		font-size: 25px;
	}
	.openContentWrap {
		font-size: 18px;
	}
	.pageSectionHead .sectionTitle img {
		max-width: calc(100% - 40px);
		width: 50%;
	}
	#afterLoad img{
	 	max-width: calc(100% - 40px);
		width: 50%;
	}
	#myPageNav nav li {
		font-size: 18px;
		padding-top: 10px;
		padding-right: 0px;
		padding-bottom: 10px;
		padding-left: 0px;
	}
	.backToTop {
	  bottom: 1%;
    right: 1%;
		padding-top: 20px;
		padding-right: 10px;
		padding-bottom: 17px;
		padding-left: 10px;
		font-size: 10px;
	}
	#conocer-amc-puntos .pointsEl{
		flex:1 1 50% !important;
	}
  .pageSectionHead .sectionTitle h1 {
    font-size: 30px;
  }
  #myPageNav nav {
    padding: 0px; 
    margin: 50px 20px 20px;
  }

}

@media screen and (max-width: 1100px){ 
  .contentSection {
    min-height: auto !important;
  }
  /*.elementSection {
    width:100% !important;
  }
  .imageSection img {
    width: 50% !important;
    margin: 0 auto !important;
  }  
  */
  .imageSection img {
    margin: 0 auto 0 0 !important;
  }
  .elCntSection {
    width: 80% !important;
  }
    
  .contentSection [class*="titleSection"], 
  .contentSection [class*="titleSection"] *{
    font-size: 25px !important;
  }
  .contentSection [class*="contentSection"], 
  .contentSection [class*="contentSection"] *{
    font-size: 16px !important;
  }

  p {
    font-size: 16px !important;
  }
  [id^="galeria"] .contentSection {
    flex-wrap: nowrap !important; 
  }
  [id^="galeria"] .elCntSection,
  [id^="galeria"] .imageSection img {
    width: 100% !important; 
  }
  #conoce-amc-puntos .contentSection {
    flex-wrap: nowrap !important;
  }
  .pageSectionHead .openContent {
    bottom: 13%;
  }

  #caliente-es-el-nuevo-cool > div > div,
  #focaliza-sus-efectos > div > div {
    justify-content: flex-start !important;
  }

  #descubre-los-efectos .contentSection {
    width: 100% !important;
  }
  #descubre-los-efectos .elementSection {
    width: 100% !important;
  }
  #descubre-los-efectos .contentSection img {
    width: 100% !important;
    margin:0 auto !important;
  }

  button.btn.btn-primary.estilo4 {
    font-size: 14px;
    background-color: #00000000;
    border: 1px solid;
    border-color: #ffffff;
    border-radius: 0% !important;
    text-indent: -9999px;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    color: transparent !important;
  }
  button.btn.btn-primary.estilo4:before {
    content: "\f124";
    color: #fff !important;
    text-indent: 0;
    line-height: 1.4;
    font-family: FontAwesome;
    transform: rotate(41deg);
  }

  .openContent.txt h1{
    margin: 5px 0;
  }
}

@media screen and (max-width: 800px){
  .contentSection [class*="titleSection"], 
  .contentSection [class*="titleSection"] * {
    font-size: 20px !important;
  }
  .contentSection [class*="contentSection"], 
  .contentSection [class*="contentSection"] * {
    font-size: 13px !important;
  }
  .contentSection [class*="titleSection"] p {
    margin-bottom: 0;
  }
  .ytPopupClose {
    transform: scale(.6);
  }
  .hamburger {
    -webkit-transform: scale(.5);
    transform: scale(.5);
  }
  [class~="col-"] {
    padding: 0;
  }
  p {
    font-size: 11px !important;
  }
  .btn {
    font-size: 1.5rem !important;
  }
  .mbri-play:before {
    font-size: 20px;
  }
  .V130218 > div, 
  .V130218 > div > div:last-of-type {
    flex-direction: column;
  }
  .V130218 .divvideo iframe {
    box-sizing: border-box;
  }
  .txt, 
  .txt p {
    font-size: 18px !important;
  }
  .pageSectionHead .openContent.txt {
    right: 0px;
    bottom: 20px;
    padding-right: 0%; 
    padding-left: 0%; 
  }
  .pageSectionHead .sectionTitle h1 {
    font-size: 20px;
  }
  #pageTitle {
    padding-left: 0px;
  }
  .contactClose {
    -webkit-transform: scale(.5);
    transform: scale(.5);
    right: 5px;
    top: 5px;
  }
  #myPageHead.fixed {
      background: #000;
      color: #fff;
      padding: 5px;
  }
  [pagesection="programa-cientifico-practico"] .openContentElementWrap{
    padding: 0 3px;
    text-align: left;
    margin-top: 0px;
  }

}

@media screen and (max-width: 560px){
  #newsletter{
    padding: 50px 20px; 
  }
  .sectionTitle h1 {
    width: 80%;
    margin: 0 auto;
  }
  #que-aporta > div {
    flex-direction: column-reverse;
  }
  #conocer-amc-puntos .pointsEl{
    flex:1 1 100% !important;
    padding: 20px;
  }
  .pageSectionHead .openContent.links .linkElement {
    width: 40%;
  }
  .contactContent {
    padding: 0px; 
  }
  .content section:not('[class=*"footer"]') > div {
    min-height: auto !important;
    padding: 15% 20px;
  }
  .imageSection img {
    width: 50%;
  }

  .openContent.text.sectionTitle h1 {
    width: 100% !important;
    margin: 0 !important;
  }

  .pageSectionHead .openContent.txt {
    bottom: 80px;
  }
  .copyright p, .copyright a { 
    font-size: 8px !important;
  }

}

@media screen and (max-width: 400px) {

  .contentSection [class*="titleSection"], 
  .contentSection [class*="titleSection"] * {
    font-size: 18px !important;
  }
  .elementSection {
    width: 100% !important;
  }
  #la-satisfaccion > div,
  #exilis-ultra-360-slider > div,
  #impedancia > div,
  #efc-elite > div,
  #btl-exilis-elite-slider > div {
    background-color: rgba(0,0,0,.5);
  }
  #btl-xwave-slider > div > div {
    justify-content: flex-start !important;
  }
}

.contentSection [class*="titleSection"] sup, 
.contentSection [class*="contentSection"] sup {
  font-size: 50% !important;
}

@media only screen and (max-width: 420px){
  #myPageNav ul {
    columns: 1 !important;
  }
}