/* ----DEFAULT ELEMENT STYLING START---- */

html {
    /* Positioning */
    position: relative;
    /* Box-model */
    min-height: 100%;
}

body {
    /* Positioning */
    margin-bottom: 150px;
    /* Typography */
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    /* Visual */
    background-color: #859ba8;
}


/* Media query for body */

@media only screen and (max-width: 767px) {
    /* Set background color to white on small screens */
    body {
        /* Visual */
        background-color: #fff;
    }
}


/* ----DEFAULT ELEMENT STYLING END---- */


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

.navbar-custom {
    background-color: #fff;
    animation: bounce;
    /* referring directly to the animation's @keyframe declaration */
    animation-duration: 2s;
    /* don't forget to set a duration! */
}

#logo {
    /* Box-model */
    height: 60px;
    padding-top: 20px;
    padding-bottom: 5px;
    /* Positioning */
    margin-left: 70px;
    font-family: Georgia, Times, "Times New Roman", serif;
    /* Typography */
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    /* Visual */
    background: #4aaaa5;
}


/* Logo hover state */

#logo:hover {
    /* Visual */
    opacity: 0.7;
}

.navbar-right-custom {
    /* Box-model */
    padding-top: 6px;
    padding-right: 20px;
    /* Typography */
    font-family: Arial;
    font-weight: lighter;
}


/* Nav element hover state */

.navbar-default .navbar-nav>li>a:hover {
    color: #4aaaa5;
}


/* Media query for nav */

@media only screen and (max-width: 767px) {
    .navbar-header {
        background-color: #4aaaa5;
    }
    #logo {
        width: 100%;
        /* Box-model */
        height: 60px;
        padding-top: 20px;
        padding-bottom: 5px;
        /* Positioning */
        margin-left: 0;
        font-family: Georgia, Times, "Times New Roman", serif;
        /* Typography */
        font-size: 24px;
        font-weight: bold;
        color: #fff;
        /* Visual */
        background: #4aaaa5;
    }
}


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


/* ----DESCRIPTION START---- */

.description-header {
    /* Positioning */
    margin-bottom: 33px;
    text-align: center;
    font-family: Georgia, Times, "Times New Roman", serif;
    /* Typography */
    font-size: 32px;
    font-weight: bold;
    color: #4aaaa5;
}

.description-content {
    /* Box-model */
    padding: 30px;
    /* Positioning */
    margin-top: 32px;
    /* Visual */
    background-color: #fff;
}

.description-content>p {
    /* Box-model */
    padding-top: 20px;
    /* Typography */
    font-size: 16px;
    line-height: 30px;
    color: rgb(69, 4, 75);
    animation: bounce;
    /* referring directly to the animation's @keyframe declaration */
    animation-duration: 2s;
    /* don't forget to set a duration! */
}

.description-text {
    padding-bottom: 20px;
}

#description-image {
    /* Positioning */
    float: left;
    /* Box-model */
    width: 200px;
    height: 200px;
    margin-top: 20px;
    margin-right: 20px;
}


/* Description content media query */

@media only screen and (max-width: 767px) {
    /* override default class styling for positioning/padding */
    .description-content {
        /* Box-model */
        padding: 0;
        /* Positioning */
        margin-top: 0;
    }
}


/* ----DESCRIPTION END---- */


/* ----IMAGE NAV START---- */

#imageNav-area {
    width: 100%;
    /* Box-model */
    padding: 30px 30px 43px;
    /* Positioning */
    margin-top: 32px;
    /* Visual */
    background-color: #fff;
}

.imageNav-header {
    /* Positioning */
    margin-bottom: 15px;
    font-family: Georgia, Times, "Times New Roman", serif;
    /* Typography */
    font-size: 25px;
    font-weight: bold;
    color: #4aaaa5;
}

.imageNav-photo {
    width: 140px;
    /* Box-model */
    height: 140px;
}

.imageNav-photo:hover {
    /* Visuals */
    opacity: 0.6;
}

.imageNav-photo.active {
    /* Visuals */
    border: 2px solid #4aaaa5;
}

#images {
    /* Box-model */
    padding-top: 15px;
    /* Typography */
    text-align: center;
}


/* ----IMAGE NAV END---- */


/* ----COMPARISON START---- */

.comparison-image:hover {
    opacity: 0.6;
}

.comparison-header {
    /* Positioning */
    margin-bottom: 10px;
    font-family: Georgia, Times, "Times New Roman", serif;
    /* Typography */
    font-size: 20px;
    font-weight: bold;
    color: #4aaaa5;
    text-align: center;
}


/* ----COMPARISON END---- */


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

.footer {
    /* Positioning */
    position: absolute;
    bottom: 0;
    /* Box-model */
    width: 100%;
    height: 60px;
    margin-top: 30px;
    /* Visual */
    background-color: #666;
}

.text-muted-footer {
    /* Positioning */
    margin-top: 15px;
    /* Typography */
    color: #fff;
}

.two-toned-footer-color {
    /* Box-model */
    height: 6px;
    padding-top: 3px;
    /* Visual */
    background-color: #4aaaa5;
}


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