/* --------------------------------------------------
 CSS Variables
-------------------------------------------------- */
:root {
  --primary: #ddd;
  --dark: #333;
  --medium: #555;
  --light: #fff;
  --green: rgba(0, 200, 30, 0.5);
  --light-green: rgba(95, 207, 128, 1);
  --yellow: rgba(255, 255, 125, 0.6);
  --shadow: 0 4px 7px rgba(104, 104, 104, 0.8);
  --shadow2: 1px 1px 5px 0.5px rgba(150, 150, 150, 0.4);
}

html {
  font-family: Helvetica, sans-serif, monospace;
  color: var(--dark);
}

body {
  background: #c7c7c7;
  line-height: 1.4;
  margin: 25px 40px;
}

.btn {
  background: var(--dark);
  border: 0;
  border-radius: 5px;
  color: var(--light);
  padding: 0.6rem 1.3rem;
  text-decoration: none;
}

img {
  max-width: 100%;
}

em {
  font-weight: bold;
}

.site-wrapper {
  display: grid;
  grid-gap: 20px;
}

* {
  box-sizing: border-box;
}

/* --------------------------------------------------
Navigation
-------------------------------------------------- */
.main-nav ul {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  padding: 0;
}

.main-nav a {
  background: var(--primary);
  display: block;
  text-decoration: none;
  padding: 0.8rem;
  text-align: center;
  color: var(--dark);
  text-transform: uppercase;
  font-size: 1.1rem;
  box-shadow: var(--shadow);
}

.main-nav a:hover {
  background: var(--dark);
  color: var(--light);
}

/* --------------------------------------------------
 Top Container - Container for Showcase and Pricing
-------------------------------------------------- */
.top-container {
  display: grid;
  grid-gap: 10px;
  grid-template-areas:
    'showcase showcase top-box-a'
    'showcase showcase top-box-a';
}

/* --------------------------------------------------
 Showcase for Home Page
-------------------------------------------------- */
.showcase {
  grid-area: showcase;
  min-height: 400;
  margin-top: 5px;
  background: url(../img/home-page-pics/L5A4583_Lake-Perris.jpg);
  /* background: url(../img/observatory_small.jpg); Option 2 */
  background-size: cover;
  opacity: 1;
  background-position: center;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: top;
  box-shadow: var(--shadow);
}

.showcase h1.logo {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 15px;
  margin-top: 0.8rem;
  padding: 5px 15px 5px 15px;
  color: var(--light);
  z-index: 3;
}


.showcase a {
  position: relative;
  margin: 15px auto;
  padding: 0.8rem 2rem;
  opacity: 0.9;
  z-index: 1;
}

.showcase p {
  position: relative;
  font-size: calc(1vw + 0.8rem);
  margin-top: 70%;
  color: var(--light);
  background-color: var(--dark);
  opacity: 0.7;
  padding: 20px;
  z-index: 1;
}

header a:hover {
  background: var(--light);
  color: var(--dark);
  overflow: hidden;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/* --------------------------------------------------
 Top Box - Package and Pricing Deals Boxes
-------------------------------------------------- */
.top-box {
  background: var(--primary);
  display: grid;
  min-height: 400px;
  margin-top: 5px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  padding: 0.5rem;
}

.top-box h1 {
  font-size: 3rem;
  margin-bottom: 0;
  margin-top: 5px;
  padding: 0.5rem;
  color: var(--light);
}

.top-box h2 {
  font-size: calc(2vw + 1.2rem);
  text-align: center;
  padding: 1rem auto 0.7rem;
}

.h2-pkg {
  font-size: 2.2rem;
  margin: 2rem 0.2rem 0.1rem 0.2rem;
}

.top-box i {
  text-align: center;
  padding: 1rem auto 1rem;
}

.top-box p.package {
  width: 100%;
  text-align: justify;
  padding: 1.5rem 1rem;
}

.top-box-a {
  display: grid;
  grid-area: top-box-a;
  text-align: center;
}

.btn-container {
  text-align: center;
  font-size: calc(1vw + 0.6rem);
  margin-bottom: 2rem auto;
  padding-bottom: 2rem;
}

.btn-container a.btn1,
.btn-container a.btn2 {
  display: block;
  border-radius: 5px;
  width: calc(100% - 3.5rem);
  margin: 15px auto;
  background: var(--dark);
  color: var(--light);
  padding: 0.6rem 0.8rem;
  text-decoration: none;
  border: 0;
}

.btn-container a.btn1:hover,
.btn-container a.btn2:hover {
  background: var(--light);
  color: var(--dark);
  overflow: hidden;
  width: calc(100% - 3.5rem);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.btn-container-samples {
  margin-top: 3rem;
}

.btn-container-faq {
  margin-top: 5rem;
}


/* --------------------------------------------------
 Boxes - Photos-Videos-Testimonials
-------------------------------------------------- */
.boxes {
  margin-top: 10px;
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  line-height: 1.25;
}

.box {
  background: var(--primary);
  text-align: center;
  padding: 1.2rem 0.8rem;
  box-shadow: var(--shadow);
}

.box p {
  letter-spacing: 1.25;
  padding: 0.8rem;
  text-align: justify;
}

.hr-index {
  border: 0;
  height: 2px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
  margin: 0.1rem auto 2rem;
  width: 80%;
}


/* --------------------------------------------------
 Testimonials 2 for Home Page
-------------------------------------------------- */

.testimonials {
  margin: 10px auto;
  display: grid;
  grid-template-columns: repeat(1fr);
  grid-gap: 10px;
}

.testimonials-title {
  display: block;
  font-size: 2.2rem;
  justify-content: center;
  text-align: center;
  width: 100%;
  margin: 2rem auto 0.1rem;
}

.testimonial-slider {
  display: block;
  width: 100%;
  /* height: auto; */
  margin-top: 15px;
}

.testimonial-slider ul.slider {
  display: block;
  list-style: none;
  padding: 0;
  position: relative;
  display: inline-block;
  width: 90%;
  height: 350px;
  /* height: 320px; */
  overflow: hidden;
  margin: 0 auto;
}

.testimonial-slider ul.slider li {
  position: absolute;
  display: block;
  width: 100%;
  opacity: 0;
  margin: 0 auto;
}

.testimonial-slider ul.slider li:nth-child(1) {
  opacity: 1;

  -webkit-animation: fade-animation-1 25s infinite;
  animation: fade-animation-1 25s infinite;
}

.testimonial-slider ul.slider li:nth-child(2) {
  -webkit-animation: fade-animation-2 25s infinite;
  animation: fade-animation-2 25s infinite;
}

.testimonial-slider ul.slider li:nth-child(3) {
  -webkit-animation: fade-animation-3 25s infinite;
  animation: fade-animation-3 25s infinite;
}

.testimonial-slider ul.slider li:nth-child(4) {
  -webkit-animation: fade-animation-4 25s infinite;
  animation: fade-animation-4 25s infinite;
}


.testimonial-slider q {
  display: inline-block;
  font-size: calc(1vw + 1.2rem);
  /* font: 1.8rem "Raleway", Helvetica, Arial, Verdana, sans-serif; */
  /* letter-spacing: .25pt; */
  text-shadow: 0 5px 10px rgba(0, 0, 0, .1);
  max-width: 90%;
  margin-top: 0;
  /* max-width: 35ch; */
}

.testimonial-slider .source {
  margin-top: 20px;
  color: var(--medium);
  /* color: #d9e0f9; */
  font: italic 400 1.25rem;
  text-align: center;
}


/* KEYFRAME DECLARATIONS */
@keyframes fade-animation-1 {

  0%,
  25%,
  100% {
    opacity: 0
  }

  3%,
  22% {
    opacity: 1;
  }
}

@keyframes fade-animation-2 {

  0%,
  25%,
  50%,
  100% {
    opacity: 0
  }

  28%,
  47% {
    opacity: 1;
  }
}

@keyframes fade-animation-3 {

  0%,
  50%,
  75%,
  100% {
    opacity: 0
  }

  53%,
  72% {
    opacity: 1;
  }
}

@keyframes fade-animation-4 {

  0%,
  75%,
  100% {
    opacity: 0
  }

  78%,
  97% {
    opacity: 1;
  }
}


/* --------------------------------------------------
 Social Media - Social Media Section
-------------------------------------------------- */
.social-media {
  background: var(--primary);
  box-shadow: var(--shadow);
  line-height: 2;
  font-size: calc(1vw + 1.2rem);
  display: grid;
  grid-gap: 30px;
  grid-template-columns: repeat(1fr);
  /* grid-template-columns: repeat(2, 1fr); Original with heli picture */
  margin: 1rem auto;
}

.social-media h2 {
  font-size: 2.2rem;
  margin: 3rem 0.2rem;
  text-align: center;
}

.social-media p {
  font-size: 1.2rem;
  letter-spacing: 1.25;
  margin: 3rem auto;
  text-align: justify;
  width: 85%;
}

.social-media .btn {
  display: grid;
  border-radius: 5px;
  font-size: calc(2vw + 0.2rem);
  margin: 1.5rem auto 4.5rem;
  padding: 0.2rem;
  max-width: 50%;
  text-align: center;
}

.social-media a {
  target-new: tab;
}

.social-media a:hover {
  background: var(--light);
  border-radius: 5px;
  color: var(--medium);
  cursor: pointer;
}

.portfolio {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  height: auto;
  align-items: center;
  justify-items: center;
}

.portfolio img {
  height: auto;
}


/* --------------------------------------------------
START - Photo Gallery Integration
-------------------------------------------------- */
.row>.column {
  padding: 0 8px;
}

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

/* Create four equal columns that float next to eachother */
.column {
  float: left;
  width: 25%;
}

/* The Model (background) */
.model {
  background-color: black;
  display: none;
  position: fixed;
  padding-top: 50px;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  overflow: auto;
  z-index: 1;
}

/* Model Content */
.model-content {
  align-content: center;
  position: relative;
  margin: 0 auto;
  width: 80%;
  max-width: 1fr;
}

/* The Close Button */
.close {
  color: var(--light);
  position: fixed;
  top: 4%;
  right: 4%;
  font-size: 2.2rem;
  font-weight: bold;
  z-index: 1;
}

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

/* This will hide the slides by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
/* Position the "next button" to the right */
.next {
  border-radius: 10px 10px 10px 10px;
  color: var(--light);
  cursor: pointer;
  display: inline-flex;
  font-size: 2.2rem;
  font-weight: bold;
  justify-content: flex-start;
  margin-left: 10%;
  padding: 6px auto 15px;
  position: fixed;
  top: 1%;
  transition: 0.6s ease;
  user-select: none;
  width: 10%;
  z-index: 1;
}

.prev {
  border-radius: 10px 10px 10px 10px;
  color: var(--light);
  cursor: pointer;
  display: inline-flex;
  font-size: 2.2rem;
  font-weight: bold;
  justify-content: flex-end;
  margin-left: -18%;
  padding: 6px auto 15px;
  position: fixed;
  top: 1%;
  transition: 0.6s ease;
  user-select: none;
  width: 10%;
  z-index: 1;
}

/* On hover in the gallery, add a transparent black background to prev & next buttons */
.prev:hover,
.next:hover {
  /* background-color: rgba(0, 0, 0, 0.2); */
  padding: 5px 15px;
}

/* Number text for Gallery (1/24 etc) */
.numbertext {
  color: white;
  font-size: 12px;
  padding: 8px 10px;
  position: absolute;
  top: 0;
}

/* Caption text */
.caption-container {
  display: block;
  font-size: 1.8rem;
  text-align: center;
  height: 2rem;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 5px 12px;
  color: white;
}

.active.p-gallery {
  display: block;
  position: relative;
  height: 80%;
  margin: auto;
  overflow: hidden;
}

.active,
.p-gallery:hover {
  opacity: 1;
}

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

.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}


/* --------------------------------------------------
 Footer
-------------------------------------------------- */
footer {
  font-size: 0.7rem;
  margin-top: 1.8rem;
  background: var(--dark);
  color: var(--light);
  text-align: center;
  padding: 15px 5px;
}

.footer-nav a:hover {
  background: var(--light);
  color: var(--dark);
}

.footer-nav ul {
  margin: 0;
  padding: 0;
  margin: auto;
  padding: 2px;
}

.footer-nav ul li {
  list-style: none;
  font-size: calc(2vw + 0.2rem);
  text-decoration: none;
  margin: auto;
  padding: 0.6rem;
  display: inline-block;
  text-align: center;
  justify-content: space-around;
}

.footer-nav ul li a.btn {
  padding: 0.5rem 0.4rem;
}

p.footer-copyright {
  text-align: center;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

a.footer-contact {
  color: var(--light-green);
  padding: 0 5px;
  text-decoration: none;
}

a.footer-contact:hover {
  color: var(--light);
  padding: 0 5px;
  text-decoration: none;
}

/* --------------------------------------------------
Samples Page START
-------------------------------------------------- */
/* .samples-boxes {
  display: flex;
  flex-direction: column;
  max-height: max-content;
  margin: 10px auto;
} */

.picture-info {
  padding: 0.8rem auto;
  background-color: var(--yellow);
  color: var(--dark);
  font-size: 1.5rem;
  line-height: 1.5;
}

.heli,
.plane,
.drone {
  background: var(--primary);
  display: block;
  margin: 30px auto;
  width: 100%;
  box-shadow: var(--shadow);
}

img.heli,
img.plane,
img.drone {
  max-width: 80%;
  margin: 5px auto;
  box-shadow: var(--shadow2);
}

.heli h1,
.plane h1,
.drone h1 {
  font-size: calc(2vw + 1.8rem);
  font-weight: bold;
  color: var(--dark);
  text-align: center;
  padding: 3rem 0.8rem 0.5rem 0.8rem;
  text-transform: uppercase;
}

.hr-samples {
  border: 0;
  height: 2px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
  margin: 0.5rem 0.5rem 4rem 0.2rem;
}

.heli p,
.plane p,
.drone p {
  font-size: 1.2rem;
  margin: 0.7rem auto;
  padding: 0.5rem 2.5rem;
  text-align: justify;
}

.samples-portfolio {
  background: var(--primary);
  box-shadow: var(--shadow);
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  margin: 0 auto;
  padding: 2px;
  width: 100%;
}

.grow {
  all: 0.2s ease-in-out;
  margin: 0 auto;
}

.grow img:hover {
  display: block;
  margin: 0 auto;
  transform: scale(1.1, 1.1);
}

/* --------------------------------------------------
FAQ Page START
-------------------------------------------------- */

.faq-container {
  background: var(--primary);
  border: 2px solid var(--dark);
  display: grid;
  margin: 10px auto 10px;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  box-shadow: var(--shadow);
  padding: 1rem;
}

.faq {
  width: 100%;
  padding-bottom: 3rem;
}

.faq-title {
  color: var(--dark);
  font-size: calc(2vw + 1.1rem);
  font-weight: bold;
  line-height: 1.4;
  margin: 1.6rem auto 0.7rem;
  text-align: center;
  padding: 0.8rem 2rem;
  text-transform: uppercase;
  text-shadow: -1px 1px 0px var(--light);
}

.faq-intro {
  margin-bottom: 1.7rem;
}

.faq-intro p {
  font-size: 1.2rem;
  line-height: 2;
  margin: 1rem;
}

.phone a {
  color: var(--dark);
  font-weight: bold;
  text-decoration: none;
}

.faq-phone {
  font-size: calc(2vw + 0.3rem);
  padding: 5px 0 5px 1.2rem;
}

.faq-phone:hover {
  background: rgba(140, 140, 140, 0.4);
  border-radius: 5px;
  color: var(--light);
  cursor: pointer;
  /* width: calc(65%); */
}

.question {
  border-radius: 0.4rem;
  color: var(--light);
  font-weight: normal;
  position: relative;
  background: var(--medium);
  margin: 0 auto;
  opacity: 0.9;
  padding: 1.5rem 1rem 1rem 2.7rem;
  display: block;
  cursor: pointer;
  z-index: 4;
}

.answers {
  color: var(--dark);
  margin: 0.5rem 0 1rem 0;
  padding: 0.5rem 1.2rem;
  height: 0;
  z-index: -1;
  position: relative;
  transition: .3s ease;
}

.answers li {
  list-style-type: disc;
  margin: 1rem 1rem 1rem 2rem;
}

.answers p a {
  text-decoration: none;
  color: var(--dark);
  font-weight: bold;
}

.questions:checked~.answers {
  height: auto;
  opacity: 1;
  padding: 15px;
  z-index: 4;
}

.plus {
  position: absolute;
  margin-left: 15px;
  z-index: 2;
  font-size: 2rem;
  line-height: 200%;
  user-select: none;
  transition: .3s ease;
}

.questions:checked~.plus {
  transform: rotate(45deg);
}

.questions {
  display: none;
}

p.italics {
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  margin: auto;
}

/* --------------------------------------------------
About Page START
-------------------------------------------------- */

.history {
  font-size: 1.2rem;
  margin: auto;
}

.top-box-history h2 {
  padding: 0.5rem 1rem;
  margin: auto;
  padding: 2rem;
  width: 75%;
}

.p-history {
  line-height: 1.5;
  margin: auto;
  padding: 0 2rem;
  text-align: justify;
  width: 75%;
}

.history-img {
  max-width: 70%;
  height: 85%;
  margin: 25px auto 25px;
  padding: 2rem;
}

.top-box-history>.btn-container {
  margin: auto;
  width: 75%;
}


.phone-info {
  padding: 0.8rem auto;
  background-color: var(--yellow);
  color: var(--dark);
  line-height: 1.5;
}

.closebtn {
  margin-left: 0.8rem;
  padding: 2px;
  color: var(--dark);
  font-weight: bold;
  float: right;
  font-size: 1.5rem;
  line-height: 1.5rem;
  cursor: pointer;
  transition: 0.3s;
}

.closebtn:hover {
  background-color: var(--yellow);
  color: var(--dark);
}



/* --------------------------------------------------
 Media Queries
-------------------------------------------------- */

@media(max-width: 700px) {
  body {
    background: #ccc;
    margin: 10px 18px;
  }

  .top-container {
    margin: 0px;
    padding: 0px;
    grid-template-areas: 'showcase''top-box-a';
  }

  .showcase h1 {
    margin-top: 5px;
    font-size: 3rem;
  }

  .main-nav ul {
    grid-template-columns: 1fr;
    grid-gap: 6px;
  }

  .top-box {
    width: 1fr;
    min-height: 400px;
    padding: 0px;
    display: grid;
    grid-gap: 4px;
  }

  .boxes {
    padding: 0px;
    display: grid;
    grid-gap: 8px;
  }

  .numbertext {
    color: white;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
    z-index: 1;
  }

  .top-box p.package {
    width: 100%;
    text-align: justify;
    padding: 0 2rem;
  }

  .top-box-history h2 {
    padding: 0.5rem 1rem;
    margin: auto;
    padding: 2rem;
    width: 90%;
  }

  .p-history {
    line-height: 1.5;
    margin: auto;
    padding: 0 2rem;
    text-align: justify;
    width: 90%;
  }

  .history-img {
    max-width: 90%;
    height: 85%;
    margin: 25px auto 25px;
    padding: 2rem;
  }

  .top-box-history>.btn-container {
    margin: auto;
    width: 90%;
  }
}

@media(max-width: 450px) {
  body {
    background: #ccc;
    margin: 10px 18px;
  }

  .top-container {
    margin: 0px;
    padding: 0px;
    grid-template-areas: 'showcase''top-box-a'
  }

  .showcase h1 {
    margin-top: 5px;
    font-size: 2.5rem;
  }

  .numbertext {
    color: white;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
    z-index: 1;
  }

  .top-box p.package {
    width: 100%;
    text-align: justify;
    padding: 0 1.8rem;
  }
}

@media(min-width: 500px) {
  body {
    background: #ccc;
    margin: 10px 18px;
  }

  img.p-gallery {
    max-width: 70vw;
  }

  .close {
    color: var(--light);
    position: fixed;
    top: 4%;
    right: 10%;
    font-size: 2.2rem;
    font-weight: bold;
    z-index: 1;
  }

  .numbertext {
    color: white;
    font-size: 12px;
    padding: 8px 40px;
    position: absolute;
    top: 0;
    z-index: 1;
  }
}

@media(min-width: 650px) {
  body {
    background: #ccc;
    margin: 10px 18px;
  }

  img.p-gallery {
    max-width: 54vw;
  }

  .close {
    color: var(--light);
    position: fixed;
    top: 4%;
    right: 20%;
    font-size: 2.2rem;
    font-weight: bold;
    z-index: 1;
  }

  .numbertext {
    color: white;
    font-size: 12px;
    padding: 8px 100px;
    position: absolute;
    top: 0;
  }
}

@media(min-width: 701px) {
  body {
    background: #ccc;
    margin: 10px 18px;
  }

  img.p-gallery {
    max-width: 52vw;
  }

  /* To display the Social Media box in a narrower box on larger screens */
  .social-media-box {
    display: block;
    margin: auto;
    padding: 4rem;
    position: relative;
    width: 100%;
    justify-content: center;
  }

  .close {
    color: var(--light);
    position: fixed;
    top: 4%;
    right: 20%;
    font-size: 2.2rem;
    font-weight: bold;
    z-index: 1;
  }

  .numbertext {
    color: white;
    font-size: 12px;
    padding: 8px 130px;
    position: absolute;
    top: 0;
  }
}

/* Photo Gallery Positioning */
@media(min-width: 900px) {
  body {
    background: #ccc;
    margin: 10px 18px;
  }

  img.p-gallery {
    max-width: 65vw;
  }

  .close {
    color: var(--light);
    position: fixed;
    top: 4%;
    right: 14%;
    font-size: 2.2rem;
    font-weight: bold;
    z-index: 1;
  }

  .numbertext {
    color: white;
    font-size: 12px;
    padding: 8px 120px;
    position: absolute;
    top: 0;
  }
}

/* Photo Gallery Positioning */
@media(min-width: 1020px) {
  body {
    background: #ccc;
    margin: 10px 18px;
  }

  img.p-gallery {
    max-width: 58vw;
  }

  .close {
    color: var(--light);
    position: fixed;
    top: 4%;
    right: 18%;
    font-size: 2.2rem;
    font-weight: bold;
    z-index: 1;
  }

  .numbertext {
    color: white;
    font-size: 12px;
    padding: 8px 135px;
    position: absolute;
    top: 0;
  }
}

/* Photo Gallery Positioning */
@media(min-width: 1200px) {
  body {
    background: #ccc;
    margin: 10px 18px;
  }

  img.p-gallery {
    max-width: 58%;
  }

  .close {
    color: var(--light);
    position: fixed;
    top: 3%;
    right: 25%;
    font-size: 2.2rem;
    font-weight: bold;
    z-index: 1;
  }

  .numbertext {
    color: white;
    font-size: 12px;
    padding: 8px 280px;
    position: absolute;
    top: 0;
  }
}

/* Photo Gallery Positioning */
@media(min-width: 1600px) {
  body {
    background: #ccc;
    margin: 10px 18px;
  }

  img.p-gallery {
    max-width: 50%;
  }

  .close {
    color: var(--light);
    position: fixed;
    top: 4%;
    right: 28%;
    font-size: 2.2rem;
    font-weight: bold;
    z-index: 1;
  }

  .numbertext {
    color: white;
    font-size: 12px;
    padding: 8px 420px;
    position: absolute;
    top: 0;
  }
}

/* --------------------------------------------------
 Media Queries for phones in landscape view
-------------------------------------------------- */
@media only screen and (min-device-width: 568px) and (max-device-width: 750px) and (orientation: landscape) {}

/* --------------------------------------------------
 Media Queries for iPad in portrait & landscape
-------------------------------------------------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* STYLES GO HERE */
}

/* --------------------------------------------------
 Media Queries for iPad in landscape
-------------------------------------------------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  /* STYLES GO HERE */
}

/* --------------------------------------------------
 Media Queries for iPad in portrait
-------------------------------------------------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  /* STYLES GO HERE */
}