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

/* animation */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  60% {
    opacity: 0.5;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  60% {
    opacity: 0.5;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

/* animated */
.logos {
  opacity: 0;
  -webkit-animation: fadeIn 0.9s forwards;
          animation: fadeIn 0.9s forwards;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.title {
  opacity: 0;
  -webkit-animation: fadeIn 0.9s forwards;
          animation: fadeIn 0.9s forwards;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

.subtitle {
  opacity: 0;
  -webkit-animation: fadeIn 0.9s forwards;
          animation: fadeIn 0.9s forwards;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.buttons {
  opacity: 0;
  -webkit-animation: fadeIn 0.9s forwards;
          animation: fadeIn 0.9s forwards;
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.list {
  opacity: 0;
  -webkit-animation: fadeIn 0.9s forwards;
          animation: fadeIn 0.9s forwards;
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}

/* querys */
/* style */
* {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body {
  height: 100%;
}

body {
  padding: 0;
  font-family: "medium", Roboto, "Helvetica Neue", sans-serif;
  background-color: #516718;
  color: #fff;
  -webkit-font-variant-ligatures: none;
          font-variant-ligatures: none;
}

.cover {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

@media only screen and (orientation: landscape) {
  .cover {
    background-image: url("../img/imatge_desktop.jpg");
  }
}

@media only screen and (orientation: portrait) {
  .cover {
    background-image: url("../img/imatge_mobile.jpg");
    background-position: bottom right;
  }
}

.content {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

.padding-top {
  padding-top: 10px;
}

@media only screen and (min-width: 1000px) {
  .padding-top {
    padding-top: 20px;
  }
}

@media only screen and (min-width: 1500px) {
  .padding-top {
    padding-top: 80px;
  }
}

.padding-bottom {
  padding-bottom: 80px;
}

@media only screen and (min-width: 1000px) {
  .padding-bottom {
    padding-bottom: 40px;
  }
}

@media only screen and (min-width: 1500px) {
  .padding-bottom {
    padding-bottom: 80px;
  }
}

.container {
  margin: 0 auto;
  text-align: left;
  padding-left: 32px;
  padding-right: 32px;
  max-width: -webkit-calc(100% - 64px);
  max-width: calc(100% - 64px);
  width: -webkit-calc(100% - 64px);
  width: calc(100% - 64px);
}

@media only screen and (min-width: 1000px) {
  .container {
    width: 1630px;
    max-width: -webkit-calc(100% - 140px);
    max-width: calc(100% - 140px);
    padding-left: 70px;
    padding-right: 70px;
  }
}

@media only screen and (min-width: 1500px) {
  .container {
    width: 1630px;
    max-width: -webkit-calc(100% - 280px);
    max-width: calc(100% - 280px);
    padding-left: 140px;
    padding-right: 140px;
  }
}

.link-img {
  list-style: none;
  display: inline-block;
  width: -webkit-calc(50% - 20px);
  width: calc(50% - 20px);
  float: left;
  margin: 0 20px 0 0px;
}

@media only screen and (min-width: 1000px) {
  .link-img {
    width: auto;
    float: left;
    margin: 0;
    margin: 0 20px 0 0;
  }
}

@media only screen and (min-width: 1500px) {
  .link-img {
    width: auto;
    float: left;
    margin: 0;
    margin: 0 20px 0 0;
  }
}

.logos {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.logo {
  float: left;
  display: inline-block;
  max-width: 100%;
  max-height: auto;
  margin: 10px 0;
  width: 300px;
}

@media only screen and (min-width: 1000px) {
  .logo {
    margin-right: 40px;
    width: 250px;
  }
}

@media only screen and (min-width: 1500px) {
  .logo {
    margin-right: 70px;
    width: 300px;
  }
}

.title {
  font-size: 48px;
  line-height: 1;
  font-weight: normal;
  margin-top: 25px;
  margin-bottom: 20px;
  margin-left: -2px;
}

@media only screen and (min-width: 1000px) {
  .title {
    font-size: 88px;
    margin-top: 40px;
    margin-bottom: 25px;
  }
}

@media only screen and (min-width: 1500px) {
  .title {
    font-size: 108px;
    margin-top: 75px;
    margin-bottom: 35px;
  }
}

.subtitle {
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 30px;
}

@media only screen and (min-width: 1000px) {
  .subtitle {
    font-size: 26px;
    margin-bottom: 30px;
  }
}

@media only screen and (min-width: 1500px) {
  .subtitle {
    font-size: 36px;
    margin-bottom: 50px;
  }
}

.center-content {
  margin-top: auto;
}

@media only screen and (min-width: 1000px) {
  .center-content {
    margin-top: 0;
  }
}

@media only screen and (min-width: 1500px) {
  .center-content {
    margin-top: 0;
  }
}

.buttons {
  text-align: left;
}

.btn {
  color: #fff;
  background-color: #2dae35;
  border: 2px solid #fff;
  text-decoration: none;
  padding: 15px 20px 14px 20px;
  font-size: 20px;
  display: inline-block;
  margin: 0 auto 20px auto;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  min-width: 235px;
  text-align: center;
  margin: 0 15px 15px 0;
}

.btn:hover, .btn:focus {
  color: #fff;
  background-color: #217f30;
  border: 2px solid #fff;
}

@media only screen and (min-width: 1000px) {
  .btn {
    min-width: 200px;
    font-size: 20px;
    padding: 20px 23px 15px 26px;
    margin: 0 20px 20px 0;
  }
}

@media only screen and (min-width: 1500px) {
  .btn {
    min-width: 245px;
    font-size: 24px;
    padding: 20px 23px 15px 26px;
    margin: 0 20px 20px 0;
  }
}

.list {
  padding: 0;
  list-style: none;
  font-size: 30px;
  display: none;
}

.list li {
  padding: 0;
  margin: 0 0 7px 0;
}

@media only screen and (min-width: 1000px) {
  .list {
    display: block;
    font-size: 20px;
    margin: 30px 0 0 0;
  }
}

@media only screen and (min-width: 1500px) {
  .list {
    display: block;
    font-size: 30px;
    margin: 56px 0 0 0;
  }
}

/*# sourceMappingURL=style.css.map */
