section#gallery-section h1{
    position: relative;
    padding-left: 20px;
    font-family:'Be Vietnam Pro', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 28px;
}
section#gallery-section h1 span{
    display: block;
    color: #a09e9e;
    font-size: 18px;
    font-family: 'PT Serif', sans-serif;
    font-weight: 400;
}
section#gallery-section h1::before{
    content: '';
    position: absolute;
    height: 100%;
    width: 5px;
    background: #f5d700;
    transition: 0.3s;
    top: 0;
    left: 0;
    z-index: -1;
}
section#gallery-section .gallery-btn{
    color: #a09e9e;
    font-family: 'PT Serif', sans-serif;
    text-transform: uppercase;
    transition: 0.3s;
    margin-top: 20px;
    margin-bottom: 10px;
    display: inline-block;
}
section#gallery-section .gallery-btn .far{
    color: #2c297b;
    padding-left: 10px;
}
section#gallery-section .gallery-btn:hover, section#gallery-section .gallery-btn:focus{
    color: #2c297b;
    text-decoration: none;
}
section#gallery-section .gallery-pic{
    margin-bottom: 20px;
}
section#gallery-section .gallery-pic .background-image{
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
section#gallery-section .gallery-pic .gallery-caption{
    position: absolute;
    background-color: rgba(51, 51, 51, 0.6);
    color: #fff;
    width: 100%;
    bottom: 0;
    padding: 30px;
    padding-left: 60px;
}
section#gallery-section .gallery-pic .gallery-caption::before{
    content: '';
    position: absolute;
    height: 80%;
    width: 5px;
    background: #f5d700;
    transition: 0.3s;
    top: 50%;
    transform: translateY(-50%);
    left: 30px;
    z-index: 0;
}
section#gallery-section .gallery-pic .gallery-caption .gallery-title{
    font-weight: 600;
    font-size: 24px;
}
section#gallery-section .gallery-pic .gallery-caption .gallery-content{
    font-size: 18px;
    font-family: 'PT Serif', sans-serif;
}
section#gallery-section .small-pic .background-image{
    height: 150px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5;
    transition: 0.3s;
}
section#gallery-section .slick-slide.active .small-pic .background-image, section#gallery-section .small-pic:hover .background-image{
    opacity: 1;
    cursor: pointer;
}
section#gallery-section .small-pic{
    padding: 0px 10px;
}



@media(min-width: 768px){
    section#gallery-section h1{
    font-size: 34px;
    }
    section#gallery-section .gallery-pic .background-image{
    height: 400px;
    }    
    section#gallery-section .gallery-pic .gallery-caption .gallery-title{
    font-size: 26px;
    }     
}
@media(min-width: 1024px){
    section#gallery-section h1{
    font-size: 38px;
    }
    section#gallery-section .gallery-btn{
    float: right;
    }   
    section#gallery-section .gallery-pic .gallery-caption .gallery-title{
    font-size: 28px;
    } 
    section#gallery-section .gallery-pic .background-image{
    height: 600px;
    }
}
@media(min-width: 1280px){
    section#gallery-section h1{
    font-size: 42px;
    }
    section#gallery-section .gallery-pic .gallery-caption .gallery-title{
    font-size: 32px;
    }
}
section#gallery-section .slider-buttons{
    text-align: center;
}
section#gallery-section .prev-pic, section#gallery-section .next-pic{
    position: relative;
    background: transparent;
    padding: 10px;
    border-radius: 50%;
    background: #f5d700;
    border: 0;
    padding: 10px;
    border-radius: 50%;
    border: 5px solid #2c297b;
    color: #2c297b;
    outline: none;
    transition: 0.3s;
    width: 40px;
    height: 40px;
}
section#gallery-section .prev-pic:before, section#gallery-section .next-pic:before{
    font-family: "Font Awesome 5 Pro";
    font-size: 18px;
    line-height: 1;
}
section#gallery-section .prev-pic:hover, section#gallery-section .next-pic:hover{
    background: #2c297b;
    color: #f5d700;
}
section#gallery-section .next-pic{
    right: 0;
}
section#gallery-section .next-pic:before{
    content: '\f061';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
section#gallery-section .prev-pic{
    left: 0;
}
section#gallery-section .prev-pic:before{
    content: '\f060';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

