.gallery .nav-link {
  color: #1c348c;
  font-size: 22px;
  font-weight: 600;
  opacity: 0.4;
}
.gallery .nav-pills .nav-link.active,
.gallery .nav-pills .show > .nav-link {
  background-color: #1c348c;
  color: white;
  opacity: 1;
}
.gallery .photo_gallery {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
  max-width: 1200px;
  margin: 10px auto;
  padding: 0 10px;
}
.gallery .gallery__item {
  align-items: center;
  display: flex;
  justify-content: center;
}
.gallery .gallery__item > img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  border-radius: 20px;
}
.gallery .gallery__item--hor {
  grid-column: span 2;
}
.gallery .gallery__item--vert {
  grid-row: span 2;
}
.gallery .gallery__item--lg {
  grid-column: span 2;
  grid-row: span 2;
}

.tab-content .main {
  max-width: 1000px;
  margin: auto;
}
.tab-content h1 {
  font-size: 50px;
  word-break: break-all;
}
.tab-content .btn {
  border: none;
  outline: none;
  padding: 12px 16px;
  background-color: white;
  cursor: pointer;
}
.tab-content .btn:hover {
  background-color: #ddd;
}
.tab-content .btn .active {
  background-color: #666;
  color: white;
}
.tab-content .row {
  margin: 10px -16px;
  padding: 8px;
}
.tab-content .row::after {
  content: "";
  display: table;
  clear: both;
}
.tab-content .row .column {
  float: left;
  width: 33.33%;
  display: none;
  padding: 8px;
}
.tab-content .row .column .content {
  background-color: white;
  padding: 10px;
}
.tab-content .show {
  display: block;
}

.video_text {
  color: #1c348c;
  font-size: 22px;
  font-weight: 600;
}

@media only screen and (max-width: 767px) {
  .gallery__item {
    grid-column: span 2 !important;
  }
}/*# sourceMappingURL=gallery.css.map */