* {
    margin: 0;
    padding: 0;
}
body {
    color: #000035;
    font-size: 1em;
    background-color: #ccc;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
}
h1 {
    font-size: 1.4em;
}
h2 {
    font-size: 1.1em;
}
h3 {
    font-size: 1em;
}
a:link {
    color: #000035;
}
a:visited {
    color: #44aaee;
}
a:hover {
    color: #44aaee;
    text-decoration: none;
}
.wrapper {
    border-radius: 10px !important;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
    background-color: white;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.header {
    height: 200px;
    align-items: center;
}
.logo {
    float: left;
    z-index: 999;
    text-align: center;
    padding-top: 5px;
    padding-left: 3px;
    padding-right: 10px;
}
.facebook {
    position: absolute;
    margin-left: 450px;
    margin-top: 110px;
    float: left;
}
.nav {
    display: block;
    background-color: #000035;
    padding-left: 200px;
    border-bottom: double 6px #fff;
}
.logo img {
    width: 180px;
}

.content_wrapper, .about_flow_wrapper {
	padding: 20px;
}

.next_wrapper {
    padding-left: 20px;
    padding-right: 20px;
}

.content_wrapper img {
    text-align: center;
    width: 500px;
}

.about_flow_wrapper, .testimonial_flow_wrapper {
    text-align: center;
}

.next_wrapper {
    display: flex;
}
.next_wrapper .col1 {
    flex-basis: 50%;
    text-align: left;
}
.next_wrapper .col2 {
    flex-basis: 50%;
    text-align: right;
}

.next_button, .previous_button {
    padding: 10px;
}

.footer {
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    background-color: #000035;
    border-top: 6px double #fff;
}
.footer img {
    width: 300px;
}

.next_button, .previous_button {
    background-color: #89CFF0;
    border double: 2px solid #000035;

}

.dog_wrapper {
    display: flex;
}
.dog_wrapper .dog {
    flex-basis: 50%;
    padding-bottom: 20px;
}

.dog_images_wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.dog_image {
    flex-basis: 20%;
}
.dog_image img {
    max-height: 250px;
    width: auto;
}

@media screen and (max-width: 600px) {

    .header {
        display: block;
       /*  position: fixed; */
        display: flex;
        flex-direction: column;
        height: 100px;
    }
    .nav {
        margin-top: 0px;
        padding-left: 0px;
        width: 100vw;
    }
    .logo {
        margin-top: 10px;
        padding: 0px;
        float: none;
        text-align: center;
    }
    .logo img {
        width: 100px;
    }
    .facebook {
        position: absolute;
        margin-left: 20px;
        margin-top: 40px;
        float: left;
    }
    .content_wrapper {
        padding-top: 90px;
    }

    .content_wrapper img {
        width: 100% !important;
    }

    .footer img {
        width: 200px;
    }

    .dog_wrapper {
        display: flex; /* Needed for flex-direction to work */
        flex-direction: column;
        /* Add a gap between the .dog elements (the columns in this case) */
        /* gap: 20px; */
    }
    .dog_wrapper .dog {
        /* flex-basis: auto; is the default and can be removed, or you can explicitly
           set it to 100% to ensure each .dog takes the full width when stacked vertically. */
    }

    .dog_images_wrapper {
        display: flex;
        gap: 20px;
        /* Removed flex-basis: 50%; as it conflicts with the column flow */
    }
    .dog_image {
        flex-basis: 47%;
        /* gap: 20px; is only valid on the flex container (.dog_images_wrapper),
           not on the flex item (.dog_image), so it's removed here.
           If you need a gap *inside* .dog_images_wrapper, add `gap: 20px;` to that class. */
    }

}