﻿/*body {
            background: url('/img/transp_bg.png');
        }*/

/*h2 {
            font-weight: 300;
            font-size: 3vw;
            padding: 20px 0;
        }

        p {
            font-size: 1.2vw;
            line-height: 1.7em;
        }*/

.offerSlider {
    position: relative;
    width: 100%;
    overflow: hidden;
    transition: all .3s;
    /*perspective: 900px;*/
    transform-style: preserve-3d;
    border-color: rgb(148, 150, 153);
    border-width: 2px;
    border-style: solid;
    border-radius: 5px;
}

    .offerSlider .previous, .offerSlider .next {
        font-family: "FontAwesome";
        font-size: 20px;
        position: absolute;
        top: 50%;
        color: white;
        padding: 20px;
        text-decoration: none;
        left: -100px;
        margin-top: -34px;
        transition: all .3s;
        opacity: 0;
        z-index: 10000;
    }

    .offerSlider .next {
        right: -100px;
        content: "\f054";
        left: auto;
    }

    .offerSlider:hover .previous, .offerSlider:hover .next {
        opacity: 1;
    }

    .offerSlider:hover .previous {
        left: 0;
    }

    .offerSlider:hover .next {
        right: 0;
    }

    .offerSlider .slides {
        height: 100%;
    }

.offslide {
    padding: 10%;
    /*width: 100vw;*/
    text-align: center;
    position: absolute;
    transform: scale(0.5,0.5);
    opacity: 0;
    transition: all .3s;
    width: 100%;
}

    .offslide.blue {
        background: #1E73BE;
        color: white;
    }

    .offslide.white {
        background: #ccc;
        color: #444444;
    }

    .offslide.red {
        background: #BF525A;
        color: white;
    }

    .offslide.active {
        z-index: 10;
        left: 0;
        opacity: 1;
        transform: scale(1,1);
    }

    .offslide.inactiveLeft {
        left: -100vw;
        z-index: 11;
    }

    .offslide.inactiveRight {
        left: 100vw;
        z-index: 11;
    }

    .offslide:after {
        content: attr(data-icon);
        font-family: "FontAwesome";
        font-size: 15vw;
        position: absolute;
        bottom: -8vw;
        left: 0;
        opacity: 0.3;
    }

    .offslide a {
        color: inherit;
        border: 2px solid;
        padding: 10px;
        font-size: 1.3vw;
        margin-top: 20px;
        display: inline-block;
        transition: all .3s;
        text-transform: uppercase;
        letter-spacing: 1px;
        position: relative;
    }

        .offslide a:hover {
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid transparent;
            text-decoration: none;
            letter-spacing: 2px;
            padding-right: 30px;
        }

        .offslide a:after {
            content: " \f105";
            font-family: "FontAwesome";
            position: absolute;
            margin-left: -10px;
            transition: all .3s;
            opacity: 0;
        }

        .offslide a:hover:after {
            margin-left: 10px;
            opacity: 1;
        }

.offerSlider .bullets {
    text-align: center;
    position: absolute;
    bottom: 10px;
    width: 100%;
}

    .offerSlider .bullets .bullet {
        position: relative;
        display: inline-block;
        background: rgba(255,255,255,.8);
        border-radius: 50%;
        width: 8px;
        height: 8px;
        z-index: 14;
        margin: 0 5px;
        cursor: pointer;
        border: 2px solid transparent;
        transition: all .3s;
    }

        .offerSlider .bullets .bullet.active {
            background: rgba(255,255,255,.4);
        }

        .offerSlider .bullets .bullet:hover {
            border: 2px solid rgba(255,255,255,.8);
            background: transparent;
        }
