html {
    margin: 0px auto;
    line-height: 1.6;
    background-color: white;
}

body {
    background-color: white;
    background-size: cover;
    font-size: 20px;
    font-family: Questrial, sans-serif;
    color: black;
    height: auto;
    line-height: 1.5;
    margin: 0 auto;
    max-width: 100%;
}

p {
    text-align: left;
    font-size: 16px;
    padding-bottom: 20px;
}

body,
html {
    height: 100%;
    margin: 0;
}

*:focus {
    outline: 0;
}

h3 {
    text-align: center;
    font-family: Questrial, sans-serif;
    color: grey;
}

.container {
    padding: 24px 24px 24px 24px;
    margin: 30px 55px;
    background: white;
    border-radius: 4px;
}

.parallax {
    height: 400px;
    /* Create a parallax effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Turn off parallax scrolling for all tablets and phones. Increase/decrease the pixels if needed */
@media only screen and (max-device-width: 1366px) {
    .parallax {
        background-attachment: scroll;
    }
}

label {
    font-size: 0.85em;
    margin-left: 12px;
}


w3-btn,
.w3-button {
    border: none;
    float: left;
    display: inline-block;
    padding: 8px 16px;
    vertical-align: middle;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background-color: inherit;
    text-align: center;
    cursor: pointer;
    white-space: nowrap
}

.bg {
    /* The image used */
    background-image: url("images/beach.png");
    height: 75%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 10px;
    margin-top: 10px;
}


.center {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px;
}


h1 {

    margin-top: 30px;
    margin-bottom: 30px;
    color: #947481;
    font-weight: 400;
    font-family: 'Questrial';
    text-align: center;
}

h2 {
    color: #947481;
    font-weight: 600;
    font-family: 'Questrial';
    text-align: center;
}

h4 {
    color: #947481;
    font-weight: 600;
    font-family: 'Questrial';
    text-align: center;
    display: inline-block;
}

header {
    list-style: none;
    margin: 0 auto;
    width: 100%;
    background-color: white;
    height: auto;
    padding-top: 1em 2em 2em;
    color: #ef9787;
    font-family: 'brandon-grotesque,avenir,sans-serif';
    text-align: center;
}



.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: lightcoral;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidebar a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 20px;
    color: #111;
    display: block;
    transition: 0.3s;
}

.sidebar a:hover {
    color: #f1f1f1;
}

.sidebar .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 30px;
    margin-left: 50px;
}

.openbtn {
    float: left;
    font-size: 16px;
    cursor: pointer;
    background-color: #4b6777;
    color: white;
    padding: 5px 10px;
    border: none;
}

.openbtn:hover {
    background-color: #444;
}

@import "compass/css3";

$dark: #212121;
$light: #efefef;
$color: #b3e5fc;

@mixin btn($left, $top) {
    position: absolute;
    width: 60px;
    height: 60px;
    top: $top;
    left: $left;
    transition-duration: 0.5s;
}

@mixin icon($height, $width) {
    transition-duration: 0.5s;
    position: absolute;
    height: $height;
    width: $width;
    top: 30px;
    background-color: $dark;
}

@mixin icon-before($height, $width, $top) {
    transition-duration: 0.5s;
    position: absolute;
    width: $width;
    height: $height;
    background-color: $dark;
    content: "";
    top: $top;
}

@mixin icon-after($height, $width, $top) {
    transition-duration: 0.5s;
    position: absolute;
    width: $width;
    height: $height;
    background-color: $dark;
    content: "";
    top: $top;
}

@mixin icon-circle($height, $width) {
    transition-duration: 0.5s;
    position: absolute;
    height: $height;
    width: $width;
    top: 2px;
    border-radius: 100%;
    background: transparent;
    border: 4px solid black;
    left: -15px;
}

body {
    background-color: $light;
    font-family: 'Roboto', sans-serif;
    color: $dark;
}

.container {
    position: relative;
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
}

h1,
p {
    text-align: center;
}


.btn10 {
    @include btn(120px, 300px);

    .icon {
        @include icon(8px, 60px);

        :before {
            @include icon-before(8px, 60px, -20px);
        }

        &:after {
            @include icon-after(8px, 60px, 20px);
        }
    }

    .open {
        .icon {
            transition-duration: 0.5s;
            transform: rotateZ(-180deg);

            &:before {
                transform: rotateZ(-45deg) scaleX(0.75) translate(-20px, -6px);
            }

            &:after {
                transform: rotateZ(45deg) scaleX(0.75) translate(-20px, 6px);
            }
        }
    }

    :hover {
        cursor: pointer;
    }
}

#main {
    transition: margin-left .5s;
    padding: 16px;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
    .sidebar {
        padding-top: 13px;
    }

    .sidebar a {
        font-size: 15px;
    }
}


ul.a {
    list-style-type: square;
    list-style-position: inside;
    font-family: serif;
    background-color: aliceblue;
    text-align: left;
}

section {
    text-align: center;
    width: 100%;
    margin-bottom: 30px;
}

.clickme {
    background-color: white;
    color: black;
    border: 2px solid #4b6777;
    padding: 5px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;

}

.clickme:hover {
    background-color: #4b6777;
    color: #f5beb4;
}


.div-block-1 {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 223px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 45px;
    height: 130px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    background-color: #fff;
}


@media (max-width: 767px) {
    .div-block-1 {
        left: 0;
        right: 0;
        bottom: 0;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        height: 50px;
        padding-top: 10px;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        border-bottom-right-radius: 0;
    }
}



#main {
    margin-top: 30px;
    width: 80%;
}



/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .column {
        width: 100%;
    }
}


.fa {

    padding: 1px;
    font-size: 20px;
    width: 20px;
    text-decoration: none;

}

.fa:hover {
    opacity: 0.7;
}

.fa-instagram {
    background: #4b6777;
    color: white;
}

.fa-linkedin {
    background: #4b6777;
    color: white;
}

@media screen and (min-width: 601px) {
    div.centered {
        font-size: 40px;
    }
}

@media screen and (max-width: 600px) {
    div.centered {
        font-size: 18px;
    }
}

img {
    max-width: 100%;
    max-height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.img-container {
    float: left;
    width: 28%;
    height: auto;
    margin-left: 4%;
    margin-top: 3%;
}

.responsive {
    width: 100%;
    height: auto;
    max-width: 400px;
    height: auto;
}

.img-responsive {
    max-width: 500px;
    height: auto;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;

}

.c-nav-mobile-small_item {
    margin: 0 !important;
}

.c-copyright {
    margin: 0;
    font-weight: 600;
    letter-spacing: 2px;
}

.c-copyright a {
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0;
}

@media (min-width: 1024px) {
    .c-copyright {
        font-size: 0.625rem;
    }
}

@media (max-width: 1023px) {
    .c-copyright {
        font-size: 10px;
        margin-top: 70px;
    }
}

.footer {
    background-color: floralwhite;
    overflow: hidden;
    list-style: none;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    top: 5px;
}

.footer a {
    margin: 0 auto;
    display: inline-block;
    color: darkslategray;
    font-family: Questrial, sans-serif;
    text-align: center;
    padding: 6px 6px;
    text-decoration: none;
    font-size: 12px;
}


.footer a:hover {
    background-color: #fff;
    color: #947481;
    font-weight: 500;
}

.footer a.active {
    background-color: #F07E7C;
    color: darkslategray;
}

.footer .icon {
    display: none;
}

.footer.responsive a {
    float: none;
    display: block;
    text-align: left;
}

@media screen and (max-width: 600px) {
    .footer a:not(:first-child) {
        display: none;
    }

    .footer a.icon {
        float: right;
        display: block;
    }
}

@media screen and (max-width: 600px) {
    .footer.responsive {
        position: relative;
    }

    .footer.responsive .icon {
        position: absolute;
        right: 0;
        top: 0;
    }

    .footer.responsive a {
        float: none;
        display: block;
        text-align: left;
    }


    label {
        margin: 0 40px 0 0;
        font-size: 26px;
        line-height: 70px;
        display: none;
        width: 26px;
        float: right;
    }



    #content {
        width: 100%;
        background-color: white;
        box-sizing: border-box;
        display: flex;
    }
