@font-face {
    font-family: 'Volvo Novum Regular';
    src: url('../fonts/VolvoNovumRegular.woff2') format('woff2'),
    url('../fonts/VolvoNovumRegular.woff') format('woff'),
    url('../fonts/VolvoNovumRegular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Volvo Novum Medium';
    src: url('../fonts/VolvoNovumMedium.woff2') format('woff2'),
    url('../fonts/VolvoNovumMedium.woff') format('woff'),
    url('../fonts/VolvoNovumMedium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    max-width: 768px;
    margin: 0 auto;
}

.img-100-percent {
    width: 100%;
    max-width: 768px;
}

.img-70-percent {
    width: 70%;
}

.mb-100 {
    margin-bottom: 100px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-30 {
    margin-bottom: 30px;
}

.pt-10 {
    padding-top: 10px;
}

.pd-30 {
    padding-bottom: 30px;
}

.mb-30vh {
    margin-bottom: 30vh;
}

.row {
    display: flex;
    gap: 5%;
    justify-content: center;
    align-items: stretch;
}

.gap-25 {
    gap: 25%;
}

.img-box {
    max-width: 40%;
    flex: 1;
}

.img-box > img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.logo-footer {
    max-width: 80%;
    margin-bottom: 30vh;
}

footer {
    max-width: 768px;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
    text-align: center;
}

.footer-icon > img {
    width: 40px;
}

.grey-bg {
    background-color: #f0efef;
}

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

.flyer-container {
    padding: 0 20px;
}

.form-description {
    text-align: center;
    font-family: 'Volvo Novum Regular', sans-serif;
    font-size: 18px;
    line-height: 25px;
}

.form-recap {
    text-align: center;
    font-family: 'Volvo Novum Regular', sans-serif;
    font-size: 18px;
    line-height: 25px;
}

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

.contact-form input {
    min-width: 300px;
    max-width: 80%;
    height: 35px;
    border-radius: 15px;
    border-color: transparent;
    text-align: center;
    background-color: #DADADA;
}

.contact-form input::placeholder {
    color: white;
    font-family: 'Volvo Novum Regular', sans-serif;
    font-size: 18px;
}

.contact-form textarea {
    min-width: 300px;
    max-width: 80%;
    border-radius: 15px;
}

.contact-form textarea::placeholder {
    color: black;
    font-family: 'Volvo Novum Regular', sans-serif;
    font-size: 18px;
    padding-top: 5px;
    padding-left: 10px;
}

.contact-form button {
    border-radius: 15px;
    height: 35px;
    width: 160px;
    color: white;
    background-color: #B34A96;
    border-color: transparent;
    font-family: 'Volvo Novum Regular', sans-serif;
    font-weight: bold;
    font-size: 18px;
}