html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style-type: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Header */
/* Page Body */
/* Tooltip */
/* Responsive Breakpoints */
/* Typography */
/* Mixins */
/* General Styles */
.main-header {
  position: fixed;
  top: 0;
  padding: 20px 0;
  width: 100%;
  height: 75px;
  border-bottom: 1px solid #e0e0e0;
  background: #f5f5f5;
  text-align: center;
  z-index: 10;
  transition: height 300ms ease;
}
.main-header.header-scroll {
  height: 85px;
}
@media (min-width: 768px) {
  .main-header {
    height: 210px;
  }
}

.logo-icon {
  display: inline-block;
  width: 32px;
}
.logo-icon.logo-icon-scroll {
  display: inline-block;
  width: 32px;
}
@media (min-width: 768px) {
  .logo-icon {
    display: block;
    margin: 0 auto;
    transition: all 0.5s ease;
    width: 115px;
  }
}

.logo-text {
  display: inline-block;
  margin-left: 5px;
  width: 160px;
}
.logo-text.logo-text-scroll {
  display: inline-block;
  margin-left: 5px;
  width: 160px;
}
@media (min-width: 768px) {
  .logo-text {
    display: block;
    margin: 0 auto;
    transition: all 0.5s ease;
    margin-top: 15px;
    width: 180px;
  }
}

.noscroll {
  overflow: hidden;
}

.gallery-container {
  display: flex;
  flex-wrap: wrap;
  margin-top: 75px;
  padding: 15px;
  transition: margin-top 0.5s ease;
}
@media (min-width: 768px) {
  .gallery-container {
    margin-top: 210px;
    padding: 15px 10%;
  }
}

.photo-container {
  position: relative;
  margin: 5px;
  width: calc(50% - 10px);
}
.photo-container:before {
  display: block;
  padding-top: 100%;
  content: "";
}
@media (min-width: 768px) {
  .photo-container {
    margin: 5px;
    width: calc(25% - 10px);
  }
}
@media (min-width: 1200px) {
  .photo-container {
    margin: 10px;
    width: calc(25% - 20px);
  }
}

.photo {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
.photo:hover .photo-img {
  transform: scale(1.08);
}

.photo-img {
  min-width: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.5s ease;
}
.photo-img:focus {
  border: 3px solid #4788f7;
}

body:not(.accessibility) .photo-img:focus,
body:not(.accessibility) .prev:focus,
body:not(.accessibility) .next:focus,
body:not(.accessibility) .close:focus {
  outline: none;
  border: none;
}

/* CSS Animations */
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* General Styles */
.carousel-overlay {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 20;
  animation: 1s fade-in forwards;
}

.close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 16px;
  opacity: 0.7;
  z-index: 10;
  cursor: pointer;
  transition: opacity 0.5s ease;
  transition: transform 0.3s ease-out;
}
.close:hover {
  opacity: 1;
  transform: rotateZ(90deg);
}

.carousel-container {
  flex: none;
  position: relative;
  margin: 0 auto;
  width: 98%;
}
.carousel-container:hover .carousel-footer-icon {
  visibility: visible;
}
@media (min-width: 769px) {
  .carousel-container {
    width: 60%;
  }
}

.carousel-header {
  position: relative;
}

.caption {
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 16px;
  text-align: center;
  text-shadow: 0px 0px 3px #000000;
}
@media (min-width: 768px) {
  .caption {
    font-size: 21px;
  }
}

.next, .prev {
  display: none;
  z-index: 10;
  position: absolute;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.5s ease;
}
.next:hover, .prev:hover {
  opacity: 1;
}
@media (min-width: 480px) {
  .next, .prev {
    display: block;
    top: 50%;
    transform: translateY(-50%);
  }
}

.prev {
  left: 0;
}

.next {
  right: 0;
}

.chevron-icon {
  width: 24px;
}
@media (min-width: 768px) {
  .chevron-icon {
    width: 36px;
  }
}

.carousel {
  position: relative;
  margin: 20px auto;
  width: 100%;
  text-align: center;
  overflow: hidden;
}
.carousel:focus ~ .carousel-footer .carousel-footer-icon {
  visibility: visible;
}
@media (min-width: 480px) {
  .carousel {
    width: calc(100% - 2*24px);
  }
}
@media (min-width: 768px) {
  .carousel {
    width: calc(100% - 2*36px);
  }
}

.carousel-img {
  max-width: 100%;
  max-height: 65vh;
  box-shadow: 0 1px 15px rgba(0, 0, 0, 0.3);
}

.carousel-img-fade {
  animation: fade-in 1s forwards;
}

.carousel-footer {
  display: flex;
  position: relative;
}

.carousel-footer-container {
  position: relative;
  width: 25%;
  text-align: center;
}
.carousel-footer-container:focus .carousel-footer-icon, .carousel-footer-container:focus .tooltip {
  visibility: visible;
}

.carousel-footer-icon {
  width: 16px;
  opacity: 0.5;
  transition: opacity 0.5s ease;
  visibility: hidden;
  cursor: pointer;
}
.carousel-footer-icon:hover {
  opacity: 1;
}
.carousel-footer-icon:hover + .tooltip {
  visibility: visible;
  transform: translate(-50%, -20px);
}
@media (min-width: 768px) {
  .carousel-footer-icon {
    width: 24px;
  }
}
@media (hover: none) {
  .carousel-footer-icon:hover:before, .carousel-footer-icon:hover:after {
    visibility: hidden;
  }
}

.tooltip {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 100%;
  padding: 8px;
  width: 100px;
  border-radius: 3px;
  background: #666666;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 1.3;
  text-align: center;
  z-index: 30;
  visibility: hidden;
  transition: transform 0.2s cubic-bezier(0.7, 1.7, 0.8, 1.2);
}
.tooltip:after {
  /* tooltip directional arrow */
  position: absolute;
  left: 50%;
  bottom: 0%;
  margin-left: -6px;
  margin-bottom: -12px;
  border: 6px solid transparent;
  border-top-color: #666666;
  content: "";
  z-index: 30;
}

.main-footer {
  padding: 20px 0 30px;
  text-align: center;
}

.footer-text {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #777777;
  line-height: 1.4;
}

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