@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;900&display=swap");
.padding-section {
  padding: 25rem 0;
}

*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
}

h1,
h2,
h3 {
  font-family: "museo-sans", sans-serif;
  font-weight: 900;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #fff;
}

:focus {
    outline: 2px solid black;
}



html {
  font-size: 62.5%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
    html {
      font-size: 50%;
    }
  }

body {
  font-family: "museo-sans", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

.container {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    padding: 6rem 8rem 4rem 8rem;
    min-height: 100vh;
}
@media (max-width: 1024px) {
.container {
    min-height: 80vh;
}
.es-mbl-hide {
    display: none !important;
}

}

@media (max-width: 768px) {
    .container {
        padding: 4rem 6rem 3rem 6rem;
    }

}

@media (max-width: 480px) {

    .container {
        padding: 3rem 4rem 2rem 4rem;
    }

    .mbl-hide {
        display: none !important;
    }
}

.container .navigation {
    margin-bottom: 11rem;
}

.container .navigation a {
    display: inline-block;
}

.container .navigation img {
    width: 100%;
    max-width: 178px;
    display: block;
}

main {
    margin-bottom: 3.5rem;
}

main .main-title {
    font-size: 5.5rem;
    line-height: 6rem;
    color: #f36d00;
    font-weight: 900;
    margin-bottom: 2rem;
}
@media (max-width: 768px) {
main .main-title {
    font-size: 3.5rem;
    line-height: 4rem;
    }
}

@media (max-width: 480px) {
    main .espaniol-title {
        font-size: 3rem;
        line-height: 3.5rem;
    } 
}

main .main-text {
    max-width: 500px;
}

main .main-text p {
    font-size: 1.8rem;
    line-height: 2.6rem;
    color: #333333;
}

main .main-text p:first-of-type {
    margin-bottom: 2.5rem;
}

.unsubscribe .unsubscribe-form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.unsubscribe .unsubscribe-form label {
    font-size: 1.8rem;
    line-height: 2.6rem;
    font-weight: 900;
    color: #333333;
    margin-bottom: 1.5rem;
}

.unsubscribe .unsubscribe-form input {
    -webkit-appearance: none;
    max-width: 29rem;
    border-radius: 0;
    width: 100%;
    padding: 1rem 1.5rem;
    border: 1px solid #333333;
    background-color: #fff;
    font-size: 1.4rem;
    font-family: "museo-sans", sans-serif;
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.unsubscribe .unsubscribe-form button {
    max-width: 18rem;
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #f36d00;
    background-color: inherit;
    font-weight: 900;
    font-size: 1.8rem;
    font-family: "museo-sans", sans-serif;
    border-radius: 3rem;
    cursor: pointer;
    transition: 0.6s color, 0.8s background-color;
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: #333333;
}
@media (min-width: 900px) {
.unsubscribe .unsubscribe-form button:hover {
    color: #fff;
}
}

@media (min-width: 900px) {
.unsubscribe .unsubscribe-form button::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: #f36d00;
    z-index: -1;
    transition: 0.8s;
    top: 0;
    border-radius: 0 0 50% 50%;
}
}
@media (min-width: 900px) {
.unsubscribe .unsubscribe-form button:hover::before {
    height: 180%;
}
} 

footer {
    padding-top: 5rem;
    margin-top: auto;
    font-size: 1.8rem;
    font-family: "museo-sans", sans-serif;
    color: #333333;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-link {
    text-decoration: underline;
    color: #333333;
}

.espaniol-button {
    max-width: 26rem !important;
    min-width: 18rem;
}

