* {
    box-sizing: border-box;
}
:root {
    --color-green: #0E7C7B;
    --color-blue: #102542;
    --color-red: #CD3F38;
    --color-white: #FFE9F3;
    --color-black: #34252F;
}



html {
    min-height: 100%;
    font-size: 62.5%;
}
body {
    height: 100vh;
    margin: 0;
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    background-color: var(--color-blue);
    color: white;
}

.wrapper {
    max-width: 1200px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

img {
    display: block;
    object-fit: contain;
    max-width: 100%; 
    height: auto;
}

.flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

h1, h2, h3, h4 {
    font-family: "Bungee Tint", sans-serif;
    font-weight: 400;
    font-style: normal;
}
h3 {
    font-size: 3rem;
    line-height: 1;
}
button, input {
    font-family: "Montserrat", sans-serif;
    font-weight: 100;
}
input[type="number"] {
    padding: 15px;
    border: none;
    font-size: 1.6rem;
    width: 50%;
}
input[type="text"] {
    padding: 15px;
    border: none;
    font-size: 1.6rem;
    width: 100%;
}
select {
    padding: 15px;
    font-size: 1.6rem;
    width: 100%;

}
.command {
    margin-top: 120px;
    align-items: flex-start;    
}

p {
    margin-top: 0;
    font-size: 2rem;
}
.txt-center {
    text-align: center;
}

header {
}
.logo {
    max-width: 125px;
}
.cta {
    padding: 15px 30px;
    font-size: 1.6rem;
    background-color: var(--color-red);
    color: white;
    border: 1px solid  var(--color-red);
    transition: background-color .5s, color .5s;
    cursor: pointer;
    text-transform: uppercase;
    text-decoration: none;
}
.cta:hover {
    background-color: white;
    color: var(--color-red);
}


.branding {
    gap: 60px;
}
.site-title {
    margin: 0;
}

/* SECTION */

section {
    margin: 80px 0;
}

.hero {
    display: flex;
    gap: 50px;
    align-items: center;
    padding-right: 50px;
}
    .cover {
        max-height: 60vh;
        width: 50vw;
        object-fit: cover;
    }

.section_title {
    text-align: center;
    font-size: 5rem;
}

.card {
    margin: 60px 0 ;
    gap: 50px;
    justify-content: space-between;
}
.card_img {
    width: 50%;
    display: flex;
}
.card_imgs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 40%;
}

.card_img img {
    width: 50%;
}
.card_text {
    width: 50%;
}

form p {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 40px;
}
footer {
    margin-top: 200px;
    border-top: 1px solid lightgray;
    padding: 40px;
}