/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}

nav ul {
    list-style:square;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
    text-decoration: none;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}


/* MY CODE */
* {
  box-sizing: border-box;
}

body {
  font-family: "Montserrat";
}

body,html {
  height: 100%;
}


/*
nav{
  background: #E6DFD3;
  padding: 5px 20px;
}
nav ul{
  list-style-type: none;
}
nav a{
  color: #595959;
}
nav a:hover{
text-decoration: underline;
}
.menu_2 li a{
  display: block;
}
.logo_2 a{
  font-size:20px;
}
.main-logo_2{
  max-width: 415px;
}

/* Mobile Menu
.menu_2 {
  display:flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.toggle{
  order:1;
}
.item{
  order:2;
  width: 100%;
  text-align: right;
  display: none;
  font-size: 20px;
  padding: 15px 5px;
}
.item.active{
  display:block;
}
.item a.active {
  color: #800000;
}
.toggle{
  cursor:pointer;
}
.bars{
  background: #595959;
  display: inline-block;
  position:relative;
  height: 2px;
  width: 18px;
}
.bars::before,.bars::after{
  background: #595959;
  content:"";
  display: inline-block;
  position:absolute;
  height: 2px;
  width: 18px;
}
.bars::before{
  top:5px;
}
.bars::after{
  top:-5px;
}

/* Desktop Menu
@media all and (min-width:1050px){
  .menu_2{
    justify-content: center;
  }
  .logo_2{
    flex:1;
  }
  .item{
    width: auto;
    order:1;
    display: block;
  }
  .toggle{
    display:none;
  }
}

.logo_2 a img:last-child{
  display:none;
}
.logo_2 a:hover img:last-child{
  display: block;
}
.logo_2 a:hover img:first-child{
  display:none;
}

.item a:hover {
  color: #959595;
}
*/
/* change colours to suit your needs
  -b29779 Gold
  -959595 grey
  -595959 dark grey
  -FFFFFF white
  -202020 black
  -595959 blue-Green
  -F0ECE2 Greek Villa
  -E6DFD3 New White
  -cccac6 light grey
*/


/* Stylesheet*/
.main-background{
  background: #E6DFD3;
}

.second-background{
  background: #151515;
}

.main-divider {
  color: #E6DFD3;
}

.second-divider {
  border: 1px solid #707070;
  margin-left: 2vw;
  margin-right: 2vw;
  margin-bottom: 0px;
  margin-top: 5px;
}

/* navbar */
.nav{
  Background-color: #E6DFD3;
  box-shadow: 0px 0px 0px 0px #595959;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: wrap;
  margin-left: 2vw;
  margin-right: 2vw;

}

.logo{
  margin-right: auto;
}

.main-logo{
  max-width: 350px;
  padding-top: 15px;
  padding-bottom: 5px;
}
.hover-logo{
  max-width: 350px;
  padding-top: 15px;
  padding-bottom: 5px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: all 0.2s ease;
}
.hover-logo:hover{
  opacity: 1;
}

.header-right {
  letter-spacing: 3px;
  padding-top: 7px;
  margin-right: 20px;
  margin-left: 20px;
  color: #595959;
  text-align: center;
  font-size: 20px;
  line-height: 25px;
}

.list-item {
  list-style-type: none;
  display: inline-block;
  text-decoration: none;
}

.menu {
  display: none;
}

.menu-line{
  width: 23px;
  height: 3px;
  background-color: #595959;
  margin-bottom: 4px;
}


.header-right a:hover {
  color: #959595;
  transition: all 0.2s ease;
}

.header-right a.active {
  color: #800000;
}

@media all and (max-width:960px){
  .nav {
    }

  .header-right{
    width: 100%;
    display: none;
  }

  .list-item {
      display: block;
      text-align: right;
      padding: 5px;
      border-top: 1px solid #959595;
      width: 100%;
    }

    .menu {
      display: block;
      margin-left: auto;
      padding-right: 35px;
      padding-bottom: 10px;
      cursor:pointer;

    }

    .active{
      display: block;
    }

}

/* Stylesheet New Footer*/
.new-footer{
    background-color: #0d0d0d;
    padding: 30px 20px 0px 20px;
    display:flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    justify-content: space-around;

}

.footer-heading {
  font-size: 18px;
  color: #595959;
  text-align: center;
  font-weight: 700;
  line-height: 20px;
  padding-top: 10px;
  text-decoration: underline;
}
.footer-text{
  font-size: 16px;
  color: #909090;
  text-align: center;
  line-height: 24px;
  padding: 20px;
  min-width: 100px;
  max-width: 500px;
  font-family: "Montserrat";
  text-decoration: none;


}

.footer-items{
  list-style-type: none;
  padding: 5px;
}

.footer-social{
  list-style-type: none;
  padding: 10px;
  color: #959595;
}

.copyright{
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap-reverse;
  justify-content: space-between;

}
.green{
  padding: 20px 50px 5px 50px;
}
.copyright-note{
    padding: 0px 0px 0px 30px;
  }
}


/* Stylesheet Footer*/
.footer {
  background-color: #202020;
  margin: 20px 20px
}
.footer img{
  width: 140px;
}
.footer p{
  color: #E6DFD3;
}

#page-container {
  min-height: 100%;
  box-shadow: 0px 6px 6Px 0px #E6DFD3;
  position: relative;
  background: #E6DFD3;
}
#main {
  overflow: auto;
}
#footer {
  position: relative;
  height: 70px;
  margin-top:-70px;
  clear: both;
}

/* Line Breaks */
.border1{
  border: 1px solid #202020;
  margin-left: 2vw;
  margin-right: 2vw;
}

.border2{
  border-top: 1px solid #202020;
}

/* Intro */
.intro {
  max-width: 1125px;
  margin: auto;
}

.intro h2{
  font-size: 22px;
  font-weight: 100;
  color: #202020;
  text-align: left;
  text-decoration: none;
  margin-left: 3vw;
  margin-top: 10px;
  font-family: "Cormorant Garamond";
  text-shadow: none;
}

.intro p{
  font-size: 22px;
  font-weight: 100;
  color: #202020;
  text-align: left;
  text-decoration: none;
  font-family: "Cormorant Garamond";
  text-shadow: none;
}


/* Title */
.default-container {

}


.default-container a{
  display: block;
  font-family: "Montserrat";
  line-height: 1.25;
  font-size: 16px;
  margin-left: 20px;
  margin-right: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.default-container h3 {
  line-height: 1.25;
  font-size: 22px;
  color: #202020;
  text-decoration: none;
  font-family: "Cormorant Garamond";
  text-shadow: none;
  margin-top: 15px;
  margin-bottom: 15px;
  margin-left: 20px;
  margin-right: 20px;
}

.default-container p{
  max-width: 600px;
}

.default-text{
  margin-left: 20px;
  margin-right: 20px;
}




/* Image Gallery */
.wrapper {
  max-width: 1100px;
  padding: 32px;
  margin: auto;
}

.gallery_1{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(4, 12.5rem);
  gap: .5rem;
}

.gallery_2{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(6, 12.5rem);
  gap: .5rem;
}

.gallery_3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 12.5rem);
  gap: .5rem;
}



.gallery_item--1{
  grid-column: 1 / span 1;
  grid-row: 1 / span 1;
}

.gallery_item--2{
  grid-column: 1 / span 1;
  grid-row: 2 / span 1;
}

.gallery_item--3{
  grid-column: 2 / span 1;
  grid-row: 1 / span 2;
}

.gallery_item--4{
  grid-column: 3 / span 1;
  grid-row: 1 / span 3;
}

.gallery_item--5{
  grid-column: 1 / span 2;
  grid-row: 3 / span 2;
}

.gallery_item--6{
  grid-column: 3 / span 1;
  grid-row: 4 / span 1;
}

.gallery_item--7{
  grid-column: 1 / span 1;
  grid-row: 1 / span 3;
}

.gallery_item--8{
  grid-column: 2 / span 1;
  grid-row: 1 / span 1;
}

.gallery_item--9{
  grid-column: 2 / span 1;
  grid-row: 2 / span 1;
}

.gallery_item--10{
  grid-column: 3 / span 1;
  grid-row: 1 / span 2;
}

.gallery_item--11{
  grid-column: 2 / span 2;
  grid-row: 3 / span 2;
}

.gallery_item--12{
  grid-column: 1 / span 1;
  grid-row: 4 / span 3;
}

.gallery_item--13{
  grid-column: 2 / span 1;
  grid-row: 5 / span 2;
}

.gallery_item--14{
  grid-column: 3 / span 1;
  grid-row: 5 / span 1;
}

.gallery_item--15{
  grid-column: 3 / span 1;
  grid-row: 6 / span 1;
}

.gallery_item--16{
  grid-column: 1 / span 1;
  grid-row: 1 / span 1;
}

.gallery_item--17{
  grid-column: 1 / span 1;
  grid-row: 2 / span 1;
}

.gallery_item--18{
  grid-column: 2 / span 1;
  grid-row: 1 / span 2;
}

.gallery_item--19{
  grid-column: 3 / span 1;
  grid-row: 1 / span 3;
}

.gallery_item--20{
  grid-column: 1 / span 2;
  grid-row: 3 / span 2;
}

.gallery_item--21{
  grid-column: 3 / span 1;
  grid-row: 4 / span 1;
}




.gallery_link{
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery_overlay{
  position: absolute;;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, 0.4);
  font-size: 1.5rem;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;

  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;

}

.gallery_link:hover .gallery_overlay{
  opacity: 1;
}

.gallery_overlay span{
  position: relative;
  line-height: 3rem;
}

.gallery_overlay span:before,
.gallery_overly span:after{
  content: '';
  position: absolute;
  height: 2px;
  width: 100%;
  background: #fff;
  transition: width .3s ease-out .2s;
}

.gallery_overlay span:before{
  top: 0;
  left: 0;
}

.gallery_overlay span:after{
  bottom: 0;
  right: 0;
}

.gallery_link:hover .gallery_overlay span:before,
.gallery_link:hover .gallery_overlay span:after{
  width: 100%;
}

.gallery_image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition:
    transform .5s,
    filter .5s;
}

.gallery_link:hover .gallery_image{
  transform: scale(1.2);
  filter: blur(2px);
}

@media screen and (max-width: 60rem){
  .wrapper{
    padding: 1rem;
  }

  .gallery_1{
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(7, 12.5rem);
  }

  .gallery_2{
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(11, 12.5rem);
  }

  .gallery_3{
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 12.5rem);
  }





  .gallery_item--1{
    grid-column: 1 / span 1;
    grid-row: 1 / span 2;
  }

  .gallery_item--2{
    grid-column: 1 / span 1;
    grid-row: 3 / span 2;
  }

  .gallery_item--3{
    grid-column: 2 / span 1;
    grid-row: 1 / span 3;
  }

  .gallery_item--4{
    grid-column: 1 / span 1;
    grid-row: 5 / span 3;
  }

  .gallery_item--5{
    grid-column: 2 / span 1;
    grid-row: 4 / span 2;
  }

  .gallery_item--6{
    grid-column: 2 / span 1;
    grid-row: 6 / span 2;
  }

  .gallery_item--7{
    grid-column: 1 / span 1;
    grid-row: 1 / span 3;
  }

  .gallery_item--8{
    grid-column: 2 / span 1;
    grid-row: 1 / span 2;
  }

  .gallery_item--9{
    grid-column: 2 / span 1;
    grid-row: 3 / span 2;
  }

  .gallery_item--10{
    grid-column: 1 / span 1;
    grid-row:  4 / span 3;
  }

  .gallery_item--11{
    grid-column: 2 / span 1;
    grid-row: 5 / span 2;
  }

  .gallery_item--12{
    grid-column: 1 / span 1;
    grid-row: 7 / span 3;
  }

  .gallery_item--13{
    grid-column: 2 / span 1;
    grid-row: 7 / span 2;
  }

  .gallery_item--14{
    grid-column: 2 / span 1;
    grid-row: 9 / span 3;
  }

  .gallery_item--15{
    grid-column: 1 / span 1;
    grid-row: 10 / span 2;
  }

  .gallery_item--16{
    grid-column: 1 / span 1;
    grid-row: 1 / span 1;
  }

  .gallery_item--17{
    grid-column: 1 / span 1;
    grid-row: 2 / span 1;
  }

  .gallery_item--18{
    grid-column: 2 / span 1;
    grid-row: 1 / span 2;
  }

  .gallery_item--19{
    grid-column: 1 / span 1;
    grid-row: 3 / span 3;
  }

  .gallery_item--20{
    grid-column: 2 / span 1;
    grid-row: 3 / span 1;
  }

  .gallery_item--21{
    grid-column: 2 / span 1;
    grid-row: 4 / span 2;
  }

  .gallery_overlay{
    font-size: 1.25rem;
  }

}

@media screen and (max-width: 40rem){

  .gallery{
    display: block;
  }

  .gallery_1{
    display: block;
  }

  .gallery_2{
    display: block;
  }

  .gallery_3{
    display: block;
  }

  .gallery_item{
    margin: .5rem;
  }

  .gallery_link{
    height 80vw;
  }

  .gallery_overlay{
    font-size: 1rem;
  }

}





/* Index Page */
.index-container {
  display: flex;
  align-items:flex-start;
  justify-content: center;
  flex-wrap: wrap;
  background: #E6DFD3;
}

.banner-height {
  height: 75vh;
}
@media all and (max-width:500px){
  .banner-height {
    height: 375px;
    }
    .index-banner h2{
      display: none;
    }
    .index-banner h1{
      display: none;
    }
    .index-banner .learn-more{
      display: none;
    }
  }

.top-padding{
  height: 0vh;
}
.bottom-padding{
  height: 20vh;
}
.middle1-padding{
  height: 2vh;
}
.middle2-padding{
  height: 4vh;
}


.index-container div{
  /* border: 1px #ccc solid; */

}

.index-text{
  flex:2;
  order:2;
  line-height: 1.75;
  font-size: 16px;
  max-width: 925px;
  min-width: 380px;
  margin: auto;
  padding: 10px 10px;
  color: #595959;
  font-family: "Montserrat";
}

.index-text p{
  margin: 20px;
}

.index-text h1{
  line-height: 1.5;
  font-size: 24px;
  margin: 20px;
  color: #595959;
  font-family: "Cormorant Garamond";
}



.index-image{
  flex:1;
  order:1;
  max-width: 520px;
  min-width: 340px;
  padding: 40px 40px;
  position: relative;
}

.index-info{
    max-width: 100%;
    background-color: #E6DFD3;
    background-size: 17px 17px;
    box-shadow: 3px -12px 16Px 0px #E6DFD3;
    position: relative;
    display:flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 8vw;
}

.index-info h2{
  letter-spacing: 4px;
  font-size: 26px;
  color: #202020;
  text-align: center;
  text-decoration: underline;
  padding: 20px 10px 10px 10px;
  font-family: "Georgia";
  text-shadow: 1px 0px 2px #959595;

}
.index-info h1{
  font-size: 20px;
  color: #595959;
  text-align: center;
  line-height: 1.3;
  max-width: 300px;
  font-family: "Montserrat";
}

/* About Page */
.about-background{
  background: #E6DFD3;
}


.about-container {
  display: flex;
  align-items:flex-start;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}


.about-text{
  flex:2;
  order:2;
  line-height: 1.75;
  font-size: 16px;
  max-width: 575px;
  min-width: 380px;
  margin-left: 20px;
  margin-right: 20px;
  padding: 10px 10px;
  color: #595959;
  font-family: "Montserrat";
}

.about-text p{
  margin: 20px;
}

.about-text h1{
  line-height: 1.5;
  font-size: 24px;
  margin: 20px;
  color: #595959;
  font-family: "Cormorant Garamond";
}

.about-image{
  flex:1;
  order:2;
  max-width: 425px;
  min-width: 340px;

  margin-left: 30px;
  margin-right: 30px;
  margin-top: 50px;
  margin-bottom: 50px;
  box-shadow: 1px 1px 5px 1px #595959;
  padding: 10px 10px;
}


/* Contact Page edf1f4 */

.contact-background {
  background-color: #E6DFD3;
}




.contact-container {
  max-width: 1025px;
  margin: 0 auto;
}

.contact-container div{
  /* border: 1px #ccc solid; */

}

.contact-text{
  line-height: 1.25;
  font-size: 16px;
  color: #202020;
  text-decoration: none;
  font-family: "Montserrat";
  text-shadow: none;
  margin-left: 20px;
  margin-right: 20px;
}

.contact-text h1{
  line-height: 1.25;
  font-size: 22px;
  color: #202020;
  text-decoration: none;
  font-family: "Cormorant Garamond";
  text-shadow: none;
  margin-top: 50px;
}


/* MailSent Page */
.mail-container {
  max-width: 1050px;
  margin: 0 auto;
}

.mail-sent{
  margin-left: 20px;
  margin-right: 20px;
}

.mail-container div{
  /* border: 1px #ccc solid; */

}



.mail-text{
  line-height: 1.25;
  font-size: 16px;
  color: #202020;
  text-decoration: none;
  font-family: "Montserrat";
  text-shadow: none;
  margin-left: 20px;
  margin-right: 20px;

}

.mail-text h1{
  line-height: 1.25;
  font-size: 22px;
  color: #202020;
  text-decoration: none;
  font-family: "Cormorant Garamond";
  text-shadow: none;
  margin-top: 50px;
  margin-left: 20px;
  margin-right: 20px;
}

.mail-text p{
  margin-left: 20px;
  margin-right: 20px;
}

/* Resources Page */
.resources-container {
  max-width: 1025px;
  margin: auto;
  border-style: solid;
  border-color: #202020;

}

/* Title */
.resources-container a{
  display: block;
  font-family: "Montserrat";
  line-height: 1.25;
  font-size: 16px;
  margin-left: 20px;
  margin-right: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.resources-container h3 {
  line-height: 1.25;
  font-size: 22px;
  color: #202020;
  text-decoration: none;
  font-family: "Cormorant Garamond";
  text-shadow: none;
  margin-top: 15px;
  margin-bottom: 15px;
  margin-left: 20px;
  margin-right: 20px;
}

.resources-container p{
  max-width: 600px;
}

.resources-text{
  margin-left: 20px;
  margin-right: 20px;
}

/* unvisted link */
.resources-container a:link {
  color: #202020;
}
/* visted link */
.resources-container a:visited {
  color: #004080;
}
/* mouse over link */
.resources-container a:hover {
  color: green;
}
/* selected link */
.resources-container a:active {
  color: #595959;
}
