@font-face {
  font-family: PragmaFont;
  src: url('../fonts/OpenSans-Regular.ttf');
}

html, body {
  font-family: PragmaFont;
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #141d31;
  color: #fff; 
}

header {  
  margin: 0px;
  padding: 0px; 
}

.section-principal {
  display: flex;
  padding: 100px;
  flex-wrap: wrap;
  justify-content: center;
}

.section-principal-l {
  align-self: center;
}
.section-principal-r {
  align-self: center;
}

.logo {
  width: 500px;
  margin-left: -60px;
}

.slogan {
  margin-left: 70px;

  color: #ADC34E;
}

.description {
  margin-left: 70px;
  inline-size: 550px; 
}

.movil-img {
  width: 260px;
}

.actions-download {
  margin-left: 70px;
  display: flex; 
  align-items: center;
  justify-content: center;
  align-self: center;
}

footer {
  font-family: PragmaFont;
  grid-area: footer;
  background-color: #1A2130;
  color: #fff; 
  margin-top: 100px;
  font-size: 12px;
  min-height: 120px;
  width: 100%;
}

.section-footer-logo {
    padding-top: 19px;
    width: 94px;
    margin: 0px auto;
}
.logo-footer {
  width: 150px;
}

.section-footer-menu {
    display: flex;
    margin: 0px auto;
    -webkit-box-pack: center;
    justify-content: center;
    flex-flow: row wrap;
    max-width: 500px;
}

.section-footer-menu-item {
    margin: 11px 5px 10px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    text-decoration: none;
    color: #fff; 
    letter-spacing: -.1px;
    line-height: 1.5;
    text-align: center;
    width: auto;
}

.section-header-logo {
  padding: 50px 50px;  
}

.logo-header {
  width: 300px;
}

main {
  display: block;
  flex-grow: 1;
  flex-shrink: 0;
  min-height: calc(100vh - 250px);
  overflow-x: hidden;
  padding: 0 calc(3.5vw + 24px);
  position: relative;
}

section {
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

.title {
  text-align: left;
  border-bottom: #fff;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  text-transform: uppercase;
}
.text {
  text-align: justify;
}

@media screen and (max-width: 768px) {
  section {
    width: 100%; 
  }
  .section-principal {
    display: flex;
    padding: 100px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .logo {
    width: 300px;
    padding-left: 0px;
    text-align: center;
    margin-left: 0px;
  }
  .description{
    text-align: justify;
    word-wrap: break-word;
    inline-size: 100%; 
    margin-left: 0px;
  }
  .slogan{
    text-align: center;
    word-wrap: break-word;
    inline-size: 100%; 
    margin-left: 0px;
  }
  .actions-download {
    margin-left: 0px;
  }

}