.page
{
    margin: 0;
    font-family: 'Work Sans', Arial, sans-serif;
    color: rgb(45, 50, 58);
}

.confirmation
{
    position: fixed;
    width: calc(100% - 40px);
    margin: 10px;
    padding: 12px;
    background-color: rgb(150, 255, 180);
    text-align: center;
    border: 1px solid rgb(0, 200, 0);
    border-radius: 20px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    font-size: 1.1em;
    z-index: 1;
    transition: background-color 0.2s, border-color 0.2s;
}

.confirmation:hover
{
    background-color: rgb(170, 255, 195);
    border-color: rgb(0, 220, 0);
}

.headline
{
    width: 800px;
    margin: auto;
    margin-top: 100px;
    text-align: center;
}

.headline-title
{
    font-family: 'Alata', Arial, sans-serif;
    font-size: 3.5em;
    font-weight: normal;
    margin: 10px 0 0 0;
}

.logo
{
    height: 100%;
}

.headline-title__strong
{
    color: rgb(210, 0, 0);
    font-weight: bold;
}

.headline-subtitle
{
    font-size: 1.3em;
    line-height: 1.3em;
    color: rgba(45, 50, 58, 0.85);
    margin: 0;
}

.headline-subtitle--mobile
{
    display: none;
}

.headline-subtitle__strong
{
    color: rgb(45, 50, 58);
}

.header
{
    display: flex;
    padding: 15px;
    justify-content: space-around;
    height: 64px;
}

.navigation-list
{
    display: flex;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style-type: none;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.navigation-item
{
    display: block;
    margin: 0;
    padding: 0;
    list-style-type: none;
    flex-direction: row;
    align-items: center;
}

.navigation-link
{
    display: block;
    padding: 10px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: color 0.2s;
}

.navigation-link:hover
{
    color: rgb(210, 0, 0);
}

.trusted-section
{
    display: flex;
    flex-direction: column;
    width: 1000px;
    margin: auto;
    margin-top: 80px;
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 150px;
    gap: 20px;
}

.trusted-container
{
    display: flex;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
    width: 100%;
    gap: 20px;
}

.trusted-container__item
{
    display: block;
    text-align: center;
    height: 50px;
}

/* Repetitive section */

.section
{
    margin-top: 300px;
    text-align: center;
    font-size: 1.3em;
    margin: auto;
}

.repetitive-header
{
    margin-bottom: 100px;
}

.repetitive-header--headline
{
    display: block;
    margin-bottom: 40px;
    font-size: 1.5em;
    font-weight: bold;
    margin: 0;
}

.secondary-title
{
    font-size: 30px;
}

.secondary-title--testimonial
{
    margin-top: 50px;
    margin-bottom: 30px;
}

.repetitive__title
{
    margin-top: 200px;
    margin-bottom: 30px;
}

.button
{
    display: inline-block;
    padding: 10px 22px 10px 22px;
    color: rgb(210, 0, 0);
    border: 2px solid rgb(210, 0, 0);
    border-radius: 8px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    font-size: 1.1em;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}

.button--headline
{
    padding: 7px 22px 10px 22px;
    margin-top: 24px;
}

.button:hover
{
    background-color: rgb(210, 0, 0);
    color: white;
}

/* Difference section */

.difference-message
{
    display: flex;
    margin-left: auto;
    margin-right: 20px;
    margin-top: 200px;
    margin-bottom: 50px;
    align-items: center;
}

.difference-title
{
    display: inline-block;
    color: white;
    background-color: rgb(52, 198, 89);
    padding: 15px 30px;
    border-radius: 40px;
    text-align: left;
    max-width: 400px;
    font-weight: normal;
}

.difference-image
{
    display: inline-block;
    background-image: url('../img/arrow.png');
    background-size: cover;
    width: 20px;
    height: 20px;
}

.section--difference
{
    max-width: 1200px;
    display: flex;
    flex-direction: column;
}


.card-containers
{
    margin-left: 20px;
    margin-right: 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.card-containers--wrap
{
    flex-wrap: wrap;
}

.card
{
    display: flex;
    flex-direction: column;
    text-align: left;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.3);
    padding: 20px;
    transition: transform 0.2s;
}

.card-header
{
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 20px;
}

.card__picture
{
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.card-author
{
    display: flex;
    flex-direction: column;
}

.card-author__name
{
    font-weight: bold;
    font-size: 1.2em;
    color: rgba(45, 50, 58, 0.75);
}

.card-author__society
{
    font-size: 0.9em;
    color: rgba(45, 50, 58, 0.54);
}

.card--box
{
    width: 500px;
}

.card:hover
{
    transform: scale(1.03);
}

.card__header
{
    text-align: center;
}

.card__title
{
    display: inline;
    font-size: 1em;
}

.card__image
{
    width: 100%;
    border-radius: 10px;
    margin-top: auto;
}

/* Testimonials */

.section--testimonials
{
    display: flex;
    flex-direction: column;
    max-width: 1110px;
    gap: 30px;
    margin-bottom: 120px;
}

.card__content
{
    margin: 0;
}

.card__title--testimonial
{
    font-size: 1em;
    margin-top: 20px;
    margin-bottom: 7px;
}

/* Footer */

.separation-line
{
    max-width: 1110px;
    border: 1px solid rgb(45, 50, 58, 0.35);
    margin-top: 100px;
}

.footer
{
    background-color: rgb(65, 65, 65);
    box-shadow: 0px -6px 12px rgba(0, 0, 0, 0.3);
    color: white;
    padding: 50px 0;
    padding-bottom: 0;
    font-size: 1.3em;
}

.footer-content
{
    margin: auto;
    max-width: 800px;
    color: rgba(255, 255, 255, 0.75);
}

.footer-paragraph
{
    margin-top: 30px;
    line-height: 1.5em;
}

.footer__title
{
    text-align: center;
    margin: 0;
    font-weight: normal;
    font-size: 2.5em;
    color: white;
}

.footer-form
{
    display: flex;
    flex-direction: column;
    margin: auto;
    max-width: 500px;
}

.footer__textfield
{
    color: white;
    background-color: rgb(39, 39, 39);
    margin-bottom: 12px;
    padding: 12px;
    font-size: 1em;
    border: none;
    border-radius: 6px;
    font-family: 'Work Sans', Arial, sans-serif;
}

.footer__textfield--textarea
{
    height: 100px;
    resize: vertical;
}

.button--footer
{
    color: white;
    border-radius: 8px;
    background-color: rgb(10, 184, 245);
    border: none;
    border-bottom: 4px solid rgb(5, 150, 220);
    transition: color 0.2s, background-color 0.2s, border-bottom 0.2s, margin-top 0.2s;
}

.button--footer:hover
{
    background-color: rgb(15, 195, 255);
    border-color: rgb(10, 160, 230);
}

.button--footer:active
{
    margin-top: 4px;
    border-bottom: 0px solid rgb(10, 160, 230);
}

.footer-form__image
{
    margin-top: 80px;
    margin-bottom: 50px;
}

.dark-strong
{
    color: white;
}

.footer__footer
{
    display: flex;
    padding: 50px;
    justify-content: space-between;
}

@font-face
{
    font-family: 'Alata';
    src: url('../fonts/Alata-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Work Sans';
    src: url('../fonts/WorkSans/WorkSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Media queries */

@media screen and (max-width: 1650px)
{
    .card-containers--repetitive
    {
        gap: 20px;
    }

    .card--box
    {
        width: 400px;
        font-size: 0.85em;
    }
}

@media screen and (max-width: 1200px)
{
    .card-containers--repetitive
    {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .card--repetitive
    {
        width: 600px;
        font-size: 0.85em;
    }

    .card__image--repetitive
    {
        height: 250px;
        width: 100%;
        object-fit: cover;
    }

    .card--testimonial
    {
        width: calc(100% - 40px);
    }

    .card--testimonial:hover
    {
        transform: none;
    }
}

@media screen and (max-width: 1023px)
{
    .card-containers
    {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .card__image--repetitive
    {
        display: none;
    }

    .card
    {
        width: calc(100% - 40px);
        font-size: 1.1em;
    }
    
    .card:hover
    {
        transform: none;
    }

    .card--difference
    {
        box-shadow: none;
    }

    .trusted-container
    {
        margin: auto;
        max-width: 400px;
    }

    .card--image
    {
        height: 200px;
    }

    .headline-title
    {
        font-size: 3em;
    }

    .headline, .trusted-section
    {
        width: 100%;
    }

    .section--testimonials
    {
        padding: 0 20px;
    }

    .footer
    {
        padding: 50px 50px;
    }

    .footer__footer
    {
        padding: 0;
    }

    .footer-form
    {
        max-width: none;
        width: 100%;
    }

    .difference-message
    {
        margin-top: 100px;
    }

    .footer-form__image
    {
        width: 50%;
        min-width: 200px;
        margin-left: auto;
        margin-right: auto;
    }

    .trusted-section
    {
        font-size: 1.3em;
    }
}

@media screen and (max-width: 800px)
{
    .headline-subtitle
    {
        display: none;
    }

    .headline-subtitle--mobile
    {
        display: block;
    }

    .header
    {
        justify-content: space-between;
    }

    .footer__footer
    {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .difference-title
    {
        font-size: 1.2em;
        width: 80%;
    }

    .difference-message
    {
        margin-left: 10%;
    }

    .difference-image
    {
        width: 15px;
        height: 15px;
    }
}


@media screen and (max-width: 560px)
{
    .headline-title
    {
        font-size: 2.5em;
    }

    .button--header
    {
        display: none;
    }

    .header
    {
        justify-content: center;
    }

    .headline
    {
        margin-top: 200px;
    }
}

/* Now mobile */

@media screen and (max-width: 400px)
{
    .headline-title
    {
        font-size: 1.5em;
    }

    .headline-subtitle--mobile
    {
        font-size: 0.9em;
    }

    .headline
    {
        margin-top: 30px;
    }

    .card
    {
        font-size: 14px;
    }

    .footer
    {
        font-size: 0.8em;
        padding: 30px 20px;
    }

    .card-containers
    {
        gap: 10px;
        margin: 0;
    }

    .section
    {
        padding: 5px;
        gap: 10px;
    }

    .card
    {
        padding: 15px;
        width: calc(100% - 30px);
    }

    .card__picture
    {
        width: 48px;
        height: 48px;
    }

    .card-header
    {
        gap: 10px;
    }

    .card__title--testimonial
    {
        margin-top: 10px;
    }

    .section--testimonials
    {
        margin-bottom: 40px;
    }

    .difference-message
    {
        margin-top: 40px;
        margin-bottom: 0;
    }

    .difference-title
    {
        font-size: 16px;
        max-width: 300px;
        padding: 8px 16px;
        margin: 0;
    }

    .trusted-container__item
    {
        height: 30px;
    }

    .repetitive-header
    {
        font-size: 16px;
        padding: 0 15px;
        margin-bottom: 60px;
    }

    .repetitive-header--headline
    {
        font-size: 1.1em;
    }

    .separation-line
    {
        margin-top: 50px;
    }

    .secondary-title--testimonial, .repetitive__title
    {
        font-size: 20px;
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .footer-paragraph
    {
        font-size: 14px;
    }

    .footer-form__image
    {
        width: 100%;
    }

    .footer__title
    {
        font-size: 1.8em;
    }

    .footer-form
    {
        padding: 0;
    }

    .footer__textfield
    {
        padding: 10px;
        width: calc(100% - 20px);
    }

    .footer__textfield--textarea
    {
        height: 80px;
    }

    .footer__footer
    {
        padding: 0 5px;
    }

    .footer-form__image
    {
        margin-top: 50px;
    }

    .trusted-section
    {
        font-size: 1.1em;
        padding: 0 10px;
        width: auto;
        margin-bottom: 30px;
    }
}