body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

p blockquote {
    font-size: .9em;
    line-height: 1.6em;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.container {
    text-align: center;
    padding: .8em 1.2em;
}

.s-img, .user-img {
    width: 30%;
}

.manu{
    width: 40%;
    height: 60%;
}
header {
    display: flex;
    justify-content: space-between;
}
.hide-mobile{
    display: none;
}
.img-1{
    width: 100%;
}
h1, .subhead{
    position: relative;
    z-index: 3;
}
.blue-container {
    width: 100%;
    background: #00c2ff;
    color: white;
    margin-top: 15%;
    padding: 3em 0 2em;
    border-top-left-radius: 40px;
    transform: skewY(-2deg);
}
.blue-container::before{
    content: "";
    width: 40px;
    height: 40px;
    background-color: #00c2ff;
    position: absolute;
    top: -39px;
    right: 0;
    z-index: -2;
}
.blue-container::after{
    content: "";
    width: 80px;
    height: 80px;
    background-color: white;
    position: absolute;
    top: -80px;
    right: 0;
    border-radius: 50%;
    z-index: -1;
}
.blue-container ul{
    transform: skewY(2deg);
}
.blue-container ul li{
    margin-bottom: 3em;
}
.blue-container ul li p{
    padding: 0 .5em;
}
.blue-container img{
    width: 20%;
}
.gray-container{
    background: #f6f6f6;
    padding: 4em 0 2em;
    margin-top: -3%;
}
.gray-container img{
    border-radius: 50%;
}
.gray-container ul li:first-child{
    margin-bottom: 2em;
}
figure{
    margin: 0;
    padding: 0;
}
figcaption{
    font-weight: bold;
    color: #00c2ff;
}
h2{
    margin-top: 7%;
}
.cta{
    background: #00cc80;
    width: calc(100% - 1em);
    display: block;
    color: white;
    border-radius: 20px;
    padding: .5em;
    text-decoration: none;
    font-size: 1.5em;
    margin: 3% auto 7%;
    position: relative;
    z-index: 4;
}
.footer-container {
    width: 100%;
    background: #838383;
    color: white;
    padding: 3em 0;
    border-top-right-radius: 40px;
    transform: skewY(2deg);
}
.footer-container div{
    transform: skewY(-2deg);
}
.footer-container::before{
content: "";
    width: 40px;
    height: 40px;
    background-color: #838383;
    position: absolute;
    top: -39px;
    left: 0;
    z-index: -2;
}
.footer-container::after{
    content: "";
    width: 80px;
    height: 80px;
    background-color: white;
    position: absolute;
    top: -80px;
    left: 0; 
    border-radius: 50%;
    z-index: -1;
}
.empty2{
    background-color: #838383;
    margin-top: -3%;
    padding-top: 3%;
    padding-bottom: 1%;
    text-align: center;
}
h4{
    font-weight: bold;
}
nav ul{
    position: fixed;
    width: 60%;
    top: 0;
    right: 0;
    text-align: left;
    background: rgb(41, 165, 134);
    height: 100%;
    z-index: 7;
    padding-top: 3em;
}
nav ul li a{
    color: white;
    text-decoration: none;
    display: block;
    width: 100%;
    padding: 1em 2em;
    background-color: rgb(41, 165, 134);
}
.dclss ul li a{
    color: white;
    text-decoration: none;
    display: block;
    width: 100%;
    padding: 1em 2em;
    background-color: rgb(41, 165, 134);
}
nav ul li a:hover{
    background-color: rgb(73, 109, 100);
}
.exit-btn{
    margin-bottom: 1em;
    margin-top: -1.3em;
    text-align: right;
    padding: 0 1.4em;
    color: white;
}
nav ul img{
    cursor: pointer;
}


@media only screen and (min-width:450px){
    h1{
        font-size: 2em;
    }
    .subhead{
        font-size: 2em;
    }
    p{
        font-size: 1em;
    }

}

@media only screen and (min-width:800px){
    .blue-container ul{
        display: flex;
    }
    .blue-container ul img{
        width: 20%;
    }
    .blue-container ul li:nth-child(2) img{
        width: 27%;
    }
    .blue-container p{
        font-size: 1.5em;
    }
    h1{
        font-size: 3em;
    }
    .gray-container ul{
        display: flex;
    }
    .cta {
        width: 50%;
    }
    .container{
        width: 80%;
        margin: 0 auto;
    }
    .show-desktop{
        display: block;
        margin: 0 auto 13 auto;
    }
    .hide-desktop{
        display: none;
    }
    nav ul{
        position: inherit;
        width: auto;
        background: none;
        height: auto;
        display: flex;
        padding-top: 0;
    }
    nav ul li{
        float: left;
    }
    nav ul li a{
        color: black;
        background: inherit;
        text-align: right;
        padding: 1em 2em;
        font-size: 1.5em;
    }
    nav ul li a:hover{
        background-color: inherit;
    }
    .gray-container{
        padding-top: 10%;
    }
    figure{
        font-size: 1.2em;
    }
}