/******************************************
/* SETUP
/*******************************************/

/* Box Model Hack */
* {
    -moz-box-sizing: border-box; /* Firexfox */
    -webkit-box-sizing: border-box; /* Safari/Chrome/iOS/Android */
    box-sizing: border-box; /* IE */
    margin: 0;
    padding: 0;
}

/* Clear fix hack */
.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.clear {
   clear: both;
}

/******************************************
/* BASE STYLES
/*******************************************/

html {
  width: 100vw;
    background-attachment: fixed;
    background-image: url('../Assets/philipp-trubchenko-L0rxoED50k0-unsplash.jpg');
    background-size: cover;

}

.mainBod {
    color: black;
    font-size: 12px;
    font-family: Graduate, Arial, sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
    margin: 0 auto;
    width: 75vw;
    position: relative;
   /* From https://css.glass */
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
    -webkit-backdrop-filter: blur(7.8px);
}

@media only screen and (max-width: 768px) {
    .mainBod {
        width: 90vw;
    }
}



/*-- Inspiration taken from abdo steif -->
/* --> https://codepen.io/abdosteif/pen/bRoyMb?editors=1100*/

/* Navbar section */

.nav {
    height: 90px;
    position: fixed; /* Set the navbar to fixed position */
    top: 0; /* Position the navbar at the top of the page */
    width: 75vw; /* Full width */
    line-height: 65px;
    text-align: center;
    display: block;
    z-index: 10;
}

.nav div.logo {
    float: left;
    width: auto;
    height: auto;
    padding-left: 3rem;
}

.nav div.logo a {
    text-decoration: none;
    color: #fff;
    font-size: 2.5rem;
}

.logo img {
    height: auto;
    width: 5vw;
    filter: brightness(200%);
    margin-top: 5%;
}

.nav div.logo a:hover {
    color: #1ed5f5;
}

.nav div.main_list {
    height: 65px;
    float: right;
    width: 60%;
    padding-top: 1%;
    margin-right: 10%;
}

.nav div.main_list ul {
    width: 100%;
    height: 65px;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav div.main_list ul li {
    width: auto;
    height: 65px;
    padding: 0;
    padding-right: 3rem;
}

.nav div.main_list ul li a {
    text-decoration: none;
    color: #fff;
    line-height: 65px;
    font-size: 1.5vw;
    text-shadow: 2px 2px 4px black;
}

.nav div.main_list ul li a:hover {
    color: #1ed5f5;
}

.navTrigger {
    display: none;
}

.nav {
    padding-top: 20px;
    padding-bottom: 20px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.headInsta, .headTik {
    height: 60%;
    margin-top: 30%;
}

.headInsta {
    margin-right: -100%;
}

.headTik {
    margin-left: -60%;
}

    


/* Media qurey section */

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .container {
        margin: 0;
    }
}

@media screen and (max-width:768px) {
    .nav {
        width: 90vw;
    }
    .navTrigger {
        display: block;
        z-index: 12;
    }
    .logo img {
        height: 12vw;
        width: auto;

    }
    .nav div.logo {
    }
    .fixedLogo {
        position: fixed;
        top: 20px;
        left: 0;
        z-index: 10;
        background-color: transparent; /* Change the background color if needed */
    }
    .nav div.main_list {
        width: 100%;
        height: 0;
        overflow: hidden;
        margin-top: 20%;
        position: absolute;
        left: 0;
    }
    .nav div.show_list {
        height: auto;
        display: none;
    }
    .nav div.main_list ul {
        flex-direction: column;
        width: 100%;
        height: 100vh;
        right: 0;
        left: 0;
        bottom: 0;
        background-color: #111;
        /*same background color of navbar*/
        background-position: center top;
    }
    .nav div.main_list ul li {
        width: 100%;
        text-align: right;
    }
    .nav div.main_list ul li a {
        text-align: center;
        width: 100%;
        font-size: 3rem;
        padding: 20px;
    }
    .nav div.media_button {
        display: block;
    }
}

/* Media query for iPads and iPad Mini */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
    /* Add the styles specific to iPads and iPad Mini here */
    .nav {
        height: 90px;
        position: fixed; /* Set the navbar to fixed position */
        top: 0; /* Position the navbar at the top of the page */
        width: 90vw; /* Full width */
        line-height: 65px;
        text-align: center;
        display: block;
        z-index: 10;
    }
    
    .nav div.logo {
        float: left;
        width: auto;
        height: auto;
        padding-left: 3rem;
    }
    
    .fixedLogo {
        position: fixed;
        top: 20px;
        left: 40px;
        z-index: 10;
        background-color: transparent; /* Change the background color if needed */
    }
    .navTrigger {
        display: block;
        z-index: 12;
    }
    .logo img {
        height: 5vw;
        width: auto;
    }
    .nav div.main_list {
        width: 100%;
        height: 0;
        overflow: hidden;
        margin-top: 20%;
        position: absolute;
        left: 0;
    }
    .nav div.show_list {
        height: auto;
        display: none;
    }
    .nav div.main_list ul {
        flex-direction: column;
        width: 100%;
        height: 100vh;
        right: 0;
        left: 0;
        bottom: 0;
        background-color: #111;
        background-position: center top;
    }
    .nav div.main_list ul li {
        width: 100%;
        text-align: right;
    }
    .nav div.main_list ul li a {
        text-align: center;
        width: 100%;
        font-size: 3rem;
        padding: 20px;
    }
    .nav div.media_button {
        display: block;
    }
}

/* Media query for iPad Air */
@media only screen and (min-device-width: 820px) and (max-device-width: 1180px) {
    /* Add the styles specific to iPad Air here */
    /* Copy the same styles from the iPads and iPad Mini media query */
    .nav {
        width: 75vw;
    }
    .fixedLogo {
        position: fixed;
        top: 20px;
        left: 100px;
        z-index: 10;
        background-color: transparent; /* Change the background color if needed */
    }
    .navTrigger {
        display: block;
        z-index: 12;
    }
    .logo img {
        height: 5vw;
        width: auto;
    }
    .nav div.main_list {
        width: 100%;
        height: 0;
        overflow: hidden;
        margin-top: 20%;
        position: absolute;
        left: 0;
    }
    .nav div.show_list {
        height: auto;
        display: none;
    }
    .nav div.main_list ul {
        flex-direction: column;
        width: 100%;
        height: 100vh;
        right: 0;
        left: 0;
        bottom: 0;
        background-color: #111;
        background-position: center top;
    }
    .nav div.main_list ul li {
        width: 100%;
        text-align: right;
    }
    .nav div.main_list ul li a {
        text-align: center;
        width: 100%;
        font-size: 3rem;
        padding: 20px;
    }
    .nav div.media_button {
        display: block;
    }
}


/* Media query for iPad Pro */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) {
    /* Add the styles specific to iPad Pro here */
    /* Copy the same styles from the iPads and iPad Mini media query */
    .nav {
        width: 75vw;
    }
    .navTrigger {
        display: block;
        z-index: 12;
    }
    .logo img {
        height: 5vw;
        width: auto;
    }
    .nav div.main_list {
        width: 100%;
        height: 0;
        overflow: hidden;
        margin-top: 20%;
        position: absolute;
        left: 0;
    }
    .nav div.show_list {
        height: auto;
        display: none;
    }
    .nav div.main_list ul {
        flex-direction: column;
        width: 100%;
        height: 100vh;
        right: 0;
        left: 0;
        bottom: 0;
        background-color: #111;
        background-position: center top;
    }
    .nav div.main_list ul li {
        width: 100%;
        text-align: right;
    }
    .nav div.main_list ul li a {
        text-align: center;
        width: 100%;
        font-size: 3rem;
        padding: 20px;
    }
    .nav div.media_button {
        display: block;
    }
}




/* Animation */
/* Inspiration taken from Dicson https://codemyui.com/simple-hamburger-menu-x-mark-animation/ */

.navTrigger {
    cursor: pointer;
    width: 30px;
    height: 25px;
    margin: auto;
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
    z-index: 12;
}

.navTrigger i {
    background-color: #fff;
    border-radius: 2px;
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    z-index: 12;
}

.navTrigger i:nth-child(1) {
    -webkit-animation: outT 0.8s backwards;
    animation: outT 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger i:nth-child(2) {
    margin: 5px 0;
    -webkit-animation: outM 0.8s backwards;
    animation: outM 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger i:nth-child(3) {
    -webkit-animation: outBtm 0.8s backwards;
    animation: outBtm 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger.active i:nth-child(1) {
    -webkit-animation: inT 0.8s forwards;
    animation: inT 0.8s forwards;
}

.navTrigger.active i:nth-child(2) {
    -webkit-animation: inM 0.8s forwards;
    animation: inM 0.8s forwards;
}

.navTrigger.active i:nth-child(3) {
    -webkit-animation: inBtm 0.8s forwards;
    animation: inBtm 0.8s forwards;
}

@-webkit-keyframes inM {
    50% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes inM {
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes outM {
    50% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes outM {
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes inT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes inT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(9px) rotate(0deg);
    }
    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes outT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes outT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(9px) rotate(0deg);
    }
    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes inBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes inBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-9px) rotate(0deg);
    }
    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}

@-webkit-keyframes outBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes outBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-9px) rotate(0deg);
    }
    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}

.affix {
    padding-top: 0;
    background-color: #111;
    z-index: 10;
}

.affixGal {
    padding: 0;
    background-color: transparent;
    z-index: 2;
}

.always-affix .nav {
    position: fixed;
    top: 0;
    width: 75vw;
    height: 120px;
    background-color: #111;
    z-index: 10;
  }

  @media only screen and (max-width: 768px) {
    .always-affix .nav {
    position: fixed;
    top: 0;
    width: 90vw;
    height: 90px;
    background-color: #111;
    z-index: 10;
      }
}


.myH2 {
	text-align:center;
	font-size: 4rem;
}
.myP {
	text-align: justify;
	padding-left:15%;
	padding-right:15%;
	font-size: 20px;
}
@media all and (max-width:700px){
	.myP {
		padding:2%;
	}
}

/******************************************
		/* Hero
	/*******************************************/

.Herro {
    width: 100%;
    height: 100vh;
    position: relative;   /* NEW */
    overflow: hidden;     /* NEW */

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border-bottom: solid 15px white;

    /* Optional fallback image while video loads */
    background-image: url('../Assets/image12.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;

  /* NEW: start hidden, fade in when ready */
  opacity: 0;
  transition: opacity 250ms ease-in-out;
}

.hero-video.is-ready {
  opacity: 1;
}

.Herro.video-playing{
  background-image: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45); /* adjust darkness */
  z-index: 1;
}

/* Make sure text is above video + overlay */
.Herro h1,
.Herro span {
  position: relative;
  z-index: 2;
}

@keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  .Herro h1 {
    color: white;
    width: 80%;
    text-align: center;
    font-size: 6vw;
    text-shadow: 2px 2px 4px black;
    opacity: 0;
    animation: fadeIn 1.5s ease-in-out forwards;
  }
  
  .Herro span {
    color: white;
    width: 60%;
    text-align: center;
    margin-top: 5%;
    font-size: 1.5vw;
    text-shadow: 2px 2px 4px black;
    opacity: 0;
    animation: fadeIn 1.5s ease-in-out forwards;
    animation-delay: 0.5s;
  }

@media only screen and (max-width:768px) {
    .Herro {
        height: 60vh;
        background-size: 120%;
	background-position-x: center;
        background-position-y: center;
        
    }

    .Herro h1 {
        font-size: 9vw;
    }

    .Herro span {
        font-size: 4vw;
        width: 80%;
    }
}


/* iPads */
@media only screen and (min-width: 768px) and (max-width: 1023px) {
    .Herro {
        height: 80vh;
        background-position-y: center;
        background-position-x: center;
        /* Remove margin-top property */
        position: relative;
        top: 0;
    }

    .Herro h1 {
        font-size: 8vw;
    }

    .Herro span {
        font-size: 5vw;
        width: 70%;
    }
}

/* iPad Air */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
    .Herro {
        height: 80vh;
        background-position-y: center;
        background-position-x: center;
        background-size: cover; /* Add background-size property */
        position: relative;
        top: 0; /* Remove negative margin */
    }

    .Herro h1 {
        font-size: 8vw;
    }

    .Herro span {
        font-size: 5vw;
        width: 70%;
    }
}

/* iPad Pro */
@media only screen and (min-width: 1024px) and (max-width: 1365px) {
    .Herro {
        height: 70vh;
        background-position-y: -100px;
        background-position-x: center;
        background-size: cover; /* Add background-size property */
    }

    .Herro h1 {
        font-size: 8vw;
    }

    .Herro span {
        font-size: 4vw;
        width: 70%;
    }
}

/* Mobile Landscape */
@media only screen and (orientation: landscape) and (max-width: 700px) {
    .Herro {
        height: 60vh;
        background-size: cover;
        background-position-y: -200px;
        background-position-x: -60px;
    }

    .Herro h1 {
        font-size: 6vw;
    }

    .Herro span {
        font-size: 3vw;
        width: 80%;
    }
}

/* iPads Landscape */
@media only screen and (orientation: landscape) and (min-width: 768px) and (max-width: 1023px) {
    .Herro {
        height: 80vh;
        background-position-y: center;
        background-position-x: center;
        position: relative;
        top: 0;
    }

    .Herro h1 {
        font-size: 5vw;
    }

    .Herro span {
        font-size: 2.5vw;
        width: 70%;
    }
}

/* iPad Air Landscape */
@media only screen and (orientation: landscape) and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
    .Herro {
        height: 80vh;
        background-position-y: center;
        background-position-x: center;
        background-size: cover;
        position: relative;
        top: 0;
    }

    .Herro h1 {
        font-size: 5vw;
    }

    .Herro span {
        font-size: 2.5vw;
        width: 70%;
    }
}

/* iPad Pro Landscape */
@media only screen and (orientation: landscape) and (min-width: 1024px) and (max-width: 1365px) {
    .Herro {
        height: 70vh;
        background-position-y: -100px;
        background-position-x: center;
        background-size: cover;
    }

    .Herro h1 {
        font-size: 5vw;
    }

    .Herro span {
        font-size: 2.5vw;
        width: 70%;
    }
}

@media only screen and (max-width: 768px) {
  .Herro {
      background-attachment: scroll;
  }
}


    /******************************************
        /* SlideShow
/*******************************************/
.slideWrap {
    height: 75vh;
    width: 100%;
    margin: 10% 0 10% 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.one {
    width: 100%;
    position: relative;
    margin: 0 auto;
}

.slider {
    position: relative;
    overflow: hidden;
    height: 80vh;
    width: auto;
}

.slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
}

.slide img {
    max-height: 100%;
    max-width: 100%;
    height: auto;
    width: auto;
    object-fit: contain;
}

.slide:first-child {
    background: none;
}

.slide.current {
    opacity: 1;
}

.buttons img {
    height: 4vh;
}

.buttons button#next {
    position: absolute;
    top: 45%;
    right: 15px;
}

.buttons button#prev {
    position: absolute;
    top: 45%;
    left: 15px;
}

.buttons button {
    border: 2px solid #000000;
    background-color: rgba(255, 255, 255, 0.418);
    color: #fff;
    cursor: pointer;
    padding: 13px 15px;
    border-radius: 50%;
    outline: none;
}

.buttons button:hover {
    background-color: #e6e6e62f;
    color: #333;
}

@media only screen and (max-width: 991px) {
    .slideWrap {
	    height: 30vh;
    }

    .one {
        width: 100%;
    }

    .slider {
        width: 100%;
    }

    .slide {
        width: 100%;
    }
    .buttons img {
        height: 2vh;
    }

}

@media only screen and (max-width: 768px) {
  .slideWrap {
      height: 50vh;
      padding: 2% 0;
	margin-bottom: 0;	  
  }

  .one {
      width: 100%;
  }

  .slider {
	height: 50vh;
      width: 100%;
  }

  .slide {
      width: 100%;
  }
  
  .buttons img {
      height: 3vh;
  }
  
  .buttons {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      position: absolute;
      top: 25%;
      transform: translateY(-50%);
  }
  
  .buttons button#next {
      right: 15px;
  }
  
  .buttons button#prev {
      left: 15px;
  }
}

/* iPad and iPad Pro specific media queries */
@media only screen and (min-width: 769px) and (max-width: 1024px) {
    .slideWrap {
        height: 50vh;
    }

    .one {
        width: 90%;
    }

    .slider {
        width: 100%;
    }

    .slide {
        width: 100%;
    }
    .buttons img {
        height: 3vh;
    }
    .buttons button#next {
        position: absolute;
        top: 30%;
        right: 15px;
    }
    
    .buttons button#prev {
        position: absolute;
        top: 30%;
        left: 15px;
    }
}
      
      /* Background Images */
      
      .slide:first-child {
        background: url('../Assets/OttawaGatineauAirbrushGoalieMaskArtOne.jpg') no-repeat center top;
        background-size: contain;
      }
      
      .slide:nth-child(2) {
        background: url('../Assets/OttawaGatineauAirbrushGoalieMaskArtTwo.jpg') no-repeat center top;
        background-size: contain;
      }
      
      .slide:nth-child(3) {
        background: url('../Assets/OttawaGatineauAirbrushGoalieMaskArtThree.jpg') no-repeat center top;
        background-size: contain;
      }
   .slide:nth-child(4) {
    background: url('../Assets/OttawaGatineauAirbrushGoalieMaskArtFour.jpg') no-repeat center top;
    background-size: contain;
  }
  /* .slide:nth-child(5) {
    background: url('https://source.unsplash.com/ULmaQh9Gvbg/1600x900') no-repeat
      center top/cover;
  } 
  .slide:nth-child(6)  {
    background: url('https://source.unsplash.com/ggZuL3BTSJU/1600x900') no-repeat
      center center/cover;
  }  */

  /* Mobile Landscape */
@media only screen and (orientation: landscape) and (max-width: 700px) {
    .slideWrap {
        height: 25vh;
    }

    .one {
        width: 100%;
    }

    .slider {
        width: 100%;
    }

    .slide {
        width: 100%;
    }

    .buttons img {
        height: 2vh;
    }

    .buttons button#next {
        top: 35%;
    }

    .buttons button#prev {
        top: 35%;
    }
}

/* iPads Landscape */
@media only screen and (orientation: landscape) and (min-width: 768px) and (max-width: 1023px) {
    .slideWrap {
        height: 35vh;
    }

    .one {
        width: 90%;
    }

    .slider {
        width: 100%;
    }

    .slide {
        width: 100%;
    }

    .buttons img {
        height: 3vh;
    }

    .buttons button#next {
        top: 30%;
    }

    .buttons button#prev {
        top: 30%;
    }
}

/* iPad Air Landscape */
@media only screen and (orientation: landscape) and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
    .slideWrap {
        height: 50vh;
    }

    .one {
        width: 90%;
    }

    .slider {
        width: 100%;
    }

    .slide {
        width: 100%;
    }

    .buttons img {
        height: 3vh;
    }

    .buttons button#next {
        top: 30%;
    }

    .buttons button#prev {
        top: 30%;
    }
}

/* iPad Pro Landscape */
@media only screen and (orientation: landscape) and (min-width: 1024px) and (max-width: 1365px) {
    .slideWrap {
        height: 50vh;
    }

    .one {
        width: 90%;
    }

    .slider {
        width: 100%;
    }

    .slide {
        width: 100%;
    }

    .buttons img {
        height: 3vh;
    }

    .buttons button#next {
        top: 30%;
    }

    .buttons button#prev {
        top: 30%;
    }
}

@media only screen and (max-width: 768px) {
    .slideWrap {
        height: 60vh;
    }
}

  
/* **************************************
******** ABOUT ME ******************************* */
.outerContainer {
    height: 100vh;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin-top: -5%;
    background-color: white;
    clip-path: polygon(0 0, 100% 55px, 100% calc(100% - 55px), 0 100%);
  }
  
  .aboutMe {
    height: 100vh;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    clip-path: polygon(0 0, 100% 50px, 100% calc(100% - 50px), 0 100%);
    margin-top: 20px;
    background: transparent;
    width: 100%;
  }
  
  .image {
    height: 100%;
    width: 60%;
    background-image: url('../Assets/CanadaAirbrushGoalieMaskArt.jpeg');
    background-position-x: 5%;
    background-size: cover;
    background-size: 70%;
    background-attachment: fixed;
    background-repeat: no-repeat;
  }
  
  .aboutDesc {
    height: 100%;
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    font-family: 'Montserrat', sans-serif;
  }
  
  .aboutWrap {
    height: 60%;
    width: 75%;
  }
  
  .aboutDesc img {
    width: 80%;
    margin-left: 5%;
    text-shadow: 2px 2px 4px rgb(255, 255, 255);
  }
  
  .aboutDesc p {
    width: 100%;
    color: black;
    font-size: 2.5vh;
    margin: 5%;
    text-shadow: 2px 2px 4px rgb(255, 255, 255);
  }
  
  .aboutMeButton {
    height: 40px;
    width: 150px;
    border-radius: 25px;
    background: black;
    color: white;
    font-weight: 600;
    margin: 5% 0 0 5%;
  }

  /* ******** FADE INS ********* */

  .aboutDesc img,
.aboutDesc p,
.aboutDesc button {
  opacity: 0;
}

.aboutDesc img.show,
.aboutDesc p.show,
.aboutDesc button.show {
  animation: fadeIn 1s ease-in-out forwards;
}

.aboutDesc p.show {
  animation-delay: 0.3s;
}

.aboutDesc button.show {
  animation-delay: 0.7s;
}
  
  .aboutMeButton:hover {
    cursor: pointer;
  }
  
  @media only screen and (max-width: 768px) {
    .aboutMe {
      height: auto;
      min-height: 100vh;
      flex-direction: column-reverse;
      align-items: center;
      position: relative;
    }
  
    .image {
      width: 100%;
      height: 50vh;
      background-position-x: center;
      background-size: cover;
      background-attachment: scroll;
      order: 2;
      position: absolute;
      bottom: 0;
      border-top: solid 30px white;
      border-bottom: solid 10px white;
    }
  
    .aboutDesc {
      width: 100%;
      height: auto;
      position: static;
      order: 1;
      position: absolute;
      top: 0;
    }
  
    .aboutWrap {
      width: 90%;
      margin-top: 15%;
    }
  
    .aboutDesc p {
      font-size: 2vh;
      font-weight: 500;
      margin: 5% 5% 10% 5%;
      width: 90%;
    }
    .aboutMeButton {
        width: 100%;
        margin: 0% auto 15% auto;
      }
    }
    
    /* iPad */
    @media only screen and (min-width: 769px) and (max-width: 1024px) {
      .outerContainer {
        height: 60vh;
      }
        .aboutMe {
        
        height: 60vh; 
      }
      
      .image {
        width: 50%;
        background-size: 100%;
        background-position-x: -160px;
        background-position-y: center;
      }
    
      .aboutDesc {
        width: 50%;
        height: 100%;
        margin-top: -15%;
      }
    
      .aboutWrap {
        height: 50%;
        width: 85%;
      }
    
      .aboutDesc p {
        font-size: 1.8vh;
      }
    }
    
    /* iPad Pro */
    @media only screen and (min-width: 1025px) and (max-width: 1366px) {
      .aboutMe {
        height: auto;
        min-height: 100vh;
      }
      
      .image {
        width: 50%;
        background-size: cover;
      }
    
      .aboutDesc {
        width: 50%;
        height: 100%;
      }
    
      .aboutWrap {
        height: 50%;
        width: 85%;
      }
    
      .aboutDesc p {
        font-size: 2.2vh;
      }
    }

    /* Media query for landscape mode on mobile devices */
@media only screen and (max-width: 767px) and (orientation: landscape) {
    .aboutMe {
      height: 50vh;
      flex-direction: row;
    }
  
    .image {
      width: 50%;
      height: 100%;
      background-position-x: center;
      background-size: cover;
      order: 1;
      position: static;
      border-top: none;
      border-bottom: none;
    }
  
    .aboutDesc {
      width: 50%;
      height: 100%;
      position: static;
      order: 2;
    }
  
    .aboutWrap {
      width: 90%;
      margin-top: 5%;
    }
  
    .aboutDesc p {
      font-size: 2.5vh;
      font-weight: 500;
      margin: 5%;
      width: 90%;
    }
    .aboutMeButton {
      width: 100%;
      margin: 0% auto 5% auto;
    }
  }
  
  /* Media query for landscape mode on iPads */
  @media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .aboutMe {
      height: 100vh;
    }
  
    .image {
      width: 50%;
      background-size: cover;
      background-position-x: center;
      background-position-y: center;
    }
  
    .aboutDesc {
      width: 50%;
      height: 100%;
      margin-top: 0;
    }
  
    .aboutWrap {
      height: 60%;
      width: 85%;
    }
  
    .aboutDesc p {
      font-size: 2vh;
    }
  }
  
  /* Media query for landscape mode on iPad Air */
  @media only screen and (min-device-width: 820px) and (max-device-width: 1180px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
    /* Add landscape-specific styles for iPad Air here */
  }
  
  /* Media query for landscape mode on iPad Mini */
  @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
    /* Add landscape-specific styles for iPad Mini here */
  }
  
  /* Media query for landscape mode on iPad Pro */
  @media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (orientation: landscape) {
    /* Add landscape-specific styles for iPad Pro here */
  }

    

/*****************************************
******* Insta Vid / Get In Touch *************
**************************************************** */
.instaOuterContainer {
    display: flex;
    height: 100%;
    width: 100%;
    margin-top: -10px;
    background-color: white;
    clip-path: polygon(0 55px, 100% 0, 100% 100%, 0 100%);
  }
  
  .instaContainer {
    display: flex;
    height: 100%;
    width: 100%;
    margin-top: 20px;
    clip-path: polygon(0 50px, 100% 0, 100% 100%, 0 100%);
    background: transparent;
  }
  
  .instaWrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .video-container {
    display: inline-block;
    position: relative;
    width: 50%;
    height: auto;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
  }
  
  .video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-top: 0%;
  }

  .getIn-Touch {
    height: 60%;
    width: 80%;
    margin-top: 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    position: relative;
    padding: 5% 0;
  }
  
  .gitImage {
    height: 6vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 5%;
  }
  
  .gitPar {
    font-size: 3vh;
    font-family: 'Montserrat', sans-serif;
    height: fit-content;
    width: 90%;
    margin-bottom: 5%;
    text-shadow: 2px 2px 4px rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .gitFaqButton,
  .gitContactButton {
    height: 40px;
    width: 150px;
    border-radius: 25px;
    background: black;
    color: white;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 5px 0;
  }
  
  .gitButtonsWrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

.gitFaqButton:hover, .gitContactButton:hover {
    cursor: pointer;
}

/* ******** FADE INS ********* */

.gitImage, .gitPar, .gitFaqButton, .gitContactButton {
    opacity: 0;
  }
  
  .gitImage.show, .gitPar.show, .gitFaqButton.show, .gitContactButton.show {
    animation: fadeIn 1s ease-in-out forwards;
  }
  
  .gitPar.show {
    animation-delay: 0.3s;
  }
  
  .gitFaqButton.show, .gitContactButton.show {
    animation-delay: 0.7s;
  }

@media only screen and (max-width: 768px) {
    .instaContainer {
      flex-direction: column;
      position: relative;
      height: 90vh;
    }

    .instaWrap {
      order: 2;
      margin-top: 5%;
      position: absolute;
      top: 0;
    }

    .gitImage {
        height: 4vh;
        width: auto;
    }

    .gitPar {
        height: 2.5vh;
        text-align: center;
        width: 100%;
        height: fit-content;
    }
  
    .video-container {
      order: 1;
      width: 100%;
      padding-bottom: 75%; /* 4:3 aspect ratio */
      margin-top: 10%;
      position: absolute;
      bottom: 0;
      border-top: solid 10px white;
      border-bottom: solid 10px white;
    }
  
    .video-container video {
      margin-top: 0;
    }
}

/* iPad */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
    .instaContainer {
      flex-direction: column;
    }
  
    .video-container {
      order: 1;
      width: 100%;
      height: 500px;
      padding-bottom: 56.25%; /* 16:9 aspect ratio */
      margin-top: 20%;
    }
  
    .instaWrap {
      order: 2;
      margin-top: -5%;
    }
  }
  
  /* iPad Air */
@media only screen and (min-device-width: 820px) and (max-device-width: 1180px) and (-webkit-min-device-pixel-ratio: 2) {
    .instaContainer {
      flex-direction: column;
    }
  
    .video-container {
      order: 2;
      width: 100%;
      padding-bottom: 56.25%; /* 16:9 aspect ratio */
      margin-top: 10%;
    }

    .gitImage {
        height: 4vh;
        width: auto;
    }

    .gitPar {
        height: 2vh;
        text-align: center;
        width: 100%;
        height: fit-content;
    }
  
    .instaWrap {
      order: 1;
    }
  }
  
  /* iPad Mini */
  @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
    .instaContainer {
      flex-direction: column;
    }
  
    .video-container {
      order: 2;
      width: 100%;
      padding-bottom: 56.25%; /* 16:9 aspect ratio */
      margin-top: 10%;
    }
  
    .instaWrap {
      order: 1;
    }
  }
  
  /* iPad Pro */
  @media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) {
    .instaContainer {
      flex-direction: column;
    }
  
    .video-container {
      order: 2;
      width: 100%;
      height: 800px;
      padding-bottom: 56.25%; /* 16:9 aspect ratio */
      margin-top: 10%;
    }
  
    .instaWrap {
      order: 1;
    }
  }

  /* Media query for landscape mode on mobile devices */
@media only screen and (max-width: 767px) and (orientation: landscape) {
    .instaContainer {
      flex-direction: row;
    }
  
    .video-container {
      width: 50%;
      padding-bottom: 28.125%; /* 16:9 aspect ratio */
      margin-top: 0;
    }
  
    .instaWrap {
      width: 50%;
      margin-top: 0;
    }
  }
  
  /* Media query for landscape mode on iPads */
  @media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .instaContainer {
      flex-direction: row;
    }
  
    .video-container {
      width: 50%;
      padding-bottom: 28.125%; /* 16:9 aspect ratio */
      margin-top: 0;
    }
  
    .instaWrap {
      width: 50%;
      margin-top: 0;
    }
  }
  
  /* Media query for landscape mode on iPad Air */
  @media only screen and (min-device-width: 820px) and (max-device-width: 1180px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
    .instaContainer {
      flex-direction: row;
    }
  
    .video-container {
      width: 50%;
      padding-bottom: 28.125%; /* 16:9 aspect ratio */
      margin-top: 0;
    }
  
    .instaWrap {
      width: 50%;
      margin-top: 0;
    }
  }
  
  /* Media query for landscape mode on iPad Mini */
  @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
    .instaContainer {
      flex-direction: row;
    }
  
    .video-container {
      width: 50%;
      padding-bottom: 28.125%; /* 16:9 aspect ratio */
      margin-top: 0;
    }
  
    .instaWrap {
      width: 50%;
      margin-top: 0;
    }
  }
  
  /* Media query for landscape mode on iPad Pro */
  @media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (orientation: landscape) {
    .instaContainer {
      flex-direction: row;
    }
  
    .video-container {
      width: 50%;
      padding-bottom: 28.125%; /* 16:9 aspect ratio */
      margin-top: 0;
    }
  
    .instaWrap {
      width: 50%;
      margin-top: 0;
    }
  }

/******************************************
		/* Socials
	/*******************************************/

.getInTouchSec {
    height: 80vh;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: relative;
    /* From https://css.glass */
background: rgba(255, 255, 255, 0.6);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(7.8px);
-webkit-backdrop-filter: blur(7.8px);
}

.getInTouch {
    height: 100px;
    width: 40%;
    position: absolute;
    top: 10%;
}

.touchOne, .touchTwo {
    height: 300px;
    width: 300px;
    margin: 0px 10px 0 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.touchOne {
    background-image: url('../Assets/AirbrushArtOntarioQuebec.png');
    background-size: cover;
    background-position-y: -85px;
    filter: grayscale(70%);
}

.touchOne img {
    height: 50%;
}


.touchTwo {
    background-image: url('../Assets/airbrushArtCanadaOntario.png');
    background-size: cover;
    filter: grayscale(100%);
}

.touchTwo img {
    height: 50%; 
}

@media only screen and (min-width: 769px) {
    .getInTouchSec {
        display: none;
    }
}

@media only screen and (max-width: 768px) {
    .getInTouchSec {
      flex-direction: column;
      height: auto;
    }
  
    .getInTouch {
      width: 100%;
      position: static;
    }
  
    .touchOne, .touchTwo, .touchThree {
      height: 200px;
      width: 100%;
      margin: 5px 0;
    }
  }



/******************************************
		/* Footer
	/*******************************************/
  
    *, *:after, *:before {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        }
        
        
        a{
        text-decoration:none;
        outline:none !important;
        color:#fff;
        }
        
        .border-shape {
        background: rgb(255, 255, 255) none repeat scroll 0 0;
        color: #fff;
        display: block;
        height: 3px;
        left: 0;
        margin: 20px auto;
        position: relative;
        right: 0;
        text-align: center;
        top: 0;
        width: 80px;
        }
        
        .border-shape::before {
        background: rgb(255, 255, 255) none repeat scroll 0 0;
        bottom: 0;
        content: "";
        height: 1px;
        left: 80px;
        margin: 0 auto;
        position: absolute;
        text-align: center;
        top: 1px;
        width: 100px;
        }
        
        .border-shape::after {
        background: rgb(255, 255, 255) none repeat scroll 0 0;
        bottom: 0;
        content: "";
        height: 1px;
        margin: 0 auto;
        position: absolute;
        right: 80px;
        text-align: center;
        top: 1px;
        width: 100px;
        }

        
        
        
        /*FOOTER*/
        footer{
        width:100%;
        background-color:#121619;
        color:#fff;
        }
        
        .top_header{
        padding:2rem;
        display:flex;
        align-items:center;
        justify-content:center;
        position:relative;
        }
        
        .top_header section{
        display:flex;
        align-items:center;
        justify-content:center;
        width:100%;
        }
        
        .top_header span{
        padding:0 1rem;
        }
        
        .top_header .fa{
        color: rgb(255, 255, 255);
        font-size:35px;
        }
        
        footer .border-shape {
        width: 40%;
        }

        @media only screen and (max-width: 768px) {
            footer .border-shape {
                display: none;
                }  
                
                footer .border-shape::before {
                    display: none;
                    }  
                
                    footer .border-shape::after {
                        display: none;    
        }
    }
        
        footer .border-shape::before {
        width: 100%;
        left:120px;
        }
        
        footer .border-shape::after {
        width: 100%;
        right:120px;
        }
        
        footer .bottom_content section{
        padding:1.5rem 2rem;
        display:flex;
        align-items:center;
        justify-content:Center;
        }
        
        .bottom_content a{
        margin:0 20px;
        color:rgba(255,255,255,0.7);
        transition:0.5s;
        }
        
        .bottom_content a:hover{
        color:rgba(255,255,255,1);
        }
        
        
        .copyright{
        padding:0.8em 0;
        background-color:#1e1e1e;
        text-align:center;
        color:rgba(255,255,255,0.7);
        font-size:12px;
        }
        footer img {
          filter: invert(100%);
        }
        
        
        
        @media (max-width:820px){
        .top_header{
        padding:1rem;
        display:block;
        }
        
        .top_header section{
        margin:40px 0;
        align-items:left;
        justify-content:left;
        }
        footer .bottom_content section{
        padding:1rem;
        display:block;
        }
        footer .bottom_content section a{
        padding:1rem;
        font-size:12px;
        margin:0 5px;
        display:inline-block;
        }
        }











       
       
       
       
       
       
       
       
       
       
       
       

























        /******************************************
		/* About Page
	/*******************************************/
    
    .aboutBod {
            color: black;
            font-size: 12px;
            font-family: Graduate, Arial, sans-serif;
            overflow-x: hidden;
            min-height: 100vh;
            margin: 0 auto;
            width: 75vw;
            position: relative;
            /* From https://css.glass */
            background: rgba(255, 255, 255, 0.8);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
            -webkit-backdrop-filter: blur(7.8px);
    }

    @media only screen and (max-width: 768px) {
        .aboutBod {
            width: 90vw;
        }
        
    }
      
      
      .trim-content-box{
        background: rgba(0, 0, 0, 0.6);
        color:#ffffff;
        margin:auto;
        border: 3px solid;
        justify-content: center;
        border-style: solid;
        border-width: 0px 5px;
      }
      
      .slogan-box{
        display: flex;
        align-items:center;
        width:600px;
        height:200px;
        text-align: center;
        z-index: 2;
      }

      @media only screen and (max-width: 768px) {
        .slogan-box {
            position: absolute;
            top: 0;
            width: 90vw;
            padding-top: 15%;
        }
        
    }
      
      
      .start-button:hover{
      background:rgba(21,21,21,0.8);
      cursor:pointer;
      }
      
      #start-button-text{
          font-size:75px;
          min-width:390px;
      }
      
      
      .parallax {
          /* The image used */
          background-image: url('../Assets/OttawaAirbrushMaskArtTommy.jpg');
        
       -webkit-clip-path: polygon(0 30%, 100% 0, 100% 70%, 0 100%);
      clip-path: polygon(0 30%, 100% 0, 100% 70%, 0 100%);
          /* Set a specific height */
          min-height: 750px;  
          background-attachment: fixed;
          background-position: center;
          background-repeat: no-repeat;
          background-size: 80%;
        
      }

      .parallax-bottom {
        /* The image used */
        background-image: url('../Assets/OttawaAirbrushMaskArtTommy.jpg');
      
     -webkit-clip-path: polygon(0 30%, 100% 0, 100% 70%, 0 100%);
    clip-path: polygon(0 30%, 100% 0, 100% 70%, 0 100%);
        /* Set a specific height */
        min-height: 750px;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
      
    }
      
      .top-cell
      {
          width:100%;
          min-height: 700px; 
          margin: 0;
      }
      
      .parallax-top{
        position: relative;
        display:flex;
        align-items: center;
        justify-content: center;
      }
      
      .parallax-top:before {
          content: "";
          position: absolute;
          width: 100%;
          height: 100%;
          top: 0px;
          left: 0px;
          background-image: url('../Assets/OttawaAirbrushMaskArtTommy.jpg');
          -webkit-clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
          background-attachment: fixed;
          background-position: center;
          background-repeat: no-repeat;
          background-size: 80%; 
      }
      
      .info{
        padding: 80px 0 80px;
        
      }

      #info-bottom {
        padding-bottom: 10%;
      }
      
      .text{
        display:block;
        width:90%;
        text-align: center;
        margin:0 auto;
        color:#000000;
        font-size:25px;
        font-family: montserrat, arial;
        -webkit-font-smoothing: antialiased;
         filter: drop-shadow(2px 2px 4px rgb(255, 255, 255));
        
      }

      .aboutFoot {
        position: absolute;
      }

	@media only screen and (max-width: 768px) {
    .parallax {
        background-attachment: scroll;
    }

    .parallax-top:before {
        background-attachment: scroll;
    }
	.parallax-bottom {
        background-attachment: scroll;
    }	
}

@media only screen and (max-width: 768px) {
        .parallax {
          /* The image used */
          background-image: url('../Assets/TomPaint.jpeg');
        
       -webkit-clip-path: polygon(0 30%, 100% 0, 100% 70%, 0 100%);
      clip-path: polygon(0 30%, 100% 0, 100% 70%, 0 100%);
          /* Set a specific height */
          min-height: 700px; 
          background-position: center;
          background-repeat: no-repeat;
          background-size: 120%;
        
      }

      .parallax-bottom {
        /* The image used */
        background-image: url('../Assets/TomHockey.jpeg');
      
     -webkit-clip-path: polygon(0 30%, 100% 0, 100% 70%, 0 100%);
    clip-path: polygon(0 30%, 100% 0, 100% 70%, 0 100%);
        /* Set a specific height */
        min-height: 700px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: 120%;
      
    }
    .parallax-top:before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0px;
      left: 0px;
      background-image: url('../Assets/OttawaAirbrushMaskArtTommy.jpg');
      -webkit-clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
      clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
	    min-height: 700px;
      background-position: center;
      background-repeat: no-repeat;
      background-size: 120%; 
  }
	.info{
        padding: 60px 0 40px;
        
      }
        
    }
      


































    /******************************************
		/* Gallery Page
	/*******************************************/
    .top {
        width: 100%;
        min-height: 300px;
        padding: 20px 0;
        text-align: center;
        padding-top: 10%;
    }
      
      .galleryItem {
        width: 250px;
        height: 250px;
        margin: 10px;
        border: solid 0px #fff;
        padding: 0;
        display: inline-block;
        -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
        box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25); }
      
      .galleryItem img {
        width: 250px;
        height: auto; }
      
      .caption {
        position: relative;
        display: inline-block;
        width: 250px;
        height: 250px;
        z-index: 2; }
      
      .caption::before {
        content: attr(data-title);
        width: 250px;
        height: 0; 
        position: absolute;
        top: 0;
        left: 0;
        color: #000;
        background-color: rgba(255,255,255,0.3);
        font: bold 1.2em 'helvetica neue', helvetica, arial, sans-serif;
        overflow: hidden;
        opacity: 0;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease; }
      
      .caption:hover::before {
        opacity: 1;
        height: 25px; }
      
      .caption:hover::after {
        opacity: 1;
        bottom: 0;
        height: 65px; }
      
      /* lightbox */
      
      .lightbox {
        display: none;
        position: fixed;
        z-index: 3;
        width: 100%;
        height: 100%;
        text-align: center;
        top: 0;
        left: 0;
        background: rgba(0,0,0,0.85);
      }
      
      .lightbox a { 
        color: #fff;
        text-decoration: none; 
      }
      
      .lightbox img {
        height: 650px;
        width: auto;
        margin-top: 5%;
      }
      
      .lightbox:target {
        display: table;
      }
      
      .lightbox .images {
        display: table-cell;
        vertical-align: middle; }
      
      .lightbox .images img {
        -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
        box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25); }
      
      .nextGal, .prevGal, .close { display: block; position: fixed; }
      
      .close { width: 5000px; height: 5000px; overflow: hidden; top: 0; left: 0; z-index: 5; cursor: default; }
      
      .nextGal, .prevGal { width: 100px; height: 25px; top: 50%; z-index: 10; opacity: 0.7; font-size: 5em; line-height: 25px; text-shadow: 0px 0px 15px rgba(0, 0, 0, 1); }
      
      .prevGal { left: 50px; text-align: left; }
      
      .prevGal::after { content: '\2039'; }
          
      .nextGal { right: 50px; text-align: right; }
      
      .nextGal::before { content: '\203A'; }

       @media only screen and (max-width: 768px) {
        .top {
            padding-top: 40%;
        }
        .lightbox img {
            height: 450px;
            width: auto;
          }
          .lightbox a { 
            color: #ffffff;
            text-decoration: none;
          }
          .nextGal, .prevGal { width: 100px; height: 25px; top: 50%; z-index: 10; opacity: 0.8; font-size: 8em; line-height: 25px; text-shadow: 0px 0px 15px rgba(0, 0, 0, 1); }
          .prevGal { left: 60px; text-align: left; }
          .nextGal { right: 60px; text-align: right; }
    }








 
/******************************************
		/* FAQ Page
	/*******************************************/

    .faqBod {
        color: black;
    font-size: 12px;
    font-family: Graduate, Arial, sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
    margin: 0 auto;
    width: 75vw;
    position: relative;
   /* From https://css.glass */
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
    -webkit-backdrop-filter: blur(7.8px);
    }

    .faqWrapper {
        padding-top: 10%;
        padding-bottom: 10%;
    }
    
    
    .faq-header{
      font-size: 42px;
      border-bottom: 1px dotted #ccc;
      padding: 24px;
    }
    
    .faq-content {
      margin: 0 auto;
    }
    
    .faq-question {
      padding: 20px 0;
      border-bottom: 1px dotted #ccc;
      position: relative;
    }
    
    .panel-title {
      font-size: 24px;
      width: 100%;
      position: relative;
      margin: 0;
      padding: 10px 10px 0 48px;
      display: block;
      cursor: pointer;
      font-weight: 600;
      position: relative;
    }
    
    .panel-content {
        font-family: montserrat, arial;
      font-size: 20px;
      padding: 0px 14px;
      margin: 0 40px;
      height: 0;
      overflow: hidden;
      z-index: 1;
      position: relative;
      opacity: 0;
      -webkit-transition: .4s ease;
      -moz-transition: .4s ease;
      -o-transition: .4s ease;
      transition: .4s ease;
      font-weight: 600;
    }
    
    .panel:checked ~ .panel-content{
      height: auto;
      opacity: 1;
      padding: 14px;
    }
    
    .plus {
      position: absolute;
      margin-left: 20px;
      margin-top: 4px;
      z-index: 5;
      font-size: 42px;
      line-height: 100%;
      -webkit-user-select: none;    
      -moz-user-select: none;
      -ms-user-select: none;
      -o-user-select: none;
      user-select: none;
      -webkit-transition: .2s ease;
      -moz-transition: .2s ease;
      -o-transition: .2s ease;
      transition: .2s ease;
    }

    .plus:hover {
        cursor: pointer;
    }
    
    .panel:checked ~ .plus {
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      transform: rotate(45deg);
    }
    
    .panel {
      display: none;
    }

    .text-two {
        margin-top: 25px;
        text-align: center;
    }

    @media only screen and (max-width: 768px) {
        .faqWrapper {
            padding-top: 20%;
        }
        .faq-header{
            font-size: 35px;
            border-bottom: 1px dotted #ccc;
            padding: 24px;
          }
          .text {
            font-size: 2vh;
          }
          .faqBod {
            width: 90vw;
          }
          .faqBod Nav {
            width: 90vw;
          }
    } 

    








    /******************************************
		/* Contact Page
	/*******************************************/


    .contactFormOne {
        height: 100vh;
        width: 100%;
        margin: 0 auto;
        position: relative;
      }
      
      form {
        width: 80%;
        margin: auto;
        color: white;
        position: absolute;
        top: 8%;
        left: 5%;
        margin-top: 10%;
      }
      
      fieldset {
        height: 500px;
        padding: 40px;
        border-radius: 25px;
        /* From https://css.glass */
        background: rgba(120, 120, 120, 0.5);
        border-radius: 16px;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(8.2px);
        -webkit-backdrop-filter: blur(8.2px);
        border: 1px solid rgba(255, 255, 255, 0.57);
      }
      
      label {
        font-size: 20px;
        color: white;
        text-shadow: 2px 2px 8px #000000;
        font-weight: 800;
      }
      
      input, textarea {
        margin-top: 5px;
        width: 80%;
        border-radius: 5px;
        border: solid 2px white;
        padding-left: 1%;
      }
      
      input::placeholder ,textarea::placeholder {
        color: rgb(177, 177, 177);
        padding: 10px 0 5px 10px;
      }
      
      #message {
        max-width: 80%;
        max-height: 100px;
        padding-top: 1%;
      }
      
      legend {
        font-size: 6vh;
        text-shadow: 2px 2px 8px #000000;
      }
      
      .contactButton {
        border: solid 2px rgb(189, 192, 189);
        margin-top: 2%;
        width: 30%;
        height: 40px;
        border-radius: 5px;
        border: solid 2px white;
        background: rgb(255, 255, 255);
        color: rgb(0, 0, 0);
        font-family: Graduate, Arial, sans-serif;
      }
      
      .contactButton:hover {
        background: rgb(255, 255, 255);
        transform: translateY(0);
        cursor: pointer;
        box-shadow:
        inset 0 0 40px whitesmoke,
        0 0 15px #fff,
        -5px 0 20px rgb(255, 255, 255),
        5px 0 20px rgb(255, 255, 255);
      }
      
      
      @media only screen and (min-width: 200px) and (max-width: 481px) {
      
          input, textarea {
            margin-top: 5px;
            width: 100%;
            border-radius: 5px;
            border: solid 2px white;
          }
      
          input::placeholder ,textarea::placeholder {
            color: rgb(177, 177, 177);
            padding: 10px 0 5px 10px;
          }
      
          #message {
            max-width: 100%;
            max-height: 100px;
          }
        
          legend {
            font-size: 6vh;
            text-shadow: 2px 2px 8px #000000;
          }
          fieldset {
            height: 550px;
          }
      
          form .contactButton {
            margin-top: 2%;
            width: 50%;
            height: 40px;
            border-radius: 5px;
            border: solid 2px white;
            background: rgb(255, 255, 255);
            color: rgb(0, 0, 0);
            font-family: Graduate, Arial, sans-serif;
          }
      }







