﻿/* =========================================================
   GÖVDESAN PUBLIC SITE
   ANA VİTRİN / HERO SLIDER
   ========================================================= */

.gv-showcase-static,
.gv-showcase-slider {
    position: relative;
    min-height: 590px;
    overflow: hidden;
    background: #182d3e;
}

.gv-showcase-slider .gv-showcase-slide {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition: opacity .65s ease;
}

.gv-showcase-slider .gv-showcase-slide.gv-showcase-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.gv-showcase-static .gv-showcase-slide {
    position: relative;
}

.gv-showcase-arrow {
    position: absolute;
    top: 50%;
    z-index: 10;
    width: 44px;
    height: 44px;
    margin-top: -22px;
    padding: 0;
    border: 1px solid rgba(255,255,255,.32);
    border-radius: 50%;
    background: rgba(12,27,39,.48);
    color: #ffffff;
    font-size: 16px;
    line-height: 42px;
    text-align: center;
    cursor: pointer;
}

.gv-showcase-arrow:hover,
.gv-showcase-arrow:focus {
    background: rgba(12,27,39,.76);
    color: #ffffff;
    outline: none;
}

.gv-showcase-prev {
    left: 24px;
}

.gv-showcase-next {
    right: 24px;
}

.gv-showcase-dots {
    position: absolute;
    right: 0;
    bottom: 22px;
    left: 0;
    z-index: 10;
    text-align: center;
}

.gv-showcase-dot {
    display: inline-block;
    width: 9px;
    height: 9px;
    margin: 0 4px;
    padding: 0;
    border: 1px solid rgba(255,255,255,.78);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}

.gv-showcase-dot.gv-showcase-dot-active {
    background: #ffffff;
}

@media (max-width: 991px) {
    .gv-showcase-static,
    .gv-showcase-slider {
        min-height: 520px;
    }
}

@media (max-width: 767px) {

    .gv-showcase-static,
    .gv-showcase-slider {
        min-height: 490px;
    }

    .gv-showcase-arrow {
        width: 36px;
        height: 36px;
        margin-top: -18px;
        line-height: 34px;
    }

    .gv-showcase-prev {
        left: 10px;
    }

    .gv-showcase-next {
        right: 10px;
    }

    .gv-showcase-dots {
        bottom: 14px;
    }
}
