html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'proxima-nova', sans-serif;
}

/*
    SITE COLORS:
    NEARLY BLACK - #141414
    DARK GREY - #292929
    SLIGHTLY LESS DARK GREY - #404040
    LIGHT GREY - #EDEDED
    ORANGE - #F58C3F

    TEXT COLORS:
    DARK - #656565
    MED - #A9A9A9
    LIGHT - #BCBCBC
*/

h2 {
    font-weight: 600;
}

h5 {}

p {
    1em;
}








/*----NAV----*/

nav {
    background-color: #141414;
    color: #fff;
}

/* See ADDITIONAL style for navCollapsed in tag - inline CSS */

.navCollapsed {
    display: none;
}

.navCollapsed p-4 {
    padding: 0;
    margin: 0;
}

.navCollapsed h5 {
    color: #dedede;
    padding: 0px 5px;
}

.navCollapsedLink {
    background-color: #141414;
    width: 100%;
    margin: 5px 0px;
    padding: 5px;
}

.navCollapsedNotLink {
    color: #989797;
    width: 100%;
    margin: 5px 0px;
    padding: 0px 5px 5px 5px;
}

.navCollapsedSub {
    padding-top: 5px;
}

.navbar-toggler {
    padding: 2px 3px;
    margin: 18px 0px 0px 15px;
}

nav a {
    color: #EDEDED;
    transition: color 0.1s linear 0s;
}

nav a:hover {
    text-decoration: none;
    color: #989797;
}

nav a:active {}

.navCollapsed a {
    color: #989797;
    transition: color 0.1s linear 0s;
}

.navCollapsed a:hover {
    color: #7C7C7C;
    text-decoration: none;
}

.navCollapsed a:active {}

.navCollapsedNotLink a {
    color: #4e4e4e;
}

.navCollapsedNotLink a:hover {
    color: #989797;
    background-color: #141414;
}

.navText {
    padding-top: 2px;
}

.mmlNav img {
    width: 50px;
}

.language {
    color: #7C7C7C;
}

.lang {
    color: #7C7C7C;
    font-weight: 300;
}

.lang:hover {
    color: #EDEDED;
}

/* Assign landActive to language link that is active in HTML*/

.langActive {
    color: #F58C3F;
    font-weight: 400;
}

.langActive:hover {
    color: #F58C3F;
}

/*
.navCollapsed .icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: currentColor;
    fill: #F58C3F;
    margin-bottom: 5px;
}
*/

/*
.navCollapsedLink {
    width: 1.5em;
}*/

.topMobile .icon-arrow-up {
    z-index: 110;
    display: inline;
    width: 1.5em;
    height: 1.5em;
    stroke-width: 0;
    stroke: #FFF;
    fill: #FFF;
    padding: 1px;
    margin: 4px 2px 0px 0px;
}

.navCollapsedLink button {
    border: none;
    border-radius: 5px;
    color: white;
    padding: 15px 25px;
    margin-top: 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    background-color: #F58C3F;
    transition: all 0.1s linear 0s;
    cursor: pointer;
}

.navCollapsedLink button:hover {
    background-color: #E57B33;
}

.navCollapsedLink button:active {
    background-color: #F58C3F;
}









/*----HEADER----*/

.logoCollapsed {
    text-align: right;
    font-weight: 100;
    font-size: 1.2em;
    margin-bottom: 40px;
    margin-top: 30px;
}


.headerRegular {
    background-image: url(./assets/test.jpeg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 250px 0px;
}

.MMLLogo {
    height: 180px;
}

.fishLogo {
    height: 180px;
    margin-left: -30px;
}

.sloganLogo {
    font-weight: 100;
    font-size: 2.8em;
    padding-top: 5px;
}

.headerCollapsed img {
    width: 100%;
    margin: auto;
}

/*
.MMLLogoCollapsed {
    margin-top: 30px;
    margin-bottom: 0;
}*/

.fullLogo {
    margin: auto;
    width: 710px;
}

.top {
    z-index: 100;
    position: fixed;
    bottom: 25px;
    right: 25px;
    opacity: 0.8;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 5px;
    background-color: #BCBCBC;
    transition: all 0.5s;
    background-image: url(./assets/Top_Arrow.png);
    background-repeat: no-repeat;
    background-size: 70%;
    background-position: center;
}

.topMobile {
    z-index: 100;
    position: fixed;
    bottom: 20px;
    right: 20px;
    opacity: 0.8;
    width: 35px;
    height: 35px;
    border: none;
    border-radius: 8px;
    background-color: #BCBCBC;
    transition: all 0.5s;
    background-image: url(./assets/Top_Arrow.png);
    background-repeat: no-repeat;
    background-size: 70%;
    background-position: center;
}

.icon-arrow-up {
    z-index: 110;
    display: inline;
    width: 1.5em;
    height: 1.5em;
    stroke-width: 0;
    stroke: #FFF;
    fill: #FFF;
    margin: 7px 0px 0px 8px;
}

.hideTop {
    opacity: 0;
    bottom: -25px;
}

.showTop {
    opacity: 0.5;
    bottom: 25px;
}

.top:hover,
.topMobile:hover {
    opacity: 0.8;
}









/*----ABOUT----*/

#about {
    background-color: white;
    padding: 100px 0px;
}

.aboutTitle {
    text-align: center;
    padding-bottom: 60px;
    margin: 0;
}

#about h2 {
    color: #656565;
}

#about h5 {
    color: #A9A9A9;
}

.aboutCircle {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 50%;
    padding-bottom: 50%;
}

.aboutCircle-a {
    background-image: url(./assets/Feature-a.png);
}

.aboutCircle-b {
    background-image: url(./assets/Feature-b.png);
}

.aboutCircle-c {
    background-image: url(./assets/Feature-c.png);
}

.aboutTexts {
    text-align: center;
    padding-top: 25px;
}

.aboutCirclesMobile {
    display: none;
}

.aboutCircles p {
    color: #BCBCBC;
}








/*----COURSEWARE----*/

#courseware {
    background-image: url(./assets/test.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 100px;
    color: #EDEDED;
    box-shadow: 0px 10px 20px -15px rgba(0, 0, 0, 0.5) inset, 0px -10px 20px -15px rgba(0, 0, 0, 0.5) inset;
}

.coursewareTitle {
    text-align: right;
    padding-left: 180px;
}

.coursewareParagraph {
    padding-right: 280px;
}








/*----GRAPHIC DESIGN----*/

#graphic {
    background-color: white;
    text-align: center;
    padding: 75px 0px;
}

.graphicText {
    margin: 0;
}

.graphicGallery {
    background-image: url(./assets/test.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 480px;
    width: 800px;
    margin: auto;
}

#graphic h2 {
    padding-bottom: 10px;
    color: #656565;
}

#graphic h5 {
    color: #A9A9A9;
}

#graphic p {
    color: #BCBCBC;
}




/*----PHOTOGRAPHY----*/

#photography {
    background-color: #292929;
    color: #EDEDED;
}

.photographyGallery {
    text-align: center;
    background-image: url(./assets/test.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    /*    Change above to a GALLERY     */
}

.photographyText {
    margin: auto;
}

.photographyText p {
    padding: 10% 10% 10% 10%;
}

#photography h2 {
    padding: 10% 0 5% 0;
    text-align: center;
}

.photographyRegular img {
    width: 200px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.photographyCollapsed {
    display: none;
}

.photographyCollapsed .photographyText {
    text-align: center;
}








/*----VIDEO----*/

#video {
    background-color: #EDEDED;
    padding: 0;
    margin: 0;
}

.videoLarge {
    padding: 75px 0px;
}

.videoTitle {
    padding: 0;
}

#video h2 {
    padding-bottom: 25px;
    color: #A9A9A9;
}

.videoText {
    background-color: #404040;
    padding: 20px 10px 0px 30px;
    height: 410px;
}

.videoText h5 {
    padding-bottom: 25px;
    color: #EDEDED;
}

.videoText p {
    /*padding-right: 160px;*/
    color: #EDEDED;
}

.videoVideo {
    padding-top: 50px;
}

.videoVideo img {
    display: block;
    margin-left: -180px;
    height: 300px;
}

.videoMedium {
    display: none;
}

.videoSmall {
    display: none;
}








/*----AUDIO----*/

#audio {
    background-color: #292929;
    color: #EDEDED;
}

.audioContent {
    padding: 100px 25px;
}

.audioText {
    padding-left: 50px;
    padding-right: 30%;
}

#audio h2 {
    padding-bottom: 25px;
}

.audioLogo img {
    width: 200px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    float: right;
}

.audioPlayer {
    background-image: url(./assets/test.jpeg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    width: 35%;
    padding-bottom: 35%;
}

.audioLine {
    background-color: #404040;
}

.audioSpace {
    background-image: url(./assets/Audio_Graphic.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 120% 120%;
}

.audioCollapsed {
    display: none;
}








/*----SOFTWARE----*/

#software {
    background-color: #fff;
    margin: 0px;
    padding: 75px 0px;
    text-align: center;
}

#software h2 {
    color: #656565;
}

#software h5 {
    color: #A9A9A9;
}

#software p {
    color: #BCBCBC;
}

.softwareText {
    padding-top: 100px;
    padding-bottom: 175px;
    background-color: #EDEDED;
}

.softwareCircles {
    padding: 0px 160px;
    margin: 0;
}

.softwareCircle img {
    margin-top: -90px;
    width: 175px;
}

.softwareTextSub {
    margin: 0;
}








/*----CONTACT----*/

#contact {
    background-color: #404040;
    color: #EDEDED;
}

.contactImage {
    background-image: url(./assets/test.jpeg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.contactText {
    margin: auto;
    padding: 75px;
}

#contact hr {
    margin-right: 40%;
}

#contact p {
    color: #BCBCBC;
}

#contact a {
    color: #FFF;
    transition: color 0.3s linear 0s;
}

#contact a:hover {
    color: #656565;
    text-decoration: none;
}

#contact a:active {
    color: #BCBCBC;
}

#contact .icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: currentColor;
    fill: #F58C3F;
    margin: 5px 5px 5px 0px;
}







/*----FOOTER----*/

footer {
    background-color: #141414;
    color: #404040;
}

.footerMobile {
    display: none;
}

.footerWeb img {
    width: 250px;
    margin: 75px;
}

.footerCopyright {
    text-align: center;
    padding-top: 35px;
    padding-bottom: 20px;
    background-color: #000;
    border-top-style: solid;
    border-top-width: 1px;
    border-top-color: #212121;
}



















/*   ANIMATIONS for fade-in movements on ABOUT and SOFTWARE CIRCLES   */

.animatable {

    /* initially hide animatable objects */
    visibility: hidden;

    /* initially pause animatable objects their animations */
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -ms-animation-play-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused;
}

/* show objects being animated */

.animated {
    visibility: visible;

    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;

    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -ms-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;

    -webkit-animation-play-state: running;
    -moz-animation-play-state: running;
    -ms-animation-play-state: running;
    -o-animation-play-state: running;
    animation-play-state: running;
}

/* CSS Animations (extracted from http://glifo.uiparade.com/) */

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    20% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    20% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-o-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    20% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    60% {
        opacity: 0;
    }
    20% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes fadeInUp {
    0% {
        opacity: 0;
        -moz-transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0);
    }
}

@-o-keyframes fadeInUp {
    0% {
        opacity: 0;
        -o-transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -o-transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@-webkit-keyframes moveUp {
    0% {
        opacity: 1;
        -webkit-transform: translateY(40px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes moveUp {
    0% {
        opacity: 1;
        -moz-transform: translateY(40px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0);
    }
}

@-o-keyframes moveUp {
    0% {
        opacity: 1;
        -o-transform: translateY(40px);
    }

    100% {
        opacity: 1;
        -o-transform: translateY(0);
    }
}

@keyframes moveUp {
    0% {
        opacity: 1;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated.animationDelay {
    animation-delay: .4s;
    -webkit-animation-delay: .4s;
}

.animated.animationDelayMed {
    animation-delay: 1.2s;
    -webkit-animation-delay: 1.2s;
}

.animated.animationDelayLong {
    animation-delay: 1.6s;
    -webkit-animation-delay: 1.6s;
}

.animated.fadeBgColor {
    -webkit-animation-name: fadeBgColor;
    -moz-animation-name: fadeBgColor;
    -o-animation-name: fadeBgColor;
    animation-name: fadeBgColor;
}

.animated.fadeIn {
    -webkit-animation-name: fadeIn;
    -moz-animation-name: fadeIn;
    -o-animation-name: fadeIn;
    animation-name: fadeIn;
}

.animated.fadeInDown {
    -webkit-animation-name: fadeInDown;
    -moz-animation-name: fadeInDown;
    -o-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

.animated.fadeInUp {
    -webkit-animation-name: fadeInUp;
    -moz-animation-name: fadeInUp;
    -o-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.animated.moveUp {
    -webkit-animation-name: moveUp;
    -moz-animation-name: moveUp;
    -o-animation-name: moveUp;
    animation-name: moveUp;
}










/*----BOOTSTRAP MEDIA QUERIES----*/

/* Extra small devices (portrait phones, less than 576px)*/

@media (max-width: 575.98px) {}

/* Small devices (landscape phones, less than 768px)*/

@media (max-width: 767.98px) {

    /*  NAV  */
    .navCollapsed {
        display: block;
    }

    .navRegular,
    .headerRegular {
        display: none;
    }

    #top {
        display: none;
    }

    /*  ABOUT  */
    .aboutCirclesWeb {
        display: none;
    }

    .aboutCirclesMobile {
        display: block;
    }

    #about {
        padding: 60px 0px 25px 0px;
    }

    #about h5 {
        padding-right: 10px;
        padding-left: 10px;
    }

    .aboutTitle {
        padding: 0px 0px 40px 0px;
        margin: 0;
    }

    .aboutCircles {
        padding-bottom: 35px;
    }

    .aboutText {
        padding-left: 0%;
    }

    #about p {
        font-size: 0.8em;
    }

    .aboutTexts {
        padding-top: 0;
    }

    .aboutCircle {
        width: 100%;
        padding-bottom: 100%;
    }

    /*  COURSEWARE  */
    .coursewareParagraph {
        padding: 35px 0px 0px 0px;
    }

    .coursewareTitle p {
        font-size: 0.8em;
    }

    .coursewareTitle {
        padding: 0;
        text-align: left;
    }

    /*  GRAPHIC  */
    #graphic {
        padding-bottom: 0;
        text-align: left;
    }

    #graphic p {
        padding-top: 15px;
        padding-bottom: 20px;
    }

    .graphicGallery {
        height: 180px;
        width: 100%;
    }

    .graphicText {
        padding: 0px 10px 0px 10px;
        margin: 0;
    }

    /*  PHOTOGRAPHY  */
    .photographyRegular {
        display: none;
    }

    .photographyCollapsed {
        display: block;
        padding: 40px 25px 20px 25px;
    }

    .photographyGallery {
        background-image: url(./assets/test.jpeg);
        background-repeat: no-repeat;
        background-size: cover;
        height: 150px;
    }

    .photographyLogo {
        text-align: center;
        padding: 0px 0px 30px 0px;
    }

    .photographyLogo img {
        width: 150px;
    }

    .photographyCollapsed h2 {
        padding-top: 5px;
        padding-bottom: 20px;
    }

    /*  VIDEO  */
    .videoLarge {
        display: none;
    }

    .videoSmall {
        display: block;
        padding: 0;
    }

    .videoSmall h2,
    .videoSmall h5,
    .videoSmall p {
        padding: 0px 10px;
    }

    .videoSmall img {
        padding-top: 15px;
        width: 100%;
        height: ;
    }

    .videoSmall h2 {
        padding-top: 75px;
    }

    .videoSmall h5 {
        padding-top: 0;
        padding-bottom: 15px;
    }

    .videoSmall .videoSmallRows {
        padding: 0;
        margin: 0;
    }

    .videoSmallVideo {
        padding: 0;
        margin: 0;
    }

    /*  AUDIO  */
    .audioSpace,
    .audioLine {
        display: none;
    }

    .audioRegular {
        display: none;
    }

    .audioCollapsed {
        display: block;
    }

    .audioContent {
        padding: 0;
    }

    .audioText {
        padding: 20px 25px 25px 25px;
    }

    .audioPlayer {
        width: 100%;
        padding-bottom: 75%;
    }

    .audioLogo img {
        padding-top: 40px;
    }

    #audio h2 {
        padding-top: 20px;
    }

    .audioLogo img {
        float: none;
    }

    /*  SOFTWARE  */
    #software {
        text-align: left;
        padding: 0;
    }

    .softwareText {
        padding: 60px 25px 40px 25px;
    }

    .softwareCircles {
        display: none;
    }

    /*  CONTACT   */
    .contactImage {
        display: none;
        height: 200px;
    }

    .contactText {
        padding: 60px 10px 50px 10px;
        font-size: 0.8em;
    }

    #contact hr {
        margin-right: 10%;
    }

    /*  FOOTER  */
    .footerWeb {
        display: none;
    }

    .footerMobile {
        display: block;
    }

    footer img {
        width: 220px;
    }

    footer {
        text-align: left;
        padding: 35px 0px 30px 25px;
    }

    footer img {
        display: block;
    }

    footer p {
        text-align: left;
        display: block;
        padding: 0;
        margin: 0;
        padding-top: 20px;
        font-size: 0.8em;
    }

}

/* Medium devices (tablets, less than 992px)*/

@media (max-width: 991.98px) {

    #courseware {
        padding: 60px 25px 50px 25px;
    }

    .coursewareTitle {
        padding-left: 0px;
    }

    .coursewareParagraph {
        padding-right: 0px;
    }

    .softwareCircles {
        padding: 0px 100px;
    }

    .softwareCircle img {
        margin-top: -90px;
        width: 130px;
    }

    .videoRegular {
        display: none;
    }

    .videoMedium {
        display: block;
        padding: 0;
    }

    #video h2 {
        padding-bottom: 15px;
    }

    .videoMedium img {
        width: 100%;
        max-width: 100%;
    }

    .videoText {
        padding: 25px;
        padding-top: 25px;
    }

    .videoText h3 {
        padding-bottom: 15px;
    }

    .videoText p {
        padding: 0;
    }

    .audioLogo img {
        width: 150px;
    }
}

/* Large devices (desktops, less than 1200px)*/

@media (max-width: 1199.98px) {

    .coursewareTitle {
        padding-left: 0px;
    }

    .coursewareParagraph {
        padding-right: 0px;
    }

    .videoText {
        padding-bottom: 15px;
    }

}

/* Extra large devices (large desktops)*/

/* No media query since the extra-large breakpoint has no upper bound on its width*/
