* {
    padding: 0;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    box-sizing: border-box;
}
html {
    display: flex;
    flex-direction: column;
}

body {
    display: flex;
    flex-direction: column;
    background-color: #2a2b50;
}

a {
    text-decoration: none;
}

/* HEADER */
header {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    background: radial-gradient(rgba(22, 22, 26, 0) 40%, rgba(22, 22, 26, 0.1) 70%, rgba(22, 22, 26, 1) 100%);
}

.lp-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 825px;
    margin-bottom: 20px;
}

.lp-hero-content > * {
    margin-bottom: 30px;
}

h1 {
    font-size: 62px;
    line-height: 72px;
    color: #5cddfd;
    font-weight: 800;
    text-shadow: 1px 1px 4px #000;
}

p {
    font-size: 20px;
    color: #cecece;
    font-weight: 400;
}

.lp-header-form {
    display: flex;
    justify-content: center;
    width: 90%;
}
input {
    border-radius: 0;
}

.lp-hero-input {
    width: 60%;
    max-width: 400px;
    border: 0;
    border-bottom: 1px solid #000000;
    padding: 10px 5px;
    background-color: #f5f5f5;
}

.lp-hero-button {
    padding: 10px 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: .9s ease;
    border: 1px solid #f473f9;
    background-color: #f473f9;
    color: #1b234e;
    -webkit-appearance: none;
    border-radius: 0;
}

.lp-hero-button:hover {
    background-color: #5cddfd;
    border-color: #5cddfd;
    color: #1b234e;
    transition: .9s ease;
}

input:focus {
    outline: 0;
}

.lp-hero-image {
    width: 580px;
    margin-bottom: -30px;
}

.lp-hero-image img {
    width: 100%;
    height: 100%;
}

/* SECTION */
section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 150px 0 50px;
}

section >* {
    margin-bottom: 50px;
}

.lp-section-title-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

h2 {
    font-size: 32px;
    color: #f5f5f5;
    font-weight: 600;
    width: 80%;
    margin-bottom: 10px;
    text-align: center;
}

.lp-section-subtitle-span {
    color: #5cddfd;
    font-weight: 600;
}

.lp-articles {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
    width: 80%;
    margin-top: 20px;
}

article {
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
    background-color: rgba(255,255,255,0.1);
}

article >:first-child {
    margin-bottom: 10px;
}

.lp-article-content >:first-child {
    margin-bottom: 5px;
}

h3 {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
}

article p {
    font-size: 16px;
    font-weight: 400;
}

.lp-article-image {
    width: 50px;
    height: 50px;
}

.lp-article-image img {
    height: 100%;
    width: 100%;
}

/* FOOTER */

footer {
    display: flex;
    padding: 80px 0;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

footer h4 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    color: #f5f5f5;
    font-weight: 600;
}

.lp-footer-form {
    display: flex;
    justify-content: center;
    width: 70%;
}

.lp-footer-form-input {
    width: 60%;
    max-width: 400px;
    border: 0;
    border-bottom: 1px solid #000000;
    padding: 10px 5px;
    background-color: #f5f5f5;
}

.lp-footer-form-button {
    padding: 10px 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: .9s ease;
    border: 1px solid #f473f9;
    background-color: #f473f9;
    color: #1b234e;
    -webkit-appearance: none;
    border-radius: 0;
}

.lp-footer-form-button:hover {
    background-color: #5cddfd;
    border-color: #5cddfd;
    color: #1b234e;
    transition: .9s ease;
}

.lp-footer-form-button:focus {
    outline: none;
}

.email {
    font-size: 15px;
    font-weight: 400;
    padding-left: 10px;
    margin-right: 20px;
}

.email::placeholder {
    font-size: 15px;
    font-weight: 400;
}

/* Thank you */
.lp-thankyou header {
    justify-content: center;
}

.lp-hero-thankyou {
    background-color: #ffffff24;
    padding: 30px 10%;
    border-radius: 5px;
    margin-top: 80px;
}

.lp-thankyou .lp-hero-image {
    display: none;
}

.lp-hero-thankyou h2 {
    text-transform: uppercase;
    color: #f473f9;
    width: auto;
}
.lp-hero-thankyou p {
    font-size: 16px;
}