/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel,
.owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}
.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: none;
}
.no-js .owl-carousel,
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}
.owl-carousel .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.owl-height {
  transition: height 0.5s ease-in-out;
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 0.4s ease;
}
.owl-carousel .owl-item .owl-lazy:not([src]),
.owl-carousel .owl-item .owl-lazy[src^=""] {
  max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 0.1s ease;
}
.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 0.4s ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}
/**
  * Owl Carousel v2.3.4
  * Copyright 2013-2018 David Deutsch
  * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
  */
.owl-theme .owl-dots,
.owl-theme .owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-nav {
  margin-top: 10px;
}
.owl-theme .owl-nav [class*="owl-"] {
  color: #fff;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #d6d6d6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}
.owl-theme .owl-nav [class*="owl-"]:hover {
  background: #869791;
  color: #fff;
  text-decoration: none;
}
.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}
.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
}
.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #d6d6d6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}
/*Main content*/
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;
}
/* 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: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  font-family: "Jura", sans-serif;
}
.header {
  height: 100px;
  background-color: #111;
  color: #fff;
  text-align: center;
  padding: 10px;
}
.header h1 {
  font-family: "MonteCarlo", cursive;
  font-size: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.header h1 span {
  padding: 0 15px;
}
.header h2 {
  font-family: "Jura", sans-serif;
  font-size: 18px;
  margin-top: 8px;
}
.footer {
  height: 50px;
  background-color: #111;
  color: #fff;
  font-size: 20px;
  padding: 13px;
  text-align: center;
}
.footer a {
  color: #fff;
  text-decoration: none;
}
.content {
  height: 100px;
}
.content p.text1 {
  font-size: 30px;
  text-align: center;
  text-transform: uppercase;
  font-family: "Coiny", cursive;
  font-weight: bold;
}
.content p.text2 {
  font-size: 25px;
  text-align: center;
  font-family: "Tourney", cursive;
  font-weight: bold;
  text-transform: uppercase;
  padding-top: 5px;
}
.content p.text3 {
  font-size: 20px;
  text-align: center;
  font-family: "Jura", sans-serif;
  font-weight: bold;
  padding-top: 5px;
}
.album-container {
  height: calc(100vh - 270px);
  padding: 20px 0;
  position: relative;
}
.album-container .item {
  min-width: 200px;
  background: url(ajax-loader.gif) no-repeat center #f1f1f1;
}
.album-container .item img {
  height: 100%;
  width: auto;
}
.album-container .owl-carousel,
.album-container .owl-stage-outer,
.album-container .owl-stage,
.album-container .owl-item,
.album-container .item {
  height: 100%;
}
.share-button {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
}
.share-button a img {
  margin: 0 10px;
  width: 60px;
  border-radius: 50%;
  background: -webkit-linear-gradient(left, #d59d02, #ffc404, #d9a602);
  background: linear-gradient(left, #d59d02, #ffc403, #d9a602);
  padding: 3px;
}
.border {
  background: -webkit-linear-gradient(left, #d59d02, #ffc403, #d9a602);
  background: linear-gradient(left, #d59d02, #ffc403, #d9a602);
  width: 100%;
  height: 10px;
  background-color: #ecb503;
}
.border-shadow-top {
  -webkit-box-shadow: 0 -1px 2px 0 rgb(60 64 67 / 15%),
    0 -2px 6px 2px rgb(60 64 67 / 15%);
  box-shadow: 0 -1px 2px 0 rgb(60 64 67 / 15%),
    0 -2px 6px 2px rgb(60 64 67 / 15%);
}
.border-shadow-bottom {
  -webkit-box-shadow: 0 1px 2px 0 rgb(60 64 67 / 15%),
    0 2px 6px 2px rgb(60 64 67 / 15%);
  box-shadow: 0 1px 2px 0 rgb(60 64 67 / 15%), 0 2px 6px 2px rgb(60 64 67 / 15%);
}
.owl_wrap > .owl-prev {
  left: 15px;
}
.owl_wrap > .owl-next {
  right: 15px;
}
.owl_wrap > .owl-prev,
.owl_wrap > .owl-next {
  border-radius: 50%;
  text-align: center;
  width: 60px;
  height: 60px;
  position: absolute;
  z-index: 1;
  top: 50%;
  margin-top: -30px;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  line-height: 60px;
  padding: 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  background-color: #df475955;
}
.action_btn:hover {
  background-color: #df4759;
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
}
.col {
  flex: 1 0 0%;
  padding: 0 10px;
}
.photo-title {
  font-size: 20px;
  -webkit-transition: -webkit-transform 0.4s ease, visibility 0.4s ease,
    opacity 0.4s ease, background-color 0.4s ease;
  transition: transform 0.4s ease, visibility 0.4s ease, opacity 0.4s ease,
    background-color 0.4s ease;
  position: relative;
  z-index: 1;
  -webkit-transition: -webkit-transform 0.4s ease, opacity 0.4s ease,
    visibility 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
}
.photo-title.changing {
  opacity: 0;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
}
.page_loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 1005;
}
#loader {
  display: block;
  position: relative;
  left: calc(50% - 40px);
  top: 50%;
  width: 160px;
  height: 20px;
  margin: -38px 0 0 -38px;
}

@media only screen and (max-width: 1023px) {
  .album-container {
    height: auto;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  .album-container .owl-carousel,
  .album-container .owl-stage-outer,
  .album-container .owl-stage,
  .album-container .owl-item,
  .album-container .item {
    height: auto;
  }
  .album-container .item img {
    width: 100% !important;
    height: auto !important;
  }
  .header {
    height: auto;
  }
  .content {
    text-align: center;
    height: auto;
  }
  .content .col {
    margin-bottom: 20px;
  }
  .col {
    flex: 1 0 auto;
    width: 100%;
  }
  .share-button {
    justify-content: center;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1268px) {
  .content p.text1 {
    font-size: 20px;
  }
  .content p.text2 {
    font-size: 22px;
  }
}

@media only screen and (min-width: 1269px) and (max-width: 1455px) {
  .content p.text1 {
    font-size: 26px;
  }
}

@media only screen and (max-width: 599px) {
  .footer {
    height: auto;
    text-align: center;
  }
}

@media only screen and (max-width: 410px) {
  .header h1 {
    font-size: 40px !important;
  }
}

@media only screen and (max-width: 374px) {
  .header h1 {
    font-size: 30px !important;
  }
}
