*{
  margin:0px;
  padding:0px;
}

html {
  scroll-behavior: smooth;
}

:root{
  --bluegray: #49515b;
  --lightblue: #0fb9ec;
  --darkblue: #282f34;
  --royalblue:#2e4f99;
}

body {
  font-family: "DM Sans", sans-serif;
/*  color: #49515b; blue gray*/
/*    color: #0fb9ec; light blue*/
/*  color: #2e4f99; royal blue*/
  color: #282f34;
  background: #f3eeea;
  font-size: 16px;
  line-height: 1.5em;
  margin: 0;
/*  letter-spacing: 1px;*/
}

h1, h2, h3, h4{
  font-family: "Poppins", sans-serif;
  letter-spacing: 2px;
  line-height: 1.2em;
}

h1{
  margin-top: 0px;
  line-height: 1.3em;
  font-size: 2.5em;
  margin-bottom: 40px;
  font-weight: 900;
  letter-spacing: 1px;
}

h2, h3, h4{
  letter-spacing: 1px;
}

p, h2, h3, h4 {
  margin-bottom: 20px;
  margin-top: 0px;
}

h2{
  font-weight: 200;
}

h3{
  font-size: 1.5em;
  font-weight: 900;
}

a{
  text-decoration: none;
  transition: .2s;
  color: inherit;
}

ul, ol{
  padding-left:40px;
}

ul li, ol li{
  margin-bottom: 5px;
}

.subpage-content p a,
.subpage-content ol a,
.contact-form a{
  border-bottom: 1px solid #0fb9ec;
  font-weight: 500;
}

.subpage-content p a:hover,
.subpage-content ol a:hover,
.contact-form a:hover{
  color: #0fb9ec;
}

#thank-you-content {
  text-align: center;
  font-size: 1.15em;
  font-weight: 500;
}

#thank-you-content p{
  margin-bottom: 40px;
}

#thank-you-content img{
  width: 200px;
  height: auto;
}

.center-text{
  text-align: center;
}

.subpage-content h3{
  font-weight: bold;
}

.subpage-content{
  background: white;
}

#contact-content .container{
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  align-items: flex-end;
}

#contact-content img{
  width: 200px;
  height: auto;
}

img.carlin-mural{
  margin:50px auto 0;
  display: block;
  width: 100%;
  height: auto;
  max-width: 500px;
}

/*** DESKTOP STYLES ***/
@media (width >= 1100px) {

  .container {
    width: 1100px;
    margin:0 auto;
  }

  .content{
    padding: 80px 0;
  }
  
  /*** HEADER DESKTOP STYLES ***/

  #navContainer{
    width: 100%;
    transition: .6s;
    position: fixed;
    top: 0;
    min-height: fit-content;
    z-index: 1000;
  }

  #navContainer .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  #navContainer img{
    width: 180px;
    height: auto;
    padding:10px 0 7px;
    transition: .5s;
  }

  .topnav{
    display: flex;
    justify-content: space-between;
    align-items: center;
/*    width: 300px;*/
  }

  .topnav a{
    color: #f3eeea;
    padding:4px 12px;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 1.1em;
    margin:0 10px;
  }

  .topnav a:hover{
    background: #0fb9ec;
    color: #f3eeea;
  }

  #myTopnav a.icon{
    display: none;
  }

  .hidden {
    display: none;
    position: absolute;
    background-image: linear-gradient(to right, #baa377 , #957B4B);
    margin-top:10px;
    width: 160px;
    padding:10px 0;
/*    min-width: 100px;*/
    z-index: 10;
    flex-direction: column;
    transition: .4s;
    margin-left:10px;
    box-shadow:0px 8px 16px 1px rgba(0,0,0,0.3)
  }

  .hidden a{
    display: block;
    font-size: .95em;
    font-weight: 600;
    padding:6px 12px;
    color: #f3eeea;
  }

  .hidden a:hover{
    color: #2d3e50;
  }

  .dropdown:hover .hidden {
    display: flex;
  }

  .dropbtn{
    padding:16px !important;
  }

  a.dropbtn:hover{
    background: transparent;
    color: #f3eeea;
    box-shadow: none;
    cursor: auto;
  }

  .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 DESKTOP STYLES***/

    #homepage-hero{
      background: url(images/homepage-hero.jpg) no-repeat center;
      background-size: cover;
      height: 900px;
      position: relative;
      color: #f3eeea;
      z-index: 1;
      overflow:hidden;
    }

    #homepage-hero .container{
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      height: 85%;
    }

    #homepage-hero h1{
      font-size: 4em;
    }

    .hero-btns {
      display: flex;
      justify-content: flex-start;
      align-items: flex-start;
    }

    .hero-btns a{
      padding:15px 40px;
      color: #f3eeea;
      display: inline-block;
      transition: .4s;
      font-weight: bold;
      font-size: 1.15em;
      border:3px solid #f3eeea;
      width: 170px;
      text-align: center;
    }

    .hero-btns a:last-of-type{
      margin-left:20px;
      background: #0fb9ec;
      border:3px solid #0fb9ec;
    }

    .hero-btns a:last-of-type:hover{
      border:3px solid #f3eeea;
    }

    .hero-btns a:hover{
      background: #f3eeea;
      color: #49515b;
      color: #0fb9ec;
    }

    .angle1{
      display: block;
      width: 110%;
      height: 240px;
      position: absolute;
      transform: rotate(-8deg);
      z-index: 2;
      background: #f3eeea;
      opacity: .5;
      bottom: 15px;
      left:-20px;
    }

    .angle2{
      display: block;
      width: 110%;
      height: 240px;
      transform: rotate(-5deg);
      position: absolute;
      z-index: 2;
      background: #f3eeea;
      bottom: -90px;
      left:-20px;
    }

    /* MAIN BODY DESKTOP STYLES*/

    .small-title{
      display: block;
      margin:0 auto 60px;
      display: flex;
      justify-content: center;
      align-items: center;
      color: #2e4f99;
      text-transform: uppercase;
    }

    .small-title h3{
      margin:0 10px 0px;
      font-size: 1.15em;
    }

    .carlin-description{
      color: #49515b;
      display: flex;
      justify-content: center;
      align-items: flex-start;
      margin:0 auto;
      width: 800px;
    }

    .carlin-description img{
      width: 400px;
      height: auto;
      margin-right:-40px;
      position: relative;
      z-index: 1;
    }

    .carlin-description h3{
      margin-left:-60px;
      font-size: 2.25em;
      font-weight: 900;
      position: relative;
      z-index: 2;
      margin-top: 20px;
      color: #4a515b;
    }

    #img-blue-shape{
      position: relative;
    }

    #img-blue-shape .container{
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
    }

    .img-shape-left {
      position: relative;
      z-index: 2;
    }

   /* ANIMATION */
    /*@keyframes fadeInUp {
      from {
        transform: translateY(100px);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }
    .fade-in-up {
      animation: 0.75s both fadeInUp;
    }*/

    .img-shape-left img{
      width: 440px;
      height: auto;
    }

    img.blue-shape-left{
      position: absolute;
      left: 6%;
      width: 480px;
      height: auto;
      bottom: 20px;
      z-index: 1;
    }

    .img-shape-right {
      width: 500px;
    }

    .img-shape-right h3{
      color: #4a515b;
    }

    .img-shape-right a{
      padding: 15px 40px;
      color: #f3eeea;
      display: inline-block;
      transition: .4s;
      font-weight: bold;
      font-size: 1.15em;
      border: 3px solid #0fb9ec;
      background: #0fb9ec;
      display: inline-block;
    }

    .img-shape-right a:hover{
      background: transparent;
      color: #0fb9ec;
    }

    .img-shape-right {
      position: relative;
      z-index: 2;
    }

    .img-shape-right img{
      width: 500px;
      height: auto;
      margin-top: 160px;
    }

    img.blue-shape-right{
      position: absolute;
      right:6%;
      width: 500px;
      height: auto;
      bottom:20px;
      z-index: 1;
    }

    #img-blue-shape .img-tall{
      width: 440px;
      height: auto;
      position: relative;
    }

    .img-shape-left:before{
      content:'';
      position: absolute;
      height: 105%;
      width: 105%;
      top:0;
      left:0;
      transform: translate3d(-25px, -25px, 0px) skew(4deg, 4deg);
      background: var(--lightblue);
    }

    #img-blue-shape .img-wide{
      width: 100%;
      height: auto;
      margin-top:0;
    }

    .img-shape-right-container{
      position: relative;
      width: 500px;
      height: 255px;
      margin-top:50px;
    }

    .img-shape-right-container:before{
      content:'';
      position: absolute;
      height: 105%;
      width: 105%;
      top:0;
      left:0;
      transform: translate3d(10px, 15px, 0px) skew(3deg, 3deg);
      background: var(--lightblue);
      z-index: -1;
    }

    #homepage-timeline{
      padding-top:120px;
    }

    #homepage-timeline .container{
      display: flex;
      flex-flow: row wrap;
      justify-content: space-between;
      align-items: center;
    }

    .timeline-title{
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      width: 560px;
    }

    .timeline-title h1{
      font-size: 3em;
      color: #4a515b;
    }

    .timeline-title .small-title{
      margin:0 0 20px;
    }

    .timeline-text{
      width: 500px;
    }

    .timeline-text p a{
      font-weight: 500;
      border-bottom: 1px solid var(--lightblue);
    }

    .timeline-text p a:hover{
      color: var(--lightblue);
    }

    #timeline-container{
      width: 100%;
      margin-top:60px;
      display: flex;
      flex-direction: row-reverse;
      justify-content: space-between;
    }

    .tab{
      display: flex;
      flex-direction: column;
      justify-content: space-between;
/*      align-items: stretch;*/
      width: 460px;
      height: 400px;
    }

    .tablinks{
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 40px;
      padding:10px 20px;
      border:2px solid #C7CBD1;
      transition: .3s;
    }

    .tablinks:last-of-type{
      margin-bottom: 0px;
    }

    .btn-text{
      text-align: right
    }

    .btn-text h3{
      margin-bottom: 0px;
      font-size: 1.15em;
    }

    .btn-text p{
      margin-bottom: 0px;
    }

    .tablinks i{
      opacity: 0;
      transition: ;
    }

    .btn-active, .tablinks:hover{
      cursor: pointer;
      border:2px solid #0fb9ec;
      background: #fff;
/*      color: white;*/
    }

    .btn-active i, .tablinks:hover i{
      opacity: 1;
    }    

    .timeline-img{
      width: 600px;
    }

    .tabcontent {
      display: none;
      width: 100%;
      height: 400px;
    }

    #Spring{
      background: url(images/render1.jpg) no-repeat center;
      background-size: cover;
      display: block;
    }
    #DemoComplete{
      background: url(images/demo-complete.jpg) no-repeat center;
      background-size: cover;
    }
    #January2024{
      background: url(images/january2024.jpg) no-repeat center;
      background-size: cover;
    }
    #Complete{
      background: url(images/complete.jpg) no-repeat center;
      background-size: cover;
    }

    /*SUBPAGE DESKTOP STYLES*/

    .subpage-hero{
      background: url(images/homepage-hero.jpg) no-repeat center;
      background-size: cover;
      height: 550px;
      position: relative;
      color: #f3eeea;
      z-index: 1;
      overflow:hidden;
    }

    .subpage-hero .container{
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      height: 80%;
    }

    .subpage-hero h1{
      margin-bottom: 0px;
    }

    /**FLOOR PLANS DESKTOP STYLES**/
    
    #floor-plans-content  h2{
      width: 100%;
      text-align: center;
      border-bottom: 1px solid lightgray;
      font-size: 2.5em;
      font-weight: 900;
      margin: 20px 0 60px;
      text-transform: uppercase;
    }

    #floor-plans-content .container{
      display: flex;
      flex-flow: row wrap;
      justify-content: space-between;
      align-items: flex-start;
    }

    .floor-plan-img{
      width: 500px;
      margin-bottom: 40px;
    }

    .floor-plan-img h3{
      width: 100%;
      text-align: center;
      text-transform: none;
    }

    .floor-plan-img img{
      width: 100%;
      height: auto;
    }

    /*FOOTER DESKTOP STYLES*/

    footer{
      background: url(images/map-background.jpg) no-repeat center;
      background-size: cover;
      height: 600px;
      position: relative;
      overflow: hidden;
    }

    footer .angle1, footer .angle2{
      background: #282f34;
    }

    footer .angle1{
      transform: rotate(8deg);
      left:-40px;
    }
    footer .angle2{
      transform: rotate(4deg);
    }

    #sub-footer{
      background: #282f34;
      z-index: 3;
      position: relative;
    }

    #sub-footer .container{
      border-top:1px solid lightslategray;
      padding:60px 0;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      color: #f3eeea;
    }

    #sub-footer img{
      width: 200px;
      height: auto;
    }

    #sub-footer p{
      margin-bottom: 0px;
    }

    #sub-footer p:first-of-type{
      width: 400px;
    }

    p.copyright{
      font-size: .9em;
    }

    p.copyright a{
      border-bottom: 1px solid #0fb9ec;
    }

    p.copyright a:hover{
      color: #0fb9ec;
    }
   

}


/*** MOBILE STYLES ***/
@media (width <= 1099px) {

  .container {
    width:100%;
    margin: 0 auto;
  }

  .content{
    padding: 60px 20px;
  }

  h1{
    font-size: 2em;
  }

  /***** HEADER MOBILE STYLES *****/

  #navContainer{
    width: 100%;
    background-image: linear-gradient(#282f34, #4a515b) !important;
    transition: .4s;
    position: fixed;
    max-height: 100%;
    top: 0;
    z-index: 100;
    overflow-y: scroll;
    overflow-x: hidden;
    padding:5px 0 0x !important;
  }

  #navContainer img{
   width: 120px !important;
   height: auto;
   margin: 10px 0 5px 15px;
  }

  #nav-logo{
    height: 45px;
    display: block;
  }

  /* Links inside the navbar */
  .topnav a { 
    float: left;
    font-size: 16px;
    color: #f3eeea;
    font-weight: 600;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }

  /* Add a background color to navbar links on hover */
  .topnav a:hover{
    background: #0fb9ec;
    color:#f3eeea;
  }

  /* 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;
    position: absolute;
    font-size: 32px;
    top: 17px;
    right: 0;
    float: right;
    margin: 0px 10px 10px 0;
    color: #f3eeea !important;
    transition: unset;
  }

  .topnav a.icon:hover{
    background:transparent;
  }

   /* 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-top:10px;
  }
    .topnav.responsive a.icon {
      position: absolute;
      top: -65px;
      border-bottom:none;
      transition: unset;
    }
    .topnav.responsive a {
      float: none;
      display: block;
      text-align: left;
      border-bottom:1px solid #cfd0d1;
    }
    .topnav.responsive .dropdown {float: none;}
    .topnav.responsive .dropdown-content {position: relative;}
    .topnav.responsive .dropdown .dropbtn {
      display: block;
      width: 100%;
      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;
      padding: 10px 0;
      flex-direction: column;
    }

    .hidden a{
      padding:8px 16px 8px 24px;
      border-bottom: none !important;
      font-weight: normal;
/*      background: #707070;*/
    }

    /* 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;}
    }

    a.dropbtn{
      border-bottom:1px solid #0054ff;
    }

    /*a.dropbtn:hover{
      background: #e6ae4a;
      color: #f3eeea;
    }*/
    
  /*HERO MOBILE STYLES*/

  #homepage-hero{
   background: url(images/homepage-hero.jpg) no-repeat center;
   background-size: cover;
   color: #f3eeea;
   margin-top:75px;
   height: 680px;
   position: relative;
   overflow: hidden;
  }
   
   #homepage-hero .container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 80%;
  }

  #homepage-hero h1{
    margin-bottom: 30px;
    font-size: 2.5em;
    text-align: center;
  }

    .hero-btns {
      display: flex;
      flex-flow: row wrap;
      justify-content: center;
      align-items: flex-start;
    }

    .hero-btns a{
      padding:10px 30px;
      color: #f3eeea;
      display: inline-block;
      transition: .4s;
      font-weight: bold;
      border:3px solid #f3eeea;
      margin: 10px;
      width: 150px;
      text-align: center;
    }


    .hero-btns a:last-of-type{
      background: #0fb9ec;
      border:3px solid #0fb9ec;
    }

    .hero-btns a:last-of-type:hover{
      border:3px solid #f3eeea;
    }

    .hero-btns a:hover{
      background: #f3eeea;
      color: #49515b;
      color: #0fb9ec;
    }

    .angle1{
      display: block;
      width: 110%;
      height: 120px;
      position: absolute;
      transform: rotate(-8deg);
      z-index: 2;
      background: #f3eeea;
      opacity: .5;
      bottom: 35px;
      left:-20px;
    }

    .angle2{
      display: block;
      width: 110%;
      height: 140px;
      transform: rotate(-5deg);
      position: absolute;
      z-index: 2;
      background: #f3eeea;
      bottom: -50px;
      left:-20px;
    }

    /*MAIN BODY MOBILE STYLES*/

    #homepage-about{
      padding:40px 20px 20px;
    }

    #homepage-about .container{
      overflow-x: hidden;
    }

    .small-title{
      display: block;
      margin:0 auto 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      color: #2e4f99;
      text-transform: uppercase;
    }

    .small-title h3{
      margin:0 10px 0px;
      font-size: 1.15em;
    }

    .carlin-description{
      color: #49515b;
      display: flex;
      justify-content: center;
      align-items: flex-start;
      margin:0 auto;
      max-width: 700px;
    }

    .carlin-description img{
      max-width: 350px;
      width: 100%;
      height: auto;
      margin-right:-20px;
      position: absolute;
      z-index: 1;
    }

    .carlin-description h3{
      font-size: 2.25em;
      font-weight: 900;
      position: relative;
      z-index: 2;
      text-align: center;
    }

    .blue-shape-left, .blue-shape-right{
      display: none;
    }

    #img-blue-shape .container{
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    #img-blue-shape img{
      width: calc(100% - 20px);
      max-width: 400px;
      height: auto;
      padding:10px;
      border:2px solid #0fb9ec;
    }

    .img-shape-right {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-top:60px;
    }

    .img-shape-right h3{
      color: #4a515b;
      text-align: center;
    }

    .img-shape-right a{
      padding: 15px 40px;
      color: #f3eeea;
      display: inline-block;
      transition: .4s;
      font-weight: bold;
      font-size: 1.15em;
      border: 3px solid #0fb9ec;
      background: #0fb9ec;
      display: inline-block;
      margin-bottom: 80px;
    }

    .img-shape-right a:hover{
      background: transparent;
      color: #0fb9ec;
    }

    #homepage-timeline{
      padding-top:80px;
    }

    #homepage-timeline .container{
      display: flex;
      flex-flow: row wrap;
      justify-content: space-between;
      align-items: center;
    }

    .timeline-title{
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
      text-align: center;
    }

    .timeline-title h1{
      font-size: 2em;
      color: #4a515b;
    }

    .timeline-text{
      width: 80%;
      margin:0 auto;
    }

    #timeline-container{
      width: 100%;
      margin-top:60px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .tab{
      display: flex;
      justify-content: space-between;
      width: 100%;      
    }

    .tablinks{
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 40px;
      padding:10px 5px;
      width: calc(25% - 10px);
      border-top:1px solid #0fb9ec;
      border-bottom: 1px solid #0fb9ec;;
      border-left:1px solid #0fb9ec;
      transition: .3s;
    }

    .tablinks:last-of-type{
      border-right:1px solid #0fb9ec;
    }

    .btn-text{
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .btn-text h3{
      margin-bottom: 0px;
      font-size: .9em;
      text-align: center;
      font-weight: 400;
    }

    .btn-text p{
      margin-bottom: 0px;
      display: none;
    }

    .tablinks i{
      display: none;
    }

    .btn-active, .tablinks:hover{
      cursor: pointer;
      border:1px solid #0fb9ec;
      background: #fff;
      color: #4a515b;
    }  

    .timeline-img{
      width: 100%;
    }

    .tabcontent {
      display: none;
      width: 100%;
      height: 400px;
    }
    
    #Spring{
      background: url(images/render1.jpg) no-repeat center;
      background-size: cover;
      display: block;
    }
   #DemoComplete{
      background: url(images/demo-complete.jpg) no-repeat center;
      background-size: cover;
    }
    #January2024{
      background: url(images/january2024.jpg) no-repeat center;
      background-size: cover;
    }
    #Complete{
      background: url(images/complete.jpg) no-repeat center;
      background-size: cover;
    }

     /*SUBPAGE MOBILE STYLES*/

    .subpage-hero{
      background: url(images/homepage-hero.jpg) no-repeat center;
      background-size: cover;
      height: 500px;
      margin-top:75px;
      position: relative;
      color: #f3eeea;
      z-index: 1;
      overflow:hidden;
    }

    .subpage-hero .container{
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      height: 80%;
    }

    .subpage-hero h1{
      margin-bottom: 0px;
    }

    /**FLOOR PLANS MOBILE STYLES**/
    
    #floor-plans-content  h2{
      width: 100%;
      text-align: center;
      border-bottom: 1px solid lightgray;
      font-size: 2.5em;
      font-weight: 900;
      margin: 20px 0 60px;
      text-transform: uppercase;
    }

    #floor-plans-content .container{
      display: flex;
      flex-flow: row wrap;
      justify-content: space-around;
      align-items: flex-start;
    }

    .floor-plan-img{
      max-width: 400px;
      margin-bottom: 40px;
    }

    .floor-plan-img h3{
      width: 100%;
      text-align: center;
      text-transform: none;
    }

    .floor-plan-img img{
      width: 100%;
      height: auto;
    }

    /*BUILDING PHOTOS MOBILE STYLES*/

    /*.img-gallery{
      display: flex;
      flex-flow: row wrap;
      justify-content: center;
      align-items: flex-start;
    }

    .img-gallery img{
      margin:10px;
      width: 300px;
      height: auto;
    }*/

   /* .img-tall{
      height: 500px;
      width: auto;
    }

    .img-wide{
      width: 975px;
      height: auto;
    }*/

    /*FOOTER MOBILE STYLES*/

    footer{
      background: url(images/map-background.jpg) no-repeat center;
      background-size: cover;
      height: 400px;
      position: relative;
      overflow: hidden;
    }

    footer .angle1, footer .angle2{
      background:#282f34;
    }

    footer .angle1 {
      transform: rotate(8deg);
      left: -40px;
    }

    footer .angle2{
      transform: rotate(4deg);
    }

    #sub-footer{
      background: #282f34;
      padding:20px 20px 0;
    }

    #sub-footer .container{
      border-top:1px solid lightslategray;
      padding:60px 0 40px;
      display: flex;
      flex-direction: column;
      align-items: center;
      color: #f3eeea;
    }

    #sub-footer img{
      width: 200px;
      height: auto;
      margin-bottom: 20px;
    }

    #sub-footer p{
      margin-bottom: 0px;
    }

    #sub-footer p:first-of-type{
      max-width: 400px;
      margin-bottom: 40px;
    }

    p.copyright{
      font-size: .9em;
      text-align: center;
      padding-top:40px;
      width: 100%;
      border-top:1px solid lightslategray;
    }

    p.copyright a{
      border-bottom: 1px solid #0fb9ec;
    }

    p.copyright a:hover{
      color: #0fb9ec;
    }


}

/*BUILDING PHOTOS STYLES*/

    .img-gallery{
      display: flex;
      flex-flow: row wrap;
    }
    .column {
      flex: 33%;
      max-width: calc(33% - 8px);
      padding: 0 4px;
    }

    .column img {
      margin-top: 8px;
      vertical-align: middle;
      width: 100%;
    }



@media screen and (max-width: 600px) {
    .column {
      flex: 100%;
      max-width: calc(100% - 8px);
    }
  }