/* MAIN CONTENT H5 */
h5 {
    color: rgb(198, 228, 255);
    font-size: 1.3rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 5px;
}

@media only screen and (max-width: 500px) {
    h5 {
        font-size: 1.1rem;
    }
}
@media only screen and (min-width: 501px) and (max-width: 1000px) {
    h5 {
        font-size: 1.2rem;
    }
}

/* CONTENT */
.content {
    width: 100%;
    height: fit-content;
    padding: 120px 12%;
    background: rgb(15, 15, 15);
    color: rgb(192, 192, 192);
    font-size: 1.2rem;
}
.content h1 {
    font-size: 2.5rem;
    color: rgb(255, 255, 255);
}
.content p {
    line-height: 2;
}
.content input {
    width: 49%;
    border: none;
    background: transparent;
    color: rgb(255, 255, 255);
    border-bottom: 1px solid rgb(18, 21, 24);
    padding: 15 0;
    margin-bottom: 20px;
    font-size: 1.2rem;
    outline: none;
}
.content input.full {
    width: -webkit-fill-available;
}
.content input:focus {
    outline: none;
}
.content input::placeholder {
    color:rgb(255, 255, 255);
    font-size: 1.2rem;
}
.content .info { width: 60%; padding-right: 30px; }
.content .image { width: 40%; }
.content .image img { max-width: 100%; }

@media only screen and (max-width: 500px) {
    .content {
        padding: 80 0 40;
    }
    .content h5 {
        margin-left: 25px;
    }
    .content .flex {
        display: block;
    }
    .content h1 {
        font-size: 1.5rem;
        margin-block-start: 3rem;
        margin-block-end: 3rem;
    }
    .content .info {
        width: 100%;
        margin-left: 0;
        padding: 0px 25px;
    }
    .content .image {
        width: 100%;
        padding: 0 25px;
    }
    .content input, .content button {
        width: calc(100% - 50px);
        margin-left: 25px;
    }
}

@media only screen and (min-width: 501px) and (max-width: 1000px) {
    .content {
        padding: 80 25 40;
    }
    .content h5 {
        margin-left: 25px;
    }
    .content .flex {
        display: block;
    }
    .content h1 {
        font-size: 2rem;
        margin-block-start: 3rem;
        margin-block-end: 3rem;
    }
    .content .info {
        width: 100%;
        margin-left: 0;
        padding: 0px 25px;
    }
    .content .image {
        width: 100%;
        padding: 0 25px;
    }
    .content form {
        padding: 0 25px;
    }
}