* {
    margin: 0;
}
html {
    background-color: #E6E3D3;
}

header {
    width: 100vw;
    height: 100px;
    display: flex;
    background: #E6E3D3;
    position: relative;
}

.dropdown {
    margin: 21px
}

.dpb {
    display: block;
    font-size: 1rem;
    border: 0;
    background: 0;
    padding: 1em;
    position: absolute;
    top: 0.5em;
    left: 0.5em;
    cursor: pointer;
    z-index: 3;
    margin-top: 25px;
}

.dbp:focus {
    outline: 4px solid #ebebd3;
}

.open:focus {
    outline: none;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    content: "";
    display: block;
    background: black;
    height: 4px;
    width: 2.8em;
    border-radius: 3px;
    transition: transform ease-in-out 500ms, opacity linear 300ms;
}

    .hamburger::before {
        transform: translateY(-6px);
    }

    .hamburger::after {
        transform: translateY(3px);
    }

.open .hamburger {
    transform: rotate(45deg);
}

    .open .hamburger::before {
        opacity: 0;
    }

    .open .hamburger::after {
        transform: translateY(-3px) rotate(-90deg);
    }

.dpm {
    z-index: 2;
    position: fixed;
    top: 0;
    left: 0%;
    bottom: 0;
    width: 100%;
    background: rgba(155,144,185,.85);
    transform: translateX(100%);
    transition: transform ease-in-out 750ms;
}

.dpm-open {
    transform: translateX(0);
}

@supports (clip-path: circle(0px)) {
    .dpm {
        transform: none;
        clip-path: circle(0px at top left);
        transition: clip-path ease-in-out 500ms;
    }

        .dpm.dpm-closed {
            transition-delay: 200ms;
        }

    .dpm-open {
        clip-path: circle(250% at top left);
    }
}

.dpm ol {
    margin: 0;
    padding: 0;
    height: 100%;
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    float: left;
    margin-left: 5%;
    height: 60%;
}

.dpm li {
    height: 100%;
}


.dpm a {
    color: #333333;
    display: block;
    text-transform: uppercase;
    text-decoration: none;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    transition: ease-in-out .25s;
}

    .dpm a:hover,
    .dpm a:focus {
        color: black;
        font-size:30px;
        font-weight:bold;
    }

.title {
    width: 100vw;
    text-align: center;
    position: absolute;
}

    .title h1 {
        margin-top: 32px;
        font-family: "Arial";
    }

    .title a {
        font-size: 28px;
        text-decoration: none;
        color: black;
        z-index: 100;
        position: relative;
    }

.sociald {
    width: 20vw;
    position: absolute;
    right: 0;
    text-align: right;
}

    .sociald svg {
        width: 25px;
        height: 50px;
        margin-top: 25px;
        margin-right: 5px;
    }

body {
    position: relative;
    font-family: "Quicksand", sans-serif;
}

.box {
    /* max-height: 80vh; */
    position: relative;
    overflow-x: auto;
    padding: 1rem;
    display: flex;
    flex-direction: row;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.box p{
    letter-spacing:1px;
    font-family:Arial;
}
.photo{
    background-image:url(SAG_3849.jpg);
    padding:270px;
    background-size:cover;
    background-position:center;
}

.socialm{
    display:none;
}

@media screen and (min-width:769px){
    .mobile{
        display:none;
    }
}
@media screen and (max-width:768px){
    .title a{
        font-size:20px;
        margin-left:35px;
    }
    .dpb{
        font-size:.75rem;
    }
    .dpm a{
        font-size:21px;
        margin-right:10px;
    }
    .sociald{
        display:none;
    }
    .socialm{
        display:flex;
        position: absolute;
        left: 0;
        margin-left:9%;
    }

    .socialm svg{
       width: 25px;
       height: 50px;
       margin-left: 25px;
       margin-right: 5px;
    }

    .box{
       flex-direction:column;
       max-width:750px;
    }
    .photo{
        padding:100px;
    }
}