/* button {
  padding: 1.3em 3em;
  width: 274px;
  height: 74px;

  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  text-transform: uppercase;

  letter-spacing: 2.4px !important;
  font-weight: bold !important;
  color: white !important;
  background-color: var(--color-primary) !important;
  border-radius: 45px;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  outline: none;
}

button:hover {
  background-color: var(--color-primary);
  box-shadow: 0px 15px 20px rgba(46, 229, 157, 0.4);
  color: #fff;
  transform: translateY(-7px);
}

button:active {
  transform: translateY(-1px);
} */

/* From Uiverse.io by Madflows */
.button {
    position: relative;
    overflow: hidden;

    width: 274px;
    height: 74px;
    border-radius: 50px;

    background-color: var(--color-primary) !important;
    color: white !important;
    letter-spacing: 2.4px !important;
    font-weight: bold !important;
    font-size: 16px;
    text-transform: uppercase;
    font-family: 'Myriad Pro', sans-serif;

    cursor: pointer;
}

a.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.button:hover::before {
    transform: scaleX(1);
}

.button-content {
    position: relative;
    z-index: 1;
}

.button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: 0 50%;
    width: 100%;
    height: inherit;
    border-radius: inherit;
    background: var(--color-secondary);
    transition: all 0.475s;
}




/*gallery*/
#content .gallery-container {
    text-align: center;
}

#content .gallery {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

#content .gallery li {
    display: inline-block;
}


#content .thumbnail {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    display: block;
    line-height: .42857;
    margin-bottom: 20px;
    padding: 4px;
    transition: border 0.5s ease-in-out 0s;
    width: 200px;
    height: 200px;
    object-fit: cover;
}

.img-responsive {
    object-fit: cover;
    width: 200px;
    height: 200px;
}

#content .thumbnail:hover {
    transform: scale(1.02);
}

#content .page_navigation {
    display: inline-block;
}

#content .page_link,
#content .previous_link,
#content .next_link,
#content .first_link,
#content .last_link,
#content .ellipse {
    background-color: #fff;
    border: 1px solid #ddd;
    color: #0275d8;
    display: inline-block;
    line-height: 1.25;
    margin-left: -1px;
    padding: 0.5rem 0.75rem;
    position: relative;
}

#content .page_navigation>a:hover,
.page_navigation>a.active_page {
    background-color: #eceeef;
    border-color: #ddd;
    color: #014c8c;
    text-decoration: none;
}

#gallery-section {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    background-image: url(../images/common/gallery-wrapper.jpg);
}

#gallery-section .gal-text {
    padding-bottom: 20px;
    position: relative;
}

#gallery-section .row {
    padding: 50px 0 105px;
    color: #000;
}

#gallery-section .galBox {
    max-width: 930px;
    margin: 30px auto 0;
}

#gallery-section .galRightTop {
    margin-bottom: 8px;
}

#gallery-section .galRightTop img:first-of-type {
    margin-right: 8px;
}

/*gallery*/
#content .gallery-container {
    text-align: center;
}