/*
****************************************************************
File		: style.css
Author		: Barking Raptor LLP (barkingraptorllp@gmail.com)
Description	: General stylesheet for all devices
****************************************************************
*/

/*
***********************************************
CSS RESET
***********************************************
*/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, 
h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, 
code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, 
strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, 
ol, ul, li, fieldset, form, label, legend, table, caption, tbody, 
tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
} 
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
} 

:focus {
    outline: 0;
} 

/*
***********************************************
END CSS RESET
***********************************************
*/

/*
***********************************************
BEGIN SITE CSS
***********************************************
*/

html {
    height: 100%;
    background-color: #000000;
}

body {
    -webkit-text-size-adjust: 100%;
    max-width: 1680px;
    margin: 0 auto;
    padding-bottom: 56px;
}

* {
    box-sizing: border-box;
}

.row::after {
    content: "";
    clear: both;
    display: block;
}

h1 {
    font-family: "bonvenocf";
    color: #ffffff;
    font-size: 24px;
    font-weight: normal;
}

h2 {
    font-family: "bonvenocf";
    color: #ffffff;
    font-size: 18px;
    font-weight: normal;
}

h3 {
    font-family: "montserratregular";
    color: #ffffff;
    font-size: 20px;
    font-weight: normal;
}

@media all and (min-width: 768px) {
    h1 {
        font-size: 26px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 22px;
    }
}

.header {
    height: 80px;
    color: #ffffff;
    padding-top: 30px;
    padding-bottom: 15px;
    text-align: center;
}

.subheader {
    height: 50px;
    color: #ffffff;
    padding: 10px 0px;
    text-align: center;
}

.sectionHeader {
    height: 70px;
    color: #ffffff;
    padding: 20px;
    font-weight: normal;
    text-align: center;
}

.sectionTitle {
    padding-top: 20px;
}

.sectionLinks {
    color: #ffffff;
    padding: 20px;
}

.sectionLinks ul {
    margin-left: 0;
    padding-left: 0;
    list-style-type: none;
}

.sectionLinks ul li {
    position: relative;
    font-family: "montserratregular";
    font-size: 16px;
    line-height: 24px;
    margin-left: 50px;
}

.sectionLinks ul li:before {
    position: absolute;
    left: -25px;
    content: "\2605";
}

.sectionLinks a {
    color: #01bffe;
}

.sectionLinks a:hover {
    color: #9ae5fe;
    transition: 0.4s;
}

p {
    font-family: "montserratregular";
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
    margin-bottom: 1em;
    padding: 0px 30px 10px 30px;
    text-align: left; 
}

.center {
    text-align: center;
}

@media all and (min-width: 768px) {
    p {
        font-size: 18px;
        line-height: 26px;
    }

    .sectionLinks ul li {
        font-size: 18px;
        line-height: 26px;
    }
}

a {
    color: #ffffff;
    text-decoration: none;
} 

a.textLink {
    color: #01bffe;
}

a.textLink:hover {
    color: #9ae5fe;
    transition: 0.4s;
}

textarea {
    resize: none;
}

@media all and (max-width: 1175px) {
    .hide-small {
	   display: none!important;
    }
}

.topOffset {
    margin-top: 56px;/*Need this since nav bar is fixed*/
}

[class*="col-"] {
    width: 100%;
    float: left;
}

/*
***********************************************
Background Colors
***********************************************
*/

.black {
    background-color: #000000;
}

.dark-gray {
    background-color: #222222;
}

.light-gray {
    background-color: #666666;
}

/*
***********************************************
Set up 8-column grid layout
***********************************************
*/

@media all and (max-width: 1175px) {
    .tcol-1 {
	   width: 12.5%;
    }

    .tcol-2 {
	   width: 25%;
    }

    .tcol-3 {
	   width: 37.5%;
    }

    .tcol-4 {
	   width: 50%;
    }

    .tcol-5 {
	   width: 62.5%;
    }

    .tcol-6 {
	   width: 75%;
    }

    .tcol-7 {
	   width: 87.5%;
    }

    .tcol-8 {
	   width: 100%;
    }
}

@media all and (min-width: 1175px) {
    .col-1 {
	   width: 12.5%;
    }

    .col-2 {
	   width: 25%;
    }

    .col-3 {
	   width: 37.5%;
    }

    .col-4 {
	   width: 50%;
    }

    .col-5 {
	   width: 62.5%;
    }

    .col-6 {
	   width: 75%;
    }

    .col-7 {
	   width: 87.5%;
    }

    .col-8 {
	   width: 100%;
    }
}

/*
***********************************************
Navigation Bar
***********************************************
*/

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    max-width: 1680px;
    height: 56px;
    background-color: #000000;
    margin: 0 auto;
    padding: 0;
    z-index: 200;
}

#nav-left {  
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    max-width: 100%;
    height: 56px;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
    padding: 0 10px;
}

#nav-left a {
    font-family: "disco";
    font-size: 20px;
    color: #ffffff;
}

#nav-middle {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 1680px
    max-height: 500px;
    background-color: #444444;
    margin: 0 auto;
}

#nav-middle-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0;
}

#nav-middle-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0;
}

#nav-middle-left a,
#nav-middle-right a {
    font-family: "bonvenocf";
    color: #ffffff;
    cursor: pointer;
}

#nav-middle-left a,
#nav-middle-right a {
    font-size: 16px;
    width: 100%;
    padding: 10px 18px;
}

#nav-middle-left a.selected {
    background-color: #999999;
}

#nav-middle-left a.selected:hover {
    background-color: #999999;
}

#nav-middle-left a:hover {
    background-color: #777777;
    transition: 0.4s;
}

#nav-middle-right a:hover {
    transition: 0.4s ease-in;
}

#nav-middle-right a.join:hover {
    background: rgba(0, 122, 204, 0.85);
}

#nav-middle-right a.donate:hover {
    background: #841617;
}

#nav-right {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    min-width: 60px;
    height: 56px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin: 0;
    padding: 0;
}

#hamburger {
    font-family: "entypo";
    font-size: 40px;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

nav #nav-right:hover {
    background-color: #555555;
    transition: 0.4s ease-out;
}

@media all and (min-width: 375px) {
    #nav-left a {
       font-size: 24px;
    }
}

@media all and (min-width: 430px) {
    #nav-left {  
        width: 350px;
    }

    #nav-left a {
       font-size: 32px;
    }
}

@media all and (min-height: 400px) and (max-width: 1174px) {
    #nav-middle-left a,
    #nav-middle-right a {
        font-size: 18px;
        width: 100%;
        padding: 14px 18px;
    }
}

@media all and (min-height: 472px) and (max-width: 1174px) {
    #nav-middle-left a,
    #nav-middle-right a {
        font-size: 20px;
        width: 100%;
        padding: 20px 18px;
    }
}

@media all and (min-width: 1175px) {
    #nav-left {
        position: static;
    }

    #nav-middle {
        position: static;
        display: flex!important;/*Prevents menu from disappearing if browser resized after collapsing menu*/
        width: 100%;
        height: 56px;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        background-color: #000000;
        margin: 0;
        padding: 0;
    }

    #nav-middle-left {
        display: flex;
        width: 100%;
        height: 56px;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        margin: 0;
        padding: 0;
    }

    #nav-middle-right {
        display: flex;
        width: 220px;
        height: 56px;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        margin: 0;
        padding: 0;
    }

    #nav-middle-left a {
        font-size: 16px;
        width: auto;
        padding: 20px 18px;
    }

    #nav-middle-right a {
        font-size: 20px;
        width: auto;
        padding: 18px 18px;
    }

    #nav-middle-left a:hover {
        background-color: #444444;
    }

    #nav-right {
        display: none;
    }
}

/*
***********************************************
Top Section: Moon + Quote
***********************************************
*/   

#moon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    height: 100vh;
    background-image: url("images/moon_850.jpg");
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 0;
}

@media all and (min-width: 450px) {
    #moon {
        background-image: url("images/moon_1200.jpg");
    }
}

@media all and (min-width: 768px) {
    #moon {
        background-image: url("images/moon_1680.jpg");
    }
}

@media all and (max-device-width: 1024px) {
    #moon {
        background-attachment: scroll;
    }
}

#quote-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 400px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 3px;
}

#quote-container:hover {
    background: rgba(0, 0, 0, 0.65);
    transition: 0.6s;
}

#quote-container p {
    font-family: "bonvenocf";
    font-size: 16px;
    color: #ffffff;
    margin: 0;
    padding: 25px;
}

#quote-container p.cursive-text {
    font-family: "homemadeapple";
    font-size: 30px;
    padding: 16px 0px 8px 0px;
}

@media all and (min-width: 380px) {
    #quote-container p {
        font-size: 22px;
    }

    #quote-container p.cursive-text {
        font-size: 36px;
    }
}

/*
***********************************************
Main Section: 
Contact + Social + Calendar
***********************************************
*/ 

#nebula {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    max-width: 100%;
    height: 600px;
    background-image: url("images/nebula_1680.jpg");
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
}

@media all and (max-device-width: 1024px) {
    #nebula {
        background-attachment: scroll;
    }
}

#contactContainer {
    width: 320px;
    height: 450px;
    background: rgba(0, 0, 0, 0.75);
    margin: 50px 50px 0px 50px;
    padding: 0;
}

#contactHeader {
    font-family: "bonvenocf";
    font-size: 24px;
    color: #ffffff;
    font-weight: normal;
    padding-top: 50px;
    padding-bottom: 20px;
}

.contactText,
.contactTextarea {
    width: 290px;
    font-family: "montserratregular";
    font-size: 16px;
    color: #000000;
    background: #ffffff;
    margin: 10px;
    padding: 5px;
    border: 1px solid #aaaaaa;
    border-radius: 2px;
}

.contactText {
    height: 35px;
}

.contactTextarea {
    height: 100px;
    margin-bottom: 35px;
}

/*Adjust placeholder text color for...
Chrome, Firefox, Opera, Safari 10.1+*/
::placeholder {
    color: #666666;
    opacity: 1; /*This fixes the opacity in Firefox browsers*/
}

/*Internet Explorer 10-11*/
:-ms-input-placeholder {
    color: #666666;
}

/*Internet Explorer Microsoft Edge*/
::-ms-input-placeholder {
    color: #666666;
}

input.contactText:focus,
input.contactText:focus,
textarea.contactTextarea:focus {
    outline: #01bffe solid 3px;
}

#contactSubmit {
    width: 200px;
    height: 35px;
    background-color: #333333;
    font-family: "montserratregular";
    font-size: 16px;
    color: #ffffff;
    border: 1px solid #aaaaaa;
    cursor: pointer;
}

#contactSubmit:focus,
#contactSubmit:hover {
    background-color: #666666;
    transition: 0.4s ease-out;
}

#calendarWrapper {
    position: relative;
    height: 500px;
    margin: 0px 50px 0px 50px;
}

#calendarContainer {
    width: 320px;
    height: 500px;
    background: rgba(0, 0, 0, 0.75);
    margin: 0;
    padding: 0;
}

#calendarHeader {
    font-family: "bonvenocf";
    font-size: 24px;
    color: #ffffff;
    font-weight: normal;
    padding-top: 50px;
    padding-bottom: 20px;
}

#calendar {
    max-width: 290px;
    height: 390px;
    background-color: #000000;
    margin: 0 auto;
}

.fc-widget-header {
    font-family: "montserratlight";
    font-weight: normal;
    text-transform: uppercase;
}

table.fc-list-table tr.fc-list-item:hover td,
table.fc-list-table tr.fc-has-url:hover td {
    background-color: #333333;
}

.fc-list-item,
.fc-has-url {
    font-family: "montserratlight";
    font-size: 16px;
    color: #ffffff;
}

.fc-list-item-title a[href]:hover {
    text-decoration: none; 
}

.eventPopup {
    position: absolute;
    top: 30%;
    left: 0;
    right: 0;
    display: none;
    width: 300px;
    height: auto;
    font-family: "montserratlight";
    font-size: 16px;
    background-color: #c42124;
    margin: 0 auto;
    padding: 5px 10px;
    text-align: left;
    z-index: 100;
}

.eventPopup p,
.eventTitle,
.eventLocation,
.eventDate,
.startTime,
.endTime {
    font-size: 16px;
    color: #ffffff;
    margin: 0;
    padding: 5px 0px;
    text-transform: uppercase;
}

.eventTitle,
.eventLocation,
.eventDate,
.startTime,
.endTime {
    text-transform: none;
}

.eventLocation {
    text-decoration: underline;
}

#socialContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 320px;
    height: 500px;
    margin: 0px 50px 0px 50px;
    padding: 0;
}

input#twitter-tab,
input#facebook-tab {
    display: none;
}

input:checked + label.tabs {
    background: rgba(0, 0, 0, 0.75);
}

input:not(:checked) + label.tabs {
    background: rgba(100, 100, 100, 0.75);
}

label.tabs {
    display: inline-block;
    font-family: "montserratlight";
    font-size: 16px;
    color: #ffffff;
    text-align: left;
    padding: 17px 10px 17px 10px;
    border-radius: 5px 5px 0 0;
}

label.tabs:hover {
    cursor: pointer;
}

#twitter-container,
#facebook-container {
    display: none;
}

input#twitter-tab:checked ~ #twitter-container,
input#facebook-tab:checked ~ #facebook-container {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 320px;
    height: 450px;
    background: rgba(0, 0, 0, 0.75);
    justify-content: center;
    align-items: center;
    border-radius: 0 0 3px 3px;
}

@media all and (max-width: 1586px) {
    #nebula {
        height: 1200px;
    }

    #contactContainer {
        margin: 0px 275px 0px 275px;/*Pushes calendarContainer to next line*/
    }
}

@media all and (max-width: 1175px) {
    #nebula {
        flex-direction: column;
        height: 1700px;
    }

    #contactContainer {
        margin: 0px 50px 0px 50px;
    }

    #calendarWrapper {
        margin: 40px 50px 40px 50px;
    }

    #socialContainer {
        margin: 0px 50px 0px 50px;
    }

}

@media all and (min-width: 768px) {
    #calendarContainer {
        width: 600px;
    }

    #calendar {
        max-width: 570px;
    }
}

/*
***********************************************
Sponsors
***********************************************
*/   

.sponsors {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    padding: 25px 0px 25px 0px;
}

.empty {
    height: 1px;
}

img.sponsor-logo {
    max-width: 100%;
}

/*
***********************************************
About Us
***********************************************
*/ 

.sectionText p {
    margin: 0;
    padding: 0px 15px 12px 15px;
}

.sectionHide {
    display: none;
}

.imageButton {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    height: 60px;
}

.imageButton button {
    font-family: "entypo";
    font-size: 60px;
    color: #ffffff;
    background-color: transparent;
    margin: 0;
    padding: 20px 0 45px 0;
    border: none;
    cursor: pointer;
}

.imageButton button:hover {
    color: #9ae5fe;
    transition: 0.4s ease-in;
}

#starpartyImages,
#discussionsImages,
#demosImages,
#soonertariumImages {
    display: none;
}

#group {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#groupPhoto {
    max-width: 100%;
    max-height: 100%;
    padding: 0 15px;
}

.setGroupHeight {
    max-height: 420px;
}

.setHeight {
    max-height: 400px;
}

.imageContainer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.selectedImage {
    max-width: 100%;
    max-height: 100%;
    padding: 0px 15px;
}

[class*="Numbers"] {
    font-family: "robotoregular";
    font-size: 16px;
    color: #ffffff;
}

.arrows {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    max-height: 100px;
}

.arrows a {
    font-size: 18px;
    color: #ffffff;
    margin: 15px 40px;
    padding: 15px;
    border-radius: 2px;
    cursor: pointer;
}

.arrows a:hover {
    background-color: #444444;
    transition: 0.4s ease-in;
}

.spNumbers,
.pdNumbers,
.dNumbers,
.sNumbers {
    width: 85px;
    text-align: center;
}

@media all and (min-width: 400px) {
    [class*="Numbers"] {
        font-size: 20px;
    }

    .arrows a {
        font-size: 26px;
        padding: 20px;
        cursor: pointer;
    }
}

/*
***********************************************
Resources
***********************************************
*/ 

.nebula3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    height: 250px;
    background-image: url("images/nebula3_850.jpg");
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

@media all and (min-width: 450px) {
    .nebula3 {
        background-image: url("images/nebula3_1200.jpg");
    }
}

@media all and (min-width: 768px) {
    .nebula3 {
        background-image: url("images/nebula3_1680.jpg");
    }
}

@media all and (max-device-width: 1024px) {
    .nebula3 {
        background-attachment: scroll;
    }
}

.resources {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100px;
    padding: 0px 5px;
    background: rgba(0, 0, 0, 0.75);
    border-radius: 3px;
}

.resources p {
    padding-top: 15px;
}

.textsection {
    height: 1500px;
}

/*
***********************************************
Citizen Science
***********************************************
*/ 

#nebula2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    height: 500px;
    background-image: url("images/nebula2_850.jpg");
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

@media all and (min-width: 450px) {
    #nebula2 {
        background-image: url("images/nebula2_1200.jpg");
    }
}

@media all and (min-width: 768px) {
    #nebula2 {
        background-image: url("images/nebula2_1680.jpg");
    }
}

@media all and (max-device-width: 1024px) {
    #nebula2 {
        background-attachment: scroll;
    }
}

#citizenScience {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 90%;
    padding: 0px 5px 10px 0px;
    background: rgba(0, 0, 0, 0.75);
    border-radius: 3px;
}

#citizenScience p {
    padding-top: 15px;
}

/*
***********************************************
Join
***********************************************
*/ 

#joinContainer {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    width: 320px;
    height: 320px;
    background-color: #333333;
    margin: 0;
    padding: 0 10px 10px 10px;
    border-radius: 3px;
    text-align: center;
    z-index: 300;
}

#close {
    font-family: "montserratregular";
    font-size: 16px;
    color: #ffffff;
    width: 100px;
    height: 35px;
    cursor: pointer;
    background-color: #007acc;
    border: none;
    margin-top: 20px;
}

#close:hover {
    background-color: #4db8ff;
    transition: 0.6s;
}

#joinHeader {
    font-family: "montserratlight";
    font-size: 20px;
    text-align: center;
    color: #ffffff;
    margin: 0;
    padding: 20px 0 0 0;
}

#joinSubheader {
    font-family: "montserratlight";
    font-size: 18px;
    text-align: center;
    color: #ffffff;
    margin: 0;
    padding: 10px 0 25px 0;
}

.joinText {
    font-family: "montserratlight";
    font-size: 18px;
    text-align: center;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

#joinSocial {
    font-family: "socialmediacircled";
    font-size: 50px;
    text-align: center;
    color: #ffffff;
    margin: 0;
    padding: 30px 0;
}

#joinSocial a {
    padding: 0 20px;
}

#joinSocial a#facebookJoin:hover {
    color: #3B5998;
}

#joinSocial a#twitterJoin:hover {
    color: #1DA1F2;
}

/*
***********************************************
Donate
***********************************************
*/ 

#donateContainer {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    width: 320px;
    height: 320px;
    background-color: #333333;
    margin: 0;
    padding: 0 10px 10px 10px;
    border-radius: 3px;
    text-align: center;
    z-index: 300;
}

#donateSubmit {
    font-family: "montserratregular";
    font-size: 16px;
    color: #ffffff;
    width: 100px;
    height: 35px;
    cursor: pointer;
    background-color: #841617;
    border: none;
    margin: 25px 10px 0px 0px;
}

#donateSubmit:hover {
    background-color: #ae1e20;
    transition: 0.6s;
}

#cancel {
    font-family: "montserratregular";
    font-size: 16px;
    color: #ffffff;
    width: 100px;
    height: 35px;
    cursor: pointer;
    background-color: #555555;
    border: none;
    margin: 25px 0px 0px 10px;
}

#cancel:hover {
    background-color: #777777;
    transition: 0.6s;
}

#donateHeader {
    font-family: "montserratlight";
    font-size: 20px;
    text-align: center;
    color: #ffffff;
    margin: 0;
    padding: 25px 0 0 0;
}

#donateSubheader {
    font-family: "montserratlight";
    font-size: 16px;
    color: #ffffff;
    margin: 0;
    padding: 20px 5px 25px 5px;
}

#donateText {
    font-family: "montserratlight";
    font-size: 18px;
    text-align: center;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

/*
***********************************************
No JavaScript
***********************************************
*/  

#noscript {
    position: fixed;
    bottom: 56px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    max-width: 1680px;
    max-height: 120px;
    font-family: "robotoregular";
    font-size: 16px;
    color: #ffffff;
    background-color: #c42124;
    margin: 0 auto;
    padding: 10px;
}

/*
***********************************************
Footer
***********************************************
*/   

#footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    max-width: 1680px;
    height: 56px;
    z-index: 200;
}

#footer-left {
    display: flex;
    width: 90px;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding-left: 10px;
}

#OU {
    width: 80%;
}

#footer-center {
    display: flex;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

#footer-center-copyright {
    display: flex;
    max-width: 100%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#footer-center-designed {
    display: flex;
    max-width: 100%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#footer-center p {
    font-size: 10px;
    margin: 0;
    padding: 0;
}

@media all and (min-width: 400px) {
    #footer-center p {
        font-size: 12px;
    }
}

@media all and (min-width: 768px) {
    #footer-center p {
        font-size: 16px;
    }
}

#footer-center a:hover {
    color: #96d457;
}

#footer-right {
    display: flex;
    width: 90px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-right: 10px;
    font-family: "socialmediacircled";
}

#footer-right a {
    font-size: 24px;
    margin: 0;
    padding: 0px 5px;
}

@media all and (min-width: 375px) {
    #footer-left {
        width: 120px;
    }

    #OU {
        width: 100%;
    }

    #footer-right {
        width: 120px;
    }

    #footer-right a {
        font-size: 28px;
    }
}

@media all and (min-width: 768px) {
    #footer-right a {
        font-size: 34px;
        padding: 0px 10px;
    }
}

#footer-right a.facebook-icon:hover {
    color: #3B5998;
}

#footer-right a.twitter-icon:hover {
    color: #1DA1F2;
}