@import url('https://fonts.googleapis.com/css?family=Forum');

body {
    font-family: 'Forum', cursive;
    font-size: 16px;
    padding: 0;
    margin: 0;
}

.body_container {
    padding: 50px;
}

body::-webkit-scrollbar {
    width: 1em;
}

body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    outline: 1px solid slategrey;
}

/*--------------LOGO STYLING---------------*/
.logo_mobile {
    display: none;
}

.logo_desktop {
    width: 200px;
    margin: 5px;
}




/*---------DESKTOP NAVIGATION BAR----------*/
#mobile_menu_btn {
    display: none;
}

nav {
    background-color: #fff;
    position: relative;
    width: 100%;
    border-bottom: 1px solid rgba(55, 55, 55, .50);
}

nav::after {
    content: '';
    display: block;
    clear: both;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: 1;
}

nav ul li:hover {
    background-color: rgba(55, 55, 55, .25);
}

nav ul li:hover > ul {
    display: block;
    background-color: #E6E9F0;
    border-top: 1px solid rgba(55, 55, 55, .75);
}

nav ul li a {
    display: inline-block;
    color: #000;
    font-size: 18px;
    padding: 15px;
    text-decoration: none;
    width: 155px;
    position: relative;
    text-align: center;
}

nav ul li a:hover {
    background-color: rgba(55, 55, 55, .15);
    cursor: pointer;
}

nav ul ul {
    position: absolute;
    top: 100%;
    display: none;
}

nav ul ul li {
    position: relative;
}

nav ul ul ul {
    left: 100%;
    top: 0;
}

nav > ul > li {
    float: left;
}

nav > ul {
    padding-left: 200px;
}

nav > ul > li > a {
    width: auto;
    padding: 10px 20px 15px 20px;
    font-weight: 600;
}


nav > ul > li > a[aria-haspopup="true"]::after {
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #373737;
    left: 20px;
    right: auto;
    bottom: 6px;
    top: auto;
}





/*-------------DESKTOP FOOTER-------------*/

#page-container {
    position: relative;
    min-height: 50vh;
  }
  
  #content-wrap {
    padding-bottom: 2.5rem;    /* Footer height */
  }
  
  footer {
    font-size: 1em;
    color: #000;
    text-align: center;
    background-color: #fff;
    border-top: 1px solid rgba(55, 55, 55, .50);
    margin: 0;
    padding-top: 25px;
    padding-bottom: 75px;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 2.5rem;            /* Footer height */
  }



footer a {
    margin-top: 25px;
    margin-left: 5px;
    color: #000;
}

footer a:hover {
    color: #000;
    text-decoration: none;
}

.copyright {
    margin: 5px;
}





/*--------------HOMEPAGE BODY--------------*/
.body_homepage {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(../private/assets/images/background_2.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
}




/*-----------HOME PAGE HERO TEXT-----------*/
.hero-text {
    text-align: center;
    padding-top: 100px;
    color: #000;
}

.hero-text-font {
    font-size: 60px;
}

.hero-text button {
    font-size: 1.2em;
    text-decoration: none;
    color: #000;
    border: 1px solid #c0872b;
    border-radius: 3px;
    padding: 12px 32px;
    background-color: #c0872b;
    -webkit-transition: all 600ms;
    transition: all 600ms;
    margin: 25px auto 100px auto;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'ariel';
}

.hero-text button:hover {
    background-color: #3e67a4;
    color: #fff;
    cursor: pointer;
}




/*---HOMEPAGE GOLD & BLUE CTA BOXES---*/
.CTA_BOXES {
    padding: 0 0 400px 0;
    clear: both;
    max-width: 1920px;
    margin: auto;
}

section.CTA_BOXES aside {
    width: 33.33%;
    float: left;
    text-align: center;
}

section.CTA_BOXES .content {
    margin: 25px 25px auto 25px;
    background-size: 75px 75px;
}

section.CTA_BOXES aside h3 a {
    color: #F4F4F4;
    text-decoration: none;
    text-align: center;
    font-size: 22px;
}

section.CTA_BOXES aside h3 a:hover {
    text-decoration: underline;
}

.CTA_icons {
    /*icons inside the blue & gold boxes on homepage*/
    width: 70px
}

section.CTA_BOXES aside .content.available {
    border-radius: 3px;
    text-align: center;
    color: #000;
    padding: 20px 10px 10px 10px;
    min-height: 200px;
    background-color: #c0872b;
    font-family: 'sans';
}

section.CTA_BOXES aside .content.policies {
    border-radius: 3px;
    text-align: center;
    color: #000;
    padding: 20px 10px 10px 10px;
    min-height: 200px;
    background-color: #3e67a4;
    font-family: 'sans';
}

section.CTA_BOXES aside .content.contact {
    border-radius: 3px;
    text-align: center;
    color: #000;
    padding: 20px 10px 10px 10px;
    min-height: 200px;
    background-color: #c0872b;
    font-family: 'sans';
}



/*-------HOMEPAGE FACT SECTION-------*/
.home_main {
    background-color: rgba(255, 255, 255, .85);
    -webkit-transition: all 600ms;
    transition: all 600ms;
    color: #373737;
    max-width: 1700px;
    height: 450px;
}

.home_main_header_link {
    font-size: 28px;
    text-align: center;
    text-transform: uppercase;
    color: #000;
}

.home_main_header_link:hover {
    text-decoration: none;
    color: #000;
}

.home_main_header_link:visited {
    color: #000;
}

.home_main h2 {
    color: #000;
}

.home_main img {
    float: right;
    margin: 0px 0 50px 25px;
    -webkit-transition: all 600ms;
    transition: all 600ms;
}


.CTA_1 {
    margin: 50px 0 50px 0;
}

.CTA_1_style {
    font-size: 18px;
    text-decoration: none;
    color: #000;
    border: 1px solid #c0872b;
    border-radius: 3px;
    padding: 10px 20px;
    background-color: #c0872b;
    -webkit-transition: all 600ms;
    transition: all 600ms;
    font-weight: 600;
}

.CTA_1_style:hover {
    background-color: #3e67a4;
    color: #fff;
    cursor: pointer;
}




/*---------------RENTALS PAGE--------------*/
.listings_disclaimer {
    font-size: 18px;
    margin: -50px auto 50px auto;
    text-align: center;
    width: 80%;
}

.sadFaceIcon {
    margin-top: 25px;
    width: 20%;
    max-width: 125px;
}

.ohNo {
    font-size: 1.5em;
}

/* Gradient color1 - color2 - color1 */

hr.style-one {
    border: 0;
    height: 1px;
    background: #333;
    background-image: linear-gradient(to right, #ccc, #333, #ccc);
    margin-bottom: 50px;
}


/*-----PLACEHOLDER SLIDESHOW----------*/
  @-webkit-keyframes carousel_animation {
    0% {
      -webkit-transform: translate3d(0, 0, 0);
    }
    100% {
      -webkit-transform: translate3d(-405%, 0, 0);
    }
  }
  @keyframes carousel_animation {
    0% {
      transform: translate3d(0, 0, 0);
    }
    100% {
      transform: translate3d(-405%, 0, 0);
    }
  }
  
  .carousel-wrapper {
    width: 90%;
    max-width: 1400px;
    height: auto;
    margin: 0 auto;
    overflow: hidden;
    overflow: hidden;
  }

  .carousel-wrapper .carousel-container {
    width: 100%;
    position: relative;
    z-index: -5;
    -webkit-animation-name: carousel_animation;
    animation-name: carousel_animation;
    -webkit-animation-duration: 90s; /*--------------------CHANGE SPEED HERE---------------------*/
    animation-duration: 90s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  .carousel-wrapper .carousel-container:before {
    content: '';
    float: left;
    padding-bottom: 56.25%;
  }
  .carousel-wrapper .carousel-container:after {
    content: '';
    display: table;
    clear: both;
  }
  .carousel-wrapper .carousel-container img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 5px;
  }
  .carousel-wrapper .carousel-container img.carousel-image-01 {
    -webkit-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
  }
  .carousel-wrapper .carousel-container img.carousel-image-02 {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  .carousel-wrapper .carousel-container img.carousel-image-03 {
    -webkit-transform: translate3d(200%, 0, 0);
    transform: translate3d(200%, 0, 0);
  }
  .carousel-wrapper .carousel-container img.carousel-image-04 {
    -webkit-transform: translate3d(300%, 0, 0);
    transform: translate3d(300%, 0, 0);
  }
  .carousel-wrapper .carousel-container img.carousel-image-05 {
    -webkit-transform: translate3d(400%, 0, 0);
    transform: translate3d(400%, 0, 0);
  }
  /*.carousel-wrapper .carousel-container img.carousel-image-06 {
    -webkit-transform: translate3d(500%, 0, 0);
    transform: translate3d(500%, 0, 0);
  }
  .carousel-wrapper .carousel-container img.carousel-image-extra {
    -webkit-transform: translate3d(600%, 0, 0);
    transform: translate3d(600%, 0, 0);
  }*/
  




/*---------------INFORMATION PAGE--------------*/
.information-contain {
    max-width: 1920px;
    margin: auto;
}


.hero-image3 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../private/assets/images/hero_1.jpg");
    height: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.hero-text_info {
    text-align: center;
    padding-top: 100px;
    color: #fff;
}

.hero-text_info button {
    font-size: 1.2em;
    text-decoration: none;
    color: #000;
    border: 1px solid #c0872b;
    border-radius: 3px;
    padding: 12px 32px;
    background-color: #c0872b;
    -webkit-transition: all 600ms;
    transition: all 600ms;
    margin: 25px auto 100px auto;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'ariel';
}

.hero-text_info button:hover {
    background-color: #3e67a4;
    color: #fff;
    cursor: pointer;
}

.info_box_1 {
    position: inherit;
    margin: 0 25px 0 25px;
    padding: 25px 20px 0 20px;
    -webkit-transition: all 600ms;
    transition: all 600ms;
    color: rgba(55, 55, 55, .90);
    font-size: 20px;
    text-align: left;
    clear: both;
}

.info_image_1 {
    float: right;
    width: 50%;
    margin: 0px 0 50px 50px;
    -webkit-transition: all 600ms;
    transition: all 600ms;
}

.info_box_2 {
    position: inherit;
    margin: 0 25px 0 25px;
    padding: 25px 50px 0 20px;
    -webkit-transition: all 600ms;
    transition: all 600ms;
    color: rgba(55, 55, 55, .90);
    font-size: 20px;
    text-align: right;
    clear: both;
}

.info_image_2 {
    float: left;
    width: 50%;
    margin: 0px 50px 50px 0;
    -webkit-transition: all 600ms;
    transition: all 600ms;
}




/*--------------CONTACT PAGE---------------*/
.contact-contain {
    max-width: 1500px;
    margin: auto;
}


.hero-image {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
    height: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.hero-text_contact {
    text-align: center;
    padding-top: 100px;
    color: #fff;
}

.hero-text_contact button {
    font-size: 1.2em;
    text-decoration: none;
    color: #000;
    border: 1px solid #c0872b;
    border-radius: 3px;
    padding: 12px 32px;
    background-color: #c0872b;
    -webkit-transition: all 600ms;
    transition: all 600ms;
    margin: 25px auto 100px auto;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'ariel';
    
}

.hero-text_contact button:hover {
    background-color: #3e67a4;
    color: #fff;
    cursor: pointer;
}

.body-contact {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(../private/assets/images/background_3.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
}

.hero_sub_text {
    font-size: 22px;
    margin: -50px auto 25px auto;
    text-align: center;
    width: 80%;
}




/*------------CONTACT INFO. BOX------------*/
div.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.contact_info_box {
    background-color: rgba(255, 255, 255, .90);
    margin: 0 70px 20px 20px;
    height: 260px;
    width: 430px;
    float: right;
    color: #000;
    -webkit-transition: all 600ms;
    transition: all 600ms;
}

/* Create two equal columns that floats next to each other */
.column {
    float: left;
    width: 45%;
    padding: 10px;
    height: 230px;
    text-align: left;
}

.column h2 {
    text-align: left;
}

.contact_link_h {
    padding-left: 40px;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}


.column ul {
    list-style-type: none;
    font-weight: 600;
}


.contact_link {
    color: #000;
}

.contact_link:hover {
    text-decoration: none;
}




/*---------------CONTACT FORM--------------*/
.form-container {
    background-color: #ddd;
    width: 675px;
    margin: 20px;
    padding: 25px;
    font-size: 20px;
    -webkit-transition: all 600ms;
    transition: all 600ms;
}

input,
label {
    /*inputs with a "label" falls below the input above it*/
    display: block;
}

label {
    font-weight: 600;
}

#float_input {
    /*p inputs go side-by-side*/
    float: left;
}

.clear-left {
    /*breaks the float attribute*/
    clear: left;
}

.float_input1 {
    /*seperation between floating names and email/phone */
    width: 350px;
}

input[type="email"],
input[type="phone"],
.name1,
.name2 {
    /*styling of first/last/email/phone inputs*/
    width: 300px;
    padding: 8px;
    border: 1px solid #999;
    border-radius: 3px;
}

input[type="text"],
input[type="email"],
input[type="phone"],
select,
select:focus,
textarea {
    font-size: 16px;
}

.float_input2 {
    /*seperation between checkboxes */
    width: 150px;
}

#date {
    width: 175px;
    padding: 5px;
    font-size: 16px;
    border: 1px solid #999;
    border-radius: 3px;
}

.reason {
    /*Reason for move textarea*/
    width: 660px;
    min-height: 50px;
    max-height: 200px;
    resize: none;
    font-size: 16px;
    border: 1px solid #999;
    border-radius: 3px;
    -webkit-transition: all 600ms;
    transition: all 600ms;
}

.situation {
    /*Reason for move textarea*/
    width: 660px;
    min-height: 50px;
    max-height: 200px;
    resize: none;
    font-size: 16px;
    border: 1px solid #999;
    border-radius: 3px;
    -webkit-transition: all 600ms;
    transition: all 600ms;
}

.float_input3 {
    /*seperation between radio buttons*/
    width: 100px;
}

.about {
    /*Tell us about yourself textarea*/
    width: 660px;
    min-height: 50px;
    max-height: 200px;
    resize: none;
    font-size: 16px;
    border: 1px solid #999;
    border-radius: 3px;
    -webkit-transition: all 600ms;
    transition: all 600ms;
}

select {
    width: 200px;
}

#wrapper {
    display: flex;
    justify-content: center;
}

button[type="submit"] {
    margin-top: 50px;
    font-size: 18px;
    text-decoration: none;
    cursor: pointer;
    color: #000;
    border: 1px solid #c0872b;
    border-radius: 3px;
    padding: 10px 20px;
    background-color: #c0872b;
    -webkit-transition: all 600ms;
    transition: all 600ms;
    font-weight: 600;
}

button[type="submit"]:hover {
    background-color: #3e67a4;
    color: #fff;
    cursor: pointer;
}

.message-sent {
    padding-bottom: 100px;
}

.maps {
    width: 100%;
}





/*--------------------------------------------------------RESPONSIVE STYLING-------------------------------------------------------*/

@media screen and (min-width: 1700px) {

    /*----------HOMEPAGE FACT SECTION----------*/
    .home_main {
        height: 900px;
        margin-right: auto;
        margin-left: auto;
    }
}



@media screen and (min-width: 1450px) {

    /*----------HOMEPAGE FACT SECTION----------*/
    .home_main {
        height: 650px;
    }
}



@media screen and (max-width: 1255px) {

    /*----------HOMEPAGE FACT SECTION----------*/
    .home_main {
        margin: 0 50px 100px 50px;
    }
    
        /*-------CONTACT INFO. BOX-------*/
    div.sticky {
        position: relative;
    }

    .contact_info_box {
        padding: 10px;
        width: 735px;
        float: none;
        margin: 50px auto 50px auto;
    }

    .column {
        width: 40%;
        padding: 0;
        margin-left: 20px;
    }

    .contact_info_box p {
        font-size: 18px;
    }

    .form-container {
        width: 700px;
        margin: auto auto 25px auto;
        border: none;
    }
}




@media screen and (max-width: 875px) {

    /*----------HOMEPAGE FACT SECTION----------*/

    .body_container {
        padding: 0;
    }

    .home_main {
        margin: 0 50px 100px 50px;
        padding: 10px 75px 10px 75px;
        text-align: center;
        display: grid;
        height: 900px;
    }

    .CTA_BOXES {
        padding: 0 0 400px 0;
    }

    .home_main_header_link {
        font-size: 25px;
    }

    .tasoulas_sign {
        padding-top: 25px;
        width: 70%;
        float: none;
    }

    .img-wrapper {
        margin-left: auto;
        margin-right: auto;
        padding: 0;
    }
}



@media screen and (max-width: 840px) {
    nav > ul {
        padding-left: 0;
    }
}


@media screen and (max-width: 700px) {
    /*----------------HERO TEXT-----------------*/
    .hero-text {
        padding-top: 0;
    }


    /*---------HOMEPAGE FEATURED BOXES---------*/
    .flip-container {
        float: none;
        margin: 20px auto 20px auto;
    }

    .flip-container,
    .front,
    .front2,
    .front3,
    .back {
        width: 300px;
        background-size: 300px;
    }

    .front,
    .front2,
    .front3,
    .back {
        height: 300px;
    }



    /*------HOMEPAGE GOLD & BLUE CTA BOXES------*/
    section.CTA_BOXES aside {
        width: 100%;
        float: none;
        text-align: center;
        margin-left: 0;
        margin-right: 0;
        margin-top: 100px;
        margin-bottom: -100px;
    }

    .CTA_BOXES {
        padding: 0 0 300px 0;
    }

    section.CTA_BOXES aside .content.available {
        border-radius: 0;
    }

    section.CTA_BOXES aside .content.policies {
        border-radius: 0;
    }

    section.CTA_BOXES aside .content.contact {
        border-radius: 0;
    }

    /*---------------INFORMATION PAGE--------------*/

    .info_box_1 {
        margin: 0;
        padding: 0 10px 25px 10px;

    }

    .info_image_1 {
        float: right;
        margin: 0px 0 10px 10px;
    }

    .info_box_2 {
        margin: 0;
        padding: 0 10px 25px 10px;
    }

    .info_image_2 {
        margin: 0px 10px 10px 0;
    }
}



@media screen and (max-width: 655px) {

    /*----------CONTACT INFO. BOX----------*/
    .contact_info_box {
        width: 91%;
        margin: 0 auto 0 auto;
        padding: 15px 15px 50px 15px;
    }

    .maps {
        width: 99%;
        margin: 30px auto auto auto;
    }



    /*-------------CONTACT FORM------------*/
    .form-container {
        width: 91%;
        padding: 15px;
        margin: auto;
    }

    #float_input {
        /*p inputs go side-by-side*/
        float: none;
    }

    .float_input1 {
        /*seperation between floating names and email/phone */
        width: 100%;
    }

    input[type="email"],
    .name1,
    .name2 {
        /*styling of first/last/email/phone inputs*/
        width: 91%;
        padding: 15px;
    }

    input[type="phone"] {
        width: 150px;
        padding: 15px;
    }

    #date {
        padding: 15px;
    }


    .reason,
    .situation,
    .about {
        /*Tell us about yourself textarea*/
        width: 98%;
    }

    .maps {
        margin-bottom: 25px;
    }
}



@media screen and (max-width: 600px) {

    /*-----------NAVIGATION BAR MOBILE-----------*/
    .logo_desktop {
        display: none;
    }

    .logo_mobile {
        display: block;
        width: 100%;
        margin-top: -10px;
        margin-bottom: 20px;
    }

    /**footer div.content a {
        display: none;
    }**/

    .hideNav {
        display: none;
    }

    nav {
        position: static;
        width: auto;
        padding: 20px 15px;
    }

    nav ul,
    nav ul ul,
    nav ul ul ul {
        display: block;
        position: static;
    }

    nav > ul {
        padding: 0;

    }

    nav > ul > li {
        float: none;
        margin-bottom: 25px;
    }

    nav ul li:hover {
        background: none;

    }

    nav ul li a {
        width: auto;
        display: block;
        margin: 8px 10px;
        padding: 8px 15px;
        border: 1px solid rgba(55, 55, 55, .50);
        border-radius: 7px;
        text-align: left;
    }

    nav ul li a:hover {
        background-color: rgba(55, 55, 55, .25);
        border-top-left-radius: 7px;
        border-top-right-radius: 7px;

    }

    nav ul ul li a {
        margin-left: 75px;

    }

    nav a[aria-haspopup="true"]::after {
        display: none;
    }

    nav ul li:hover > ul {
        background-color: transparent;
        border-top: none;
    }

    #mobile_menu_btn {
        background-color: #373737;
        display: block;
        margin: 0 auto;
        widows: auto;
        border-radius: 5px;
        text-align: center;
        padding: 8px;
        font-size: 20px;
        color: #F4F4F4;
        transition: .5s;
        width: 25%;
        cursor: pointer;
        box-shadow: 3px 1px 5px #373737;
        -webkit-box-shadow: 3px 1px 5px #373737;
        -moz-box-shadow: 3px 1px 5px #373737;
    }

    #mobile_menu_btn:hover {
        cursor: pointer;
    }

    #mobile_menu_btn:focus {
        cursor: pointer;
        color: #060606;
        box-shadow: none;
    }



    /*----------------FOOTER------------------*/
    footer {
        font-size: 1em;
        clear: both;
    }

    footer a {
        display: none;
        }
    }

    .copyright {
        margin: 10px;
        font-size: .8em;
    }



    /*-----------HOME PAGE HERO TEXT-----------*/
    .hero-text {
        padding-top: 50px;
    }

    .hero-text-font {
        font-size: 40px;
    }




    /*-----HOMEPAGE GOLD & BLUE CTA BOXES-----*/

    section.CTA_BOXES .content {
        margin: -50px 0 0 0;
    }



    /*---------HOMEPAGE FACT SECTION---------*/
    .home_main {
        margin: -150px 0 0 0;
        padding: 10px 10px 25px 10px;
    }

    .home_main_header {
        font-size: 24px;
    }

    .tasoulas_sign {
        float: none;
        max-width: 300px;
        margin: 0px 0 10px 10px;
        padding: 0 50px 0 0;
    }

    .CTA_1 {
        text-align: center;
    }

    .info_box_1 h2,
    .info_box_2 h2 {
        font-size: 24px;
    }



@media screen and (max-width: 350px) {

    .info_box_1 h2,
    .info_box_2 h2 {
        font-size: 20px;
    }

    .contact_info_box {
        height: 270px;
    }

    /*----------------FOOTER------------------*/

    footer a {
        display: none;
    }

    .copyright {
        margin: 10px;
        font-size: .8em;
    }
}
