* {
  margin:0px;
  padding:0px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color:#324b5e;
  font-size:16px;
}

h1{
  margin-bottom: 40px;
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 2.5em;
  color: #324b5e;
}

h3{
  margin-bottom: 20px;
}

p{
  line-height: 1.5em;
  margin-bottom:20px;
}

a{
	text-decoration:none;
  transition: .4s;
}

li{
  margin-bottom: 10px;
}

.video-container {
    overflow: hidden;
    position: relative;
    width:100%;
}

.video-container::after {
    padding-top: 56.25%;
    display: block;
    content: '';
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


a {
  color: #324b5e;
}

hr {
  margin:20px 0px;
}

p a {
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}


@media (min-width: 1100px) {

  .container {
    width:1100px;
    margin:0 auto;
  }

  .content{
    padding: 60px 0;
  }

ul,
ol{
  margin: 0 0 20px 40px;
}

  /***HEADER DESKTOP STYLES***/

  #top-header{
    width: 100%;
    background-color: #324b5e;
    padding: 10px 0;
    color: white;
    font-size: .8em;
  }

  #top-header .container{
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  #top-header p{
    margin-bottom: 0px;
  }

  #top-header a{
    color: white;
    padding: 4px;
    border-bottom: 1px solid #324b5e;
  }

  #top-header a:hover{
   border-bottom: 1px solid white;
  }

  #header-social-icons{
    margin-left: 40px;
    width: 160px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  #header-social-icons a{
    border-radius: 5px;
  }

  #header-social-icons a:hover{
    background-color: white;
    color: #324b5e;
    border-bottom: none;
  }

  #top-header i{
    width: 14px;
    height: 14px;
    text-align: center;
  }

  header {
    padding: 30px 0px 20px;
    width: 100%;
    border-bottom: 1px solid #324b5e;
  }

  header .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  #myTopnav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 550px; /*Bigger nav at 700px*/
    height: 30px;
  }

  .topnav a{
    color: #324b5e;
    padding: 8px 10px;
    border-radius: 5px;
  }

 .topnav a:hover{
    color: #fff;
    background-color: #4e664a;
    transform: translateY(-4px);
  }

  #myTopnav .icon{
    display:none;
  }

  /* Dropdown content */
  .dropdown {
    position: relative;
    display: inline-block;
  }

  /* Dropdown Content (Hidden by Default) */
  .hidden {
    display: none;
    position: absolute !important;
    z-index: 1;
    padding-top: 10px;
  }

  /* Links inside the dropdown */
  .hidden a {
    color: #fff  !important;
    padding: 10px 12px !important;
    text-decoration: none;
    display: block !important;
    background: rgba(78, 102, 74, .9);
    border-radius: 0px !important;
    border-bottom: none;
    font-size: .9em;
    width: 140px;
    transition: .4s !important;
  }

  .hidden a:hover{
    background-color: #fff  !important;
    color: #4e664a !important;
    border-bottom: none;
    display: block;
    opacity: 1;
    transform: translateY(0px);
  }

  .dropdown:hover .hidden {
    display: block;
  }

  .dropbtn{
    cursor: default;
  }

  a.dropbtn:hover{
    color:#324b5e !important;
    background-color:#fff !important;
  }

  .hidden:hover{
      opacity: 1;
  }

  .hidden {
      animation: fadeIn .5s;
      -webkit-animation: fadeIn .5s;
      -moz-animation: fadeIn .5s;
      -o-animation: fadeIn .5s;
      -ms-animation: fadeIn .5s;
    }
    @keyframes fadeIn {
      0% {opacity:0;}
      100% {opacity:1;}
    }

    @-moz-keyframes fadeIn {
      0% {opacity:0;}
      100% {opacity:1;}
    }

  /***HERO SECTION DESKTOP STYLES***/

  #homepage-hero{
    background: url(images/hero-background.jpg) no-repeat 25% 50%;
    height: 650px;
  }

  #homepage-hero .container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    height: 600px;
    color: white;
    padding-left: 160px;
  }

  #homepage-hero h3{
    font-weight: 400;
    font-size: 1.5em;
  }

  #homepage-hero h1{
    text-transform: uppercase;
    font-size: 4em;
    margin-bottom: 20px;
    color: white;
  }

  #homepage-hero p{
    /*width: 600px;*/
  }

  a.hero-btn{
    color: white;
    text-transform: uppercase;
    padding: 20px 30px;
    background-color: #324b5e;
    border-radius: 5px;
    margin-top: 20px;
  }

  a.hero-btn:hover {
    background-color: #4e664a;
  }

  #homepage-blue{
    background-color: #324b5e;
    color:white;
  }

  #homepage-blue .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  #homepage-blue h3{
    margin-bottom: 0px;
  }

  #homepage-blue p{
    margin-bottom: 0px;
  }

  #homepage-blue h3{
    padding-right: 20px;
    border-right: 5px solid white;
    width: 325px;
    font-size: 1.8em;
    font-weight: 900;
  }

  #homepage-blue p{
    width: 500px;
  }

  a.contact-white-btn{
    color: #324b5e;
    text-transform: uppercase;
    padding: 20px 30px;
    background-color: #fff;
    border-radius: 5px;
  }

   a.contact-white-btn:hover{
    color: white;
    background-color: #4e664a;
  }

  /***MAIN BODY DESKTOP STYLES***/

  #solutions-home .container{
    display: flex;
    flex-flow: column;
    align-items: center;
  }

  #solutions-home h1{
    margin-bottom: 20px;
    text-transform: uppercase;
  }

  .blue-border{
    height: 5px;
    width: 60px;
    background-color: #324b5e;
    margin-bottom: 40px;
  }

  #solutions-container{
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
  }

  .solution-individual{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 300px;
    height: 270px;
    margin-bottom: 40px;
    text-align: center;
  }

  .solution-individual h3{
    color: #4e664a;
  }

  .solution-individual img{
    height: 75px;
    width: auto;
    margin-bottom: 20px;
  }

  .solution-individual p{
    font-size: .9em;
    color: #324b5e;
  }

  .green-border{
    height: 25px;
    background-color: #4e664a;
    padding: 0px;
  }

  #about-home{
    /*background-color: #324b5e;*/
    /*color: white;*/
  }

  #about-home .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  #about-home h1{
    /*color: white;*/
  }

  #about-text{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-right: 100px;
  }

  .white-border{
    height: 5px;
    width: 60px;
    background-color: #fff;
    margin-bottom: 40px;
  }

  #about-home h1{
    margin-bottom: 20px;
    text-transform: uppercase;
  }

  /***CONTACT PAGE DEKSTOP STYLES***/

  #contact-hero h1{
    margin-bottom: 0px;
  }

  #contact{
    margin-bottom: 60px;
    /*background-color: #f7f9fa;*/
  }

  #contact .container{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  #contact-form{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 500px;
  }

  #contact-form h3{
    margin-bottom: 5px;
  }

  #contact-form form{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  #contact-form input{
    width: 450px;
    height: 50px;
    background-color: transparent;
    font-size: 1em;
    margin-top: 20px;
    border-radius: 5px;
    padding: 0 10px;
    font-family: 'Open Sans', sans-serif;
  }

  #contact-form label{
    font-family: 'Open Sans', sans-serif;
    margin-top: 20px;
  }

  #contact-form textarea{
    width: 450px;
    height: 200px;
    font-size: 1em;
    margin-top: 10px;
    background-color: transparent;
    border-radius: 5px;
    border: 1px solid #324b5e;
    padding: 10px;
    font-family: 'Open Sans', sans-serif;
  }

  input#submit{
    width: 200px;
    margin-top: 40px;
    background-color: #324b5e;
    color: white;
    border: 2px solid #324b5e;
    transition: .4s;
  }

  input#submit:hover{
    cursor: pointer;
    background-color: white;
    color: #324b5e;
  }

  #contact-text{
    display: flex;
    flex-direction: column;

  }

  #contact-text img{
    margin-bottom: 40px;
    width: 200px;
    height: auto;
  }

  #contact-text a{
    font-weight: bold;
    color: #324b5e;
    border-bottom: 1px solid #4e664a;

  }

  #contact-text a:hover{
    color: #4e664a;
    border-bottom: 1px solid #f7f9fa;
  }



  /***TESTIMONIALS DESKTOP STYLES***/

  #testimonial-content {
    border-top: 1px solid #324b5e;
  }

  #testimonial-content h1{
    margin-bottom: 20px;
    text-transform: uppercase;
  }

  #testimonials{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .mySlides{
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 40px;
  }

  .testimonial-individual{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 40px;
    text-align: center;
  }

  .testimonial-individual img{
    margin-bottom: 20px;
    width: 100px;
    height: auto;
  }

  .testimonial-quote{
    margin-left: 40px;
    padding-left: 80px;
    border-left: 2px solid #4e664a;
  }

  .testimonial-quote span{
    font-size:4em;
    color:#324b5e;
  }

  /* Slideshow container */
  .slideshow-container {
    max-width: 600px;
    /*height: 225px;*/
    position: relative;
    margin:40px 0;
  }

  /* Hide the images by default */
  .mySlides {
    display: none;
  }

  /* Next & previous buttons */
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 100%;
    width: auto;
    padding: 10px;
    color: white;
    font-size: 16px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color:#324b5e;
  }

  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }

  /* On hover, add a black background color with a little bit see-through */
  .prev:hover, .next:hover {
    background-color: #bbb;
    opacity: .8em;
  }

  /* The dots/bullets/indicators */
  .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }

  .active, .dot:hover {
    background-color: #324b5e;
  }

  /* Fading animation */
  .fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
  }

  @-webkit-keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }

  @keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }

  /***FOOTER DESKTOP STYLES***/

  footer {
    padding: 40px 0;
    background: url(images/footer-background.jpg) no-repeat center;
    background-size: cover;
    height: 400px;
  }

  footer .container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
  }

  footer img{
    margin-bottom: 40px;
  }

  #footer-links{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
  }

  #footer-links a{
    color: white;
    text-transform: uppercase;
    margin: 0 20px;
    padding: 8px 10px;
    border-radius: 5px;
    font-size: 1.15em;
  }

  #footer-links a:hover{
    background-color: white;
    color: #324b5e;
    transform: translateY(-5px);
  }

  #footer-social{
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #footer-social a{
    color: white;
    margin: 0 10px;
    width:25px;
    height:25px;
    text-align:center;
    vertical-align: middle;
    line-height:25px;
    padding: 8px;
    border-radius: 5px;
    font-size: 1.25em;
  }

  #footer-social i{
    font-size:22px;
  }

  #footer-social a:hover{
    background-color: white;
    color: #324b5e;
    transform: translateY(-5px);
  }

  #copyright{
    text-align: center;
    color: white;
    font-size: .9em;
  }

  #copyright a{
    color: white;
    border-bottom: 1px solid white;
    padding: 1px 3px;
  }

  #copyright a:hover{
    background-color: white;
    color: #324b5e;
  }

  #copyright p{
    margin-top: -10px;
  }

  .property {
    float: left;
    width:30%;
    margin-right: 3%;
    text-align: center;
  }

  .property img {
    width:100%;
    height: auto;
    margin-bottom: 10px;
  }

  .property a {
    color: #4e664a;
  }

  h2 {
    margin-bottom: 20px;
    text-align: center;
  }

  .about-pic {
    float: left;
    width:30%;
    height: auto;
    margin:0px 1.5%;
  }

}

@media (max-width: 1099px) {

  .container {
    width:100%;
    margin:0 auto;
  }

   .content{
    padding: 60px 20px;
  }

ul,
ol{
  margin: 0 0 20px 30px;
}

  /***HEADER DESKTOP STYLES***/

  #top-header{
    width: 100%;
    background-color: #324b5e;
    padding: 10px 0;
    color: white;
    font-size: .8em;
  }

  #top-header .container{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #top-header p{
    margin-bottom: 0px;
  }

  #top-header a{
    color: white;
    padding: 4px;
    border-radius: 5px;
  }

  #top-header a:hover{
   background-color: white;
   color: #324b5e; 
  }

  #header-social-icons{
    margin-top: 10px;
    width: 160px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  #top-header i{
    width: 14px;
    height: 14px;
    text-align: center;
  }

  header{
    padding: 30px 0px;
    width: 100%;
    min-height: 30px;
  }

  img#nav-logo{
    float: left;
    width: 140px;
    height: auto;
    margin-left: 30px;
  }

  #nav{
    padding:10px 10px 0;
  }

  #myTopnav a{
    color: #324b5e;
    padding: 12px;
    margin-left: 10px;
    transition: background-color .4s;
  }

  #myTopnav a:hover{
    background-color: #324b5e;
    color: #fff;
  }  

  /* When the screen is less than 1099 pixels wide, hide all links. 
  Show the link that should open and close the topnav (.icon) */
  .topnav a{
    display:none;
  }

  .topnav a.icon {
    display: block;
    font-size:30px;
    font-weight: bold;
    float:right;
    padding: 6px 12px !important;
    margin: 0 15px 10px 0;
    color:#324b5e !important;
    position: absolute;
    right: 0;
    top: 90px;
  }

  .topnav a.icon:hover{
    background-color:#fff !important;
    color: #324b5e !important;
  }

  /* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. 
  This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
  .topnav.responsive {
    position: relative; 
    clear:both;
    padding-bottom: 10px;
    margin-top: 40px;
  }
    .topnav.responsive a.icon {
      position: absolute;
      right: -10px;
      top: -66px;
      border-bottom:none !important;
    }

    .topnav.responsive a {
      float: none;
      display: block;
      text-align: left;
      border-bottom:1px solid #324b5e;
    }
    .topnav.responsive .dropdown {float: none;}
    .topnav.responsive .dropdown-content {position: relative;}
    .topnav.responsive .dropdown .dropbtn {
      display: block;
      text-align: left;
    }

    /* DROPDOWN MENU */

    .topnav.responsive .dropdown {float: none;}
    .topnav.responsive .dropdown-content {position: relative;}
    .topnav.responsive .dropdown .dropbtn {
      display: block;
      text-align: left;
    }

    /* Dropdown Content */
  .hidden{
    display: none;
    margin: 10px 0;
  }

  .hidden a{
    display:block;
    text-align: center;
    color:#324b5e !important;
    text-decoration: none;
   /* width:85%;*/
    z-index:1;
    margin-left: 25px !important;
    font-size: .9em;
    padding: 10px !important;
    border-bottom: none !important;
  }   

  .hidden a:hover {
    background-color: #324b5e !important;
    color:#fff !important;
  }

  /* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
    .show {display:block;}

    .topnav.responsive,
    .hidden {
      animation: fadeIn .5s;
      -webkit-animation: fadeIn .5s;
      -moz-animation: fadeIn .5s;
      -o-animation: fadeIn .5s;
      -ms-animation: fadeIn .5s;
    }
    @keyframes fadeIn {
      0% {opacity:0;}
      100% {opacity:1;}
    }

    @-moz-keyframes fadeIn {
      0% {opacity:0;}
      100% {opacity:1;}
    }

    /***HERO SECTION MOBILE STYLES***/

  #homepage-hero{
    background: url(images/hero-background.jpg) no-repeat 50% 50%;
    height: 600px;
  }

  #homepage-hero .container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: white;
    text-align: center;
  }

  #homepage-hero h3{
    font-weight: 400;
    margin-bottom: 40px;
  }

  #homepage-hero h1{
    text-transform: uppercase;
    font-size: 2.5em;
    color: white;
    margin-bottom: 40px;
  }

  #homepage-hero p{
    font-size: .9em;
  }

  a.hero-btn{
    color: white;
    padding: 20px 30px;
    background-color: #324b5e;
    border-radius: 5px;
    border: 2px solid white;
    margin-top: 20px;
  }

  a.hero-btn:hover {
    background-color: #4e664a;
  }

  #homepage-blue{
    background-color: #324b5e;
    color:white;
  }

  #homepage-blue .container{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

   #homepage-blue p{
    margin-bottom: 40px;
   }

  #homepage-blue h3{
    font-size: 1.5em;
    font-weight: 900;
    margin-bottom: 40px;
  }

  a.contact-white-btn{
    color: #324b5e;
    text-transform: uppercase;
    padding: 10px 20px;
    background-color: #fff;
    border: 2px solid white;
    border-radius: 5px;
  }

   a.contact-white-btn:hover{
    color: white;
    background-color: #324b5e;
  }

  /***MAIN BODY MOBILE STYLES***/
  #solutions-home{
    padding-bottom:20px;
  }

  #solutions-home .container{
    display: flex;
    flex-flow: column;
    align-items: center;
  }

  #solutions-home h1{
    margin-bottom: 20px;
    text-transform: uppercase;
  }

  .blue-border{
    height: 5px;
    width: 50px;
    background-color: #324b5e;
    margin-bottom: 40px;
  }

  #solutions-container{
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-around;
    margin-top: 40px;
  }

  .solution-individual{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
    height: 300px;
    padding: 20px;
    text-align: center;
  }

  .solution-individual h3{
    color: #4e664a;
  }

  .solution-individual img{
    margin-bottom: 20px;
  }

  .solution-individual p{
    font-size: .9em;
    color: #324b5e;
  }

  .green-border{
    padding: 0px;
    height: 20px;
    background-color: #4e664a;
    width: 100%;
  }

  #about-home{
    /*background-color: #324b5e;*/
    /*color: white;*/
  }

  #about-home .container{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #about-home h1{
    /*color: white;*/
  }

  #about-text{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .white-border{
    height: 5px;
    width: 60px;
    background-color: #fff;
    margin-bottom: 40px;
  }

  #about-home h1{
    margin-bottom: 20px;
    text-transform: uppercase;
  }

  #about-home img{
    width: 230px;
    height: auto;
    margin: 20px 0;
  }

  /***SUBPAGE MOBILE STYLES***/

  .subpage-hero{
    border-top: 1px solid #324b5e;
  }

  /***CONTACT PAGE MOBILE STYLES***/

  #contact-hero h1{
    margin-bottom: 40px;
  }

  #contact{
    margin-bottom: 60px;
    /*background-color: #f7f9fa;*/
  }

  #contact .container{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #contact-form{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #324b5e;
  }

  #contact-form h3{
    margin-bottom: 5px;
  }

  #contact-form p{
    text-align: center;
  }

  #contact-form form{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  #contact-form input{
    width: 90%;
    max-width: 400px;
    height: 50px;
    font-size: 1em;
    margin-top: 20px;
    background-color: transparent;
    border-radius: 5px;
    padding: 0 10px;
    font-family: 'Open Sans', sans-serif;
  }

  #contact-form label{
    font-family: 'Open Sans', sans-serif;
    margin-top: 20px;
    text-align: left;
    width: 90%;
    max-width: 400px;
  }

  #contact-form textarea{
    width: 90%;
    max-width: 400px;
    height: 200px;
    font-size: 1em;
    margin-top: 10px;
    border-radius: 5px;
    background-color: transparent;
    border: 1px solid #324b5e;
    padding: 10px;
    font-family: 'Open Sans', sans-serif;
  }

  input#submit{
    width: 200px;
    margin-top: 40px;
    background-color: #324b5e;
    color: white;
    border: 2px solid #324b5e;
    transition: .4s;
  }

  input#submit:hover{
    cursor: pointer;
    background-color: white;
    color: #324b5e;
  }

  #contact-text{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #contact-text img{
    margin-bottom: 40px;
    width: 200px;
    height: auto;
  }

  #contact-text a{
    font-weight: bold;
    color: #324b5e;
    border-bottom: 1px solid #4e664a;

  }

  #contact-text a:hover{
    color: #4e664a;
    border-bottom: 1px solid #f7f9fa;
  }

  /***TESTIMONIALS MOBILE STYLES***/

  #testimonial-content{
    border-top: 1px solid #324b5e;
  }

  #testimonial-content h1{
    margin-bottom: 20px;
    text-transform: uppercase;
    text-align: center;
  }

  #testimonial-content .container{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #testimonials{
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 400px;
  }

  .mySlides{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
  }

  .testimonial-individual{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .testimonial-individual img{
    margin-bottom: 20px;
    width: 100px;
    height: auto;
  }

  .testimonial-quote{
    margin-top: 20px;
    text-align: justify;
  }

  .testimonial-quote span{
    font-size:4em;
    color:#324b5e;
  }

  /* Slideshow container */
  .slideshow-container {
    width: 100%;
    height: 350px;
    position: relative;
    margin:40px 0;
  }

  /* Hide the images by default */
  .mySlides {
    display: none;
  }

  /* Next & previous buttons */
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 100%;
    width: auto;
    padding: 10px;
    color: white;
    font-size: 16px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color:#324b5e;
  }

  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }

  /* On hover, add a black background color with a little bit see-through */
  .prev:hover, .next:hover {
    background-color: #bbb;
    opacity: .8em;
  }

  /* The dots/bullets/indicators */
  .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }

  .active, .dot:hover {
    background-color: #324b5e;
  }

  /* Fading animation */
  .fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
  }

  @-webkit-keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }

  @keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }

  /***FOOTER MOBILE STYLES***/

  footer {
    padding: 40px 20px;
    background: url(images/footer-background.jpg) no-repeat center;
    background-size: cover;
    height: 400px;
  }

  footer .container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
  }

  footer img{
    width: 150px;
    height: auto;
    margin-bottom: 40px;
  }

  #footer-links{
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 30px;
    text-align: center;
    width: 100%;
    max-width: 400px;
  }

  #footer-links a{
    color: white;
    text-transform: uppercase;
    margin: 0px;
    padding: 4px 8px;
    border-radius: 5px;
  }

  #footer-links a:hover{
    background-color: white;
    color: #324b5e;
  }

  #footer-social{
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #footer-social a{
    color: white;
    margin: 0 10px;
    width:25px;
    height:25px;
    text-align:center;
    vertical-align: middle;
    line-height:25px;
    padding: 8px;
    border-radius: 5px;
    font-size: 1.25em;
  }

  #footer-social i{
    font-size:22px;
  }

  #footer-social a:hover{
    background-color: white;
    color: #324b5e;
  }

  #copyright{
    text-align: center;
    color: white;
    font-size: .9em;
  }

  #copyright a{
    color: white;
    border-bottom: 1px solid white;
    padding: 1px 3px;
  }

  #copyright a:hover{
    background-color: white;
    color: #324b5e;
  }

  #copyright p{
    margin-top: -10px;
  }


}