html {
    margin: 0;
    padding: 0;
    color: white;

    font-family: Open Sans,Arial ,sans-serif;
}

body {
    margin: 0;
    padding: 0;
}

.content-section {
    padding: 50px 0;
}

header {
    margin: 0;
}

.quick-contact {
    background-color: #0d152d;
    height: 4rem;
}

.quick-contact a {
    color: white;
    font-size: 20px;
}

.quick-contact a:visited {
    color: white;
}

.quick-contact a:hover {
    font-weight: bold;
}

.wrapper50 {
    width: 50%;
}

.quick-contact .wrapper50{
    width: 100%;
}

.front {
    overflow: hidden;
}

.front img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    display: block;
    object-position: 0 60%;
}

.front h1{
    font-size: 64px;
}

.slogan {
    background-color: rgba(35,40,53,1);
}
.slogan h2 {
    margin: 1rem auto 3rem auto;
    font-size: 32px;
}
.slogan h3 {
    margin: 1rem 0;
    font-size: 18px;
}

.slogan-text-wrapper {
    width: fit-content;
    margin: auto;
    padding: 0 25px;
    max-width: 800px;
}

.services {
    background-image: linear-gradient(180deg, rgba(35,40,53,1) 33%, rgba(35,40,53,0.9) 100%);
}

.service-option {
    width: 100%;
    max-width: 600px;
    height: auto;
    /*background-color: #0d152d;*/
    border-radius: 25px;
    overflow: hidden;

    margin: 25px;
    aspect-ratio: 12/16;
}

.service-option-text {
    padding: 0 25px 0 25px;
    display: none;
}

.profile {
    background-color: #0d152d;
    padding: 50px 50px;
}

.profile-wrapper {
    width: 100%;
    max-width: 600px;
}

.profile .quick-contact {
    margin-top: 2rem;
}

.image-collage {
    display: flex;
    flex-wrap: wrap;
    padding: 50px 0;
}

.image-collection .image-collage {
    max-width: 800px;
    justify-content: center;
    align-items: center;
    gap: 20px 30px;
    margin: 0 25px;

    display: none;
}

.image-wrapper {
    width: 100%;
    max-width: 800px;
    height: auto;
}


.image-wrapper img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.image-wrapper-smaller {
    width: 300px;
    height: 300px;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: rgba(0, 0, 0, 0.75);
}

.image-wrapper-smaller:hover .overlay {
    opacity: 1;
}

.image-wrapper-smaller img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.profile-picture {
    width: 150px;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
}

.profile-picture img {
     object-fit: fill;
}

h2 {
    margin: 0;
}

.profile-title h2 {
    font-size: 48px;
}

.image-collection {
    background-image: linear-gradient(180deg, rgba(35,40,53,1) 60%, rgba(35,40,53,0.9) 100%);
    display: none;
}

.contact-message {
    padding: 50px, 0, 20px, 0;
    padding-bottom: 30px;
    padding-top: 50px;
}

.contact-form {
    max-width: 800px;
    width: 80%;
}

.contact-form div {
    padding: 5px 0;
}

.contact-form textarea {
    width: 100%;
    height: 75px;
    resize: none;
}

.contact-form input{
    width: 100%;
    height: 50px;
}

.contact-form label {
    display: none;
}

.contact-form button {
    height: 50px;
    width: 100px;
    background-color: #0d152d;
    color: white;
    border: 2px solid black;
    border-radius: 4px;

    font-size: 16px;
    font-weight: bold;
}

 .contact-form button:hover {
    background-color: #232835;
    transition: .2s ease;
 }

.center-text {
    text-align: center;
}

.flex {
    display: flex;
    flex-wrap: wrap;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.brands {
    background-image: linear-gradient(180deg, rgba(35,40,53,1) 60%, rgba(35,40,53,0.9) 100%);
}

.brand-wrapper {
    width: fit-content;
    height: auto;
}

.brands .flex {
    gap: 25px 50px;
}

.brands-title {
    color: white;
    margin: 1rem;
}

.brand-container {
    max-width: 800px;
    background-color: white;
    border-radius: 10px;
    padding: 10px;
    margin: 20px;
}

.brand-wrapper img {
    width: fit-content;
    max-width: 200px;
    height: auto;
}

.order-first {
    order: -1;
}

footer {
    background-color: #0d152d;
}

footer p {
    margin: 0;
}

footer a {
    color: white;
}

footer a:visited {
    color: white;
}

footer a:hover {
    font-weight: bold;
}

.wrapper33 {
    margin: 1rem;
}

@media screen and (min-width: 800px) {

    .profile-description {
        width: 66%;
        height: 100%;
        margin: auto;
    }

    .wrapper33 {
        width: 33%;
        margin: 0;
    }

    .responsive-flex {
        display: flex;
        flex-wrap: wrap;
    }

    .profile .wrapper50 {
        width: 33%;
    }
}

@media screen and (max-width: 400px) {
    .quick-contact {
        flex-wrap: wrap;
    }
}