@keyframes animation-horizontal {
    16.65% {
        transform: translateX(8px)
    }
    33.3% {
        transform: translateX(-6px)
    }
    49.95% {
        transform: translateX(4px)
    }
    66.6% {
        transform: translateX(-2px)
    }
    83.25% {
        transform: translateX(1px)
    }
    100% {
        transform: translateX(0)
    }
}
.animation-horizontal:hover {
    animation-name: animation-horizontal;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
}
.section-container {
    max-width: 1432px;
    padding: 0 1em;
    margin: auto;
}
.section-heading h3 {
    letter-spacing: 2px;
}
section.about-section {
    max-width: 59em;
    margin: 0 auto;
    line-height: 1.6;
}
.about-section .section-wrap p {
    font-family: var(--heading-font);
    font-size: 1.5rem;
}

section.featured-boxes-section {
    margin-top: 7em;
}
.featured-boxes-section .box-wrap .box_image img {
    transform: scale(1);
    transition: 0.4s
}
.featured-boxes-section .box-wrap:hover .box_image img {
    transform: scale(1.1);
}
.featured-boxes-section .box-wrap a.box_button {
    display: inline-block;
    border: 1px solid var(--primary);
    text-decoration: none;
    color: #fff;
    transition: all 0.3s;
    padding: 0.5em 1.1em;
}
.featured-boxes-section .box-wrap a.box_button:hover {
    background: var(--primary);
}

.featured-categories .featured-categories-wrap {
    gap: 3%;
}

.instagram-feed #sb_instagram #sbi_images {
    padding-bottom: 0;
}

section.featured-products {
    background: url(../images/feat-prod-bg.jpg) no-repeat;
    margin-top: 3em;
    padding-top: 3.3em;
    background-size: cover;
}

section.gallery-section {
    margin: 0 auto;
    max-width: 1150px;
    padding: 0 1em;
}
.gallery-section .video-thumbnail {}
.gallery-section .video_column:nth-child(2) .video-thumbnail {
    margin-top: 3em;
}
/*.gallery-section .video_column:nth-child(3) .video-thumbnail {*/
/*    margin-top: 2em;*/
/*}*/
.gallery-section .video-thumbnail {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 12px;
}
.gallery-section .video-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
} 
.gallery-section .video-thumbnail:hover img {
  transform: scale(1.05);
}
.gallery-section .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--primary);
  color: #fff;
  font-size: 40px;
  padding: 10px 20px;
  pointer-events: none;
}

@media(max-width: 767px) {
    .featured-categories .featured-categories-wrap .feat_cat_wrap{
        width: 48.5%;
        margin-bottom: 1.3em;
    }
    .gallery-section .video_column:nth-child(2) .video-thumbnail {
        margin-top: 0;
    }
}