.sectionGallery
{
    border-top: 1px solid #cecece;
    background-color: var(--hover-color);
}

.sectionGallery .owl-carousel .slide-gallery > a
{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    padding-top: 75%;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    border: 3px solid var(--main-color);
}

.sectionGallery .owl-carousel .owl-stage-outer
{
    padding: 5px 0;
}

.sectionGallery .headingStyle .headingText
{
    color: #fff;
}

.sectionGallery .owl-carousel .owl-item
{
    background: #fff;
    padding: 10px;
}

.sectionGallery .owl-carousel .owl-item .slide-gallery
{
    border: 1px dashed var(--text-title);
    padding: 5px;
}

.sectionGallery .owl-carousel .owl-nav
{
    position: absolute;
    z-index: 2;
    width: 100%;
    top: 51%;
    transform: translateY(-50%);
}

.sectionGallery .owl-carousel .owl-nav button
{
    outline: none !important;
    transition: 0.3s all linear;
    box-shadow: none !important;
    color: #fff !important;
    font-size: 1.2rem !important;
    cursor: pointer !important;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 10;
    background: var(--main-color) !important;
    opacity: 0;
    height: 36px;
    line-height: 36px !important;
    width: 36px;
    border-radius: 100%;
}

.sectionGallery .owl-carousel .owl-nav button.owl-prev
{
    left: -85px;
}

.sectionGallery .owl-carousel .owl-nav button.owl-prev:hover
{
    opacity: 1;
}

.sectionGallery .owl-carousel .owl-nav button.owl-next
{
    right: -85px;
}

.sectionGallery .owl-carousel .owl-nav button.owl-next:hover
{
    opacity: 1;
}

.sectionGallery .owl-carousel .owl-dots
{
    display: flex;
    align-items: center;
    justify-content: center;
}

.sectionGallery .owl-carousel .owl-dots button
{
    position: relative;
    width: 24px;
    height: 24px;
    background-color: #fff;
    border: 1px solid #d1d1d1;
    border-radius: 100%;
    margin: 0 0.5rem;
    padding: 0;
    font-size: 0;
    overflow: hidden;
    color: transparent;
    cursor: pointer;
}

.sectionGallery .owl-carousel .owl-dots button span
{
    position: absolute;
    width: 10px;
    height: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #252525;
    padding: 0;
    margin: 0;
    box-shadow: none;
    outline: none;
    border: 0;
    font-size: 0;
    overflow: hidden;
    cursor: pointer;
    border-radius: 100%;
    transition: 0.2s all ease;
}

.sectionGallery .owl-carousel .owl-dots button.owl-active span
{
    background: var(--main-color);
}

.sectionGallery .owl-carousel:hover .owl-nav button
{
    opacity: 0.6;
}

.sectionGallery .owl-carousel:hover .owl-nav button.owl-prev
{
    left: -45px;
}

.sectionGallery .owl-carousel:hover .owl-nav button.owl-next
{
    right: -45px;
}

@media screen and (max-width: 991px)
{
    .sectionGallery .owl-carousel:hover .owl-nav button
    {
        opacity: 0.6;
    }

    .sectionGallery .owl-carousel:hover .owl-nav button.owl-prev
    {
        left: 15px;
    }

    .sectionGallery .owl-carousel:hover .owl-nav button.owl-next
    {
        right: 15px;
    }
}
