@font-face {
  font-family: 'destroyregular';
  src: url('assets/DESTROY_-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

/* I watched Claire talk about best practices for organizing your css. I did the best I could for now. I will be looking into this more as I have more time. As the day went on everything seemed to flow better and I think the code I orgainzed yesterday and today is alot better than it was a couple of days ago. Work in progress. */

html {
  font-size: 62.5%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: rgba(10, 61, 95, 1);
  background-image: url(images/crscdesign2.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  margin: 0;
  padding: 0;
  font-family: 'Ubuntu', sans-serif;
  width: 100vw;
}

h1 {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #FFFFFF;
}


.button {
  background: rgb(80,202,245);
  background: linear-gradient(171deg, rgba(80,202,245,1) 3%, rgba(0,115,174,0.7) 50%, rgba(10,61,95,1) 89%);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border: none;
  border-radius: 8px;
  color: white;
  padding: 10px 32px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  justify-content: center;
  align-self: center;
  font-size: 2.2rem;
  margin: 8px;
  cursor: pointer;
}

.button:hover {
  color: rgba(241, 93, 46, 1);
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}



/*---------------------  Header/Navigation Styling --------------------- */


header {
  position: fixed;
  z-index: 1001;
  width: 100vw;
  display: flex;
  justify-content: space-evenly;
  flex-flow:row wrap;
  align-items: center;
  align-content: center;
  background-color: rgba(0, 115, 174, 0.75);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  margin: 0;
  padding: 0 10px;
}

.logo{
  max-width: 125px;
  height: auto;
  padding: 15px;
  z-index: 1001;
}

.nav-container{
  padding: 0 2rem;
  margin: 0;
  display:flex;
  position: relative;
}

.logo-container{
  display: flex;
  align-items: center;
  z-index: 1001;
}

.nav-bar{
  position:fixed;
  left: 0;
  width:100%;
  padding: 75px 0 10px 0;
  background-color:rgba(0, 115, 174, 1);
  display:flex;
  flex-direction: column;
  overflow-x:hidden;
  overflow-y: auto;
  transform: translateX(100%);
  transition: .65s;
}

#check:checked ~ .nav-bar{
  transform: translateX(0);
}

#check:checked ~ .nav-bar .nav-link,
#check:checked ~ .nav-bar .search-bar{
  animation: animation .5s ease forwards var(--i);
}

.nav-links{
  width:100%;
}

.nav-links ul{
  display:flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.nav-link{
  position: relative;
  opacity: 1;
  transform: translateY(15px);
  padding-bottom: 10px;
}

.nav-link > a{
  color: white;
  padding: 0 2rem;
  letter-spacing: 1px;
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-link:hover > a{
  transform: scale(1);
  background-color: rgba(10, 61, 95,1);
  color: rgba(241, 93, 46, 1);
  width: 100%;
}

.dropdown{
  position: initial;
  top:initial;
  left:initial;
  transform: initial;
  opacity:1;
  width: 100%;
  padding:0;
  pointer-events: auto;
  width:100%;
}


.nav-link:hover > .dropdown,
.dropdown-link:hover > .dropdown{
  transform: translate(0, 0);
  opacity: 1;
  pointer-events: auto;
  display: block;
  background-color:rgba(10, 61, 95,1);
  width: 100%;
}

.dropdown > ul{
  list-style: none;
}

.dropdown ul li{
  padding: 1rem 0rem;
}

.dropdown-link > a{
  color: #fff;
  padding: 1.2rem 3.5rem;
  line-height: 2.4rem;
  font-size: 2.2rem;
}

.dropdown-link:hover > a{
  background-color: transparent;
  width:100%;
  padding: 1.2rem 2.5rem;
  color: rgba(241, 93, 46, 1);
  cursor: pointer;
}

.nav-link:hover > .dropdown, .dropdown-link:hover > .dropdown{
  opacity: 1;
  pointer-events: auto;
}

.hamburger-menu-container{
  flex: 1;
  display: flex;
  align-items:center;
  justify-content: flex-end;
}

.hamburger-menu-container p{
  font-size: 2.0rem;
  color: #fff;
  padding-right: 4px;
  z-index: 1001;
}

.hamburger-menu{
  width: 2.5rem;
  height:2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger-menu div{
  width: 1.6rem;
  height:3px;
  border-radius: 8px;
  background-color: white;
  position: relative;
  z-index: 1001;
  transition: .5s;
}

.hamburger-menu div:before,
.hamburger-menu div:after{
  content: '';
  position:absolute;
  width:inherit;
  height: inherit;
  background-color: white;
  border-radius: 3px;
  transition: .5s;
}

.hamburger-menu div:before{
  transform: translateY(-7px);
}

.hamburger-menu div:after{
  transform: translateY(7px);
}

#check{
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  width: 8rem;
  height:8rem;
  z-index: 90000;
  cursor: pointer;
  opacity:0;
  display: block;
}

#check:checked ~ .hamburger-menu-container
.hamburger-menu div{
  background-color: transparent;
}

#check:checked ~ .hamburger-menu-container
.hamburger-menu div:before{
  transform: translate(0) rotate(-45deg);
}


#check:checked ~ .hamburger-menu-container
.hamburger-menu div:after{
  transform: translate(0) rotate(45deg);
}


/*---------------------  End Navigation Styling --------------------- */

/*---------------------   Hero Styling --------------------- */


.hero video, .video-overlay {
  width: 100%;
  height: 360px;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
  
.video-overlay {
  background-color: rgba(10,61,95,0.7);
}

/* I tried to not have a video display for smaller devices, but it didn't work. Info on this would be great if there is some */

.hero {
  height: 360px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
  text-align: center;
}

.hero-item {
  align-self: center;
}

.hero h1 {
  font-family: 'destroyregular';
  line-height: 4rem;
  font-size: 3.4rem;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  padding-top: 125px;
}


/*--------------------- End  Hero Styling --------------------- */


/*---------------------  PICK YOUR ADVENTURE --------------------- */


.pickyouradventure-container{
    background-color: rgba(255, 255, 255, 0.4);
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    margin: 0 auto;    
    padding: 15px;
}

.pickyouradventure-container h2 {
  color: white;
  font-size: 3.0rem;
  text-align: center;
  background: rgb(246,189,47);
  background: linear-gradient(0deg, rgba(246,189,47,0.9) 3%, rgba(241,93,46,0.9) 42%, rgba(0,115,174,0.7) 98%);
  border-radius: 8px;
  margin: 15px;    
  padding: 8px;
}

.adventure-options {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  border-radius: 8px;
  margin: auto;
  padding: 25px;
}

.adventure {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  padding: 25px;
  background-color: rgba(255, 255, 255, 1);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 8px;
  margin: 8px;
  padding: 8px;
}

.booking-link{
  text-align: center;
  margin: auto;
  color: rgba(10,61,95,1);
  font-size: 2.0rem;
  font-weight: 600;
  padding-top: 15px;
  line-height: 3rem;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.booking-link:hover{
  color: rgba(241,93,46,1);
}

.adventure img {
    max-width: 250px;
}

/*---------------------  PICK YOUR ADVENTURE --------------------- */


/*--------------- Homepage custom stylings ---------------*/


.home-info1 {
  background-color: rgba(10, 61, 95, .5);
  padding: 25px 0;
}

.home-info2 {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 25px 0;
}

.home-info1, .home-info2 {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-content: center;
}

.home-words h4 {
  font-size: 2.0rem;
  color: rgba(10, 61, 95, 1);
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  padding: 8px;
}

.home-words p {
  font-size: 1.6rem;
  color: rgba(10, 61, 95, 1);
  font-weight: 300;
  line-height: 3rem;
  text-align: center;
}

.info-block {
  background-color: rgba(255, 255, 255, 1);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 8px;
  padding: 15px;
  margin: 8px 16px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.info-block:nth-child(odd) {
  flex-flow: row-reverse wrap;
}

.home-image {
  padding: 25px;
  display: flex;
  justify-content: center;
  flex-flow: column wrap;
}

.home-words {
  padding: 16px;
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  align-content: center;
}

.home-image img {
  max-width: 250px;
  background: rgb(80,202,245);
  background: linear-gradient(171deg, rgba(80,202,245,1) 3%, rgba(0,115,174,0.7) 50%, rgba(10,61,95,1) 89%);
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
  padding: 9px;
  margin: 10px;
  border-radius: 8px;
}


#about h3 {
  font-size: 3.0rem;
  color: rgba(10, 61, 95, 1);
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  padding: 8px;
  padding-top: 0;
}

#upcoming {
  background-color: rgba(0, 115, 174, 0.75);
}

#upcoming h3 {
  font-size: 3.0rem;
  color: rgba(10, 61, 95, 1);
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  padding: 8px;
  padding-top: 0;
}

/*--------------- End Homepage custom stylings ---------------*/

/*--------------- Testimonials in homepage styling ---------------*/

.reviews-container{
  background-color: rgba(10, 61, 95, 0.5);
  padding: 25px 0;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  margin: auto;
  padding: 16px;
}

.reviews {
  background-color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 8px;
  padding: 10px;
  margin: 10px;
  display: flex;
  justify-content: center;
  flex-flow: column wrap;
}

/*--------------- End Homepage custom stylings ---------------*/

/*--------------- Start of Footer Widgets ---------------*/

.footer-container{
  background-color: rgba(10, 61, 95, 0.5);
  width: 100%;
}

.information {
  background-color: transparent;
  display: flex;
  justify-content: space-around;
  flex-flow: column wrap;
  align-content: center;
  padding: 10px;
}

.information-item {
  border: 10px solid white;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  margin: 10px;
  border-radius: 8px;
  width: 75%;
  height: 0;
  padding-bottom: 50%;
  position: relative;
  display: flex;
  flex-basis: 40%;
}

.information-item iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/*--------------- End of footer widgets ---------------*/

/*--------------- Copyright/Disclaimer footer styling ---------------*/
.copyright {
  border-top: 0.5px solid #fff;
  display: flex;
  justify-content: space-around;
  flex-flow: column wrap;
  align-items: center;
  margin: 0px 10px;
  padding: 0px 10px;
}

.copyright a  {
  text-underline-offset: 3px;
  color: #fff;
  font-size: 1.4rem;
  padding: 0;
  text-align: left;
  line-height: 2em;
  margin: 0;
}

.copyright p {
  color: #fff;
  font-size: 1.4rem;
}

.disclaimer {
  border-top: 0.5px solid #fff;
  display: flex;
  justify-content: space-around;
  flex-flow: column wrap;
  align-items: center;
  margin: 0px 10px;
  padding: 10px
}

.disclaimer p {
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
}


/*--------------- End copyright footer styling ---------------*/


/*--------------- Tandem Booking page styling ---------------*/


.tandem-pricing {
  background-color: rgba(10, 61, 95, 1);
  background: rgb(0,115,174);
  background: linear-gradient(350deg, rgba(0,115,174,0.4) 3%, rgba(0,115,174,0.4) 42%, rgba(0,115,174,0.4) 98%), url(images/evantandem2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 500px;
  display:flex;
  justify-content: center;
  flex-flow: column wrap;
  align-content: center;
  text-align: center;
}

.tandem-pricing-hero h2 {
  font-family: 'destroyregular';
  line-height: 6.0rem;
  font-size: 5.0rem;
  color: rgba(255, 255, 255, 1);
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  padding-top: 150px;
}
  
.tandem-pricing-hero h3 {
  padding: 25px;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
}
  
.pricing-info-container {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 25px 0;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  margin: auto;
  padding: 16px;
}
  
.pricing-info{
  background-color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  justify-content: center;
  flex-flow: column wrap;
  text-align: center;
}

.pricing-info h3{
  font-size: 3.0rem;
  color: rgba(10, 61, 95, 1);
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  padding: 15px;
}

.pricing-block h4{
  font-size: 2.2rem;
  color: rgba(10, 61, 95, 1);
  text-transform: uppercase;
  font-weight: 400;
  text-align: center;
  padding: 10px;
}
   
.pricing-block p{
  font-size: 1.8rem;
  color: rgba(10, 61, 95, 1);
  font-weight: 300;
  text-align: center;
  padding: 15px;
}

.pricing-tiers {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column wrap;
  margin: auto;
  padding: 10px;
}


 /* Trying to figure out how to put a border in between all the middle items. Still working on this one. The following only seems to work for 3 items and then because there are classes it starts adding more in odd spots */
.pricing-tiers *:not(:first-child):not(:last-child){
  border-top: 1px solid rgba(10, 61, 95, 1);
  border-bottom: 1px solid rgba(10, 61, 95, 1);
}

.pricing-block  {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  padding: 10px;
}
 

/*--------------- End Tandem Booking page styling ---------------*/


/*--------------- About Us Drop zone page styling ---------------*/


.about-hero {
  background-color: rgba(10, 61, 95, 1);
  background: rgb(0,115,174);
  background: linear-gradient(350deg, rgba(0,115,174,0.4) 3%, rgba(0,115,174,0.4) 42%, rgba(0,115,174,0.4) 98%), url(images/thedropzone.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 500px;
  display: flex;
  justify-content: center;
  flex-flow: column wrap;
  align-content: center;
}

.about-info {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 25px 0;
}

.about-hero h2 {
  font-family: 'destroyregular';
  line-height: 6rem;
  font-size: 5.0rem;
  color: rgba(255, 255, 255, 1);
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  padding-top: 100px;
}

.about-hero h3 {
  font-family: 'destroyregular';
  line-height: 4rem;
  font-size: 3.0rem;
  color: rgba(255, 255, 255, 1);
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  padding: 10px;
}

.about-info {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-content: center;
}

.about-info h4 {
  font-size: 2.0rem;
  color: rgba(10, 61, 95, 1);
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  padding: 8px;
}

.about-info p {
  font-size: 1.6rem;
  color: rgba(10, 61, 95, 1);
  font-weight: 300;
  line-height: 3rem;
  text-align: center;
}

.airport-link{
  font-size: 1.6rem;
  color: rgba(10, 61, 95, 1);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.info-block {
  background-color: rgba(255, 255, 255, 1);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 8px;
  padding: 15px;
  margin: 8px 16px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.info-block:nth-child(odd) {
  flex-flow: row-reverse wrap;
}

.about-image {
  padding: 25px;
  display: flex;
  justify-content: center;
  flex-flow: column wrap;
}

.about-words {
  padding: 25px;
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  align-content: center;
}

.about-image img {
  max-width: 250px;
  background: rgb(80,202,245);
  background: linear-gradient(171deg, rgba(80,202,245,1) 3%, rgba(0,115,174,0.7) 50%, rgba(10,61,95,1) 89%);
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
  padding: 6px;
  margin: 10px;
  border-radius: 8px;
}

/*---------------- End about us  ----------------*/

/*--------------- Our partners page styling ---------------*/

.partners-hero {
  background-color: rgba(10, 61, 95, 1);
  background: rgb(0,115,174);
  background: linear-gradient(350deg, rgba(0,115,174,0.4) 3%, rgba(0,115,174,0.4) 42%, rgba(0,115,174,0.4) 98%), url(images/thedropzone.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 500px;
  display: flex;
  justify-content: center;
  flex-flow: column wrap;
  align-content: center;
}
  
.partners-info {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 25px 0;
}
  
.partners-hero h2 {
  font-family: 'destroyregular';
  line-height: 6rem;
  font-size: 4.6rem;
  color: rgba(255, 255, 255, 1);
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  padding-top: 100px;
}
  
.partners-hero h3 {
  font-family: 'destroyregular';
  line-height: 4rem;
  font-size: 3.0rem;
  color: rgba(255, 255, 255, 1);
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  padding: 10px;
}
  
.partners-info {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-content: center;
}
  
.partners-info h4 {
  font-size: 2.0rem;
  color: rgba(10, 61, 95, 1);
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  padding: 8px;
}
  
.partners-info p {
  font-size: 1.6rem;
  color: rgba(10, 61, 95, 1);
  font-weight: 300;
  line-height: 3rem;
  text-align: center;
}
  
.airport-link{
  font-size: 1.6rem;
  color: rgba(10, 61, 95, 1);
  text-decoration: underline;
  text-underline-offset: 2px;
}
  
.info-block {
  background-color: rgba(255, 255, 255, 1);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 8px;
  padding: 15px;
  margin: 8px 16px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
}
  
.info-block:nth-child(odd) {
  flex-flow: row-reverse wrap;
}
  
.partners-image {
  padding: 10px;
  display: flex;
  justify-content: center;
  flex-flow: column wrap;
}
  
.partners-words {
  padding: 10px;
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  align-content: center;
}
  
  .partners-image img {
  max-width: 250px;
  background: rgb(80,202,245);
  background: linear-gradient(171deg, rgba(80,202,245,1) 3%, rgba(0,115,174,0.7) 50%, rgba(10,61,95,1) 89%);
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
  padding: 6px;
  margin: 10px;
  border-radius: 8px;
  }

.partners-link {
  font-size: 1.6rem;
  color: rgba(10, 61, 95, 1);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/*---------------- End Our partners  ----------------*/


/*---------------- Contact us page styling ----------------*/


.contact-hero {
  background-color: rgba(10, 61, 95, 1);
  background: rgb(0,115,174);
  background: linear-gradient(350deg, rgba(0,115,174,0.5) 3%, rgba(0,115,174,0.5) 42%, rgba(0,115,174,0.5) 98%), url(images/Krystal-tandem.PNG);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: center;
  flex-flow: column wrap;
  align-content: center;
}

.contact-hero h2 {
  font-family: 'destroyregular';
  line-height: 5rem;
  font-size: 4.0rem;
  color: rgba(255, 255, 255, 1);
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  padding-top: 100px;
}

.contact-info {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 25px 0;
}

.contact-info h4 {
  font-size: 2.0rem;
  color: rgba(10, 61, 95, 1);
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  padding: 8px;
}
  
.contact-info p {
  font-size: 1.6rem;
  color: rgba(10, 61, 95, 1);
  font-weight: 300;
  line-height: 3rem;
  text-align: center;
}
  
.contact-block {
  background-color: rgba(255, 255, 255, 1);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 8px;
  padding: 4px;
  margin: 8px 16px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}
  
.contact-image {
  padding: 25px;
}
  
.contact-words {
  padding: 25px;
}
  
.contact-image img {
  max-width: 250px;
  background: rgb(80,202,245);
  background: linear-gradient(171deg, rgba(80,202,245,1) 3%, rgba(0,115,174,0.7) 50%, rgba(10,61,95,1) 89%);
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
  padding: 6px;
  margin: 10px;
  border-radius: 8px;
}

.phone{
  font-size: 1.6rem;
  color: rgba(10, 61, 95, 1);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.e-mail{
  font-size: 1.6rem;
  color: rgba(10, 61, 95, 1);
  text-decoration: underline;
  text-underline-offset: 2px;
}


  /* ---------------- Contact Form ---------------- */

form {
  border: 1px solid #c6c7cc;
  border-radius: 5px;
  font: 14px/1.4 "Helvetica Neue", Helvetica, Arial, sans-serif;
  overflow: hidden;
  max-width: 100%;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
 
input, textarea {
  border-radius: 4px;
  font: 14px/1.4 "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0;
}
 
label::before{
  content:"*";
  color: rgba(241, 93, 46, 1);
  font-size: 1.4rem;
}
 
.contact-form {
  padding: 20px 20px 0 20px;
}

.contact-form label {
  color: #395870;
  display: block;
  font-weight: bold;
  margin-bottom: 20px;
}

.contact-form input, textarea {
  background: #fff;
  border: 1px solid #c6c7cc;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .1);
  color: #636466;
  padding: 6px;
  margin-top: 6px;
  width: 100%;
}
 
.form-action {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
  flex-grow:1;
}
 
.form-action button {
  flex-grow:1;
}
 
.submit-formEntry {
  background: rgb(80,202,245,1);
  background: linear-gradient(171deg, rgba(80,202,245,1) 3%, rgba(0,115,174,0.7) 50%, rgba(10,61,95,1) 89%);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border: none;
  border-radius: 8px;
  color: white;
  padding: 10px 32px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  justify-content: center;
  align-self: center;
  font-size: 1.4rem;
  margin: 15px;
  padding: 10px;
  cursor: pointer;
}
 
.reset-formEntry {
  background: rgb(80,202,245);
  background: linear-gradient(171deg, rgba(80,202,245,1) 0%,           rgba(255,255,255,1)     59%);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border: none;
  border-radius: 8px;
  color: rgba(0, 115, 174, 1);
  padding: 10px 32px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  justify-content: center;
  align-self: center;
  font-size: 1.4rem;
  margin: 15px;
  padding: 10px;
  cursor: pointer;
}
 
 .reset-formEntry:hover {
  color: rgba(241, 93, 46, 1);
  background: rgb(80,202,245);
  background: linear-gradient(171deg, rgba(80,202,245,1) 0%, rgba(255,255,255,1)     59%);
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}
 
.submit-formEntry:hover {
  color: rgba(241, 93, 46, 1);
  background: rgb(80,202,245,1);
  background: linear-gradient(171deg, rgba(80,202,245,1) 3%,           rgba(0,115,174,0.7)     50%, rgba(10,61,95,1) 89%);
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}


/* ---------------- End Contact Form Styling ---------------- */

/*---------------- End contact us  ----------------*/


/*---------------- Under Construction Styling ----------------*/


.under-construction {
  display: flex;
  justify-content: center;
  flex-flow: column nowrap;
  align-content: center;
}

.construction-hero {
  /* background construction image from UnSplash */
  background-color: rgba(10, 61, 95, 1);
  background: rgb(0,115,174);
  background: linear-gradient(350deg, rgba(0,115,174,0.5) 3%, rgba(0,115,174,0.5) 42%, rgba(0,115,174,0.5) 98%), url(images/under-construction2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: center;
  flex-flow: column nowrap;
  align-content: center;
  padding: 25px;
}

.construction-hero h3 {
  font-family: 'destroyregular';
  line-height: 4rem;
  font-size: 2.4rem;
  color: rgba(255, 255, 255, 1);
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  padding-top: 100px;
}

.construction-block {
  background-color: rgba(10, 61, 95, 0.5);
  padding: 16px;
}

.construction-item {
  background-color: rgba(255, 255, 255, 1);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 8px;
  padding: 15px;
  margin: 8px 16px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}

.construction-item p {
  line-height: 4rem;
  font-size: 2.0rem;
  color: rgba(10, 61, 95, 1);
  font-weight: 500;
  text-align: center;
  padding: 16px;
}

/*---------------- End construction styling ----------------*/

/*---------------- Start of Media Queries----------------*/

@media only screen and (min-width: 400px){

.home-image img {
  max-width: 275px;
  padding: 10px;
  margin: 10px;
}

.contact-image img {
  max-width: 275px;
  padding: 8px;
  margin: 10px;
}

.about-image img {
  max-width: 275px;
  padding: 10px;
  margin: 10px;
}

.partners-image img {
  max-width: 275px;
  padding: 10px;
  margin: 10px;
}

}


 @media only screen and (min-width: 500px) {

.hero video, .video-overlay {
  height: 720px;
  object-fit: cover;
  position: absolute;
}

.hero {
  height: 720px;
  display: flex;
}


.hero h1 {
  font-size: 6.5rem;
  line-height: 8rem;
  padding-top: 200px;
}

/*----- Footer -----*/

.copyright {
  justify-content: space-between;
  flex-flow: row wrap;
  align-items: baseline;
  margin: 0px 25px;
  padding: 0px 25px;
}

  /*----- End Footer -----*/


.tandem-pricing-hero h2 {
  line-height: 9.0rem;
  font-size: 8.0rem;
  padding-top: 125px;
}

.partners-hero h2 {
  line-height: 8.0rem;
  font-size: 7.0rem;
  padding-top: 100px;
}

.construction-hero{
  padding: 50px;
}

.construction-hero h3 {
  line-height: 4rem;
  font-size: 3.0rem;
}

}


 @media only screen and (min-width: 620px) {

.hero h1 {
  font-family: 'destroyregular';
  line-height: 10rem;
  font-size: 8.0rem;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
}

.adventure {
  flex-flow: column nowrap;
  align-items: center;
  padding: 10px;
  margin: 10px;
}

.adventure p {
  font-size: 2.3rem;
}

.adventure img {
  max-width: 200px;
}
 

.information {
  padding: 30px;
}

 #about h3 {
  font-size: 3.6rem;
  padding: 15px;
}

#upcoming h3 {
  font-size: 3.6rem;
  padding: 15px;
}

 .home-words h4 {
  font-size: 2.4rem;
  padding: 15px;
}

.home-image img {
  max-width: 300px;
  padding: 8px;
  margin: 10px;
}

.home-words p {
  font-size: 1.8rem;
}

.pricing-info h3{
  font-size: 3.6rem;
  padding: 15px;
 }

 .pricing-block h4{
  font-size: 2.8rem;
  padding: 10px;
 }
 
 .pricing-block p{
  font-size: 2.4rem;
  padding: 15px;
 }

.about-words h4 {
  font-size: 2.4rem;
  padding: 15px;
}

.about-image img {
  max-width: 300px;
  padding: 8px;
  margin: 10px;
}

.about-words p {
  font-size: 1.8rem;
}

.partners-words h4 {
  font-size: 2.4rem;
  padding: 15px;
}

.partners-image img {
  max-width: 300px;
  padding: 8px;
  margin: 10px;
}

.partners-words p {
  font-size: 1.8rem;
}

.contact-words h4 {
  font-size: 2.4rem;
  padding: 15px;
}

.contact-image img {
  max-width: 300px;
  padding: 8px;
  margin: 10px;
}

.contact-words p {
  font-size: 1.8rem;
}

.upcoming-image img {
  max-width: 300px;
  padding: 8px;
  margin: 10px;
}

.construction-block {
  padding: 50px;
}

.construction-item {
  padding: 15px;
  margin: 20px 30px;
}

.construction-item p {
  line-height: 5rem;
  font-size: 2.8rem;
  padding: 25px;
}

 }


 @media only screen and (min-width: 768px) {


  /* I added some extra comments in the media areas where there was alot of content to seperate it */
 /*---------------- Homepage Hero  ------------------*/

.button {
  padding: 10px 32px;
  font-size: 2.8rem;
  margin: 15px;
}

.hamburger-menu-container p{
  font-size: 2.4rem;
  color: #fff;
  padding-right: 6px;
  z-index: 1001;
}

  .adventure-options {
  flex-flow: row nowrap;
  width: 90%;
}

.adventure {
  margin: 15px;
  padding: 8px;
}

  .booking-link{
  font-size: 1.8rem;
}

.adventure img {
    max-width: 200px;
}
 

 .information {
  display: flex;
  justify-content: space-around;
  flex-flow: row wrap;
  padding: 50px;
 }

 .information-item {
  flex-basis: 40%;
}

.reviews {
  padding: 10px;
  margin: 80px;
  display: flex;
  justify-content: center;
  flex-flow: column wrap;
 }

/*--------------- Book A Tandem ---------------*/


.tandem-pricing-hero h2 {
  line-height: 9.0rem;
  font-size: 8.0rem;
  padding-top: 100px;
}

.pricing-tiers {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-flow: row nowrap;
  margin: auto;
  padding: 10px;
}

.pricing-tiers *:not(:first-child):not(:last-child){
  border: none;
  border-left: 1px solid rgba(10, 61, 95, 1);
  border-right: 1px solid rgba(10, 61, 95, 1);
 }

/*--------------- End Book A Tandem ---------------*/

.about-hero h2 {
  line-height: 8.0rem;
  font-size: 7.0rem;
  padding-top: 100px;
}


/*--------------- Contact ---------------*/

.contact-hero h2 {
  line-height: 6rem;
  font-size: 7.0rem;
}

.contact-hero {
  background-position: center;
  width: 100%;
  height: 400px;
}

/*--------------- End Contact ---------------*/

/*--------------- Under Construction ---------------*/

.construction-hero h3 {

  line-height: 6rem;
  font-size: 5.0rem;
  padding-top: 100px;
}

/*--------------- End Under Construction ---------------*/

}



@media (min-width: 860px) {

.adventure p {
  font-size: 1.8rem;
}

.information-item {
  padding-bottom: 30%;
}

}


@media (min-width: 900px) {

.info-block:nth-child(odd) {
  flex-flow: row-reverse nowrap;
}

  /* trying to target the index info block sections to get them to reverse from eachother, but it hasn't been working. I will keep working on this */
 #about{
  flex-flow: row nowrap;
}

.info-block {
  padding: 15px;
  margin: 25px 50px;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}

.pricing-info-container {
  padding: 50px;
}

.contact-block {
  padding: 15px;
  margin: 25px 50px;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}

.contact-block:nth-child(odd) {
  flex-flow: row-reverse nowrap;
}

 }


@media only screen and (min-width: 1024px){

/*--------------- Full Width Nav Bar ---------------*/

.logo {
  max-width: 100px;
  height: auto;
  padding: 8px;
}
  
#check{
  display: none;
}

.nav-container{
  max-width: 95%;
  padding: 0 2rem;
  margin: 0;
  display:flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.nav-bar{
  position: initial;
  padding: 25px 0;
  background-color: transparent;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  overflow-x:initial;
  overflow-y: initial;
  transform: none;
  text-align: center;
} 
 
.nav-links {
  display: flex;
  justify-content: space-between;
}
  
.nav-links {
  padding: 0 15px;
}
  
.nav-link {
  justify-content: space-around;
  align-items: flex-start;
  float: left;
  list-style: none;
  padding: 0 10px;
}
  
.nav-link a {
  display: flex;
  flex-flow: row nowrap;
  color: #ffffff;
  text-transform: uppercase;
  text-align:start;
  font-size: 1.8rem;
  padding: 10px 0;
  text-decoration: none;
}
  
.nav-link a:hover {
  color: rgba(241, 93, 46, 1);
  background-color: transparent;
}
  
.nav-links ul{
  background-color: transparent;
  justify-content: center;
  flex-flow: row wrap;
  align-items: center;
}

.nav-link ul {
  display: none;
  position: absolute;
  background-color: rgba(0, 115, 174, 1); 
  border-radius: 0px 0px 4px 4px;
}
  
.nav-link:hover ul {
  background-color: rgba(0, 115, 174, 1); 
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
  width: 350px;
  z-index: 1001;
}
  
.nav-link:hover > a{
  background-color: transparent;
  color: rgba(241, 93, 46, 1);
  width: 100%;
  z-index: 1001;
}

.dropdown ul{
  width:100%;
}

.dropdown-link ul{
  width: 100%;
}
  
.dropdown-link li {
  padding: 8px 14px;
}
  
 .dropdown-link a:hover {
  color: rgba(241, 93, 46, 1);
  border-radius: 4px;
  z-index: 1001;
}


.hamburger-menu-container{
  display: none;
}

nav ul li a {
  font-size: 2.6rem;
  padding: 10px 0;
  text-decoration: none;
}

.dropdown ul li{
  padding: 0 3rem;
}

.hero h1 {
  font-size: 8.0rem;
  line-height: 10rem;
}
/*--------------- End Full Width Nav Bar ---------------*/


.adventure {
  justify-content: space-around;
  margin: 15px;
  padding: 15px;
}

.adventure img {
  max-width: 250px;
}

.booking-link{
  font-size: 2.4rem;
  font-weight: 600;
  padding-top: 15px;
}

.information-item {
  padding-bottom: 30%;
}

.home-image img {
  max-width: 400px;
  padding: 10px;
  margin: 10px;
}

.partners-image img {
  max-width: 400px;
  padding: 10px;
  margin: 10px;
}

.about-image img {
  max-width: 400px;
  padding: 10px;
  margin: 10px;
}

.upcoming-image img {
  max-width: 400px;
  padding: 10px;
  margin: 10px;
}

.contact-image img {
  max-width: 400px;
  padding: 10px;
  margin: 10px;
}

}


 @media only screen and (min-width: 1220px) {

  .nav-link a {
    font-size: 2.4rem;
    padding: 10px 0;
 
  }

  .adventure {
    margin: 15px;
    padding: 15px;

  }

  .adventure img {
  max-width: 300px;
  }
}


@media only screen and (min-width: 1400px) {

  .hero h1 {
    font-size: 9.0rem;
    line-height: 11rem;
  }

  .adventure img {
    max-width: 375px;
  }

}

@media only screen and (min-width: 1600px) {

  .hero h1 {
    font-size: 10.0rem;
    line-height: 12rem;
  }

  .adventure img {
    max-width: 425px;
  }
}