/*
       _ _                     _   _
 _ __ / / | ___ _ __ ___  __ _| |_(_)_   _____
| '_ \| | |/ __| '__/ _ \/ _` | __| \ \ / / _ \
| |_) | | | (__| | |  __/ (_| | |_| |\ V /  __/
| .__/|_|_|\___|_|  \___|\__,_|\__|_| \_/ \___|
|_|

/*
|--------------------------------------------------------------------------
| Variables
| Author: P11 Interactive Team
| Visit us: @ p11.com
|--------------------------------------------------------------------------
|
| This file holds all of the variables for the site.
| 1. Fonts
| 2. Colors
| 3. Color Variations
| 4. Transparent Colors
| 5. Color List
| 6. Screen Sizes / Breakpoints
|
*/
/*
| 1. Fonts
| --------------------------------------------------
| These font variables are used to hold the values for
| the sitewide fonts used on the project.
|
*/
/*
| 2. Colors
| --------------------------------------------------
| The variables are used to store the color theme for
| the site.
|
*/
/*
| 3. Color Variations
| --------------------------------------------------
| These color variations are auto generated by the
| following functions below.
*/
/*
| 4. Transparent Colors
| --------------------------------------------------
| These transparent colors are auto generated by the
| following functions below.
*/
/*
| 5. Colors List
| --------------------------------------------------
| This list is used for building out the various
| classes for using colors accross the site, classes
| for type, background colors, etc.
*/
/*
| 6. Screen Sizes / Breakpoints
| --------------------------------------------------
| Breakpoint variables in pixel widths for media queries.
|
*/
/*
| Extra small mobile
*/
/*
| Mobile
*/
/*
| Tablet
*/
/*
| Middle Sized Devices
*/
/*
| Small Laptop
*/
/*
| Large Laptop / Desktop
*/
/*
| Large Desktop
*/
/*
       _ _                     _   _
 _ __ / / | ___ _ __ ___  __ _| |_(_)_   _____
| '_ \| | |/ __| '__/ _ \/ _` | __| \ \ / / _ \
| |_) | | | (__| | |  __/ (_| | |_| |\ V /  __/
| .__/|_|_|\___|_|  \___|\__,_|\__|_| \_/ \___|
|_|

/*
|--------------------------------------------------------------------------
| Mixins
| Author: P11 Interactive Team
| Visit us: @ p11.com
|--------------------------------------------------------------------------
| 1. Resets
| 2. Positioning
|
| Notes: Define patterns of property value pairs, which can then be reused in other rule sets
|
*/
/*
| Font Smoothing
| --------------------------------------------------
|
| Aligns most of the browsers with the same font antialiasing.
|
*/
/*
| Strict Button Style
| --------------------------------------------------
|
| Sets the button style appearance to none for various
| mobile browsers and OS's that will auto change the styling
|
*/
/*
| Positioning
| --------------------------------------------------
|
| The following mixins are used for positioning elements
| via the absolute rule
|
*/
/*
| Transition
| --------------------------------------------------
|
| Used to apply all browser prefixes for the css3
| transition property
|
*/
/*
| Box Shadow
| --------------------------------------------------
|
| Used to apply all browser prefixes for the css3
| box-shadow property
|
*/
/*
| Text Shadow
| --------------------------------------------------
|
| Used to apply all browser prefixes for the css3
| text-shadow property
|
*/
/*
| SVG Shadow
| --------------------------------------------------
|
| Used to apply all browser prefixes for the css3
| filter property
|
*/
/*
| Responsive Media Query Mixins
| --------------------------------------------------
|
| The following mixins are used for applying various
| media queries and specified breakpoints
|
*/
/*
| Transparent Colors
| --------------------------------------------------
|
| Function for creating transparent colors.
|
*/
/*
| Gradient Backgrounds
| --------------------------------------------------
|
| Mixin for creating gradient backgrounds
| @include bg-gradient(fn-transparent-color($color-black, 1), fn-transparent-color($color-black, 0), top, bottom, 0%, 100%);
|
*/
/*
| Rotation
| --------------------------------------------------
|
| Mixin for applying the correct browser prefixes for the
| transform: rotate property
|
*/
/*
| Keyframe animations
| --------------------------------------------------
| Mixin for applying animations to elements
|
*/
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  GALLERY
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
p.gallery-select {
  font-size: 1.5em;
  font-weight: 700;
  display: inline-block;
}

#gallery-top {
  padding-top: 4em;
}
@media (max-width: 768px) {
  #gallery-top {
    padding-top: 2em;
  }
}

.gallery-nav-content {
  background-color: #e5e5e2;
  padding: 1rem;
  margin-bottom: 3rem;
}

.menu-gallery-menu {
  display: inline-block;
}
.menu-gallery-menu.secnav li {
  display: inline-block;
  width: auto;
  min-width: 190px;
}
.menu-gallery-menu.secnav li a {
  font-size: 1.25rem;
  font-weight: 500;
  border-color: #004f51;
}
.menu-gallery-menu.secnav li a:hover {
  background-color: #ffffff;
}
.menu-gallery-menu.secnav li.active a {
  background-color: #004f51;
}

.image-gallery {
  padding: 0 2em;
}
@media (max-width: 640px) {
  .image-gallery {
    padding: 0;
  }
}
.image-gallery ul.gallery-list {
  list-style: none;
  overflow: hidden;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(calc(33.33% - 2em), 1fr));
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
}
@media (max-width: 1024px) {
  .image-gallery ul.gallery-list {
    grid-template-columns: repeat(auto-fit, minmax(calc(50% - 2em), 1fr));
  }
}
@media (max-width: 640px) {
  .image-gallery ul.gallery-list {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
}
.image-gallery ul.gallery-list li {
  display: inline-block;
  width: 100%;
  position: relative;
  overflow: hidden;
  grid-column: span 1;
}
.image-gallery ul.gallery-list li:last-of-type {
  margin-bottom: 0;
}
.image-gallery ul.gallery-list li a {
  font-weight: 400;
  text-decoration: none;
  color: #ffffff;
  display: block;
  height: 20vw;
  cursor: zoom-in;
  background-color: #3d3935;
}
@media (max-width: 1024px) {
  .image-gallery ul.gallery-list li a {
    height: 30vw;
  }
}
@media (max-width: 640px) {
  .image-gallery ul.gallery-list li a {
    height: 60vw;
  }
}
.image-gallery ul.gallery-list li a .bgimg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
  -webkit-transition: transform 0.5s ease-out;
  -moz-transition: transform 0.5s ease-out;
  -ms-transition: transform 0.5s ease-out;
  -o-transition: transform 0.5s ease-out;
  transition: transform 0.5s ease-out;
}
.image-gallery ul.gallery-list li a:hover > .overlay, .image-gallery ul.gallery-list li a:hover > .caption {
  opacity: 1;
  color: #ffffff;
}
.image-gallery ul.gallery-list li a:hover {
  display: block;
}
.image-gallery ul.gallery-list li a:hover .bgimg {
  transform: scale(1.07);
}
.image-gallery ul.gallery-list li .overlay {
  opacity: 0;
  z-index: 10;
  background-color: rgba(61, 57, 53, 0.85);
  transition: 0.3s opacity ease-in-out;
}
.image-gallery ul.gallery-list li.with-icon a {
  text-decoration: none;
}
.image-gallery ul.gallery-list li.with-icon a .vr-icon,
.image-gallery ul.gallery-list li.with-icon a .video-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  z-index: 11;
  width: 100%;
  height: auto;
  font-size: 9em; /*3em;*/
  display: block;
  text-align: center;
  line-height: 1em;
  -webkit-transition: opacity 0.5s ease;
  -moz-transition: opacity 0.5s ease;
  -ms-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  -webkit-filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, 0.3));
  -moz-filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, 0.3));
  -o-filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, 0.3));
  filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, 0.3));
}
.image-gallery ul.gallery-list li.with-icon a .video-icon {
  font-size: 4em;
}
.image-gallery ul.gallery-list li.with-icon a:hover .vr-icon,
.image-gallery ul.gallery-list li.with-icon a:hover .video-icon {
  opacity: 0.125;
}
.image-gallery ul.gallery-list img {
  height: auto;
  width: 100%;
}
@media (min-width: 768px) {
  .image-gallery ul.gallery-list img {
    height: auto;
  }
}
.image-gallery .caption {
  font-family: "brandon-grotesque", Arial, Helvetica, sans-serif;
  z-index: 20;
  text-align: center;
  transition: 0.3s opacity ease-in-out;
  font-size: 1.125rem;
  padding: 3em 2em 1em;
  line-height: 1.125em;
  opacity: 0;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  background: 0 0;
  background: -moz-linear-gradient(top, transparent 0, rgba(0, 0, 0, 0.85) 100%);
  background: -webkit-linear-gradient(top, transparent 0, rgba(0, 0, 0, 0.85) 100%);
  background: linear-gradient(to bottom, transparent 0, rgba(0, 0, 0, 0.85) 100%);
}
@media (max-width: 640px) {
  .image-gallery .caption {
    font-size: 1em;
  }
}

/*# sourceMappingURL=gallery.css.map */
