h6 {
    font-size: 15px;
    font-family: var(--other-font);
    font-weight: 400;
    color: var(--secondary-color);
    text-transform: uppercase;
    position: relative;
    letter-spacing: 6px;
    margin-bottom: 5px;
    line-height: 1.75;
}
h2 {
    margin-bottom: 20px;
}
section.gallery-section .col-4, section.gallery-section .col-6{
  padding:0;
}
section.gallery-section .row{
 gap:25px 0; 
  justify-content:space-between;
}
section.gallery-section .col-4{
 width: 32%;
}
section.gallery-section .col-6{
 width: 49%;
}
section.gallery-section img{
 width:100%;
  object-fit:cover;
  transition: all 0.3s cubic-bezier(0.3, 0.1, 0.58, 1);
}
section.gallery-section .gallery-box a::after{
  content: " ";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0px;
    transition: all 0.27s cubic-bezier(0.3, 0.1, 0.58, 1);
}
section.gallery-section .gallery-box{
 position: relative;
 width: 100%;
 overflow: hidden;
}
section.gallery-section .gallery-box:hover a::after{
 background: rgba(0, 0, 0, 0.2); 
}
section.gallery-section .gallery-box:hover img{
  transform: scale(1.05);
}
section.gallery-section .col-4 img{
  height:225px;
}
section.gallery-section .col-6 img{
  height:345px;
}
section.gallery-section .col-4:nth-child(6) img, section.gallery-section .col-4:nth-child(7) img, section.gallery-section .col-4:nth-child(8) img, section.gallery-section .col-4:nth-child(16) img, section.gallery-section .col-4:nth-child(17) img, section.gallery-section .col-4:nth-child(18) img, section.gallery-section .col-4:nth-child(26) img, section.gallery-section .col-4:nth-child(27) img, section.gallery-section .col-4:nth-child(28) img{
  height:475px;
}
section.gallery-video-section .col-4, section.gallery-video-section .col-6{
  padding:0;
}
section.gallery-video-section .row{
 gap:25px 0; 
  justify-content:space-between;
}
section.gallery-video-section .col-4{
 width: 32%;
}
section.gallery-video-section .col-6{
 width: 49%;
}
section.gallery-video-section .col-4 img{
 width:100%;
  height:225px;
  object-fit:cover;
}
section.gallery-video-section .col-6 img{
 width:100%;
  height:345px;
  object-fit:cover;
}
section.gallery-video-section .vid-icon {
    position: relative;
    overflow: hidden;
}
section.gallery-video-section .vid-icon span.video-gallery-polygon {
    z-index: 2;
    padding-left: 5px;
    display: inline-flex;
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: transparent;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    padding: 7px 6px 7px 8px;
    line-height: 0;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}
section.gallery-video-section .vid-icon span.video-gallery-polygon:hover{
  background: #fff;
    border-color: #fff;
    color: var(--secondary-color);
}