html{
}
body{
  background-image: url(images/sky2_1.1.1.png);
  background-blend-mode:soft-light;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  
}  

/* background image*/
html{
  background-blend-mode:soft-light;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  
}  
body{
  background-blend-mode:soft-light;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  
}  

* {
  box-sizing: border-box;
 }
 *:before,
 *:after {
  box-sizing: border-box;
 }

 

 
 
#page-wrap{
  box-sizing: border-box;
  font-family: Georgia, 'Times New Roman', Times, serif;
  max-width: 100%;
  letter-spacing: 2px;
  padding: 0;
  min-height: calc(100vh - 800px);
  /* Keeps Footer at bottom of page?!? */
}

header{
  width: 100%;
  margin: auto;
}
::selection{
  background: rgb(0,123,255,0.3);
}
.content{
  margin: auto;
  padding: 0 5em;
}

.navbar{
  position: relative;
  width: 100%;
  z-index: 2;
  padding-top: 2rem;
  padding-bottom: 2rem;
  transition: all 0.3s ease;
}

.brand{
  display: table-cell;
    width: 100%;
    color: #982929;
}
.brand-brand-text{
 text-decoration: none;
  outline: 0;
  white-space: nowrap;
  margin-left: 20px;
  font-family: 'EB Garamond', serif;
}
.brand-title {
  font-family: 'EB Garamond', serif;
  font-weight: 500;
  font-size: 4.5vh;
  font-style: normal;
  line-height: 1.05;
  color: #0783A0;
  text-transform: none;
  letter-spacing: 2px;
  display: block;

}
.brand-title img{
  width: 8em;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.brand-title img:hover{
  transform:scale(1.02);
  transition: ease 0.4s;
}

.brand-subtitle {
  font-family: 'EB Garamond', serif;
  font-weight: 400;
  font-size: 3vh;
  font-style: normal;
  line-height: 1.3;
  color: #333;
  text-transform: none;
  letter-spacing: 0;
  display: block;
  margin-left: 1.2em;
}

.logo{
    position: relative;
    width: 200px;
    height: auto;
    top: 0;
    left: 0;
}

.logo img{
    max-width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    margin-bottom: 40rem;
    display: none;
}
.navbar.sticky{
  background:;
  padding: 10px 0;
  box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.1);
}
.navbar .content{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar .logo a{
    margin-right: auto;
    margin-left: 1rem;
    margin-top: 1rem;
    display: block;
    text-decoration: none;
}
.navbar .menu-list{
  display: inline-flex;
}
.menu-list li{
  list-style: none;
  transition: all 0.3s ease
  
}
.menu-list li a{
  color: white;
  font-size: 2.4vh;
  font-weight: 500;
  margin: 0 0 0 3.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.menu-list li a i{
  color: white;
  font-size: 3vh;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.green li a:hover{
  color: wheat;
}

.menu-list li:hover{
  transform: scale(1.05);
}
.menu-list li a i:hover{
  transform: scale(1.05);
  
}
.green:hover{
  color: green;
}
.orange:hover{
  color: orange;
}
.icon{
  color: white;
  font-size: 20px;
  cursor: pointer;
  display: none;
}
.menu-list .cancel-btn{
  position: absolute;
  right: 30px;
  top: 20px;
}
@media (max-width: 1050px) {
  body.disabled{
    overflow: hidden;
  }
  .icon{
    display: block;
  }
  .icon.hide{
    display: none;
  }
  .navbar .menu-list{
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 400px;
    left: -100%;
    top: 0px;
    display: block;
    padding: 40px 0;
    text-align: center;
    background:rgba(0, 0, 0, 0.801);
    transition: all 0.3s ease;
    opacity: 0.95;
  }
  .navbar.show .menu-list{
    left: 0%;
  }
  .navbar .menu-list li{
    margin-top: 45px;
  }
  .navbar .menu-list li a{
    font-size: 23px;
    margin-left: -500%;
    transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  .navbar.show .menu-list li a{
    margin-left: 0px;
  }
}
@media (max-width: 580px) {
  .content{
    padding: 0 1em;
    width: 100%;
  }
  .navbar{
   padding: 0em 1em 2em 0em;
  }
}
@media (max-width: 380px) {
  .navbar .logo a{
    font-size: 27px;
  }
}

.image-container{
  position: relative;
  width:100%;
  height:auto;
  margin-top: 0; 
  padding: 0;
  padding-bottom: 2.5vh;
}

.banner-container{
  position: relative;
  max-width:100vw;
  width: 100%;
  height: auto;
}

.image-img{
  width:100%;
  display:block;
}

.image-overlay{
  position:absolute;
  top:0;
  left:0;
  margin-left:;
  margin-right:;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  background: rgba(0, 0, 0, 0);
  width:100%;
  height:100%;
  color:white;
  font-family: Georgia;
  cursor:pointer;
  opacity:0.7;
  text-decoration: none;
  box-sizing: content-box;
}

/*@media (max-width: 1150px)
{
.image-overlay{
  margin-left: 120px;
}
}
@media (max-width: 800px)
{
.image-overlay{
  margin-left: 90px;
}
}
@media (max-width: 700px)
{
.image-overlay{
  margin-left: 80px;
}
}
*/
@media (max-width: 1050px)
{
  .image-overlay .image-heading{
    font-size: 28px;
    font-weight:bold;
    font-family: Georgia, 'Times New Roman', Times, serif;
    padding-top: 3%;
  }
  
  .image-overlay .image-description{
    font-size: 18px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    padding-bottom: 20px;
    margin: 0 10px 0 10px;
  }
}
@media (max-width: 550px)
{
.brand-title img{
  width: 5.5em;
}
.image-overlay{
  opacity: 1;
}

.image-overlay .image-heading{
  font-size: 16px;
  font-weight:bold;
  font-family: Georgia, 'Times New Roman', Times, serif;
  padding-top: 3%;
}

.image-overlay .image-description{
  font-size: 12px;
  font-family: Georgia, 'Times New Roman', Times, serif;
  padding-bottom: 20px;
  margin: 0 10px 0 10px;
}
}

.image-heading{
  font-size: 40px;
  font-weight:bold;
  font-family: Georgia, 'Times New Roman', Times, serif;
  padding-top: 3%;
}

.image-description{
  font-size: 28px;
  font-family: Georgia, 'Times New Roman', Times, serif;
  padding-bottom: 20px;
  margin: 0 10px 0 10px;
}

.image-overlay:hover{
  opacity:1;
  transition:0.25s;
}

.img-area{
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}

.single-img{
  padding:0;
}



.single-img img{
  width: 100%;
  height: auto;
  display: block;
}
@media only screen and (min-width: 1222px) {
  .flexgrid img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
@media only screen and (max-width: 1222px) {
  .flexgrid img {
    width: 300%;
  }
}
}