@font-face {
  font-family: "Proxima Nova Regular";
  src: url("../font/ProximaNova-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Proxima Nova Extrabold";
  src: url("../font/Proxima\ Nova\ Extrabold.ttf") format("truetype");
}
@font-face {
  font-family: "Proxima Nova Bold";
  src: url("../font/Proxima\ Nova\ Bold.ttf") format("truetype");
}
.center-text {
  font-family: Proxima Nova Regular;
  font-size: 18px;
  color: #484848;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
::before,
::after {
  position: absolute;
  content: "";
}
.container-landing {
  height: 100vh;
  width: 100%;
}
.first-section-landing,
.second-section-landing {
  height: 48vh;
  padding: 3rem 6rem;
}

.first-section-landing {
  background: url("../img/pomellato.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.second-section-landing {
  background: url("../img/dodo.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: row-reverse;
}
.section-login {
  width: 30%;
  height: 100%;
  display: flex;
  align-items: center;
}
.card-login {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.card-login img {
  height: 50px;
  margin-bottom: 2rem;
}
.center-text {
  margin-bottom: 2rem;
}
.card-login a,
.card-login p {
  text-align: center;
}
.color {
  font-family: Proxima Nova Extrabold;
  font-size: 34px;
  color: #484848;
}

.btn-landing {
  position: relative;
  display: inline-block;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.btn-landing span {
  font-family: Proxima Nova Bold;
  position: relative;
  display: inline-block;
  font-size: 16px;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 20px;
  transition: 0.3s;
}
.btn-1::before {
  background-color: rgb(28, 31, 30);
  transition: 0.3s ease-out;
}
.btn-1 span {
  color: rgb(255, 255, 255);
  border: 1px solid rgb(28, 31, 30);
  transition: 0.1s 0.1s;
}
.btn-1 span:hover {
  color: rgb(28, 31, 30);
  transition: 0.2s 0s;
}
.btn-landing.hover-filled-slide-right::before {
  top: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
}
.btn-landing.hover-filled-slide-right:hover::before {
  width: 0%;
}
.card-login a:hover {
  opacity: 0.8;
}
footer {
  height: 4vh;
}
.footer-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.footer-container p {
  font-family: Proxima Nova Regular;
  font-size: 12px;
  color: #484848;
}

@media only screen and (max-width: 912px) {
  .section-login {
    width: 50%;
  }
  .first-section-landing,
  .second-section-landing {
    padding: 2rem 4rem;
  }
}

@media only screen and (max-width: 414px) {
  .section-login {
    width: 100%;
  }
}

@media only screen and (max-width: 300px) {
  .first-section-landing,
  .second-section-landing {
    padding: 2rem;
  }
  .color {
    font-size: 30px;
  }
  .card-login img {
    height: 40px;
  }
}
