@font-face {
  font-family: "Myriad Pro Light";
  src: url("../fonts/MyriadPro-Light") format("opentype");
}

@font-face {
  font-family: "Myriad Pro";
  src: url("../fonts/MYRIADPRO-REGULAR.OTF") format("opentype");
}

@font-face {
  font-family: "Myriad Pro Bold";
  src: url("../fonts/MYRIADPRO-BOLD.OTF") format("opentype");
}

@font-face {
  font-family: "Myriad Pro Cond";
  src: url("../fonts/MYRIADPRO-COND.OTF") format("opentype");
}

@font-face {
  font-family: "Myriad Pro Cond Italic";
  src: url("../fonts/MYRIADPRO-CONDIT.OTF") format("opentype");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-width: none;
}

html,
body {
  height: 100%;
  font-family: "Myriad Pro";
}

.principal {
    width: auto;
    height: 100vh;
    display: flex;
}


.container-logo {
    position: fixed;
    top: 50vh;
    left: 45%;
    z-index: 0;
    margin-top: -8vw;
    transition: transform 0.5s ease;
}

.section-izq {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-self: center;
    align-items: center;
    background-color: #ccf3f0;
    padding: 5vw;
    color: #144b48;
    background-image: url(../img/HiFist.jpg);
    background-size: cover;
}

.content-section {
    display: flex;
    flex-direction: column;
    width: 50%;
}

.section-der {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 50%;
    padding: 2vw;
    background-color: #ccf3f0;
    color: #144b48;
    cursor: pointer;

    :hover {
        span{
          font-weight: bold;
          font-size: 3.6vw;
        }
        p{
          font-weight: bold;
        }

    }

    &.bottom {
      align-items: end;
      justify-content: end;
      background-color: #e6f8cc;
    }

    & .textoPortal {
      width: 100%;
      z-index: 9;
      font-weight: 100;

    }

    & .textoPortal.bottom {
      align-items: end;
      text-align: end;
    }
}


.textoPortal {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    font-size: 3vw;
    text-align: start;
    width: 100%;
    & .bottom {
      text-align: end;
      align-items: end;
    }
    
}

.logo-sweependPortal {
    width: 10vw;
    height: auto;
}

.logo-sweepend-ST {
    width: 10vw;
}
.underline {
    text-decoration: underline;
    font-size: 1.1vw;
}

a {
    text-decoration: none;
    color: inherit;
}

@media screen and (max-width: 767px) {
  .section-izq{
    display: none;
  }
  .content-section{
    width: 100%;
  }
  .logo-sweepend-ST {
    width: 40vw;
  }

  .section-der {
    font-size: 8vw;
    & span{
      font-size: 9vw;
      font-weight: bold;
    }
    & p{
      font-size: 4vw;
    }
  }
}

@media (orientation: landscape) {
  .logo-sweependPortal {
      width: 5vw;
  }

  .container-logo {
    top: 60vh;
    left: 47.5%;
}
}
