* {
    margin: 0;
    padding: 0;
    background-color: #D7CDED;
    font-family: 'camberregular', Arial, Helvetica, sans-serif;
}
body{
    overflow-x: hidden;
}

h1 {
    font-style: normal;
    font-family: 'cambersemi_bold';
}

h2 {
    font-style: normal;
    font-family: 'cambermedium';
}

h3 {
    font-style: normal;
    font-family: 'cambermedium';
}

h4 {
    font-style: normal;
}

p {
    font-style: normal;
}


/* nav */
nav {
    overflow: hidden;
    /* position: fixed;  */
    top: 0;
}

button {
    border: none;
}

.wrapper {
    /* position: relative; */
    width: 90%;
    height: 8rem;
    top: 0;
    display: none;
    justify-content: space-between;
    align-items: center;
    margin: auto;
}

nav a,
nav h4 {
    text-decoration: none;
    color: black;
    padding-top: 8px;
    padding-bottom: 8px;
}

nav h4:hover {
    font-family: 'cambersemi_bold';
    font-weight: bold;
}

.info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    width: 40%;
}

.logo {
    width: 79px;
    margin: 0px;
}

.search {
    width: 20px;
    margin: 0px;
    margin-left: 34px;
    margin-right: 34px;
}

.ham {
    width: 20px;
    margin-right: 23px;
}

.mobile h4 {
    text-align: center;
}

a {
    text-decoration: none;
}


@media (min-width: 375px) {
    h1 {
        font-size: 26px;
        line-height: 34px;
    }

    h2 {
        font-size: 16px;
        line-height: 21px;
    }

    h4 {
        font-size: 20px;
    }

    p,
    li {
        font-size: 11px;
        line-height: 18px;
    }

    .big{
        font-family: 'cambersemi_bold';
        font-weight: bold;
    }

    .bar {
        display: block;
        width: 75%;
        height: 8rem;
        top: 0;
        margin-left: 10%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        width: 77px;
    }

    label .menu {
        position: absolute;
        width: 200px;
        height: 200px;
        background: #D7CDED;
        border-radius: 50% 50% 50% 50%;
        -webkit-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
        cursor: pointer;

    }

    label .hamburger {
        position: absolute;
        width: 30px;
        height: 2px;
        background: black;
        display: block;
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
    }

    label .hamburger:after,
    label .hamburger:before {
        -webkit-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
        content: "";
        position: absolute;
        display: block;
        width: 100%;
        height: 100%;
        background: black;
    }

    label .hamburger:before {
        top: -10px;
    }

    label .hamburger:after {
        bottom: -10px;
    }

    label input {
        display: none;
    }

    label input:checked+.menu {
        box-shadow: 0 0 0 100vw #D7CDED, 0 0 0 100vh #D7CDED;
        border-radius: 0;

    }

    label input:checked+.menu .hamburger {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);

    }

    label input:checked+.menu .hamburger:after {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        bottom: 0;

    }

    label input:checked+.menu .hamburger:before {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        top: 0;

    }

    label input:checked+.menu+ul {
        opacity: 1;
    }

    label ul {
        z-index: 200;
        text-align: center;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        opacity: 0;
        -webkit-transition: 0.9s 0s ease-in-out;
        transition: 0.9s 0s ease-in-out;
        background-color:transparent;
    }

    label a h4 {
        margin-bottom: 1em;
        display: block;
        text-decoration: none;
        background-color:transparent;
    }

    h4:hover {
        font-family: 'cambersemi_bold';
        font-weight: bold;
    }
}


@media (min-width: 768px) {

    p,
    li {
        font-style: normal;
        font-size: 15px;
        line-height: 25px;
    }
}

@media (min-width: 1240px) {
    h1 {
        font-size: 40px;
        line-height: 52px;
    }

    h2 {
        font-size: 25px;
        line-height: 32px;
    }

    h3 {
        font-size: 20px;
        line-height: 26px;
    }

    h4 {
        font-size: 15px;
        line-height: 20px;
    }

    .mobile {
        display: none;
    }

    .wrapper {
        display: flex;
    }
}