.tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 10rem;
  overflow: hidden;
}

.tab .row {
  width: 65%;
}

@media (max-width: 1199.98px) {
  .tab .row {
    width: 100%;
  }
}

.tab .row .tab-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media (max-width: 1199.98px) {
  .tab .row .tab-item {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.tab h1 {
  padding-right: 1rem;
}

.tab h5 {
  text-align: left;
}

.tab button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 17px;
  color: #ddd;
}

.tab button:hover {
  color: #333;
}

.tab button.active {
  color: #333;
}

.tab button .line-decoration::after {
  width: 45px;
  height: 12px;
  background-color: #f2f2f2;
}

.tab button:hover .line-decoration::after {
  background-color: #cee0ac;
}

.tabcontent {
  display: none;
  padding: 24px 12px;
  -webkit-animation: fadeEffect 1s;
  animation: fadeEffect 1s;
}

.tabcontent .header-item {
  padding-top: 1rem;
  text-align: center;
}

.active .line-decoration::after {
  background-color: #cee0ac !important;
}

@-webkit-keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.row {
  margin: 0;
}

.gallery-items {
  padding-top: 1rem;
}

.gallery-items a {
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.gallery-items a::before {
  display: block;
  content: "";
  padding-top: 70%;
}

.gallery-items a:hover {
  background: transparent;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  opacity: 0.7;
}

.gallery-items a img {
  padding: 3px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.modal-content {
  border-radius: 0;
  border: none;
}

.modal-content .modal-body {
  padding: 5px;
}

.rounded {
  border-radius: 0 !important;
}

.youtube {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 0;
}

.youtube a {
  text-decoration: none;
  color: #333;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  font-weight: bold;
}

.youtube a:hover {
  font-style: italic;
}

.youtube a span {
  margin-right: 5px;
}

.youtube a img {
  width: 50px;
  height: auto;
}
/*# sourceMappingURL=gallery.css.map */