h1,h2,h3,h4,h5 {
    font-family: 'Poppins', sans-serif;
}
p {
    font-family: 'Roboto', sans-serif;
}
/* Typografy */
h1 {
    font-size: 48px;
    line-height: 56px;
}

h2 {
    font-size: 36px;
    line-height: 44px;
}

h3 {
    font-size: 24px;
    line-height: 36px;
}

p {
    font-family: Roboto;
    font-size: 18px;
    line-height: 28px;
    margin-block-start: 0;
    margin-block-end: 0;
}
p.p {
    font-size: 18px;
    line-height: 28px;
    text-align: center;
}

@media (max-width:640px) {
    h1 {
        font-size: 36px;
        line-height: 44px;
    }
    h2 {
        font-size: 24px;
        line-height: 36px;
    }
    p.p {
        font-size: 16px;
        line-height: 24px;
    }
}

a.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    width: fit-content;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.2em;
    line-height: 14px;
    background: transparent;
    border: 2px solid #fff;
    min-height: 47px;
    padding: 0 30px;
    box-sizing: border-box;
    transition: .3s;
    cursor: pointer;
}
a.btn.transparent {
}
a.btn.transparent:hover {
    background-color: white;
    color: black;
}
a.btn.red {
    background-color: var(--color-primary);
    border-color: var(--color-primary)
}
a.btn.red:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}

ul li {
    display: flex;
    align-items: baseline;
    gap: 16px;
    font-family: Roboto;
    font-size: 22px;
    line-height: 30px;
}
ul li span {
    margin-left: 0;
}

@media (max-width:640px) {
    ul li {
        gap: 8px;
        font-size: 18px;
        line-height: 24px;
    }
}

/* FORM */
input, 
textarea, 
select, 
option {
    font-family: "Poppins",sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 20px;
    width: 100%;
    border-radius: 0px;
    border: 2px solid #0D0D0D;
    padding: 0 15px;
    color: #333;
    padding: 18px;
}

input:focus, 
textarea:focus, 
select:focus, 
option:focus {
    outline: none!important;
    border: 2px solid #0D0D0D;
    border-left: 4px solid #0D0D0D;
    -webkit-transition: .09s ease-in-out;
}

form a.btn.disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

form input.required, form textarea.required {
    border-color: red;
}
form .fill-message.active {
    background-color: green;
    display: flex;
    height: calc(100% + 4px);
    width: calc(100% + 4px);
    position: absolute;
    justify-content: center;
    align-items: center;
    left: -1px;
    top: -2px;
}
.logo {
    max-width: 145px;
}