:root {
  --menu-speed: 0.75s;
}

a {
color: black;
text-decoration: none;
}

form {
  max-width: 400px;
  margin: 0 auto;
}

/***********************/
.slider{
  width: 100%;
  border: 1px solid red;
  height: var(--height);
}

.slider .list{
  display: flex;
  width: 100%;
  min-width: calc(var(--width) * var(--quantity));
  position: relative;
}

.slider .list .item{
  width: var(--width);
  height: var(--height);
  position: absolute;
  left: 100%;
  animation: autoRun 20s linear infinite;
  transition: filter 0.5s;
  /**animation-delay: calc( (20s / var(--quantity)) * (var(--position) - 1) )!important;**/
}

.slider .list .item img{
  width: 100%;
}

@keyframes autoRun{
  from{
    left: calc(--width);
  }to{
    left: calc(var(--width) * -1);
  }
}

.slider:hover .item{
  animation-play-state: paused!important;
  filter: grayscale(1);
}

.slider .item:hover{
  filter: grayscale(0);
}

.slider[reverse="true"] .item{
  animation: reversePlay 20s linear infinite;
}

@keyframes reversePlay{
  from{
    left: calc(var(--width) * -1);
  }to{
    left: 100%;
  }
}
/***********************/

input,
textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
}

img{
  display: block;
}

.header{
  display: flex;
  flex-direction: row;
  text-align: left;
  justify-content: center;
  color:black;
  padding-left: 50px;
  padding-right: 50px;
  }

.headleft{
  width: 100%;
  display: flex;
  flex-direction: column;
}

body {
  padding: 0px;
  margin: 0px;
  font-size: 20px;
  font-family: "Maven Pro", sans-serif;
  }


  h4{
    font-family: "Cuprum", serif;
    font-size: 24px;
  }

  h3{
    font-family: "Cuprum", serif;
    font-size: 16px;
    color: black;
    margin: 0px;
  }

  h2{
    font-family: "Cuprum", serif;
    font-size: 20px;
    color: black;
    margin-top: 0px;
  }

  h1{
    font-family: "Prompt", serif;
    font-weight: normal;
    font-size: 46px;
    margin-bottom: 0px;
  }

  p{
    font-size: 14px;
    margin: 5px;
  }

.overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s, visibility .35s, height .35s;
    overflow: hidden;
    background: black;
    z-index: -1;
  }

.icon{
    width: 25px;
}


/*BEGIN BASIC MENU STUFF*/
#main-menu {
display: block;
float:right;
align-self: center;
margin: 0px;
z-index: 2;
}

.sitetitle{
  display: flex;
  flex-direction: row;
  column-gap: 10px;
}

#main-menu ul {
font-family: "Cuprum", sans-serif;
font-weight: 400;
max-width: 1000px;
min-width: 500px;
width: 60%;
margin: 0px auto;
padding: 0px;
display: flex;
text-align: center;
justify-content: space-between;
/*align-items: center;*/
z-index: 2;
}

#main-menu li {
list-style-type: none;
display: flex;
align-self: center;
}

#main-menu a {
display: flex;
/*align-self: center;*/
font-size: 1rem;
text-decoration: none;
padding-left: 10px;
padding-right: 10px;
padding-top: 5px;
padding-bottom: 5px;
}

/*#main-menu li:hover {
background-color: blue;
color: white;
cursor: pointer;
}*/

#main-menu a:hover {
background-color: black;
color: white;
cursor: pointer;
transition: 0.2s;
}
/*END BASIC STUFF*/

/*BEGIN BOIGA MENU STUFF*/
.menu-wrap {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 3;
  text-align: right;
  display: none;
}

.menu-wrap .toggler{
  position: absolute;
  top: 15px;
  right: 20px;
  z-index: 4;
  /*text-align: right;*/
  cursor: pointer;
  width: 50px;
  height: 45px;
  opacity: 0;
}

.menu-wrap .hamburger{
  position: absolute;
  right: 24px;
  z-index: 3;
  width: 30px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*HAMBURGER LINE*/
.menu-wrap .hamburger > div {
  position: relative;
  width: 100%;
  height: 4px;
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.menu-wrap .hamburger > div:before,
.menu-wrap .hamburger > div:after {
  content: "";
  position: absolute;
  z-index: 3;
  top: -13px;
  width: 100%;
  height: 4px;
  background: inherit;
}

.menu-wrap .hamburger > div:after {
  top: 13px;
}

/*TOGGLER ANIMATE*/
.menu-wrap .toggler:checked + .hamburger > div {
  transform: rotate(135deg);
  background-color: white;
}

.menu-wrap .toggler:checked + .hamburger {
  background: black;
  transition: 0.1s;
}

/*GET THAT OVERLAY IN THERE*/
.menu-wrap .toggler:checked ~ .overlay {
 visibility: visible;
 opacity: 0.4;
}

/*TURN LINES INTO X*/
.menu-wrap .toggler:checked + .hamburger > div:before,
.menu-wrap .toggler:checked + .hamburger > div:after {
  top: 0;
  transform: rotate(90deg);
}

/*SHOW MENU*/
.menu-wrap .toggler:checked ~ .menu {
  visibility: visible;
  right: 0;
}

.menu-wrap .toggler:checked ~ .menu > div > div {
  opacity: 1;
}


/*SLIDE OUT MENU STYLE*/
.menu-wrap .menu{
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  visibility: hidden;
  overflow: hidden;
  transition: 0.3s;
  display: flex;
  /*align-items: center;*/
  /*justify-content: center;*/
}
/*The "> div" makes the div take the position in the blank div already made*/
.menu-wrap .menu > div {
  background: black;
  width: 100%;
  height: 100%;
  display: flex;
  flex: none;
  /*align-items: center;*/
  /*justify-content: center;*/
}

.menu-wrap .menu > div > div {
  text-align: left;
  opacity: 0;
}

.menu-wrap .menu > div > div > ul > li {
  list-style: none;
  color: white;
  padding: 1rem;
  font-family: "Cuprum", serif;
}

.menu-wrap .menu > div > div > ul > li > a {
  color: inherit;
  text-decoration: none;
}

.menu-wrap .menu > div > div > ul > li > a:hover {
  color: #D13FB2;
}

/*RESPONSIVE*/
@media screen and (max-width: 1210px) {
  .sitetitle{
    display: flex;
    flex-direction: column;
    margin-top: 10px;
  }

  h1{
    margin: 0px;
  }

  h2{
    margin: 0px;
    font-size: 14px;
  }

}

@media screen and (max-width: 1025px) {
    #main-menu {
      display: none;
    }

    .menu-wrap {
      display: inline;
    }

    .header{
      padding-top: 0px;
      position: fixed;
      top: -5px;
      text-align: left;
      padding-left: 20px;
      z-index: 2;
    }

  .headerbox{
    display: inline;
    z-index: 1;
    background-color: white;
    top: 0px;
    left: 0px;
    position: fixed;
    width: 100%;
    height: 90px;
  }

  .sitetitle{
    display: flex;
    flex-direction: row;
    margin-top: 10px;
  }

  h1{
    font-size: 36px;
  }
  .icon{
    width: 30px;
}
}

/* Begin css for my created main page content*/

    .secondnav{
      display: flex;
      flex-direction: column;
      height: 100%;
    }


    .encompass{
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      padding: 6px;
      padding-left: 15%;
      padding-right: 15%;
      padding-top: 30px;;
    }

    .aboutencompass{
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      padding-top: 30px;
      padding-left: 50px;
      padding-right: 50px;
    }


    .aboutspace{
      height: 50px;
    }

    .abouts{
      display: flex;
      flex-direction: row;
      width: 100%;
      max-height: 100px;
      justify-content: center;
      margin-bottom: 80px;
    }

    .cover{
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        width: 100%;
        padding: 6px;
        padding-top: 25px;
        padding-left: 10px;
        padding-right: 10px;
      }

      .usecover{
        display: flex;
        flex-direction: row;
        padding-top: 25px;
        padding-left: 50px;
        padding-right: 50px;
        gap: 10px;
      }

      .aboutcover{
          /*background-color: green;*/
          display: flex;
          flex-direction: row;
          width: 100%;
          gap: 30px;
        }

    .picrow{
        display: flex;
        flex-direction: row;
        width: 100%;
        flex-shrink: 0;
      }

      .picunevenleft{
        display: flex; 
        width: 37%;
      }

      .picunevenright{
        display: flex; 
        width: 63%;
      }

      .twotoone{
        display: flex;
        flex-direction: row;
        width: 50%;
      }

      .couple{
        display: flex;
        flex-direction: row;
        width: 100%
      }

      .triple{
        display: flex;
        flex-direction: row;
        width: 100%
      }

      .doubles{
        display: flex;
        flex-direction: row;
        width: 50%;
        gap: 10px;
      }

      .column{
        display: flex;
        flex-direction: column;
        width: 49%;
        gap: 10px;
        }

      .column2{
        display: flex;
        flex-direction: column;
        width: 50%;
        min-height: 100%;
        float:right;
        }

      .aboutcolumn{
          display: flex;
          flex-direction: column;
          max-width: 500px;
        }

        .buds{
          display: flex;
          flex-direction: row;
          width: 100%;
          gap: 30px;
        }

        .aboutphoto{
          width: 100%;
        }

        .aboutcaption{
          font-family: "Maven Pro", sans-serif;
          font-size: 10px;
        }

      .aboutcolumn2{
        display: flex;
        flex-direction: column;
        width: 100%;
        float: right;
        }

      .aboutcolumn3{
        display: flex;
        flex-direction: column;
        width: 200px;
        min-height: 100%;
        float:left;
        }

      .aboutcontact{
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 10px;
      }

      .abouticon{
        width: 35px;
        height: 35px;
        padding: 5px;
        justify-content: center;
        text-align: center;
      }

      .nextto{
        display: flex;
        flex-direction: row;
        align-items: flex-end;
        justify-content: center;
      }

      .halfcolumn{
        width: 50%;
      }

      .section{
        padding: 5px;
        box-sizing: border-box;
        display: block;
      }

      .photo{
        padding: 5px;
        width: 100%;
        height: 100%;
      }

      .flex-item{
        width: 100%;
      }

      .portrait{
        padding: 5px;
        width: 100%;
        height: 100%;
      }
  /* End css for my created main page content*/

  /* Begin css for modal*/
      .rowModal > .columnModal {
        padding: 0 8px;
        }

        .rowModal:after {
        content: "";
        display: table;
        clear: both;
        }

        .columnModal {
        display: inline-block;
        float: left;
        width: 10%;
        height: 100px;
        }

        .modalThumb{
        display: block;
        max-height:100px;
        max-width: 100%;
        margin: auto;
        padding: 5%;
        }
    /* The Modal (background) */
        .modal {
          display: none;
          position: fixed;
          z-index: 1;
          padding-top: 70px;
          left: 0;
          top: 0;
          width: 100%;
          height: 100%;
          overflow: auto;
          background-color: black;
          z-index: 5;
        }

        /* Modal Content */
        .modal-content {
          position: relative;
          margin: auto;
          padding: 0;
          max-width: 1200px;
          z-index: 6;

        }
        /*THE MAIN IMAGE*/
        .modimage{
          display: block;
         max-width: 90%;
         max-height: 650px;
         margin-left: auto;
         margin-right: auto;
        }
        .modimage-container{
          width: 100%;
          margin-left: auto;
         margin-right: auto;
        }
        /*END MAIN IMAGE*/

        /* The Close Button */
        .close {
          color: white;
          position: absolute;
          top: 0px;
          right: 25px;
          font-size: 50px;
          font-weight: bold;
        }

        .close:hover,
        .close:focus {
          color: #999;
          text-decoration: none;
          cursor: pointer;
        }

        .mySlides {
          display: flex;
          flex-direction: column;
        }

        .cursor {
          cursor: pointer;
        }

        /* Next & previous buttons */
        .prev,
        .next {
          cursor: pointer;
          position: absolute;
          top: 0px;
          width: auto;
          padding: 16px;
          color: white;
          font-weight: bold;
          font-size: 30px;
          transition: 0.6s ease;
          border-radius: 0 3px 3px 0;
          user-select: none;
          -webkit-user-select: none;
        }

        /* Position the "next button" to the right */
        .next {
          left: 100px;
          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: rgba(0, 0, 0, 0.8);
        }

        /* Number text (1/3 etc) */
        .numbertext {
          color: #f2f2f2;
          font-size: 12px;
          padding: 8px 12px;
          position: absolute;
          top: 10px;
          left: 50%;
          transform: translate(-50%, -165%);
        }

        .caption-container {
          text-align: center;
          background-color: black;
          padding: 2px 16px;
          color: white;
        }
        .demo {
          opacity: 0.6;
        }

        .active,
        .demo:hover {
          opacity: 1;
        }

        img.hover-shadow {
          transition: 0.3s;
        }
        img.hover-opacity{
          transition: 0.3s;
        }

        .hover-opacity:hover {
          opacity: .7;
        }
        .hover-shadow:hover {
          box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        }
    /* End css for modal*/
    @media screen and (max-width: 550px) {
      
      .sitetitle{
        flex-direction: column;
      }

      .headerbox{
        height: 150px;
      }

      .picunevenright{
        flex-direction: column;
      }

      .couple{
        flex-direction: column;
      }

      .triple{
        flex-direction: column;
      }

      .twotoone{
        flex-direction: column;
      }

      .usecover{
        padding-top: 80px;
      }

      .cover{
        padding-top: 80px;
      }

      .aboutcover{
        padding-top: 80px;
      }
      
      .doubles{
        flex-direction: column;
      }

      .column{
        width: 100%;
      }
    }


      @media screen and (max-width: 1025px) {
        
        .picrow{
          flex-direction: column;
          min-width: 0px;
        max-width: 100vw;
        }

        .picunevenleft{
          width: 100%;
        }
  
        .picunevenright{
          width: 100%;
        }
  
        .twotoone{
          width: 100%;
        }
        
        .usecover{
          margin-top: 80px;
          flex-direction: column;
        }

        .doubles{
          width: 100%;
        }

        .cover{
          margin-top: 80px;
        }

        .aboutencompass{
          padding-left: 20px;
          padding-right: 20px;
        }

        .aboutcover{
          margin-top: 80px;
          align-items: center;
          justify-content: center;
          flex-direction: column;
          top:130px;
        }

        .aboutcolumn {
          min-width: 100%;
        }
        .aboutcolumn2 {
          min-width: 100%;
          padding-left: 0px;
        }
        .aboutcolumn3 {
          min-width: 100%;
          padding-left: 0px;
        }

        }

        @media screen and (max-width: 1210px){
          .buds{
            flex-direction: column;
          }
        }

       /*End css for my created main page content*/

        /*Contact page*/
       .antispam { display:none;}

footer{
  text-align: center; 
  display: flex; 
  flex-direction: column; 
  font-size: 12px;
  padding-top: 20px;
  padding-bottom: 20px;
  font-family: "Maven Pro", sans-serif;
}

.foobot {
  padding-top: 10px;
}