@import "default.css";
@import url(../font/fagonotf/stylesheet.css);
@import url(../font/avenir/stylesheet.css);

.fixed body {
  overflow: hidden;
}

:root {
  --index: calc(1vw + 1vh);
  --mainFont: "FagoNoTf";
  --textColor: #707070;
  --bgColor: #fff;
}

body {
  position: relative;
  font-family: var(--mainFont);
  font-size: 20px;
  font-weight: normal;
  font-style: normal;
  line-height: normal;
  color: var(--textColor);
  background: var(--bgColor);
  min-width: 375px;
  overflow-x: hidden;
}


main {
  margin-bottom: 40px;
}

.hidden {
  display: none;
}

.main-wrapper {
  overflow: hidden;
  min-height: 100vh;
  margin: auto;
}

[class*=__container] {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

.fancybox__container {
  max-width: 100%;
}

.gallery-base__container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* .gallery-item {
  display: flex;
  height: 348px;
  overflow: hidden;
  flex: 1 420px;
} */

.gallery-item {
  display: flex;
  height: 360px;
  overflow: hidden;
  /* flex: 1 auto; */
  flex: 1 420px;
  max-width: 830px;
}

.gallery-video {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-video video {
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.gallery-item img {
  transition: transform 2s ease-in;
}

.gallery-item:hover img {
  transform: scale(1.2);
  transition: transform 2s ease-in;
}

.gallery-item.item-small {
  flex: 0 230px;
}

.gallery-item.item-small-wide {
  flex: 0 260px;
  height: 465px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 1080px) {
  [class*=__container] {
    padding: 0 80px;
  }
}

@media screen and (max-width: 1080px) {
  [class*=__container] {
    padding: 0 20px;
  }
}


@media screen and (max-width: 690px) {
  .gallery-item {
    flex: 1 220px;
  }
}

/* @media screen and (max-width: 520px) {
  .gallery-item {
    flex: 1 40%;
  }
} */
@media screen and (max-width: 380px) {
  .gallery-item.item-small {
    flex: 1 auto;
  }
}


/* ACTIVE FILTERS */
.active_filters {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  background: #fff;
  margin-bottom: 30px;
  border-radius: 34px;
}

.active_filters span {
  font-size: 22px;
  margin-right: 10px;
}

.active_filters a {
  text-decoration: none;
  color: var(--textColor);
  font-weight: bold;
  padding: 5px 10px;
  display: inline-flex;
  border: 1px solid #eee;
  border-radius: 24px;
  align-items: center;
  margin: 5px 10px 5px 0;
  transition: all 0.12s linear;
}

.active_filters a i {
  font-weight: 800;
}

.active_filters a i:after {
  content: '\e070';
  transition: all 0.12s linear;
}

.active_filters a:hover {
  border-color: #e3070c;
  color: #e3070c
}

.active_filters a:hover i {
  color: #e3070c;
}

@media screen and (max-width: 1080px) {
  .active_filters {
    display: block;
    padding: 15px 25px;
    border-radius: 20px;
  }

  .active_filters .lst {
    margin: 10px -5px 0;
  }
}