﻿#slider {
    position: relative;
    overflow: hidden;
    margin-top: 115px;
}

    #slider:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 0 100px 100vw;
        border-color: transparent transparent #fff transparent;
        border-style: solid;
        z-index: 1000;
        -webkit-transform: rotate(360deg);
    }

@-moz-document url-prefix() {
    #slider:after {
        border-style: inset;
    }
}

#slider.master:after {
    display: none;
}

#slider.master .triangle {
    width: 100%;
    height: auto;
    bottom: 0;
    left: 0;
}

#slider .item {
    position: relative;
}

    #slider .item .text {
        width: 100%;
        top: 30%;
        z-index: 1000;
    }

        #slider .item .text h1 {
            font-weight: 600;
            font-size: 42px;
            letter-spacing: -3px;
            color: #fff;
            text-shadow: 1px 1px 1px rgba(0,0,0,.3);
        }

        #slider .item .text p {
            font-weight: 400;
            font-size: 24px;
            letter-spacing: -1px;
        }

#slider .owl-controls {
    position: absolute;
    right: 30px;
    bottom: 130px;
    z-index: 10000;
}

    #slider .owl-controls .owl-prev,
    #slider .owl-controls .owl-next {
        width: 50px;
        height: 75px;
        display: inline-block;
        background: url("/images/slider-buttons.png") 0 0 no-repeat;
        text-indent: -999em;
    }

    #slider .owl-controls .owl-next {
        background-position: -50px 0;
        margin-left: 15px;
    }

#slider .pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("/images/slider-pattern.png");
    left: 0;
    top: 0;
}


.e-posta {
    text-align: center;
    position: absolute;
    top: 0;
    z-index: 98;
    width: 230px;
    margin: auto;
    right: 0;
    background: #e50b24;
}

    .e-posta p {
        text-align: center;
        background: #000;
        margin: 0;
        color: #FFF;
        padding: 10px;
    }

    .e-posta a {
        background: #e50b24 url(/images/icon-4.png) no-repeat 0 center;
        text-align: left;
        color: #FFF;
        font-size: 16px;
        margin: auto;
        padding: 10px 0 10px 40px;
        display: block;
        position: relative;
        z-index: 9999;
    }

    @media screen and (-webkit-min-device-pixel-ratio:0) {.e-posta a{padding: 11px 0 10px 40px;}}

        .e-posta a span {
            background: #e50b24 url(/images/arrow-4.png) no-repeat;
            float: right;
            display: inline-block;
            width: 16px;
            height: 29px;
            margin-right: 10px;
        }

span.arrow-mail {
    background: #e50b24 url(/images/arrow-5.png) no-repeat;
    width: 20px;
    height: 11px;
    padding: 10px;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 99999;
    cursor: pointer;
}

.email {
    border-top: 1px solid #f87c8a;
}

    .email a span {
        display: none;
    }

.add {
    padding: 5%;
    overflow: hidden;
    position: relative;
}

    .add input#s, .add input.s {
        background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
        border: 1px solid rgba(255,255,255,.5);
        color: #fff;
        font-size: 12px;
        margin: 0 0 12px;
        padding: 5px;
        width: 100%;
    }

        .add input.s:focus {
            border-color: rgba(255,255,255,1);
        }

    .add ::-webkit-input-placeholder {
        color: #fff;
    }

    .add :-moz-placeholder {
        color: #fff;
        opacity: 1;
    }

    .add ::-moz-placeholder {
        color: #fff;
        opacity: 1;
    }

    .add :-ms-input-placeholder {
        color: #fff;
    }

.e-posta-page {
    background: #F2F3F4;
    padding: 10px;
}

    .e-posta-page h5 {
        margin: 30px;
    }

    .e-posta-page .add input#s, .e-posta-page .add input.s {
        background: #FFF !important;
        padding: 5px !important;
        color: #000 !important;
    }

    .e-posta-page .add input#sbutton, .e-posta-page .add input.sbutton {
        background: #da0b1f !important;
        color: #FFF !important;
    }

.e-posta:before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 43px 23px;
    border-color: transparent transparent #e50b24 transparent;
    position: absolute;
    left: -23px;
    z-index: 100;
}

#newProducts {
    background: url("/images/icon-6.png") 0 center no-repeat #000;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 10;
    color: #fff;
    height: 43px;
    line-height: 43px;
    padding: 0 30px 10px 40px;
    font-size: 16px;
    -webkit-animation: mymove 5s forwards;
    -moz-animation: mymove 5s forwards;
    animation: mymove 5s forwards;
    transition: padding-right .2s ease;
    -webkit-transition: padding-right .2s ease;
    -moz-transition: padding-right .2s ease;
    -o-transition: padding-right .2s ease;
}

    #newProducts:before {
        content: '';
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 0 43px 23px;
        border-color: transparent transparent #000 transparent;
        position: absolute;
        left: -23px;
        z-index: 100;
    }

    #newProducts:hover {
        padding-right: 50px;
    }

@-webkit-keyframes mymove {
    0% {
        right: 0;
    }

    100% {
        right: 231px;
    }
}

@keyframes mymove {
    0% {
        right: 0;
    }

    100% {
        right: 231px;
    }
}

@media (max-width: 767px) {
    #slider {
        margin: 0;
    }

        #slider:after {
            display: none;
        }

        .e-posta,
        #newProducts,
        #slider .text,
        #slider .pattern,
        #slider .owl-controls {
            display: none;
        }
}

@media (min-width: 768px) and (max-width: 991px) {
    #slider {
        margin: 0;
    }

        #slider:after {
            display: none;
        }

        #slider .owl-controls {
            bottom: 30px;
        }

        #slider .item .text h1 {
            font-size: 30px;
        }

        #slider .pattern {
            display: none !important;
        }
}

@media (min-width: 992px) and (max-width: 1199px) {
}

@media (min-width: 1200px) {
}
