@import url('modules/base.css');
@import url('modules/layout.css');
@import url('modules/navbar.css');
@import url('modules/hero.css');
@import url('modules/pricing.css');
@import url('modules/section.css');
@import url('modules/modal.css');
@import url('modules/form.css');
@import url('modules/accordion.css');
@import url('modules/features.css');


@media screen {


    .cookie-message {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: #f0f0f0;
        padding: 10px;
        text-align: center;
        display: none;
    }

    .button {
        display: inline-block;
        padding: 10px 40px;
        text-decoration: none;
        font-size: 20px;
        font-weight: bold;
        text-transform: uppercase;
        text-align: center;
        color: var(--raspberry-rose);
        background-color: #ffffff;
        border: 2px solid #ffffff;
        border-radius: 5px;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    }

    .button__primary {
        color: #ffffff;
        background-color: var(--raspberry-rose);
        border-color: var(--raspberry-rose);
    }

    .button__white {
        color: var(--raspberry-rose);
        background-color: #ffffff;
        border-color: #ffffff;
    }

    .button__primary:hover {
        color: #ffffff;
        background-color: var(--sandy-brown);
        border-color: var(--sandy-brown);
    }

}





@media screen and (min-width: 768px) {

    .section__wrapper {
        margin: 4rem 2rem;
        flex-flow: row;
       
    }

    .section__wrapper--center {
        align-items: center;
    }


    .section__content {
        width: 70%;
    }

    .header__wrapper {
        padding: 3rem;
    }

    h1 {
        font-size: 3rem;
    }



}



@media screen and (max-width: 767px) {
    .navbar__wrapper {
        display: none;
    }

    .mobile__nav {
        display: flex;
        padding-left: 10px;
        justify-content: space-between;
        flex: 1;
        height: 50px;
    }

    .mobile__links {
        padding: 1rem;
    }

    .navbar__branding {
        height: 100%;
    }

    .type__wrapper {
        align-items: center;

    }

    .type__item {
        flex-basis: 100%;
    }





}