@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --colorone: #ffbf00;
    --colortwo: #2c2e31;
    --colorthree: #fbfbfb;
    --colorwhite: #fff;
    --colorred: #e1323d;
}
.bx-border{
    padding: 0 5px;
}
.bx-border .bx-borderin{
    border: 2px solid #ffda99;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.bx-border .bx-borderin {
    transition: box-shadow 0.4s ease, border-color 0.4s ease, all 0.4s ease;
}

.small-slider__slide img {
    transform-origin: center center;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Daha modern bir geçiş eğrisi */
}

.small-slider__content:before {
    transition: opacity 0.5s ease;
}

.bx-border .bx-borderin:hover {
    border-color: #ffda99;
    box-shadow: rgba(250, 218, 153,, 0.5) 0px 20px 30px -10px;
}

.bx-border .bx-borderin:hover img {
    transform: scale(1.12); 
}

.bx-border .bx-borderin:hover .small-slider__content:before {
    opacity: 0.7; /* Siyahlık koyulaşır */
}
.bx-border .bx-borderin:hover {
     transform: translateY(-7px); /* Kutuyu 7px yukarı iter, küçültmez */
     border-color: #ffda99;
     box-shadow: rgba(250, 218, 153, 0.5) 0px 25px 35px -10px; /* Gölge uzaklaşır */
}
.yanvideo {
    position: relative;
    width: 100%;
    max-width: 800px; /* isteğe göre genişlik sınırı */
    margin: 15px auto;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
	cursor:pointer;
}

    /* 16:9 oranı için responsive kapsayıcı */
    .yanvideo::before {
        content: "";
        display: block;
        padding-top: 56.25%; /* 16:9 oranı */
    }

    .yanvideo video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover; /* videonun alanı düzgün doldurmasını sağlar */
        border-radius: 16px;
    }

/* Küçük ekranlar için uyum */
@media (max-width: 600px) {
    .yanvideo {
        border-radius: 10px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    }
}

.onay-buton label,
.address-widget label {
    font-size: 12px !important;
    font-weight: 400 !important;
    display: contents !important;
}

.footer__braind-logo {
    text-align: right;
}
/* Header Açılır Menü */
.side-menu-wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #fff;
    z-index: 999999;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

    .side-menu-wrapper.show-menu {
        display: block;
        -webkit-animation: slide-bottom-to-top 1s forwards;
        animation: slide-bottom-to-top 1s forwards
    }

    .side-menu-wrapper.hide-menu {
        display: block;
        -webkit-animation: slide-top-to-bottom 1s forwards;
        animation: slide-top-to-bottom 1s forwards
    }

    .side-menu-wrapper .navigation-link {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        line-height: 1;
        color: #fff;
        padding: 0
    }

        .side-menu-wrapper .navigation-link:focus,
        .side-menu-wrapper .navigation-link:hover {
            text-decoration: none;
            background-color: transparent;
        }

        .side-menu-wrapper .navigation-link.active {
            color: #406ab3
        }

            .side-menu-wrapper .navigation-link.active span:after {
                -webkit-transform: scaleX(1);
                -ms-transform: scaleX(1);
                transform: scaleX(1)
            }

        .side-menu-wrapper .navigation-link a .dot {
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -webkit-flex-direction: column;
            -ms-flex-direction: column;
            flex-direction: column;
            -webkit-transition: all .5s;
            -o-transition: all .5s;
            transition: all .5s;
            position: relative;
        }

        .side-menu-wrapper .navigation-link:hover span.dot:after {
            opacity: 1;
        }

        .side-menu-wrapper .navigation-link:hover span.dot:after {
            -webkit-transform: scaleX(1);
            -ms-transform: scaleX(1);
            transform: scaleX(1);
        }

        .side-menu-wrapper .navigation-link span.dot:after {
            position: relative;
            display: block;
            bottom: -5px;
            content: "";
            margin: 0 auto;
            height: 4px;
            width: 4px;
            -webkit-border-radius: 50%;
            border-radius: 50%;
            background-color: #406ab3;
            -webkit-transition: opacity .7s;
            -o-transition: opacity .7s;
            transition: opacity .7s;
            -webkit-transform-origin: 0 50%;
            -ms-transform-origin: 0 50%;
            transform-origin: 0 50%;
            -webkit-transform: scaleX(0);
            -ms-transform: scaleX(0);
            transform: scaleX(0);
        }

@media screen and (max-width:1024px) {
    .side-menu-wrapper .navigation-link {
        padding-left: 0;
        padding-right: 15px;
        line-height: 1.33
    }

        .side-menu-wrapper .navigation-link.small {
            font-size: 18px;
            line-height: 2.2
        }

        .side-menu-wrapper .navigation-link.active, .side-menu-wrapper .navigation-link:hover {
            color: inherit
        }

            .side-menu-wrapper .navigation-link.active span:after {
                -webkit-transform: scaleX(0);
                -ms-transform: scaleX(0);
                transform: scaleX(0)
            }
}

.side-menu-wrapper .two-columns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    height: 100%
}

    .side-menu-wrapper .two-columns .col-1 {
        width: 75%;
        z-index: 3;
        background-color: #17191E;
    }

        .side-menu-wrapper .two-columns .col-1 .col-1-container {
            min-height: 120px
        }

        .side-menu-wrapper .two-columns .col-1 ._escape_up {
            -webkit-animation-duration: 1s;
            animation-duration: 1s;
            -webkit-animation-delay: 1.4s;
            animation-delay: 1.4s;
            -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out
        }

        .side-menu-wrapper .two-columns .col-1 ._scale-up {
            -webkit-animation-duration: 1s;
            animation-duration: 1s;
            -webkit-animation-delay: 1.5s;
            animation-delay: 1.5s;
            -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out
        }

    .side-menu-wrapper .two-columns .col-2 {
        background-color: #17191E;
        width: 25%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        padding-left: 100px;
        padding-right: 100px
    }

        .side-menu-wrapper .two-columns .col-2 ._fade-in {
            -webkit-animation-delay: 1.1s;
            animation-delay: 1.1s;
            -webkit-animation-duration: 1s;
            animation-duration: 1s
        }

    .side-menu-wrapper .two-columns .col-1, .side-menu-wrapper .two-columns .col-2 {
        position: relative
    }

        .side-menu-wrapper .two-columns .col-2 > .head-nav-wrapper {
            padding: 60px 0;
        }

            .side-menu-wrapper .two-columns .col-2 > .head-nav-wrapper > .nav {
                float: right;
            }

    .side-menu-wrapper .two-columns .col-1-container {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        height: 100%;
        position: relative
    }

    .side-menu-wrapper .two-columns .video-btn {
        color: #fff;
        opacity: 0;
        z-index: -1;
        -webkit-transition: all 1s;
        -o-transition: all 1s;
        transition: all 1s;
        z-index: 1
    }

        .side-menu-wrapper .two-columns .video-btn .btn-wrapper {
            opacity: 0
        }

    .side-menu-wrapper .two-columns .video-wrapper:hover .video-btn .btn-wrapper {
        z-index: 5;
        opacity: 1
    }

    .side-menu-wrapper .two-columns .video-wrapper {
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        position: relative
    }

        .side-menu-wrapper .two-columns .video-wrapper:before {
            content: "";
            position: absolute;
            height: 100%;
            width: 100%;
            background: #fff;
            z-index: 1
        }

    .side-menu-wrapper .two-columns .btn-lg {
        -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
        transform: translateY(100%);
        -webkit-animation: slide-bottom-to-top .7s forwards;
        animation: slide-bottom-to-top .7s forwards;
        -webkit-animation-delay: 1s;
        animation-delay: 1s;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        z-index: 5
    }

    .side-menu-wrapper .two-columns .video-wrapper:before {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation: slide-bottom-to-top-negative .7s forwards;
        animation: slide-bottom-to-top-negative .7s forwards;
        -webkit-animation-delay: 1s;
        animation-delay: 1s;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    .side-menu-wrapper .two-columns .video {
        position: absolute;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #fff;
        height: 100%;
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        background-position: 50%;
        background-repeat: no-repeat;
        -webkit-background-size: cover;
        background-size: cover;
    }

    .side-menu-wrapper .two-columns .btn-lg {
        position: absolute;
        bottom: 0;
        border: none;
        width: 100%;
        color: #fff;
        background: -webkit-gradient(linear,left top,left bottom,color-stop(100%,#406ab3),color-stop(515.16%,#406ab3));
        background: -webkit-linear-gradient(top,#406ab3 100%,#406ab3 515.16%);
        background: -o-linear-gradient(top,#406ab3 100%,#406ab3 515.16%);
        background: linear-gradient(180deg,#406ab3 100%,#406ab3 515.16%);
        overflow: hidden;
        border-radius: 0;
    }

    .side-menu-wrapper .two-columns ._anim-scale:hover ._anim-outer {
        color: #000
    }

    .side-menu-wrapper .two-columns ._anim-scale:hover ._anim-start .icon .svg-icon {
        fill: #000
    }

    .side-menu-wrapper .two-columns .nav-wrapper {
        -webkit-box-orient: vertical;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        padding: 20px 0 60px;
        z-index: 2;
        color: #000
    }

    .side-menu-wrapper .two-columns .nav-wrapper {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-direction: normal;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-evenly;
        -ms-flex-pack: justify;
        justify-content: space-evenly
    }

        .side-menu-wrapper .two-columns .nav-wrapper .head-nav-wrapper {
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-direction: normal;
            -webkit-box-pack: justify;
            -webkit-justify-content: space-between;
            -ms-flex-pack: justify;
            justify-content: space-between
        }

        .side-menu-wrapper .two-columns .nav-wrapper .head-nav-wrapper {
            -webkit-flex-shrink: 0;
            -ms-flex-negative: 0;
            flex-shrink: 0;
            -webkit-box-orient: horizontal;
            -webkit-flex-direction: row;
            -ms-flex-direction: row;
            flex-direction: row;
            width: 100%;
            margin: 25px auto;
        }

            .side-menu-wrapper .two-columns .nav-wrapper .head-nav-wrapper .item:not(:last-of-type) {
                margin-right: 15px
            }

.socials_mobile {
    -webkit-animation-name: fadeInAnim;
    animation-name: fadeInAnim;
    -webkit-animation-duration: 0.6s;
    animation-duration: 0.6s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-delay: 0.5s;
    -moz-animation-delay: 0.5s;
    -o-animation-delay: 0.5s;
    animation-delay: 0.5s;
    position: absolute;
    z-index: 1;
    bottom: 2rem;
    left: 0;
    display: block;
    width: 100%;
    padding-top: 2.6em;
}

    .socials_mobile:before {
        position: absolute;
        z-index: 1;
        top: 0;
        left: 0;
        display: block;
        content: '';
        width: 100%;
        height: 1px;
        background-color: #fff;
    }

@media screen and (max-width:1024px) {
    .side-menu-wrapper .two-columns .nav-wrapper .head-nav-wrapper .item:not(:last-of-type) {
        margin-right: 15px
    }
}

.side-menu-wrapper .two-columns .nav-wrapper .main-nav-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

    .side-menu-wrapper .two-columns .nav-wrapper .main-nav-wrapper .item {
        margin-bottom: 8px
    }

    .side-menu-wrapper .two-columns .nav-wrapper .main-nav-wrapper li.kirmizi {
        display: none;
    }

    .side-menu-wrapper .two-columns .nav-wrapper .main-nav-wrapper li {
        -webkit-box-orient: horizontal;
        /*        -webkit-box-direction: reverse;
        -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;*/
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center
    }

        .side-menu-wrapper .two-columns .nav-wrapper .main-nav-wrapper li:hover {
            text-decoration: none;
            background-color: transparent;
        }

            .side-menu-wrapper .two-columns .nav-wrapper .main-nav-wrapper li:hover a {
                padding-left: 0.3em;
                -webkit-transition: padding-left .3s ease;
                -o-transition: padding-left .3s ease;
                transition: padding-left .3s ease;
            }

        .side-menu-wrapper .two-columns .nav-wrapper .main-nav-wrapper li a {
            -webkit-transition-delay: .15s;
            -o-transition-delay: .15s;
            transition-delay: .15s;
            margin-left: 10px;
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -webkit-flex-direction: column;
            -ms-flex-direction: column;
            flex-direction: column;
            -webkit-transition: all .5s;
            -o-transition: all .5s;
            transition: all .5s;
            color: #fff;
            font-size: 14px;
        }

            .side-menu-wrapper .two-columns .nav-wrapper .main-nav-wrapper li a:focus,
            .side-menu-wrapper .two-columns .nav-wrapper .main-nav-wrapper li a:hover {
                text-decoration: none;
                background-color: #fff;
                color: #000 !important;
            }

        .side-menu-wrapper .two-columns .nav-wrapper .main-nav-wrapper li, .side-menu-wrapper .two-columns .nav-wrapper .main-nav-wrapper li:after {
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex
        }

    .side-menu-wrapper .two-columns .nav-wrapper .main-nav-wrapper .item ._escape_up {
        -webkit-animation-duration: .5s;
        animation-duration: .5s;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    .side-menu-wrapper .two-columns .nav-wrapper .main-nav-wrapper .item:first-child ._escape_up {
        -webkit-animation-delay: 1s;
        animation-delay: 1s
    }

    .side-menu-wrapper .two-columns .nav-wrapper .main-nav-wrapper .item:nth-child(2) ._escape_up {
        -webkit-animation-delay: 1.04s;
        animation-delay: 1.04s
    }

    .side-menu-wrapper .two-columns .nav-wrapper .main-nav-wrapper .item:nth-child(3) ._escape_up {
        -webkit-animation-delay: 1.08s;
        animation-delay: 1.08s
    }

    .side-menu-wrapper .two-columns .nav-wrapper .main-nav-wrapper .item:nth-child(4) ._escape_up {
        -webkit-animation-delay: 1.12s;
        animation-delay: 1.12s
    }

    .side-menu-wrapper .two-columns .nav-wrapper .main-nav-wrapper .item:nth-child(5) ._escape_up {
        -webkit-animation-delay: 1.16s;
        animation-delay: 1.16s
    }

    .side-menu-wrapper .two-columns .nav-wrapper .main-nav-wrapper .item:nth-child(6) ._escape_up {
        -webkit-animation-delay: 1.2s;
        animation-delay: 1.2s
    }

    .side-menu-wrapper .two-columns .nav-wrapper .main-nav-wrapper .item:nth-child(7) ._escape_up {
        -webkit-animation-delay: 1.24s;
        animation-delay: 1.24s
    }

    .side-menu-wrapper .two-columns .nav-wrapper .main-nav-wrapper .item:nth-child(8) ._escape_up {
        -webkit-animation-delay: 1.16s;
        animation-delay: 1.28s
    }

    .side-menu-wrapper .two-columns .nav-wrapper .main-nav-wrapper .item:nth-child(9) ._escape_up {
        -webkit-animation-delay: 1.2s;
        animation-delay: 1.32s
    }

    .side-menu-wrapper .two-columns .nav-wrapper .main-nav-wrapper .item:nth-child(10) ._escape_up {
        -webkit-animation-delay: 1.24s;
        animation-delay: 1.36s
    }

.social {
    text-transform: uppercase;
}

.side-menu-wrapper .two-columns .nav-wrapper .footer-nav-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.side-menu-wrapper .two-columns .nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    color: inherit;
    font-size: 14px;
    line-height: 1.1;
    letter-spacing: -.02em;
}

    .side-menu-wrapper .two-columns .nav.social {
        margin-right: 24px
    }

        .side-menu-wrapper .two-columns .nav.social a {
            display: inline-block;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 1px solid #fff;
            text-align: center;
            line-height: 32px;
            font-size: 18px;
            margin-right: 8px;
            transition: 0.5s;
            color: #fff;
        }

    .side-menu-wrapper .two-columns .nav.lang {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row
    }

        .side-menu-wrapper .two-columns .nav.lang .item {
            -webkit-box-align: end;
            -webkit-align-items: flex-end;
            -ms-flex-align: end;
            align-items: flex-end;
            padding-bottom: 25px
        }

    .side-menu-wrapper .two-columns .nav.column {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .side-menu-wrapper .two-columns .nav.two-row {
        display: block;
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2
    }

        .side-menu-wrapper .two-columns .nav.two-row .item {
            padding-bottom: 20px;
            margin-right: 50px
        }

    .side-menu-wrapper .two-columns .nav.big {
        font-weight: 600;
        font-size: 24px;
        line-height: normal;
    }

    .side-menu-wrapper .two-columns .nav .item {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        vertical-align: middle;
        cursor: pointer;
        justify-content: flex-start;
    }

    .side-menu-wrapper .two-columns .nav.big .item a,
    .side-menu-wrapper .two-columns .nav.big .item a:after {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        font-size: 14px;
        color: #fff;
    }

    .side-menu-wrapper .two-columns .nav.big .item:hover a:after {
        color: #406ab3;
        -webkit-transition-delay: .15s;
        -o-transition-delay: .15s;
        transition-delay: .15s;
        opacity: 1;
    }

    .side-menu-wrapper .two-columns .nav.big .item a:after {
        content: "►";
        height: 30px;
        width: 10px;
        -webkit-border-radius: 50%;
        border-radius: 50%;
        /*background-color: #406ab3;*/
        opacity: 0;
        -webkit-transition: opacity .3s ease;
        -o-transition: opacity .3s ease;
        transition: opacity .3s ease;
        -webkit-transition-delay: .3s;
        -o-transition-delay: .3s;
        transition-delay: .3s;
    }

    .side-menu-wrapper .two-columns .nav.big .item a:hover:after {
        color: #406ab3;
        -webkit-transition-delay: .15s;
        -o-transition-delay: .15s;
        transition-delay: .15s;
        opacity: 1;
    }

    .side-menu-wrapper .two-columns .nav .item .log-in {
        padding: 27px 36px;
        background: #eff1f4;
        -webkit-border-radius: 40px;
        border-radius: 40px
    }

        .side-menu-wrapper .two-columns .nav .item .log-in:hover {
            background: #dee1e6
        }

.side-menu-wrapper .item-store .dot {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row
}

.side-menu-wrapper .item-store .icon-new {
    position: relative;
    top: .2em;
    margin-left: 3px
}

@media screen and (max-width:1024px) {
    .side-menu-wrapper.unsubscribe-menu-wrapper .nav-wrapper .head-nav-wrapper .item:not(:last-of-type) {
        margin-right: 10px
    }
}

@media screen and (max-width:1800px) {
    .side-menu-wrapper .two-columns .col-2 {
        padding-left: 30px;
        padding-right: 30px
    }

    .side-menu-wrapper .two-columns .nav-wrapper {
        padding-bottom: 150px;
        margin-left: 10%;
        position: relative;
        height: 100%;
    }

    .side-menu-wrapper .two-columns .nav .item .log-in {
        padding: 0;
        -webkit-border-radius: 40px;
        border-radius: 40px;
        width: 32px;
        height: 32px;
    }

        .side-menu-wrapper .two-columns .nav .item .log-in a {
            width: 32px;
            height: 32px;
            text-align: center;
            line-height: 32px;
            font-size: 12px;
        }
}

@media screen and (max-width:1440px) {
    .side-menu-wrapper .two-columns .col-2 {
        padding-left: 30px;
        padding-right: 30px
    }

    .side-menu-wrapper .two-columns .head-main {
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1
    }

        .side-menu-wrapper .two-columns .head-main .item:first-child {
            -webkit-box-flex: 2;
            -webkit-flex: 2 0 0;
            -ms-flex: 2 0 0px;
            flex: 2 0 0
        }
}

@media screen and (max-width:1024px) {
    .side-menu-wrapper .two-columns .head-main, .side-menu-wrapper .two-columns .head-main .item:first-child {
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1
    }

    .side-menu-wrapper .two-columns .nav.two-row .item {
        margin-right: 15px
    }

    .side-menu-wrapper .item-store .icon-new {
        width: 55px;
        height: 24px
    }
}

@media screen and (max-width:900px) {
    /*    .side-menu-wrapper .two-columns {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }*/

    .side-menu-wrapper .two-columns .col-1 {
        width: 75%
    }

    .side-menu-wrapper .two-columns .col-2 {
        width: 25%
    }

    .side-menu-wrapper .two-columns .nav-wrapper .social {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex
    }

    .side-menu-wrapper .two-columns .head-main {
        -webkit-box-flex: 0;
        -webkit-flex-grow: 0;
        -ms-flex-positive: 0;
        flex-grow: 0
    }

        .side-menu-wrapper .two-columns .head-main .item:first-child {
            -webkit-box-flex: 2;
            -webkit-flex: 2 0 0;
            -ms-flex: 2 0 0px;
            flex: 2 0 0
        }

    .side-menu-wrapper .two-columns .main-nav-wrapper {
        margin-bottom: 40px
    }

    .side-menu-wrapper .two-columns .head-nav-wrapper {
        margin-top: 40px
    }

    .side-menu-wrapper .two-columns .col-2 > .head-nav-wrapper {
        padding: 0;
    }

    .side-menu-wrapper .two-columns .video-wrapper {
        display: none
    }

    .side-menu-wrapper .two-columns .btn-lg, .side-menu-wrapper .two-columns .col-2 {
        padding-left: 40px;
        padding-right: 40px
    }
}

@media screen and (max-width:740px) {
    .side-menu-wrapper .two-columns {
        height: 100%
    }

        .side-menu-wrapper .two-columns .head-main {
            -webkit-box-flex: 1;
            -webkit-flex-grow: 1;
            -ms-flex-positive: 1;
            flex-grow: 1
        }

            .side-menu-wrapper .two-columns .head-main .item:first-child {
                -webkit-box-flex: 2;
                -webkit-flex: 2 0 0;
                -ms-flex: 2 0 0px;
                flex: 2 0 0
            }

        .side-menu-wrapper .two-columns .footer-nav-wrapper .two-row {
            -webkit-column-count: 1;
            -moz-column-count: 1;
            column-count: 1
        }

            .side-menu-wrapper .two-columns .footer-nav-wrapper .two-row .item {
                padding-bottom: 20px
            }

    .side-menu-wrapper .item-store .icon-new {
        width: 43px;
        height: 19px
    }
}

@media screen and (max-width:576px) {
    .side-menu-wrapper .two-columns .btn-lg, .side-menu-wrapper .two-columns .col-2 {
        padding-left: 20px;
        padding-right: 20px
    }

    .side-menu-wrapper .two-columns .nav.two-row {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1
    }

    .side-menu-wrapper .two-columns .login-wrapper {
        margin-left: auto
    }
}

@media screen and (max-width:320px) {
    .side-menu-wrapper .two-columns {
        height: 100%
    }

        .side-menu-wrapper .two-columns .col-2 {
            padding-left: 20px
        }

            .side-menu-wrapper .two-columns .col-2 .head-nav-wrapper, .side-menu-wrapper .two-columns .col-2 .main-nav-wrapper {
                margin-bottom: 40px
            }

            .side-menu-wrapper .two-columns .col-2 .footer-nav-wrapper {
                padding-bottom: 20px
            }

                .side-menu-wrapper .two-columns .col-2 .footer-nav-wrapper .two-row {
                    -webkit-column-count: 1;
                    -moz-column-count: 1;
                    column-count: 1
                }

        .side-menu-wrapper .two-columns .nav .item .log-in {
            padding: 15px 26px
        }

        .side-menu-wrapper .two-columns .nav.two-row {
            -webkit-column-count: 1;
            -moz-column-count: 1;
            column-count: 1
        }
}

@media only screen and (min-device-width:1024px) and (max-device-width:1024px) and (min-device-height:1366px) and (max-device-height:1366px) and (min-width:1024px) and (max-width:1024px) {
    .side-menu-wrapper .two-columns {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }

        .side-menu-wrapper .two-columns .col-1, .side-menu-wrapper .two-columns .col-2 {
            width: 100%
        }

        .side-menu-wrapper .two-columns .nav-wrapper {
            padding-bottom: 100px
        }

            .side-menu-wrapper .two-columns .nav-wrapper .social {
                display: -webkit-box;
                display: -webkit-flex;
                display: -ms-flexbox;
                display: flex
            }

        .side-menu-wrapper .two-columns .head-main {
            -webkit-box-flex: 0;
            -webkit-flex-grow: 0;
            -ms-flex-positive: 0;
            flex-grow: 0
        }

            .side-menu-wrapper .two-columns .head-main .item:first-child {
                -webkit-box-flex: 2;
                -webkit-flex: 2 0 0;
                -ms-flex: 2 0 0px;
                flex: 2 0 0
            }

        .side-menu-wrapper .two-columns .video-wrapper {
            display: none
        }

        .side-menu-wrapper .two-columns .btn-lg, .side-menu-wrapper .two-columns .col-2 {
            padding-left: 40px;
            padding-right: 40px
        }
}

@media only screen and (min-device-width:374px) and (max-device-height:765px) and (orientation:landscape) and (-webkit-device-pixel-ratio:3) {
    .side-menu-wrapper .two-columns {
        height: 100%
    }

        .side-menu-wrapper .two-columns .col-2 {
            padding-left: 55px
        }

            .side-menu-wrapper .two-columns .col-2 .head-nav-wrapper {
                margin-bottom: 80px
            }

            .side-menu-wrapper .two-columns .col-2 .main-nav-wrapper {
                margin-bottom: 50px
            }

            .side-menu-wrapper .two-columns .col-2 .footer-nav-wrapper .nav {
                -webkit-transition: none;
                -o-transition: none;
                transition: none;
                opacity: 1
            }

                .side-menu-wrapper .two-columns .col-2 .footer-nav-wrapper .nav[data-intersection] {
                    -webkit-animation: none;
                    animation: none
                }

            .side-menu-wrapper .two-columns .col-2 .footer-nav-wrapper .two-row {
                -webkit-column-count: 1;
                -moz-column-count: 1;
                column-count: 1
            }

            .side-menu-wrapper .two-columns .col-2 .nav.two-row .item {
                padding-bottom: 20px
            }
}

@media only screen and (min-device-width:320px) and (max-device-width:568px) and (orientation:landscape) {
    .side-menu-wrapper .two-columns {
        height: 100%
    }

        .side-menu-wrapper .two-columns .col-2 {
            padding-left: 56px
        }

            .side-menu-wrapper .two-columns .col-2 .head-nav-wrapper {
                margin-bottom: 80px
            }

            .side-menu-wrapper .two-columns .col-2 .main-nav-wrapper {
                margin-bottom: 50px
            }

            .side-menu-wrapper .two-columns .col-2 .footer-nav-wrapper .nav {
                -webkit-transition: none;
                -o-transition: none;
                transition: none;
                opacity: 1
            }

                .side-menu-wrapper .two-columns .col-2 .footer-nav-wrapper .nav[data-intersection] {
                    -webkit-animation: none;
                    animation: none
                }

            .side-menu-wrapper .two-columns .col-2 .footer-nav-wrapper .two-row {
                -webkit-column-count: 1;
                -moz-column-count: 1;
                column-count: 1
            }

            .side-menu-wrapper .two-columns .col-2 .nav.two-row .nav.two-row .item {
                padding-bottom: 20px
            }

    .side-menu-wrapper .main .side-menu-wrapper {
        overflow: hidden
    }
}

@-webkit-keyframes fade-in-anim {
    0% {
        -webkit-transform: translateY(10%);
        transform: translateY(10%);
        opacity: 0
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }
}

@keyframes fade-in-anim {
    0% {
        -webkit-transform: translateY(10%);
        transform: translateY(10%);
        opacity: 0
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }
}

@-webkit-keyframes fade-in-anim-reverse {
    0% {
        -webkit-transform: translateY(-10%);
        transform: translateY(-10%);
        opacity: 0
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }
}

@keyframes fade-in-anim-reverse {
    0% {
        -webkit-transform: translateY(-10%);
        transform: translateY(-10%);
        opacity: 0
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }
}

@-webkit-keyframes slide-hide-in {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }

    to {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
        opacity: 0
    }
}

@keyframes slide-hide-in {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }

    to {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
        opacity: 0
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@-webkit-keyframes slide-bottom {
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes slide-bottom {
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}


@-webkit-keyframes slide-top {
    to {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }
}

@keyframes slide-top {
    to {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }
}


@-webkit-keyframes slide-bottom-to-top {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%)
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes slide-bottom-to-top {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%)
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes slide-bottom-to-top-small {
    0% {
        -webkit-transform: translateY(40%);
        transform: translateY(40%);
        opacity: 0
    }

    25% {
        opacity: 1
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }
}

@keyframes slide-bottom-to-top-small {
    0% {
        -webkit-transform: translateY(40%);
        transform: translateY(40%);
        opacity: 0
    }

    25% {
        opacity: 1
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }
}

@-webkit-keyframes slide-top-to-bottom {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    to {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        display: none
    }
}

@keyframes slide-top-to-bottom {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    to {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        display: none
    }
}

@-webkit-keyframes slide-bottom-to-top-negative {
    to {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }
}

@keyframes slide-bottom-to-top-negative {
    to {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }
}

._fade-in {
    -webkit-transform: translateY(10%);
    -ms-transform: translateY(10%);
    transform: translateY(10%);
    opacity: 0
}

    ._fade-in[data-intersection] {
        -webkit-animation: fade-in-anim .6s forwards;
        animation: fade-in-anim .6s forwards
    }

._fade-in-left {
    -webkit-transition: opacity .4s,-webkit-clip-path .6s,-webkit-transform .5s,-webkit-box-shadow .3s;
    transition: opacity .4s,-webkit-clip-path .6s,-webkit-transform .5s,-webkit-box-shadow .3s;
    -o-transition: clip-path .6s,opacity .4s,transform .5s,box-shadow .3s;
    transition: clip-path .6s,opacity .4s,transform .5s,box-shadow .3s;
    transition: clip-path .6s,opacity .4s,transform .5s,box-shadow .3s,-webkit-clip-path .6s,-webkit-transform .5s,-webkit-box-shadow .3s;
    -webkit-transform: translateY(10%);
    -ms-transform: translateY(10%);
    transform: translateY(10%);
    opacity: 0
}

    ._fade-in-left[data-intersection] {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }

._fade-in-right {
    -webkit-transition: opacity .4s,-webkit-clip-path .6s,-webkit-transform .5s,-webkit-box-shadow .3s;
    transition: opacity .4s,-webkit-clip-path .6s,-webkit-transform .5s,-webkit-box-shadow .3s;
    -o-transition: clip-path .6s,opacity .4s,transform .5s,box-shadow .3s;
    transition: clip-path .6s,opacity .4s,transform .5s,box-shadow .3s;
    transition: clip-path .6s,opacity .4s,transform .5s,box-shadow .3s,-webkit-clip-path .6s,-webkit-transform .5s,-webkit-box-shadow .3s;
    -webkit-transform: translateY(10%);
    -ms-transform: translateY(10%);
    transform: translateY(10%);
    opacity: 0
}

    ._fade-in-right[data-intersection] {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }

.fade-in, .fade-in-anim[data-intersection] {
    -webkit-animation: fadeIn 1s ease forwards;
    animation: fadeIn 1s ease forwards;
}

.side-menu-wrapper .two-columns ._anim-scale:hover ._anim-outer {
    color: #000;
}

._anim-scale:hover ._anim-outer {
    color: #df4142;
}

._escape_up-wrapper {
    display: block;
    overflow: hidden;
}

._anim-scale ._anim-start {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

._scale-up {
    -webkit-animation: scale-up 1s ease forwards;
    animation: scale-up 1s ease forwards
}

@-webkit-keyframes scale-up {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes scale-up {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

._scale-up-center {
    -webkit-animation: scale-up-center 2s forwards;
    animation: scale-up-center 2s forwards;
    -webkit-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease
}

@-webkit-keyframes scale-up-center {
    0% {
        -webkit-transform: translate(-50%,-50%) scale(0);
        transform: translate(-50%,-50%) scale(0)
    }

    to {
        -webkit-transform: translate(-50%,-50%) scale(1);
        transform: translate(-50%,-50%) scale(1)
    }
}

@keyframes scale-up-center {
    0% {
        -webkit-transform: translate(-50%,-50%) scale(0);
        transform: translate(-50%,-50%) scale(0)
    }

    to {
        -webkit-transform: translate(-50%,-50%) scale(1);
        transform: translate(-50%,-50%) scale(1)
    }
}

._escape_up {
    display: block;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-animation: up 1s linear forwards;
    animation: up 1s linear forwards
}

._escape_up__linear {
    -webkit-transition-timing-function: linear;
    -o-transition-timing-function: linear;
    transition-timing-function: linear
}

._escape_up__ease_in_out {
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out
}

._escape_up__ease_in {
    -webkit-transition-timing-function: ease-in;
    -o-transition-timing-function: ease-in;
    transition-timing-function: ease-in
}

._escape_up__ease_out {
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out
}

._escape_up_ease {
    -webkit-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease
}

._escape_up-em {
    display: block;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-animation: up-em 1s linear forwards;
    animation: up-em 1s linear forwards
}

._escape_up-wrapper[data-intersection] ._escape_up-anim {
    -webkit-animation: up 1s ease-out forwards;
    animation: up 1s ease-out forwards
}

._escape_up-wrapper[data-intersection]:nth-child(2) ._escape_up-anim {
    -webkit-animation-delay: .06s;
    animation-delay: .06s
}

._escape_up-wrapper[data-intersection]:nth-child(3) ._escape_up-anim {
    -webkit-animation-delay: .12s;
    animation-delay: .12s
}

._escape_up-anim {
    display: block;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%)
}

@-webkit-keyframes up {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%)
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes up {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%)
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes up-em {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%)
    }

    to {
        -webkit-transform: translateY(-.06em);
        transform: translateY(-.06em)
    }
}

@keyframes up-em {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%)
    }

    to {
        -webkit-transform: translateY(-.06em);
        transform: translateY(-.06em)
    }
}

._escape_up-fade-in {
    opacity: 0;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-animation: up-fade-in .5s linear forwards;
    animation: up-fade-in .5s linear forwards
}

@-webkit-keyframes up-fade-in {
    0% {
        opacity: 0
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes up-fade-in {
    0% {
        opacity: 0
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

._anim-scale ._anim-start .icon {
    position: relative;
    z-index: 2;
}

._anim-scale:hover ._anim-start:before {
    width: 200vw;
    height: 200vw;
}

._anim-scale:hover ._anim-start .icon .svg-icon {
    fill: #000;
}

._anim-scale:hover ._anim-start .icon .svg-icon {
    fill: #df4142;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

._anim-scale ._anim-outer, ._anim-scale .icon, ._anim-scale .svg-icon {
    display: block;
    position: relative;
    z-index: 2;
    -webkit-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;
}

.btn-arrow {
    width: 56px;
    height: 56px;
    background-color: #fff;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.btn-arrow, .video {
    background-color: #fff;
}

.btn-lg {
    padding-left: 60px;
    padding-right: 60px;
    min-height: 175px;
    font-size: 56px;
    font-weight: 600;
    margin: 0;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 220px;
    padding: 0 62px 0 100px;
    color: #fff;
    cursor: pointer;
    border-top: 1px solid hsla(0,0%,100%,.5);
    background: transparent;
}

.video-btn {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: -1;
    cursor: pointer;
}

    .video-btn, .video-btn .btn-wrapper {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-transition: all .7s;
        -o-transition: all .7s;
        transition: all .7s
    }

        .video-btn .btn-wrapper {
            min-width: 156px;
            border: 1px solid #fff;
            -webkit-backdrop-filter: blur(1.10526px);
            backdrop-filter: blur(1.10526px);
            -webkit-border-radius: 14px;
            border-radius: 14px;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -webkit-flex-direction: column;
            -ms-flex-direction: column;
            flex-direction: column;
            -webkit-box-pack: justify;
            -webkit-justify-content: space-between;
            -ms-flex-pack: justify;
            justify-content: space-between;
            padding: 20px;
            cursor: pointer
        }

            .video-btn .btn-wrapper .triangle {
                margin: 15px 0;
                -webkit-transition: all .7s;
                -o-transition: all .7s;
                transition: all .7s
            }

            .video-btn .btn-wrapper .label {
                max-width: 135px;
                text-align: center;
                font-weight: 500;
                font-size: 24px;
                line-height: 1.1;
                white-space: inherit;
            }

.side-menu-wrapper .two-columns ._anim-start:before {
    background-color: #ededed;
}

._anim-scale:hover ._anim-start:before {
    width: 200vw;
    height: 200vw;
}

._anim-scale ._anim-start:before {
    position: absolute;
    z-index: 1;
    display: block;
    content: "";
    width: 71px;
    height: 71px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-color: #fff;
    pointer-events: none;
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

._anim-scale ._anim-start .icon .svg-icon {
    fill: #1f1f1f;
}

._anim-scale:hover ._anim-start .icon .svg-icon {
    fill: #000;
}

._anim-scale:hover ._anim-start .icon .svg-icon {
    fill: #df4142;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.btn-lg .btn-arrow .svg-icon {
    width: 20px;
    height: 20px;
}

._anim-scale ._anim-start:before {
    width: 56px;
    height: 56px;
}

._anim-scale:hover ._anim-start:before {
    width: 200vw;
    height: 200vw;
}

.button-circle {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 31;
    height: 56px;
    width: 56px;
    margin: auto;
    border: 1px solid rgb(255 255 255 / 40%);
    -webkit-border-radius: 50%;
    border-radius: 50%
}

    .button-circle:hover svg {
        filter: invert(1);
    }
/* Header Açılır Menü */
.kirmizi {
    background: #cd2d38;
    /*background: linear-gradient(90deg, #3a72cd 0, #3c7adf 100%);*/
    border: 1px solid #cd2d38;
    color: #fff;
}

.specialbadge {
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    top: -10px;
    right: 0px;
    font-size: 11px;
    padding: 1px 10px;
    line-height: normal;
    font-weight: 600;
    border-radius: 4px;
}

.dil {
    display: inline-block;
    color: #fff;
    border-radius: 100%;
    cursor: pointer;
}

    .dil span {
        margin-left: 10px;
        color: #fff;
        transition: color .25s ease;
        font-size: 12px;
        text-transform: uppercase;
    }

    .dil .acilirdil {
        position: absolute;
        overflow: hidden;
        max-height: 0;
        transition: 1s;
        width: 90px;
        text-align: left;
    }

        .dil .acilirdil li {
            margin-bottom: 5px;
        }

            .dil .acilirdil li:hover {
                background-color: #fbfbfb;
            }

                .dil .acilirdil li:hover a span {
                    color: #000;
                }

    .dil:hover .acilirdil {
        max-height: 1000px;
    }

.onay-buton > strong {
    padding: 20px;
    color: black;
    opacity: 0.5;
    transition: opacity 0.6s;
    margin-bottom: 15px;
}

.white {
    background-color: #fff;
}

.aralik {
    padding: 15px !important;
}

    .aralik img {
        border-radius: 15px !important;
    }

.fab-wrapper {
    position: fixed;
    bottom: 35px;
    right: 35px;
    z-index: 99;
}

.fab-toggle {
    -webkit-appearance: none;
    position: absolute;
    border-radius: 50%;
    top: 0;
    left: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background-color: transparent;
    border: none;
    outline: none;
    z-index: 2;
    transition: box-shadow .2s ease-in-out;
    box-shadow: 0 3px 5px 1px rgba(51, 51, 51, 0.3);
}

    .fab-toggle:hover {
        box-shadow: 0 3px 6px 2px rgba(51, 51, 51, 0.3);
    }

    .fab-toggle:checked ~ .fab-actions a {
        opacity: 1;
        visibility: visible;
    }

    .fab-toggle:checked ~ .fab-button svg {
        transform: rotate(180deg);
    }

.fab-button {
    height: 56px;
    width: 56px;
    background-color: #e1323d;
    border-radius: 50%;
    color: #fff;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

    .fab-button svg {
        /*display: none;*/
        font-size: 16px;
        transform: rotate(0deg);
        transition: all 0.4s;
    }

.fab-actions {
    position: absolute;
    width: 100%;
    bottom: 120%;
    text-align: center;
}

    .fab-actions a {
        display: block;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        text-decoration: none;
        margin: 10px auto 0;
        line-height: 1.15;
        color: #fff;
        opacity: 0;
        visibility: hidden;
        position: relative;
        box-shadow: 0 0 5px 1px rgba(51, 51, 51, .3);
    }

        .fab-actions a svg {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 21px;
        }

        .fab-actions a:hover {
            transform: scale(1.05);
        }

        .fab-actions a:nth-child(1) {
            background-color: #3273dc;
            transition: opacity .2s ease-in-out .3s, transform .15s ease-in-out;
        }

        .fab-actions a:nth-child(2) {
            background-color: #00B2FF;
            transition: opacity .2s ease-in-out .25s, transform .15s ease-in-out;
        }

        .fab-actions a:nth-child(3) {
            background-color: #0088cc;
            transition: opacity .2s ease-in-out .2s, transform .15s ease-in-out;
        }

        .fab-actions a:nth-child(4) {
            background-color: #25D366;
            transition: opacity .2s ease-in-out .15s, transform .15s ease-in-out;
        }
/* FAQ */
.faq-title {
    line-height: .8 !important;
    font-size: 2.2223em !important;
    font-weight: 800 !important;
    margin-top: 1em !important;
    margin-bottom: 1em !important;
    text-align: center !important;
    color: #1a1917 !important;
}

.faq-square {
    transform-origin: 50% 0;
    background-color: #e1323d;
    border-radius: 2px;
    position: relative;
    width: 10px;
    height: 10px;
    margin: 2.499975em auto;
}

.tab-pane {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    color: #111;
    padding: 10px 20px;
}
/* FAQ */
/* Overlay */
.overlay {
    height: 100%;
    width: 100%;
    display: none;
    position: fixed;
    z-index: 999999;
    top: 0;
    left: 0;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0, 0.9);
}

.overlay-content {
    position: relative;
    top: 46%;
    width: 50%;
    text-align: center;
    margin-top: 30px;
    margin: auto;
}

.overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
    cursor: pointer;
    color: white;
}

    .overlay .closebtn:hover {
        color: #ccc;
    }

.overlay input[type=text] {
    padding: 17px;
    font-size: 14px;
    border: none;
    float: left;
    width: 80%;
    background: white;
    text-transform: uppercase;
    height: auto;
    border-radius: 0;
}

    .overlay input[type=text]:hover {
        background: #f1f1f1;
    }

.overlay .btnAra {
    float: left;
    width: 20%;
    padding: 17px;
    background: #ddd;
    font-size: 14px;
    border: none;
    cursor: pointer;
}

.overlay button:hover {
    background: #bbb;
}
/* Overlay */
/* Breadcrumb Video */
.titlebar {
    background-color: #10131d;
    color: #fff;
    height: 320px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    z-index: 0;
}

    .titlebar > .titlebar-overlay {
        background: rgba(0, 0, 0, 0.5);
        display: flex;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .titlebar > .breadcrumbvideoblok {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
/* Breadcrumb Video */

/* Video */
.default_video {
    position: relative;
    margin: 0;
    width: 100%;
    height: 100vh !important;
}

    .default_video > .default_video_in {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        width: 100%;
        height: 100%;
    }

        .default_video > .default_video_in > .image_caption {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            overflow: hidden;
        }

            .default_video > .default_video_in > .image_caption::before {
                content: "";
                background-color: rgba(0, 0, 0, .4);
                height: 100%;
                width: 100%;
                position: absolute;
                left: 0;
                bottom: 0;
                top: auto;
                z-index: 2;
            }

        .default_video > .default_video_in > .video_caption {
            height: 100%;
            width: 100%;
            position: absolute;
            z-index: 1;
            top: 50%;
            -webkit-transform: translate(0%,-50%);
            -moz-transform: translate(0%,-50%);
            -o-transform: translate(0%,-50%);
            transform: translate(0%,-50%);
            left: 0;
            -o-object-fit: cover;
            object-fit: cover;
        }

.home__screen__text {
    position: absolute;
    bottom: 20%;
    left: 5%;
    z-index: 8;
    text-align: left;
    margin: 0;
    width: 35%;
}

    .home__screen__text > div > h1 {
        line-height: normal;
        font-size: 52px;
        font-weight: 800;
        color: #fff;
        margin: 0 0 1rem;
        display: block;
        text-align: left;
        text-shadow: 6px 2px 10px #04040442;
    }

        .home__screen__text > div > h1 > span {
            color: #6ec1e4;
        }

    .home__screen__text > div > p {
        font-size: 1.2223em;
        line-height: 1.4em;
        color: #fff;
    }

    .home__screen__text > div > h2 > svg {
        display: inline-block;
        padding-right: 10px;
        color: #fff;
        font-size: 13px;
        width: 24px !important;
    }

.scroll-helper {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    text-align: center;
    z-index: 2;
}

    .scroll-helper .scroll-line {
        position: initial;
        bottom: initial;
        left: initial;
        margin: 0 auto;
        height: 70px;
        width: 1px;
        border-radius: 8px;
        background: #fff;
        display: block;
        overflow: hidden;
        transform: scaleY(0);
        -webkit-transform: scaleY(0);
        -ms-transform: scaleY(0);
    }

        .scroll-helper .scroll-line:after {
            content: '';
            width: inherit;
            height: 50%;
            background: #e3000f;
            position: absolute;
            transform: translateY(0%) scaleY(0);
            left: 0;
            z-index: 10;
            display: block;
        }

        .scroll-helper .scroll-line.init:after {
            -webkit-animation: mymove 1.5s infinite linear;
            animation: mymove 1.5s infinite linear;
            -webkit-transform-origin: top center;
            transform-origin: top center;
        }

    .scroll-helper .scroll-word {
        position: absolute;
        bottom: -30%;
        margin-left: -25px;
        opacity: 1;
        visibility: inherit;
        font-size: 13px;
        display: inline-block;
        font-style: inherit;
        line-height: 16px;
        letter-spacing: .075em;
        text-transform: uppercase;
        font-weight: 500;
        text-align: center;
        color: rgb(255, 255, 255);
    }

@-webkit-keyframes mymove {
    0% {
        -webkit-transform: translateY(0%) scaleY(0);
    }

    10% {
        -webkit-transform: translateY(0%) scaleY(0.5);
    }

    30% {
        -webkit-transform: translateY(50%) scaleY(1);
    }

    45% {
        -webkit-transform: translateY(200%) scaleY(0.5);
    }

    55% {
        -webkit-transform: translateY(200%) scaleY(0);
    }

    100% {
        -webkit-transform: translateY(200%) scaleY(0);
    }
}

@keyframes mymove {
    0% {
        -webkit-transform: translateY(0%) scaleY(0);
    }

    10% {
        -webkit-transform: translateY(0%) scaleY(0.5);
    }

    30% {
        -webkit-transform: translateY(50%) scaleY(1);
    }

    45% {
        -webkit-transform: translateY(200%) scaleY(0.5);
    }

    55% {
        -webkit-transform: translateY(200%) scaleY(0);
    }

    100% {
        -webkit-transform: translateY(200%) scaleY(0);
    }
}
/* Video */
/* Yorumlar Hareketli Yüzler */
.testimonial-floatingimg li {
    height: 80px;
    width: 80px;
    position: absolute;
    overflow: hidden;
    border-radius: 100%;
    border: 10px solid #e7eaef;
    opacity: .5;
    -webkit-animation: 1.5s ease 0s infinite alternate none running scale;
    animation: 1.5s ease 0s infinite alternate none running scale;
    list-style-type: none;
}

    .testimonial-floatingimg li img {
        width: 100%;
    }

.testimonial-float-img1 li:nth-child(1) {
    top: 90px;
    left: 215px;
}

.testimonial-float-img1 li:nth-child(2) {
    top: 198px;
    left: 108px;
}

.testimonial-float-img1 li:nth-child(3) {
    top: 30%;
    left: 20%;
}

.testimonial-float-img1 li:nth-child(4) {
    top: 360px;
    left: 140px;
}

.testimonial-float-img2 li:nth-child(1) {
    bottom: 90px;
    right: 215px;
}

.testimonial-float-img2 li:nth-child(2) {
    bottom: 198px;
    right: 50px;
}

.testimonial-float-img2 li:nth-child(3) {
    bottom: 30%;
    right: 15%;
}

.testimonial-float-img2 li:nth-child(4) {
    bottom: 360px;
    right: 140px;
}

@keyframes scale {
    from {
        transform: scale(.9);
        -webkit-transform: scale(.9);
    }

    to {
        transform: scale(1.08);
        -webkit-transform: scale(1.08);
    }
}

@-webkit-keyframes scale {
    from {
        transform: scale(.9);
        -webkit-transform: scale(.9);
    }

    to {
        transform: scale(1.08);
        -webkit-transform: scale(1.08);
    }
}

/* Yorumlar Hareketli Yüzler */

/* İç Sayfa */
.ptb10 {
    padding: 10px 0;
}

.open > .dropdown-menu {
    width: 100%;
}

.open > ul.dropdown-menu > li > a {
    font-size: 12px;
}

.card > .collapse {
    display: none;
}

.mbottom {
    margin-bottom: 20px;
}

    .mbottom:last-child {
        margin-bottom: 0;
    }
/* İç Sayfa */
/* Ürünler */
.urunler-area {
    position: relative;
    /*padding: 5em 0;*/
    padding: 0;
    z-index: 9;
}

.catalog-filter-col {
    width: 25%;
    position: relative;
    box-sizing: border-box;
    float: left;
    z-index: 15;
}

.catalog-card-group-item {
    position: relative;
    padding-bottom: 7em;
    display: none;
    overflow: hidden;
    margin-bottom: 0;
    background-color: #f5f4f0;
    border: 0 solid transparent;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.catalog-card {
    position: relative;
    z-index: 25;
}

.catalog-card-back {
    content: "";
    display: block;
    position: absolute;
    width: 100vh;
    height: 20vh;
    background: #f5f4f0;
    top: -3.3333em;
    right: -10em;
    padding-bottom: 3.333em;
    box-shadow: 10px 10px 30px 0 rgb(0 0 0 / 20%);
}

    .catalog-card-back.active {
        height: 145vh;
    }

.catalog-card:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #f5f4f0;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    transition: opacity .25s ease,visibility .25s ease .25s;
}

.catalog-filter-title {
    position: relative;
    text-transform: uppercase;
    font-weight: 900;
    font-size: .8889em;
    margin-bottom: 1.66665em;
    color: #1a1918;
    cursor: pointer;
}

.catalog-card-group-item ul li {
    font-size: .8888em;
    border-top: 1px solid #dcdbd8;
    list-style-type: none;
    float: none;
    color: #000;
}

    .catalog-card-group-item ul li a {
        display: inline-block;
        width: 100%;
        position: relative;
        display: block;
        padding: 0.8em 1.6em;
        color: #000;
        transition: background .25s ease;
        vertical-align: middle;
        border-radius: 0;
    }

    .nav-pills > li.active > a, .nav-pills > li.active > a:focus,
    .nav-pills > li.active > a:hover,
    .catalog-card-group-item ul li.active a {
        background-color: #fff5cc;
        color: #000;
        font-weight: bold;
    }

        .catalog-card-group-item ul li.active a:before {
            background-color: #e1323d;
        }

    .catalog-card-group-item ul li a:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 5px;
        background-color: transparent;
        transition: background .25s ease;
    }

    .catalog-card-group-item ul li a:focus,
    .catalog-card-group-item ul li a:hover {
        text-decoration: none;
        background-color: transparent;
    }

.catalog-form:before {
    content: "";
    display: block;
    position: absolute;
    width: 1000px;
    width: 100vw;
    height: 100%;
    background: #fff;
    top: -3.3333em;
    right: 0;
    padding-bottom: 3.333em;
    z-index: -1;
    box-shadow: 10px 10px 30px 0 rgb(0 0 0 / 20%);
}

.catalog-form2 {
    float: left;
    width: 100%;
}

.catalog-form {
    /*padding: 4em 2em 10em 0;*/
    padding: 0 2em 10em 0;
    z-index: 20;
}

    .catalog-form2 h1,
    .catalog-form h1 {
        font-weight: 900;
        line-height: 1;
        font-size: 1.2223em;
        text-transform: uppercase;
    }

    .catalog-form p {
        font-size: 1.1em;
        font-style: italic;
        max-width: 100%;
        margin: auto;
    }

    .catalog-form img {
        margin: 25px auto;
    }

    .catalog-form div div {
        padding: 0;
        margin-bottom: 0;
    }

.catalog-right-col {
    width: 75%;
    position: relative;
    box-sizing: border-box;
    float: left;
    padding-left: 3.3333em;
    z-index: 99;
}

    .catalog-right-col .catalog-form {
        display: none;
    }

.tab-pane > div {
    padding: 5px;
}

.GaleriListe {
    margin: 0 auto;
    position: relative;
}

    .GaleriListe img {
        opacity: 1;
        transition: all 0.7s ease-in-out;
        padding: 5px;
        border: 1px solid #E9E9E9;
        background: #F8F8F8;
        max-height: 300px;
        min-height: 300px;
        object-fit: cover;
        width: 100%;
    }

    .GaleriListe:hover img {
        opacity: 0.7;
        transition: all 0.7s ease-in-out;
    }

    .GaleriListe .fa {
        position: absolute;
        opacity: 0;
        margin: auto;
        color: #000;
        font-size: 42px;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
        transition: all 0.5s ease;
    }

    .GaleriListe:hover .fa {
        opacity: 1;
        transition: all 0.5s ease;
    }

    .GaleriListe a figcaption {
        padding: 10px 15px;
        position: absolute;
        bottom: 0;
        z-index: 1;
        width: 100%;
    }

        .GaleriListe a figcaption:before {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            background: #ffffff;
            content: '';
            /*background: -moz-linear-gradient(90deg, #700877 0%, #ff2759 100%, #ff2759 100%);
            background: -webkit-linear-gradient(90deg, #700877 0%, #ff2759 100%, #ff2759 100%);
            background: linear-gradient(90deg, #700877 0%, #ff2759 100%, #ff2759 100%);*/
            opacity: 0.8;
            z-index: -1;
        }

        .GaleriListe a figcaption h3 {
            display: inline-block;
            font-weight: 700;
            letter-spacing: -0.4px;
            margin-bottom: 5px;
            margin: 0;
            padding: 0;
            font-size: 14px;
        }

.nav-pills > li {
    margin: 10px auto 0 !important;
    padding: 0 5px !important;
}
/* Ürünler */

/* Metinler */
.tabs > .tabs__sidebar.fixed {
    position: sticky;
    top: 50px;
}

.tab-area {
    padding: 10em 0;
}

    .tab-area > .container {
        display: flex;
        background-color: #fff;
        padding: 0;
    }

.tabs {
    position: relative;
    z-index: 20;
    background: #fff;
    box-shadow: 0 1px 1px rgb(0 0 0 / 20%);
}

.tabs__sidebar {
    float: left;
    width: 25%;
}

.tabs__main {
    float: right;
    width: 75%;
    border-left: 1px solid #dcdbd8;
}

.tabs__hints {
    padding: 3.2em 1.6em;
}

.tabs__hint {
    font-size: 1em;
    line-height: 1.2;
    color: #333;
}

.tabs__nav li {
    font-size: .8888em;
    border-top: 1px solid #dcdbd8;
    list-style-type: none;
}

    .tabs__nav li.active a {
        background-color: #fff5cc;
    }

.tabs__nav a {
    position: relative;
    display: block;
    padding: 0.8em 1.6em;
    color: #000;
    transition: background .25s ease;
}

.tabs__nav li.active a:before {
    background-color: #e1323d;
}

.tabs__nav a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background-color: transparent;
    transition: background .25s ease;
}

.tabs__content {
    padding: 4em;
}

.tabs__title {
    color: #000;
    font-size: 1.6em;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 0.4em;
}

.tabs__text {
    font-size: 1em;
    line-height: 1.5;
    color: #7f7f7f;
    margin-bottom: 2em;
}
/* Metinler */
/* Kurumsal Sayfası */
@-webkit-keyframes zoominoutsinglefeatured {
    0% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    50% {
        -webkit-transform: scale(1.2, 1.2);
        transform: scale(1.2, 1.2);
    }

    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

@keyframes zoominoutsinglefeatured {
    0% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    50% {
        -webkit-transform: scale(1.2, 1.2);
        transform: scale(1.2, 1.2);
    }

    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

.about-area-circle .circle1 {
    right: 35%;
    top: 35%;
    width: 14%;
}

.about-area-circle img {
    position: absolute;
    opacity: 0.5;
    -webkit-animation: zoominoutsinglefeatured 4s infinite;
    animation: zoominoutsinglefeatured 4s infinite;
}

.about-area-circle .circle2 {
    right: 3%;
    top: 40%;
    width: 10%;
}

.about__description {
    position: relative;
    padding: 10em 0;
    background-color: #f5f4f0;
}

.about__title-2 {
    display: block;
    font-size: 2.2em;
    line-height: 1.3;
    font-weight: 700;
    text-align: center;
}

    .about__title-2 sup {
        vertical-align: 30%;
        text-decoration: underline;
        font-variant: small-caps;
    }

sup {
    vertical-align: super;
    font-size: smaller;
}

.det-baslik-pad {
    padding: 0;
}

.about__circles {
    position: relative;
    z-index: 20;
    margin-top: 4.6em;
}

.about__plus-icon {
    position: absolute;
    width: 4em !important;
    height: 4em;
    color: #fcc900;
    top: 3.35em;
    left: 50%;
    transform: translateX(-50%);
}

.faq-area-img {
    position: absolute;
    background-repeat: no-repeat;
    background-position: left;
    background-size: 25% 95%;
    left: -330px;
    -webkit-animation: ani-rotate 50s linear infinite;
    animation: ani-rotate 50s linear infinite;
}

    .faq-area-img.right-area {
        right: -330px;
        left: auto;
        top: -75px;
    }

.about__circle {
    position: relative;
    margin: auto;
    z-index: 20;
    display: block;
    width: 13.3em;
    height: 13.3em;
    border-radius: 50%;
    background-color: #fff;
    border: 1px dashed #cecdca;
    text-align: center;
}

    .about__circle:before {
        width: 110%;
        height: 110%;
        left: -5%;
        top: -5%;
    }

    .about__circle:after {
        width: 120%;
        height: 120%;
        left: -10%;
        top: -10%;
    }

    .about__circle:after, .about__circle:before {
        content: "";
        position: absolute;
        border-radius: 50%;
        border: 1px dashed #cecdca;
    }

    .about__circle .ff {
        width: 100%;
        height: 100%;
    }

    .about__circle .dt {
        display: table;
    }

    .about__circle .dtc {
        display: table-cell;
    }

    .about__circle .vam {
        vertical-align: middle;
    }

    .about__circle img {
        margin: 0 auto;
    }

    .about__circle .about__circle-icon {
        display: block;
        fill: #e1323d;
        width: 3em;
        height: 3em;
        margin: auto;
    }

    .about__circle span {
        display: block;
        text-align: center;
        font-size: 1em;
        font-weight: 700;
        text-transform: uppercase;
        margin-top: 0.75em;
    }

.about__circles-text.left {
    padding-left: 2em;
    padding-right: 1em;
}

.about__circles-text.right {
    padding-right: 2em;
    padding-left: 1em;
}

.about__circles-text {
    margin-top: 5.5em;
}

    .about__circles-text p {
        font-size: 1em;
        line-height: 1.4;
        color: rgba(0,0,0,.8);
        margin-bottom: 1em;
    }

        .about__circles-text p:last-child {
            margin-bottom: 0;
        }

.about__circle-arrow1 {
    right: 0em;
    top: -4em;
}

.about__circle-arrow2 {
    left: 0em;
    top: -4em;
}

.about__circle-arrow {
    display: none;
    position: absolute;
    width: 2.6em;
    height: 2.6em;
    fill: #b0afad;
}

.about__features {
    position: relative;
    padding: 8em 0;
    /*background-color: #e5202d;*/
    text-align: center;
}

.about__features-item:first-child {
    margin-left: 0;
}

.about__features-item:last-child {
    margin-right: 0;
}

.about__features-item {
    position: relative;
    z-index: 20;
    display: inline-block;
    vertical-align: top;
    margin: 0 2em;
    width: 20em;
}

.how-work-single {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about__features-icon {
    margin: 0 auto;
    text-align: center;
}

.how-work-single:before {
    content: '';
    position: absolute;
    border: 1px solid #ffda99;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    left: 0;
    top: 0;
    right: 0;
}

.about__features-title {
    font-size: 1.6em;
    line-height: 1;
    font-weight: 700;
    color: #000;
    margin: 0.75em auto;
}

.about__features-text {
    font-size: 1em;
    line-height: 1.4;
    color: #000;
}

.about__benefits {
    padding: 10em 0;
    background-color: #fff;
}

.about__benefits-row {
    position: relative;
    height: 25em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about__benefits-col.left {
    float: left;
}

.about__benefits-col {
    overflow: hidden;
}

.about__benefits-img {
    position: relative;
    display: block;
    z-index: 20;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    width: auto;
    height: auto;
    margin: 0 auto;
}

.about__benefits-info .ff {
    width: 100%;
    height: 100%;
}

.about__benefits-info .dt {
    display: table;
}

.about__benefits-info .dtc {
    display: table-cell;
}

.about__benefits-info .vam {
    vertical-align: middle;
}

.about__benefits-text {
    padding: 0 20%;
}

    .about__benefits-text .about__benefits-title {
        font-size: 1.2em;
        font-weight: 700;
        color: rgba(0,0,0,.8);
        line-height: 1.4;
        margin-bottom: 0.5em;
    }

    .about__benefits-text p {
        font-size: 1em;
        color: rgba(0,0,0,.8);
    }

.about__promo {
    position: relative;
    text-align: center;
    padding: 14em 1em;
}

    .about__promo .about__promo-bg {
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: -1;
        background-image: url(https://lucent.qodeinteractive.com/wp-content/uploads/2020/10/H4-Rev-img1.jpg);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
    }

    .about__promo .about__promo-text {
        position: relative;
        z-index: 20;
        font-size: 2.3em;
        line-height: 1;
        color: hsla(0,0%,100%,.9);
        font-weight: 700;
        margin: 0 auto 25px;
    }

    .about__promo .background-overlay {
        background-color: transparent;
        background-image: linear-gradient(180deg,#ffda99 0%,#e1323d 100%);
        opacity: .5;
        transition: background 0.3s,border-radius 0.3s,opacity 0.3s;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        position: absolute;
        z-index: -1;
    }
/* Kurumsal Sayfası */

/* To Top */
.arrow-up.show {
    opacity: 1;
    visibility: visible;
    transition: box-shadow .25s ease,opacity .25s ease,visibility 0s linear 0s;
}

.arrow-up {
    display: block;
    position: fixed;
    bottom: 150px;
    left: 1.6%;
    z-index: 999;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 1px 1px rgb(0 0 0 / 20%);
    background-color: #fff;
    transition: box-shadow .25s ease,opacity .25s ease,visibility .25s ease .25s;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
}

    .arrow-up:hover {
        box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
    }

    .arrow-up svg {
        position: absolute;
        top: 50%;
        left: 50%;
        margin-top: -6px;
        margin-left: -6px;
        width: 12px;
        height: 12px;
        color: #66645c;
    }

    .arrow-up span {
        position: absolute;
        display: block;
        top: 100%;
        left: 0;
        width: 100%;
        text-align: center;
        margin-top: 10px;
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: .05em;
        color: #66645c;
    }
/* To Top */

/* Ürün Detay */
.product-area h1 {
    font-size: 38px;
    line-height: 48px;
    font-weight: 400;
    letter-spacing: .01em;
    margin-bottom: 15px;
}

.product-area h2 {
    line-height: 24px;
    font-size: 14px;
    font-weight: bold;
}

#imageGallery li {
    list-style-type: none;
}

#imageGallery img {
    width: 100%;
}

.pdf {
    display: inline-block;
    margin-right: 5px;
    text-align: center;
}

    .pdf img {
        display: block;
    }

    .pdf span {
        line-height: 24px;
        font-size: 14px;
        font-weight: bold;
        color: #000;
    }

.urundetaybolum {
    background-color: rgb(237, 242, 246);
    padding: 30px 0;
    padding-bottom: 60px;
    margin-top: 15px;
}

    .urundetaybolum .baslik {
        padding: 60px 0;
        padding-top: 30px;
        text-align: center;
    }

        .urundetaybolum .baslik span {
            margin-top: 0;
            margin-bottom: 0;
            color: #000;
            font-size: 36px;
            line-height: 48px;
            font-weight: 500;
        }

.card-header {
    margin: 15px auto;
    border-bottom: 2px solid #cad1dd;
}

    .card-header > a {
        position: relative;
        display: block;
        font-weight: 500;
        color: #000;
        font-size: 2em;
        margin: 0.67em 0;
    }

        .card-header > a:before {
            background-image: url('../img/minus.png');
            content: "";
            position: absolute;
            width: 14px;
            height: 14px;
            top: 15px;
            right: 0;
        }

        .card-header > a.collapsed:before {
            background-image: url('../img/plus.png');
            content: "";
            position: absolute;
            width: 14px;
            height: 14px;
            top: 15px;
            right: 0;
        }
/* Ürün Detay */
/* İç Sayfa Breadcrumb */
.l-page {
    position: relative;
    /*padding-top: 5em;*/
    background-color: #f5f4f0;
    display: block;
}

.l-page__bg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: transparent;
}

.l-page__content {
    position: absolute;
    padding: 10em 0 0;
    top: 0;
    width: 100%;
    z-index: 1;
}

.l-page__bg-bottom {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(/Content/img/circle2.png);
}

.l-page__bg-left-4 {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60%;
    height: 40%;
    background-color: #ffda99;
    display: none;
}

.l-page__bg-right-3 {
    display: none;
    position: absolute;
    height: 100%;
    right: 0;
    bottom: 0;
    width: 40%;
    box-shadow: 7px 7px 40px 0 rgb(0 0 0 / 20%);
    background-image: url(/Content/img/sag-dizayn.png);
    background-repeat: no-repeat;
    background-position: 3em 0;
    /*background-size: auto 40em;*/
    background-size: auto;
}

.l-page.ters .l-page__bg-left-4 {
    left: auto;
    right: 0;
}

.l-page.ters .l-page__bg-right-3 {
    left: 0;
    right: auto;
}

.catalog-form-shadow {
    position: relative;
    padding-bottom: 4em;
}

.l-page__content-designers {
    display: none;
    position: relative;
    z-index: 20;
    float: left;
    margin-top: 0;
    padding: 0 5em;
    width: 48%;
}

.catalog-form-shadow:before {
    content: "";
    display: block;
    position: absolute;
    width: 100vw;
    height: 100%;
    background: #fff;
    top: 0;
    right: 0;
    padding-bottom: 3.333em;
    box-shadow: 10px 10px 30px 0 rgb(0 0 0 / 20%);
    z-index: -1;
}

.l-page.ters .l-page__content-designers {
    float: right;
}

.l-page.ters .catalog-form-shadow:before {
    right: auto;
    left: 0;
}

.page-card {
    position: relative;
    z-index: 20;
    margin: 1.6em 0;
    background-color: #fff;
    border-radius: 2px;
    white-space: normal;
    text-align: left;
}

    .page-card h1 {
        font-size: 1.2em;
        line-height: 1.3;
        font-weight: 700;
        margin-top: 0;
    }

    .page-card p {
        margin: 1em 0;
        font-size: 1em;
    }

.blog-title {
    position: relative;
    z-index: 20;
    text-align: center;
    margin: 5em auto 0;
}

    .blog-title h1 {
        font-size: 2.1em;
        line-height: 1;
        color: #fff;
        font-weight: 800;
        margin-bottom: 0.2em;
    }

    .blog-title .italic a {
        font-size: 1.1em;
        font-style: italic;
        color: #fff;
        max-width: 100%;
        margin: auto;
    }

    .blog-title .italic svg {
        font-size: .75em;
        color: #fff;
    }
/* İç Sayfa Breadcrumb */
/* */
/* Header */
.siteheader.header-fixed {
    background-color: #2b2a29;
    -webkit-transition: background-color 300ms linear;
    -ms-transition: background-color 300ms linear;
    transition: background-color 300ms linear;
    box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
    position: fixed !important;
}

/*.header-fixed .header__bottom-menu > ul > li > a {
    color: #000;
}

.header-fixed .search .js-search-submit {
    filter: inherit;
}

.header-fixed .search span {
    color: #000;
}*/

.header-fixed .header__top {
    display: none;
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
    transition: height .25s ease,padding .25s ease;
}

.header-fixed .header__bottom-logo {
    width: auto;
    overflow: hidden;
    opacity: 1;
}

.header-fixed .sales-btn {
    width: auto;
    display: none;
}

.navbar {
    border-radius: 4px;
    margin: 0;
    min-height: inherit;
}

.bottom-menu li:hover > ul.dropdown-menu {
    display: block;
}

.dropdown-submenu {
    position: relative;
}

    header > .head-area > .container > .inset > .col .dropdown-menu li > .dropdown-menu,
    .dropdown-submenu > .dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -6px;
    }

/* rotate caret on hover */
.dropdown-menu > li > a:hover:after {
    text-decoration: underline;
    transform: rotate(-90deg);
}

@media (min-width: 768px) {
    .navbar-expand-md .navbar-toggler {
        display: none;
    }
}

header {
    position: absolute;
    background-color: transparent;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    transition: background-color .3s;
    /*box-shadow: 0 2px 30px 0 rgb(0 0 0 / 15%);*/
}

    header > .header__top,
    header > .header__top > .container {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
    }

    header > .header__top {
        /*border-bottom: 1px solid #e6e5e1;*/
        position: relative;
        z-index: 5;
        /*overflow: hidden;*/
        /*height: 10vh;*/
        transform: translateZ(0);
        transition: height .4s cubic-bezier(.175,.885,.32,1.275),padding .4s cubic-bezier(.175,.885,.32,1.275);
        padding-top: 15px;
        will-change: height,padding;
    }

        header > .header__top > .container {
            width: 100%;
        }

.header__top-menu {
    padding-top: 0.499995em;
}

    .header__top-menu > ul.dil {
        /*border-left: 2px solid #fff;*/
        display: inline-block;
    }

        .header__top-menu > ul.dil > li {
            margin: 0;
        }

            .header__top-menu > ul.dil > li > a {
                border-left: 1px solid #fff;
                margin: 0;
                padding: 0 1em;
            }

            .header__top-menu > ul.dil > li:first-child > a {
                border-left: none;
            }

    .header__top-menu > ul > li {
        position: relative;
        float: left;
        margin-right: 1.66665em;
        list-style-type: none;
    }

        .header__top-menu > ul > li > a {
            color: #fff;
            transition: color .25s ease;
            font-size: 12px;
            text-transform: uppercase;
        }

        .header__top-menu > ul > li:hover > a {
            color: #e7333f;
        }

.header_logo {
    position: relative;
}

    .header_logo > a > img {
        margin: 0 auto;
        text-align: center;
    }


.bx-cm-fix {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: flex-start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
    float: right;
}

    .bx-cm-fix .col {
        max-width: 80px;
        float: left;
        padding-left: 5px;
        text-align: center;
        height: 45px;
        font-size: 1rem;
    }

.header__top .row .bx-cm-fix .col a {
    margin: 0 auto;
    width: 100%;
    text-align: center;
    height: 35px;
}

.header__top-basket {
    float: right;
    padding-top: 0.499995em;
    text-decoration: none;
    transform: translateZ(0);
}

.top-handbag__icon {
    width: 1.2em;
    height: 1.3em;
    transition: fill .25s ease;
    fill: #807e79;
    transform: translateZ(0);
}

.header__top-info {
    float: left;
    /*margin-right: 2.5em;*/
    font-size: 12px;
}

.fr {
    float: right;
}

.top-info__tel {
    position: relative;
    margin-right: 1.5em;
    font-size: 12px;
    line-height: 1.2;
    color: #666561;
    text-align: center;
}

    .top-info__tel a {
        font-size: 12px;
        transition: opacity .25s ease;
        color: #fff;
    }

        .top-info__tel a:hover {
            opacity: .8;
        }

        .top-info__tel a:first-child {
            padding-right: 5px;
            border-right: 1px solid #fff;
        }

.header__bottom .fs-13,
.header__top .fs-13 {
    font-size: 12px;
    line-height: 10px;
}

.top-info__tel p {
    margin-top: 0.6em;
}

.top-info__callback.slide {
    font-size: 14px;
    -webkit-appearance: media-slider;
}

.top-info__callback.yorum {
    background-color: #ffda99;
    border-top: 1px solid #ffd633;
    border-bottom: 1px dashed #ffd633;
    color: #000;
    -webkit-appearance: media-slider;
    margin-bottom: 25px;
}

.top-info__callback.urunler {
    background-color: #ffda99;
    border-top: 1px solid #ffd633;
    border-bottom: 1px dashed #ffd633;
    color: #000;
    -webkit-appearance: media-slider;
}

.top-info__callback {
    display: inline-block;
    vertical-align: 0;
    line-height: 1;
    border-bottom: 1px dashed hsla(48,3%,39%,.5);
    transition: border .25s ease;
    text-decoration: none;
    outline: none;
    color: #fff;
    font-weight: 700;
    text-shadow: 0 1px 1px rgb(0 0 0 / 20%);
    padding: 1.1em 2.4em 0.9em;
    text-transform: uppercase;
    border-radius: 3px;
    letter-spacing: .025em;
    box-shadow: 0 2px 1px rgb(0 0 0 / 20%);
    transition: box-shadow .25s ease,border .25s ease;
    cursor: pointer;
    border-top: 1px solid #ec5c65;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 10px;
    background-color: #e1323d;
}

    .top-info__callback:hover {
        border-top: 1px solid hsla(48,3%,39%,.15);
        border-bottom: 1px solid hsla(48,3%,39%,.15);
        background-color: #cd2d38;
        color: #fff;
    }

.header__bottom {
    opacity: 1;
    visibility: visible;
    transition: opacity .5s ease,visibility 0s ease 0s;
    box-shadow: 0 6px 12px 0 rgb(0 0 0 / 10%);
    position: relative;
    z-index: 4;
    height: auto;
}

    .header__bottom .row {
        position: relative;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.header__bottom-sales {
    padding: 0.5em 0;
}

.header__bottom-logo {
    height: 5em;
    display: inline-block;
    vertical-align: middle;
    width: 0;
    overflow: hidden;
    opacity: 0;
    transition: width .25s ease,opacity .5s ease;
}

    .header__bottom-logo img {
        width: auto;
        height: 100%;
        transform: translateZ(0);
    }

.sales-btn {
    transition: opacity .5s ease,visibility 0s ease 0s,background .25s ease,border .25s ease,width .25s ease;
    position: relative;
    color: #000;
    display: inline-block;
    vertical-align: middle;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.1em 1.1em 0.1em 0.6em;
    height: 1.8em;
    background-color: #ffda99;
    border-radius: 3px 0 0 3px;
    border-left: 1px solid #f5d193;
    border-top: 1px solid #f5d193;
    border-bottom: 1px solid #f5d193;
    width: auto;
    white-space: nowrap;
    margin-left: 10px;
}

    .sales-btn:before {
        left: 100%;
        width: 1.272779em;
        height: 1.272779em;
        transform: rotate(45deg);
        margin-top: -0.6363895em;
        margin-left: -0.6em;
        background-color: #ffda99;
        border-top: 1px solid #f5d193;
        border-right: 1px solid #f5d193;
        box-sizing: border-box;
        border-radius: 0 4px 0 0;
    }

    .sales-btn:after, .sales-btn:before {
        content: "";
        position: absolute;
        top: 50%;
        transition: background .25s ease,border .25s ease;
    }

    .sales-btn:after {
        right: 0;
        transform: translateY(-50%);
        background: #fff;
        border-radius: 50%;
        border: 1px solid #ffc766;
        width: 0.5em;
        height: 0.5em;
        z-index: 1;
    }

    .sales-btn span {
        position: relative;
        z-index: 1;
        font-weight: 700;
        font-size: 11px;
        white-space: nowrap;
        transition: color .15s ease .15s;
    }

    .sales-btn i {
        position: relative;
        z-index: 1;
        color: #e1323d;
        font-size: 12px;
        font-weight: 800;
        font-style: normal;
    }

.header__bottom-menu {
    opacity: 1;
    visibility: visible;
    transition: opacity .5s ease,visibility 0s ease 0s;
    display: flex;
}

    .header__bottom-menu > ul {
        margin: 0 auto;
    }

        .header__bottom-menu > ul > li {
            position: relative;
            margin: 0 1em;
            float: left;
            transition: border .25s ease,margin .25s;
            border-bottom: 2px solid transparent;
            list-style-type: none;
        }

            .header__bottom-menu > ul > li > a {
                color: #fff;
                font-size: 14px;
                display: inline-block;
                padding: 1em 0;
                font-weight: 700;
                transition: .25s ease;
                text-transform: uppercase;
            }

            .header__bottom-menu > ul > li:hover > a {
                color: #e7333f;
            }

.search-wrapper {
    height: auto;
    float: left;
    width: 100%;
    transition: width .25s ease;
}

.search, .search-wrapper {
    display: inline-block;
    text-align: left;
}

    .search, .search input {
        cursor: pointer;
    }

        .search .js-search-submit, .search span {
            pointer-events: none;
        }

        .search span {
            height: 100%;
            line-height: 3em;
            margin-left: .5em;
            font-size: 12px;
            color: #fff;
            opacity: 1;
            visibility: visible;
            transition: opacity .25s ease,color .25s ease,visibility .25s ease 0s;
        }

        .search .js-search-submit {
            display: inline-block;
            width: 1.5em;
            padding: 0;
            border: none;
            background-color: transparent;
            outline: none;
            cursor: pointer;
            filter: invert(1);
        }


/* Header */
/* Slide */
.main-slide .owl-nav {
    position: absolute;
    top: 50%;
    z-index: 99;
    width: 100%;
}

    .main-slide .owl-nav button {
        width: 50px;
        height: 50px;
        background: #fff !important;
        -webkit-transition: all .3s cubic-bezier(.25,.1,.25,1);
        -moz-transition: all .3s cubic-bezier(.25,.1,.25,1);
        -o-transition: all .3s cubic-bezier(.25,.1,.25,1);
        transition: all .3s cubic-bezier(.25,.1,.25,1);
    }

.background-area {
    position: relative;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-blend-mode: overlay;
    background-image: url('../img/slidebackground.jpg');
    background-color: rgba(0, 0, 0, .5);
}

.item-area {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: absolute;
    left: 0;
    bottom: 25%;
    width: 100%;
}

.col-image {
    position: relative;
    height: 100vh;
}

    .col-image > .image-area-slide {
        background-repeat: no-repeat;
        background-size: 100% auto;
        background-position: left top;
        height: 100%;
        overflow: hidden;
    }

.text {
    padding-right: 25%;
}

    .text > h1 {
        line-height: normal;
        font-size: 2.2223em;
        font-weight: 800;
        color: #fff;
        margin: 0 auto;
    }

    .text > p {
        font-size: 1.2223em;
        line-height: normal;
        color: #fff;
        margin: 2em auto;
    }

.slide-btn {
    margin: 15px auto;
    color: #fff;
    background-color: var(--colortwo);
    border-radius: 4px;
    letter-spacing: .1em;
    box-shadow: 20px 20px 40px 0px rgb(73 76 137 / 13%);
    overflow: hidden;
    display: inline-flex;
    padding: 0;
    position: relative;
    border: 1px solid rgb(44, 46, 49);
    line-height: 24px;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
    transition: all .3s;
}

    .slide-btn:hover {
        border-color: transparent;
        background-color: var(--colorone);
        color: #000;
        transform: translate3d(0,-2px,0);
        box-shadow: 20px 12px 28px rgb(0 0 0 / 12%);
    }

    .slide-btn > span {
        margin: 0 auto;
        padding: 0.4em 2em;
        display: inline-flex;
        border-radius: inherit;
        border-color: inherit;
        align-items: center;
        transition: transform .3s cubic-bezier(.22,.665,.34,.875);
    }

        .slide-btn > span > .btn-txt {
            position: relative;
            z-index: 3;
        }

/* Slide */
/* Bilgi Kutuları */
.info-area {
    position: relative;
    background-color: var(--colorthree);
}

.info-box {
    position: relative;
    text-align: center;
    padding: 50px 0;
}

    .info-box:before {
        content: '';
        position: absolute;
        height: 30%;
        width: 1px;
        right: -15px;
        top: 50%;
        background-color: rgba(136,136,136,0.3);
        transform: translateY(-50%);
    }

    .info-box.last:before {
        display: none;
    }

.info-box-icon {
    margin: 0 0 15px;
    vertical-align: middle;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    white-space: nowrap;
    position: relative;
    height: 60px;
    width: 60px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-color: #ffffff;
}

    .info-box-icon img {
        max-height: 32px;
        max-width: 40px;
        vertical-align: middle;
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

.info-box-title {
    color: var(--colortwo);
    margin: 5px 0px;
    font-weight: bold;
    letter-spacing: -0.01em;
}

.info-box-details {
    width: 100%;
    margin: 10px auto;
    display: block;
    font-weight: normal;
    color: var(--colortwo);
    text-align: center;
    line-height: 1.65;
}
/* Bilgi Kutuları */
/* Banner - 1 */
.how-work-bg {
    position: absolute;
    left: -50px;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(/Content/img/border-line-1.png);
    background-repeat: no-repeat;
}

.how-work-single .number {
    width: 48px;
    height: 48px;
    background-image: -webkit-gradient( linear, left top, left bottom, from(rgb(225, 50, 61)), to(rgb(255, 218, 153)));
    background-image: linear-gradient( 180deg, rgb(225, 50, 61) 0%, rgb(255, 218, 153) 100%);
    border-radius: 50%;
    line-height: 40px;
    font-weight: 600;
    font-size: 20px;
    color: #fff;
    border: 5px solid #fff;
    position: absolute;
    top: 0;
    left: 105px;
}

.block-area {
    position: relative;
    overflow: hidden;
    /*min-height: 100vh;*/
    min-height: auto;
    padding-top: 4.99995em;
    padding-bottom: 4.99995em;
}

    .block-area.main-corporate {
        position: relative;
        overflow: hidden;
        min-height: auto !important;
        padding-top: 4.99995em;
        padding-bottom: 4.99995em;
    }

    .block-area.flex {
        display: flex;
        align-items: center;
        justify-content: center;
    }

.orta-faq {
    margin: 25px auto 0;
}

.accordion-toggle {
    color: #000;
    font-weight: normal;
    font-size: 13px;
    text-transform: uppercase;
    margin: 0 auto;
    padding: 20px 5px 20px 0;
    position: relative;
    pointer-events: all;
    text-align: left;
    cursor: pointer;
}

    .accordion-toggle * {
        color: #000;
        font-weight: bold;
        text-transform: uppercase;
        margin: 0 auto;
        padding: 20px 0;
        position: relative;
        pointer-events: all;
        text-align: left;
        cursor: pointer;
    }

    .accordion-toggle:before {
        line-height: 1;
        width: 20px;
        right: 5px;
        top: 25%;
        font-size: 28px;
        position: absolute;
        content: "+";
        display: inline-block;
        -webkit-transition: -webkit-transform .3s ease;
        transition: -webkit-transform .3s ease;
        -o-transition: transform .3s ease;
        transition: transform .3s ease;
        transition: transform .3s ease,-webkit-transform .3s ease;
    }

    .accordion-toggle.active:before {
        -webkit-transform: rotate(45deg) scale(1.08);
        -ms-transform: rotate(45deg) scale(1.08);
        transform: rotate(45deg) scale(1.08);
        top: 20%;
    }
/*.accordion-toggle.active {
    pointer-events: none;
}*/
.accordion-content {
    overflow: hidden;
    display: none;
    padding: 5px 0;
    margin: 0;
    line-height: 24px;
}

    .accordion-content p {
        color: #000;
        line-height: 1.6 !important;
        margin-bottom: 20px;
    }

        .accordion-content p img {
            width: 100% !important;
        }

    .accordion-content ul,
    .blog-area ul,
    .blog-area ol {
        padding-left: 30px;
    }

        .accordion-content ul li,
        .blog-area ul li,
        .blog-area ol li {
            list-style-type: disc;
        }

.accordian-wrapper {
    margin-bottom: 10px;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 15px 0px rgb(52 69 199 / 40%);
    box-shadow: 0px 0px 15px 0px rgb(52 69 199 / 40%);
    border: 0;
    border-radius: 10px;
    padding: 5px 15px;
}

    .accordian-wrapper:last-child {
        margin-bottom: 20px;
    }

.accordion-toggle .tab-icon {
    display: none;
    font-size: 1.29rem;
    min-width: 26px;
    /*display: inline-block;*/
    vertical-align: top;
    margin-right: 15px;
    text-align: right;
}

.video-cont {
    background-image: url(/Content/img/video-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    width: 708px;
    height: 708px;
    position: absolute;
    right: 60px;
    top: 255px;
    background-size: contain;
    text-align: center !important;
    display: table !important;
}

.d-table-cell {
    display: table-cell !important;
}

.align-middle {
    vertical-align: middle !important;
}

.video-cont a {
    display: inline-block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    font-size: 30px;
    line-height: 80px;
    padding: 0 28px;
    margin-top: 30px;
    background-color: #fff;
    color: #e1323d;
    position: relative;
}

    .video-cont a:before {
        content: "";
        position: absolute;
        left: -5px;
        top: -5px;
        height: 90px;
        width: 90px;
        border: 3px solid #fff;
        border-radius: 50%;
        -webkit-animation: icon-bubble 1s infinite forwards linear 0.5s;
        animation: icon-bubble 1s infinite forwards linear 0.5s;
    }

    .video-cont a:after {
        content: "";
        position: absolute;
        left: -5px;
        top: -5px;
        height: 90px;
        width: 90px;
        border: 3px solid #fff;
        border-radius: 50%;
        -webkit-animation: icon-bubble 1s infinite forwards linear;
        animation: icon-bubble 1s infinite forwards linear;
    }

.video-area {
    padding: 10em 0;
    background-image: url(/Content/img/counter-bg-2.png);
    position: relative;
    padding: 140px 0 126px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    overflow: hidden;
}

.video-area-circle .circle1 {
    left: 30%;
    top: 36%;
    width: 8%;
}

.video-area-circle .circle2 {
    left: 40%;
    top: 42%;
    width: 15%;
}

.video-area-circle .circle3 {
    right: -10%;
    top: 60%;
    width: 15%;
}

.video-area-circle img {
    position: absolute;
    -webkit-animation: zoominoutsinglefeatured 4s infinite;
    animation: zoominoutsinglefeatured 4s infinite;
}

.video-area .row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    /*margin-right: -15px;
    margin-left: -15px;*/
}

.video.title {
    padding-bottom: 325px;
}

    .video.title h5 {
        font-weight: 700;
        text-transform: uppercase;
        color: #e1323d;
        font-size: 18px;
        line-height: 28px;
    }

    .video.title h2 {
        font-weight: 700;
        margin-bottom: 24px;
        font-size: 50px;
        line-height: 60px;
    }

    .video.title p {
        font-size: 16px;
        color: #000;
        line-height: 26px;
    }

.counter.title {
    padding-bottom: 95px;
}

    .counter.title h5 {
        font-weight: 700;
        text-transform: uppercase;
        color: #ffda99 !important;
        font-size: 18px;
        line-height: 28px;
    }

    .counter.title h2 {
        font-weight: 700;
        margin-bottom: 24px;
        color: #fff !important;
        font-size: 50px;
        line-height: 60px;
    }

    .counter.title p {
        color: #000;
        line-height: 26px;
    }

.corporate {
    /*padding: 10em 0;*/
    /*background-image: url(/Content/img/about-bg-1.png);*/
    position: relative;
    /*padding: 140px 0 126px;*/
    padding: 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    min-height: auto;
}

    .corporate .dtc {
        display: flex;
        align-items: center;
        justify-content: center;
    }

.block-area.video {
    display: flex;
    align-items: center;
    justify-content: center;
}

.block-area.yorum {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: auto;
    padding-top: 7em;
    padding-bottom: 7em;
    background-color: #fff;
}

.layer-6-bg {
    background-size: cover;
    width: 100%;
    position: relative;
    box-sizing: border-box;
    float: left;
    height: 100%;
    background-size: 100%;
    background-repeat: no-repeat;
}

.block-area .section-background {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

    .block-area .section-background .section1-bg {
        background-color: rgb(255, 255, 255);
        position: relative;
        z-index: 5;
        width: 50%;
        float: left;
        height: 100%;
    }

    .block-area .section-background .section2-bg {
        background-color: rgb(245, 244, 240);
        position: relative;
        z-index: 5;
        width: 50%;
        float: left;
        height: 100%;
    }

    .block-area .section-background .section3-bg {
        background-color: #ffda99;
        position: relative;
        z-index: 5;
        width: 50%;
        float: left;
        height: 100%;
    }

    .block-area .section-background .section4-bg {
        background-color: rgb(240, 238, 232);
        position: relative;
        z-index: 5;
        width: 50%;
        float: left;
        height: 100%;
    }

.block-area .layer.pad {
    position: relative;
    z-index: 8;
    height: 100%;
    padding-top: 4.99995em;
    padding-bottom: 4.99995em;
}

.block-area .layer {
    position: relative;
    z-index: 8;
    height: 100%;
}

    .block-area .layer .dt {
        width: 100%;
        height: 100%;
    }

        .block-area .layer .dt .dtc {
            position: relative;
        }

.block-area.main-corporate .layer .dt .dtc,
.block-area.left .layer .dt .dtc {
    display: flex;
    align-items: center;
    justify-content: center;
}

.block-area .layer .dt .dtc .title-wrapper {
    text-align: center;
    margin: 0 auto;
}

.block-area.main-corporate .layer .dt .dtc .title-wrapper.center h1,
.block-area.main-corporate .layer .dt .dtc .title-wrapper {
    text-align: left !important;
}

    .block-area.main-corporate .layer .dt .dtc .title-wrapper.center .square-coklu {
        margin-left: 50px;
    }

.block-area .layer .dt .dtc .title-wrapper.left {
    text-align: left;
    /*padding: 0;*/
}

.block-area .layer .dt .dtc .title-wrapper .square {
    transform-origin: 50% 0;
    background-color: #e1323d;
    border-radius: 2px;
    position: relative;
    width: 10px;
    height: 10px;
    margin: 0 auto 2.499975em;
}

.block-area .layer .dt .dtc .title-wrapper.left .square {
    margin: 0 0 2.499975em;
}

.block-area .layer .dt .dtc .title-wrapper.center .square-coklu {
    font-size: 14px;
    color: #000;
    position: relative;
}

    .block-area .layer .dt .dtc .title-wrapper.center .square-coklu i:nth-child(1) {
        height: 5px;
        width: 5px;
        background-color: #e1323d;
    }

    .block-area .layer .dt .dtc .title-wrapper.center .square-coklu .square-shape i {
        height: 9px;
        width: 9px;
        position: absolute;
        top: 0;
        left: 0;
    }

    .block-area .layer .dt .dtc .title-wrapper.center .square-coklu .square-shape {
        width: 40px;
        height: 35px;
        left: -52px;
        top: 0;
        position: absolute;
    }

        .block-area .layer .dt .dtc .title-wrapper.center .square-coklu .square-shape i:nth-child(1) {
            top: -8px;
            width: 5px;
            height: 5px;
            left: 20px;
            background-color: #e1323d;
        }

        .block-area .layer .dt .dtc .title-wrapper.center .square-coklu .square-shape i:nth-child(2) {
            width: 10px;
            left: 28px;
            height: 10px;
            background-color: #00B0B5;
        }

        .block-area .layer .dt .dtc .title-wrapper.center .square-coklu .square-shape i:nth-child(3) {
            height: 17px;
            width: 17px;
            background-color: #ffda99;
        }

        .block-area .layer .dt .dtc .title-wrapper.center .square-coklu .square-shape i:nth-child(4) {
            top: 10px;
            left: 10px;
            width: 12px;
            height: 12px;
            background-color: #e1323d;
        }

.block-area .layer .dt .dtc .title-wrapper.center h1 {
    line-height: 1.306;
    font-size: 2.2223em;
    margin-top: 0.499995em;
    margin-bottom: 0.499995em;
    text-align: center;
    color: #1a1917;
    font-weight: 400;
}

    .block-area .layer .dt .dtc .title-wrapper.center h1 b {
        font-weight: 800;
    }

.block-area.corporate2 .layer .dt .dtc .title-wrapper h1,
.block-area .layer .dt .dtc .title-wrapper h1 {
    line-height: .8;
    font-size: 2.2223em;
    font-weight: 800;
    margin-top: 0.499995em;
    margin-bottom: 0.499995em;
    text-align: center;
    color: #1a1917;
}

.block-area .layer .dt .dtc .title-wrapper.left h1 {
    text-align: left;
}

.block-area .layer .dt .dtc .title-wrapper h2 {
    font-size: 1.2223em;
    text-align: center;
    color: #66645c;
    font-style: italic;
    margin-bottom: 100px;
}

.block-area.corporate2 .layer .dt .dtc .title-wrapper h2,
.block-area.corporate .layer .dt .dtc .title-wrapper h2 {
    font-style: normal;
    color: #e1323d;
    margin-bottom: 0;
}

.block-area .layer .dt .dtc .title-wrapper.left h2 {
    text-align: left;
    margin-bottom: 30px;
    margin-top: 10px;
}

.block-area .layer .dt .dtc .small-slider-wrapper {
    overflow: hidden;
}

.block-area .layer .dt .dtc .title-wrapper.left p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    color: #000;
    margin-bottom: 25px;
    padding-right: 25px;
}

.block-area.video .layer .dt .dtc .title-wrapper .top P {
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    color: #1a1917;
    font-size: 1.9445em;
}

.block-area.video .layer .dt .dtc .title-wrapper .bottom {
    border-left: 2px solid #e1323d;
    padding-left: 1.66665em;
    margin-top: 6.6666em;
}

    .block-area.video .layer .dt .dtc .title-wrapper .bottom p {
        font-size: 1.1112em;
        font-weight: 700;
        color: #000;
    }

    .block-area.video .layer .dt .dtc .title-wrapper .bottom .subtitle {
        font-size: 1.1112em;
        font-style: italic;
    }

.col-number {
    position: relative;
}

    .col-number .large-numbers {
        font-size: 5em;
        font-weight: 800;
        text-align: center;
    }

        .col-number .large-numbers .back-nums {
            position: relative;
            z-index: 3;
            letter-spacing: -.05em;
            color: #e1323d;
        }

            .col-number .large-numbers .back-nums span {
                position: absolute;
                display: block;
                z-index: 2;
                bottom: -0.05em;
                right: -0.1em;
                -webkit-background-clip: text;
                color: transparent;
                background-image: repeating-linear-gradient(0,transparent,transparent 3px,#e1323d 4px);
            }

    .col-number .large-numbers--sub {
        letter-spacing: .05em;
        position: relative;
        top: -1em;
        text-align: center;
        font-size: 1.1112em;
        font-weight: 600;
        color: #000;
    }

.section-background {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 8;
}

.section-video {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    transform: none;
}

.section-video__video-wrapper {
    position: absolute;
    bottom: 0;
    overflow: hidden;
    left: 35%;
    transform: none;
    width: 40%;
    height: 100%;
}

    .section-video__video-wrapper video {
        position: absolute;
        bottom: 0;
        height: 100%;
        width: auto;
        left: 50%;
        transform: translateX(-50%);
        opacity: 1;
        transition: opacity .15s ease;
    }

.dt-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    position: absolute;
    right: 12%;
    bottom: 5%;
}

.main-corporate .dt-btn {
    position: relative !important;
    display: inline-block;
    right: auto;
    bottom: auto;
}

.footer_play-logo-corporate a {
    display: inline-block;
    margin: 25px 0;
}

.talep-btn {
    position: relative;
}

    .talep-btn .download-icon-right {
        float: left;
    }

    .talep-btn .download-icon {
        float: left;
        width: 40px;
        color: #e1323d;
        height: 40px;
        font-size: 21px;
        line-height: 40px;
        border-radius: 100%;
        margin-right: 15px;
        text-align: center;
        background-color: #ffda99;
        -webkit-box-shadow: rgb(7 7 56 / 15%) 0 8px 9px 0;
        box-shadow: rgb(7 7 56 / 15%) 0 8px 9px 0;
    }

    .talep-btn p {
        color: rgb(102, 101, 97);
        font-size: 12px;
        margin: 0 auto;
    }

    .talep-btn a {
        color: rgb(102, 101, 97);
        font-size: 12px;
        color: #e1323d;
        font-weight: bold;
        padding-bottom: 5px;
        margin-top: 5px;
        position: relative;
    }

        .talep-btn a:before {
            top: -4px;
            right: -25px;
            content: "\f30b";
            font-size: 18px;
            font-weight: bold;
            position: absolute;
            -webkit-transition: 0.3s all ease-in-out;
            -o-transition: 0.3s all ease-in-out;
            transition: 0.3s all ease-in-out;
            font-family: "Font Awesome 5 Free";
            color: #e1323d;
        }

        .talep-btn a:after {
            left: 0;
            bottom: 0;
            content: "";
            height: 2px;
            width: 0%;
            position: absolute;
            background-color: #e1323d;
            -webkit-transition: 0.3s all ease-in-out;
            -o-transition: 0.3s all ease-in-out;
            transition: 0.3s all ease-in-out;
        }

        .talep-btn a:hover:after {
            width: 100%;
        }

        .talep-btn a:hover:before {
            right: -35px;
        }

.play-video-button {
    transition: transform .5s ease,opacity .25s ease;
    top: 60%;
    left: 50%;
    width: 4.5em;
    height: 4.5em;
    position: absolute;
    margin-top: -2.25em;
    margin-left: -2.25em;
    cursor: pointer;
    transform: scale(1);
}

.play-video-button__back {
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    background-color: hsla(0,0%,100%,.2);
    transition: transform .25s ease,background .25s ease;
}

.play-video-button__forward {
    position: absolute;
    border-radius: 50%;
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    background-color: #fff;
    transition: transform .25s ease,background .25s ease;
}

.play-video-button .play-video-button__play-icon {
    visibility: visible;
    opacity: 1;
}

.play-video-button__icon {
    position: absolute;
    top: 50%;
    left: 50%;
    color: #e1323d;
    width: 1em;
    height: 1.2em;
    margin-left: -0.4em;
    margin-top: -0.6em;
    transition: transform .25s ease;
}

.play-video-button .play-video-button__pause-icon {
    visibility: hidden;
    opacity: 0;
    margin-left: -0.5em;
}

.play-video-button:hover .play-video-button__back {
    transform: scale(1.1);
}

.play-video-button:hover .play-video-button__forward {
    background-color: #e1323d;
    transform: scale(.9);
}

.play-video-button:hover .play-video-button__icon {
    z-index: 1;
    color: #fff;
}

.features-list {
    position: relative;
    padding-left: 0;
    padding-right: 6.6666em;
    margin-top: 5em;
}

    .features-list .p-r {
        padding-left: 0;
        padding-right: 3.3333em;
    }

.features-list__item {
    display: inline-block;
    margin-bottom: 1.66665em;
}

    .features-list__item:last-child {
        margin-bottom: 0;
    }

.features-list__icon {
    width: 25%;
    float: left;
    padding-right: 10px;
}

    .features-list__icon img {
        width: 100%;
    }

.features-list__content {
    width: 75%;
    float: left;
}

    .features-list__content > p {
        margin-bottom: 0.25em;
        font-size: .8889em;
        font-weight: 700;
    }

        .features-list__content > p.subtitle {
            font-size: 10px;
            font-weight: 500;
        }

.small-slider__slide {
    position: relative;
    border-radius: 3px;
    overflow: hidden;
    display: block;
}

    .small-slider__slide img {
        display: block;
        width: 100%;
    }
    .small-slider__slide::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 58%;
        background: linear-gradient(to top, rgb(0 0 0), transparent);
        pointer-events: none;    z-index: 1;
    }
.small-slider__content {
    position: absolute;
    text-align: left;
    width: 100%;
    bottom: 0;
    left: 0;
    padding: 2.499975em 1.66665em;
	    z-index: 2;
}

    .small-slider__content:before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 170px;
        background: linear-gradient(0deg,#000 0,transparent);
        opacity: .3;
    }

.small-slider__p, .small-slider__p-small {
    position: relative;
    color: #fff;
    white-space: normal;
    font-size: 1.1112em;
    font-weight: 700;
}

.small-slider__p {
    line-height: 1.2;
}

.small-slider__p-small {
    font-style: italic;
    font-size: .91em;
}

.subscribe-form .caption {
    line-height: .8;
    font-size: 1.3334em;
    font-weight: 700;
    margin: 50px auto 25px;
    text-align: center;
    color: #1a1917;
}

.subscribe-form .form-group {
    text-align: center;
    position: relative;
}

    .subscribe-form .form-group input.form-control {
        text-decoration: none;
        outline: none;
        border: none;
        box-shadow: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        padding: 0.6em 0.8em;
        display: inline-block;
        width: auto;
        min-width: 300px;
        border: 1px solid #cbcac6;
        border-radius: 0;
        transition: box-shadow .25s ease,border .25s ease;
        font-size: 1.0556em;
        color: #1a1918;
        height: 48px;
    }

        .subscribe-form .form-group input.form-control:focus {
            border: 1px solid #ffda99;
            box-shadow: 0 0 2px 2px rgb(255 218 153 / 40%);
        }

    .subscribe-form .form-group .ErrorVal {
        position: absolute !important;
        bottom: -20px !important;
        color: #e1323d !important;
        left: 32% !important;
    }

.top-info__callback.subscribe-button {
    font-size: 14px;
    height: 47px;
    margin-left: -5px;
    border-radius: 0 3px 3px 0;
    -webkit-appearance: media-slider;
}

.subscribe-form .subscribe-bottom {
    text-align: center;
}

    .subscribe-form .subscribe-bottom span {
        position: relative;
        color: #807e79;
        border-bottom: 1px solid hsla(53,5%,68%,.5);
        transition: color .25s ease,border .25s ease;
    }

        .subscribe-form .subscribe-bottom span:hover {
            color: #807e79;
            border-bottom: 1px solid hsla(53,5%,68%,.8);
        }

.product-card {
    width: 40%;
    height: 30em;
    padding: 1.11em 1.6em 1.9em;
    transition: box-shadow .25s ease;
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 1px 1px rgb(0 0 0 / 20%);
    white-space: normal;
    text-align: left;
    cursor: pointer;
    float: left;
}

    .product-card h1 {
        font-size: 1.2223em;
        font-weight: 700;
        margin: 15px 0px;
        text-align: left;
        line-height: 1.2;
        color: #1a1917;
    }

    .product-card p {
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        line-height: 1.42857143;
        color: rgb(128, 126, 121);
        margin: 15px 0px;
    }

    .product-card > img {
        height: 275px;
    }

.product-right {
    width: 57%;
    position: relative;
    height: 30em;
    transition: box-shadow .25s ease;
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 1px 1px rgb(0 0 0 / 20%);
    white-space: normal;
    text-align: left;
    padding: 0;
    cursor: pointer;
    float: left;
    margin-left: 1.5em;
}

.product-card:hover {
    box-shadow: 0 10px 20px rgb(0 0 0 / 20%);
}

.product-right:hover {
    box-shadow: 0 10px 20px rgb(0 0 0 / 20%);
}

.product-right:after, .product-right:before {
    right: 100%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.product-right:before {
    border-color: hsla(0,0%,94%,0);
    border-right-color: #dededc;
    border-width: 14px;
    margin-top: -14px;
}

.product-right:after {
    border-color: hsla(0,0%,100%,0);
    border-right-color: #fff;
    border-width: 13px;
    margin-top: -13px;
}

.product-right img {
    display: block;
    width: 100%;
    height: 100%;
}

.customer-card {
    /*padding: 0 20% 0 5%;*/
    padding: 0 20%;
    text-align: center;
}

    .customer-card h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        font-weight: bold;
        line-height: 1.42857143;
        color: #000;
        margin: 15px 0px;
    }

    .customer-card h2 {
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        line-height: 1.42857143;
        color: rgb(128, 126, 121);
        margin-top: 1.66665em;
        margin-bottom: 1.66665em;
    }

    .customer-card p {
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        line-height: 1.42857143;
        color: rgb(128, 126, 121);
        margin: 15px 0px;
    }

.dib {
    display: inline-block;
}

    .dib img {
        filter: grayscale(1);
    }

.star {
    margin: 15px auto 0;
}

.star0 > .dib > img {
    filter: grayscale(1);
}

.star1 > .dib:first-child > img {
    filter: inherit;
}

.star2 > .dib:nth-child(-n+2) > img {
    filter: inherit;
}

.star3 > .dib:nth-child(-n+3) > img {
    filter: inherit;
}

.star4 > .dib:nth-child(-n+4) > img {
    filter: inherit;
}

.star5 > .dib > img {
    filter: inherit;
}
/* Referanslar */
.referance-area-ic-sayfa {
    position: relative;
    padding: 2.5em 0;
    background-color: #f5f4f0;
}

.referance-area {
    z-index: 8;
    position: relative;
    padding: 0;
}

    .referance-area .item-brand {
        padding: 0;
        align-items: stretch;
        display: flex;
        align-items: flex-start;
        background-color: #fff;
    }

        .referance-area .item-brand .inner {
            justify-content: center;
            transition: box-shadow .3s,transform .65s cubic-bezier(.23,1,.32,1);
            display: flex;
            width: 100%;
            height: 25vh;
            flex-direction: column;
            flex-grow: 1;
            position: relative;
            border-right: 1px solid #ccc;
            border-bottom: 1px solid #ccc;
        }

        .referance-area .item-brand:nth-child(6) .inner,
        .referance-area .item-brand:nth-child(12) .inner {
            border-right: none;
        }

        .referance-area .item-brand:nth-child(n+7):nth-child(-n+12) .inner {
            border-bottom: none;
        }


        .referance-area .item-brand .inner .brand-wrapper {
            position: relative;
        }

            .referance-area .item-brand .inner .brand-wrapper .brand-content {
                display: flex;
                margin-bottom: 0;
            }

                .referance-area .item-brand .inner .brand-wrapper .brand-content figure {
                    justify-content: center;
                    display: inline-flex;
                    vertical-align: top;
                    margin: 0;
                    max-width: 100%;
                    flex-grow: 1;
                    position: relative;
                }

                    .referance-area .item-brand .inner .brand-wrapper .brand-content figure .in {
                        margin-bottom: 0;
                        display: inline-flex;
                        flex-direction: column;
                        vertical-align: top;
                        max-width: 100%;
                    }

                        .referance-area .item-brand .inner .brand-wrapper .brand-content figure .in img {
                            height: auto;
                            max-width: 100%;
                            vertical-align: top;
                            border-radius: inherit;
                        }

.referance-area-ic-sayfa .referance-area .item-brand:nth-child(n+7):nth-child(-n+12) .inner {
    border-bottom: 1px solid #ccc;
}

.referance-area-ic-sayfa .referance-area .item-brand:nth-child(6n) .inner {
    border-right: none;
}
/* Referanslar */
.heading {
    position: relative;
}

.heading2 {
    position: relative;
    text-align: center;
}

    .heading2.text-left {
        position: relative;
        text-align: left;
        margin-bottom: 30px;
    }

        .heading2.text-left > h5 {
            margin: 0 !important;
        }

    .heading2.margin10 {
        margin: 0 auto;
    }

.heading > h4 {
    display: block;
    margin-top: 0;
    margin-bottom: 1.25em !important;
    position: relative;
    font-weight: bold;
    line-height: 1.2em;
    letter-spacing: 0.1em;
    color: var(--colortwo);
}

.heading > h2 {
    display: block;
    margin-top: 0;
    margin-bottom: 1.25em !important;
    position: relative;
    color: var(--colortwo);
}

.heading > h5 {
    display: block;
    margin-top: 0;
    margin-bottom: 1.25em !important;
    position: relative;
    line-height: 1.25em;
    color: var(--colortwo);
    font-weight: normal;
}

.heading2 > h5 {
    width: 50%;
    margin: 1em auto;
    display: block;
    position: relative;
    line-height: 1.75em;
    color: #000000;
}

.heading2 > h1 {
    display: block;
    margin-top: 0;
    margin-bottom: 0 !important;
    position: relative;
    font-weight: bold;
    letter-spacing: -0.02em;
    line-height: 1em;
    color: #000000;
}

.banner-button {
    position: relative;
}

    .banner-button > a {
        color: var(--colortwo);
        background-color: var(--colorone);
        border-width: 1px;
        border-radius: 4px;
        padding-right: 1em !important;
        padding-left: 1em !important;
        overflow: hidden;
        box-shadow: 0 0 0 transparent;
        display: inline-flex;
        padding: 0;
        position: relative;
        border: 1px solid rgb(237, 242, 246);
        line-height: 24px;
        font-size: 14px;
        font-weight: bold;
        white-space: nowrap;
        transition: all .3s;
    }

        .banner-button > a:hover {
            border-color: transparent;
            background-color: rgb(237, 242, 246);
            color: #000;
            transform: translate3d(0,-2px,0);
            box-shadow: 0 12px 28px rgb(0 0 0 / 12%);
        }

        .banner-button > a > span {
            margin: -0.5px;
            padding: 0.6em 1em;
            display: inline-flex;
            border-radius: inherit;
            border-color: inherit;
            align-items: center;
            transition: transform .3s cubic-bezier(.22,.665,.34,.875);
        }

            .banner-button > a > span > .btn-txt {
                position: relative;
                z-index: 3;
            }

            .banner-button > a > span > .btn-icon {
                margin-inline-end: 0;
                margin-inline-start: 8px;
                position: relative;
                z-index: 3;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                font-size: 1em;
                letter-spacing: 0;
                background-size: 99.99% !important;
                transition: background .3s,color .125s,box-shadow .3s,border .3s;
            }
/* Banner - 1 */
/* Banner Üçlü */
.block-area-uclu {
    position: relative;
}

    .block-area-uclu > div {
        padding: 0;
        margin: 0 auto;
    }

.elementor-column, .elementor-column-wrap {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, .3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}

.elementor-column-wrap {
    border-style: solid;
    border-width: 0px 1px 0px 0px;
    border-color: #FFFFFF33;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding-top: 0;
    padding-bottom: 0;
    padding: 0;
    width: 100%;
}

.elementor-widget-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-line-pack: start;
    align-content: flex-start;
}

    .elementor-widget-wrap > .elementor-element {
        width: 100%;
        text-align: left;
        position: relative;
    }

        .elementor-widget-wrap > .elementor-element > .elementor-widget-container {
            padding: 0px 0px 40px 0px;
            transition: 0.4s;
            position: relative;
            z-index: 1;
            cursor: pointer;
        }

        .elementor-widget-wrap > .elementor-element:hover > .elementor-widget-container {
            background-color: #0D122A66;
        }

        .elementor-widget-wrap > .elementor-element > .elementor-widget-container:hover:before {
            opacity: 1;
        }

        .elementor-widget-wrap > .elementor-element > .elementor-widget-container:before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            border-radius: inherit;
            opacity: 0;
            transition: inherit;
        }

        .elementor-widget-wrap > .elementor-element > .elementor-widget-container > .infobox_link {
            position: absolute;
            z-index: 2;
            width: 100%;
            height: 100%;
            left: 0;
            top: 0;
        }

        .elementor-widget-wrap > .elementor-element > .elementor-widget-container > .infobox {
            height: 60vh;
            justify-content: flex-end;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            transition: 0.4s;
        }

            .elementor-widget-wrap > .elementor-element > .elementor-widget-container > .infobox > .infobox_wrapper,
            .elementor-widget-wrap > .elementor-element > .elementor-widget-container > .infobox > .infobox_wrapper .infobox-title_wrapper {
                position: relative;
            }

                .elementor-widget-wrap > .elementor-element > .elementor-widget-container > .infobox > .infobox_wrapper .infobox-title_wrapper h3 {
                    margin: 0px 70px 10px 40px;
                    font-size: 30px;
                    line-height: 42px;
                    color: #FFFFFF;
                    position: relative;
                    z-index: 1;
                    font-weight: 700;
                    word-break: break-word;
                    transition: 0.4s;
                }

                .elementor-widget-wrap > .elementor-element > .elementor-widget-container > .infobox > .infobox_wrapper .infobox_content {
                    font-weight: 400;
                    margin: 0px 40px 0px 40px;
                    color: #FFFFFF;
                    opacity: 0;
                    max-height: 0;
                    overflow: hidden;
                    transition: max-height 0.8s cubic-bezier(0, 1, 0, 1) -0.1s, opacity 0.4s;
                    font-size: 16px;
                    line-height: 1.875em;
                    transition: 0.4s;
                }

        .elementor-widget-wrap > .elementor-element > .elementor-widget-container:hover > .infobox > .infobox_wrapper .infobox_content {
            color: #FFFFFF;
            opacity: 1;
            max-height: 9999px;
            transition-timing-function: cubic-bezier(0.5, 0, 1, 0), ease;
            transition-delay: 0s, .1s;
        }

        .elementor-widget-wrap > .elementor-element > .elementor-widget-container > .infobox > .infobox_wrapper .infobox_content > p {
            display: inline-block;
            margin-top: 0;
            margin-bottom: 1.25em !important;
            position: relative;
            font-size: 16px;
            line-height: 1.75em;
            color: #fff;
        }

        .elementor-widget-wrap > .elementor-element > .elementor-widget-container > .infobox > .infobox_wrapper .infobox-button_wrapper {
            margin: 30px 0px 0px 40px;
        }

            .elementor-widget-wrap > .elementor-element > .elementor-widget-container > .infobox > .infobox_wrapper .infobox-button_wrapper .button-read-more {
                display: inline-block;
                position: relative;
                z-index: 1;
                width: 40px;
                height: 40px;
                max-width: -webkit-max-content;
                max-width: max-content;
                border: 1px solid;
                border-radius: 35px;
                font-weight: 700;
                vertical-align: middle;
                overflow: hidden;
                white-space: nowrap;
                transition: 0.5s ease-in-out;
                border-color: rgba(255, 255, 255, 0.5);
                background-color: rgba(243, 23, 23, 0);
                color: #fff;
            }

        .elementor-widget-wrap > .elementor-element > .elementor-widget-container:hover > .infobox > .infobox_wrapper .infobox-button_wrapper .button-read-more {
            width: 200px;
            border-color: transparent;
            color: var(--colortwo);
            background-color: var(--colorone);
            transform: translate3d(0,-2px,0);
            box-shadow: 0 12px 28px rgb(0 0 0 / 12%);
        }

        .elementor-widget-wrap > .elementor-element > .elementor-widget-container > .infobox > .infobox_wrapper .infobox-button_wrapper .button-read-more svg {
            color: #FFFFFF;
            display: inline-block;
            text-align: center;
            z-index: 1;
            width: 40px;
            height: 18px;
            line-height: 38px;
            transition: 0.5s;
            vertical-align: middle;
        }

        .elementor-widget-wrap > .elementor-element > .elementor-widget-container:hover > .infobox > .infobox_wrapper .infobox-button_wrapper .button-read-more svg {
            color: var(--colortwo);
        }

        .elementor-widget-wrap > .elementor-element > .elementor-widget-container > .infobox > .infobox_wrapper .infobox-button_wrapper .button-read-more span {
            transition: background-color .5s;
            font-size: 12px;
            font-weight: 700;
            line-height: 38px;
            display: inline-block;
            vertical-align: middle;
            padding-right: 25px;
            padding-left: 4px;
            min-height: 38px;
        }
/* Banner Üçlü */

/* Blog */
.katalog {
    position: relative;
    z-index: 9;
    padding: 10em 0;
}

.blog-area {
    position: relative;
    z-index: 9;
    padding: 2.5em 0;
}

    .blog-area > div,
    .blog-area > div > div {
        padding: 0;
    }

.bloglar .blog-layout-1 {
    margin: 10px;
}

.blog-layout-1 {
    position: relative;
    margin: 30px 15px;
}

    .blog-layout-1 .post-img {
        overflow: hidden;
        position: relative;
        height: 230px;
        display: inline-flex;
        border-radius: 10px 10px 0 0;
    }

        .blog-layout-1 .post-img.figure-bottom {
            border-radius: 0 0 10px 10px;
        }

        .blog-layout-1 .post-img img {
            transform: scale(1.02);
            border-radius: 10px 10px 0 0;
            transition: all .5s ease-in-out;
            height: auto;
            width: 100%;
            max-width: 100%;
            min-width: 100%;
            border: none;
            border-radius: 0;
            -webkit-box-shadow: none;
            box-shadow: none;
        }

    .blog-layout-1:hover .post-img img {
        transform: scale(1.1);
    }

    .blog-layout-1 .entry-date-wrap {
        position: absolute;
        right: 0;
        bottom: 40px;
        transition: all .3s ease-in-out;
    }

        .blog-layout-1 .entry-date-wrap .entry-date {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translateX(-50%) translateY(-50%);
            text-align: center;
            color: #fff;
            font-size: 24px;
            line-height: 1.1;
            font-weight: 700;
        }

            .blog-layout-1 .entry-date-wrap .entry-date span {
                color: #fff;
                font-weight: 400;
                font-size: 16px;
                display: block;
            }

                .blog-layout-1 .entry-date-wrap .entry-date span img {
                    height: 60px;
                    width: 60px;
                    display: block;
                    max-width: 60px;
                    min-width: 60px;
                }

    .blog-layout-1:hover .entry-date-wrap {
        bottom: 50px;
    }

    .blog-layout-1 .content-box {
        background-color: #fff;
        padding: 20px 30px 25px;
        box-shadow: 0 0 20px 0 rgba(0,0,0,.1);
        border-radius: 0 0 10px 10px;
    }

    .blog-layout-1 h3.post-title {
        margin: 10px auto;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        height: 55px;
    }

        .blog-layout-1 h3.post-title a {
            width: 100%;
            padding-bottom: 20px;
            margin-bottom: 20px;
            color: #000;
            font-size: 18px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            line-height: 1.2em;
        }

    .blog-layout-1 .entry-description {
        margin-top: 10px;
        margin-bottom: 10px;
        color: #000;
        font-size: 14px;
        line-height: 1.7em;
        font-weight: 400;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        height: 75px;
    }

.blog-item {
    position: relative;
    display: block;
    border-radius: 3px;
    overflow: hidden;
    background-color: #fff;
}

.blog-item__content {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    text-align: left;
    z-index: 3;
    padding: 1.499975em;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tac {
    text-align: center;
}

.item-blog {
    padding: 5px;
    margin-bottom: 15px;
}

    .item-blog article {
        position: relative;
        background-color: #fff;
        flex-grow: 1;
        transition: box-shadow .65s,transform .65s;
        transition-timing-function: cubic-bezier(.23,1,.32,1);
        border-radius: 4px !important;
        overflow: hidden !important;
        box-shadow: 0 20px 55px rgb(82 71 175 / 9%);
    }

        .item-blog article:hover {
            z-index: 2;
            box-shadow: 0 25px 55px rgb(0 0 0 / 8%);
            transform: translateY(-2px);
        }

        .item-blog article .picture-area {
            overflow: hidden;
        }

            .item-blog article .picture-area figure {
                transform: scale(1);
                transition: transform 1s cubic-bezier(.23,1,.32,1);
                transition: box-shadow .45s cubic-bezier(.23,1,.32,1);
                margin: 0;
            }

                .item-blog article .picture-area figure img {
                    width: 100%;
                    height: 250px;
                    -o-object-fit: cover;
                    object-fit: cover;
                    -o-object-position: 50% 15%;
                    object-position: 50% 15%;
                }

        .item-blog article:hover .picture-area {
            transform: scale(1.15);
            transition-duration: 10s;
        }

        .item-blog article .picture-area .meta {
            position: absolute;
            top: 25px;
            left: 25px;
            font-size: 11px;
            z-index: 2;
            font-weight: 700 !important;
            letter-spacing: .1em !important;
            text-transform: uppercase !important;
            background-color: #fff;
            display: inline-flex !important;
            padding: 9px 16px;
            transition: all .3s;
            box-shadow: 0 0 0 rgb(0 0 0 / 25%);
            line-height: 1.5em;
            border-radius: 50em !important;
        }

            .item-blog article .picture-area .meta a {
                color: #000;
            }

        .item-blog article .text-header {
            padding: 0rem 2rem;
        }

            .item-blog article .text-header h4 a {
                margin: 1.25em auto !important;
                position: relative;
                font-weight: bold;
                line-height: 1.2em;
                letter-spacing: 0.1em;
                color: #000000;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
                height: 40px;
            }

            .item-blog article .text-header p a {
                margin: 1.25em auto !important;
                position: relative;
                font-weight: 500;
                line-height: 1.25em;
                color: #000000;
                display: -webkit-box;
                -webkit-line-clamp: 3;
                -webkit-box-orient: vertical;
                overflow: hidden;
                height: 80px;
            }

.overlay-a {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* Blog */
/* Slide Block */
.slide-block {
    position: relative;
    padding: 60px 20px 20px;
    display: flex;
    align-items: flex-start;
}

    .slide-block > .inner {
        transition: box-shadow 0.3s ease 0s, transform 0.65s cubic-bezier(0.23, 1, 0.32, 1) 0s;
        display: flex;
        width: 100%;
        flex-direction: column;
        flex-grow: 1;
        position: relative;
    }

        .slide-block > .inner:hover {
            transform: translateY(-5px);
        }

        .slide-block > .inner > .inset {
            position: relative;
        }

            .slide-block > .inner > .inset > .iconbox {
                align-items: flex-start;
                padding-bottom: 45px !important;
                text-align: start !important;
                box-shadow: rgb(0 0 0 / 7%) 0px 25px 25px;
                border: 1px solid #e7e7e7;
                border-radius: 10px;
                padding: 25px 10%;
                background-color: rgb(255, 255, 255);
                display: flex;
                margin-bottom: 2em;
                position: relative;
                justify-content: center;
                flex-direction: column;
                transition: box-shadow 0.3s ease 0s, background 0.3s ease 0s;
            }

                .slide-block > .inner > .inset > .iconbox > .iconbox-icon-container {
                    color: rgb(244, 97, 37);
                    font-size: 52px;
                    margin-bottom: 22px !important;
                    margin-top: 0.6em;
                    margin-bottom: 1em;
                    display: flex;
                    border: 0px solid rgb(242, 244, 247);
                    align-items: center;
                    justify-content: center;
                    line-height: 1em;
                    transition: border 0.3s ease 0s, box-shadow 0.3s ease 0s;
                    position: relative;
                    z-index: 2;
                }

                    .slide-block > .inner > .inset > .iconbox > .iconbox-icon-container > .icon-custom-bg {
                        position: absolute;
                        top: 50%;
                        left: 50%;
                        z-index: 0;
                        transform: translateX(-50%) translateY(-50%);
                        margin-top: -15px;
                        margin-inline-start: 32px;
                        width: 75px;
                        height: 65px;
                    }

                    .slide-block > .inner > .inset > .iconbox > .iconbox-icon-container > img {
                        display: inline-block;
                        font-size: 1em;
                        height: auto;
                        position: relative;
                        z-index: 2;
                    }

                .slide-block > .inner > .inset > .iconbox > .liquid-overlay-link {
                    z-index: 2;
                    display: inline-block;
                    width: 100%;
                    height: 100%;
                    position: absolute;
                    top: 0px;
                    left: 0px;
                    text-align: start;
                    overflow: hidden;
                    text-indent: -99999px;
                }

                .slide-block > .inner > .inset > .iconbox > .contents {
                    position: relative;
                    z-index: 2;
                }

                    .slide-block > .inner > .inset > .iconbox > .contents > .btn {
                        margin-top: 0;
                        margin-bottom: 0;
                        font-size: 17px;
                        padding: 0;
                    }

                        .slide-block > .inner > .inset > .iconbox > .contents > .btn > span {
                            padding: 0;
                            display: inline-flex;
                            border-radius: inherit;
                            border-color: inherit;
                            align-items: center;
                        }

                            .slide-block > .inner > .inset > .iconbox > .contents > .btn > span > .btn-txt {
                                position: relative;
                                font-weight: bold;
                                line-height: 1.2em;
                                letter-spacing: 0.1em;
                                font-size: 13px;
                                text-transform: uppercase;
                                color: #000000;
                                z-index: 3;
                            }

                            .slide-block > .inner > .inset > .iconbox > .contents > .btn > span > .btn-icon {
                                margin-inline-end: 0;
                                margin-inline-start: 8px;
                                position: relative;
                                z-index: 3;
                                display: inline-flex;
                                align-items: center;
                                justify-content: center;
                                font-size: 13px;
                                letter-spacing: 0;
                                color: #000;
                            }

                    .slide-block > .inner > .inset > .iconbox > .contents > p {
                        display: inline-block;
                        margin-top: 0;
                        margin-bottom: 1.25em !important;
                        position: relative;
                        line-height: 1.75em;
                        color: #000000;
                    }

                    .slide-block > .inner > .inset > .iconbox > .contents > h4 {
                        position: relative;
                        display: inline-block;
                        margin-top: 0;
                        margin-bottom: 1.25em !important;
                        font-weight: bold;
                        line-height: 1.2em;
                        letter-spacing: 0.1em;
                        color: #000000;
                    }

                        .slide-block > .inner > .inset > .iconbox > .contents > h4::after {
                            content: "";
                            position: absolute;
                            top: 50%;
                            right: 0px;
                            opacity: 0;
                            width: 25px;
                            height: 25px;
                            transform: translate(calc(1em + -100%), -50%);
                            background: url('../img/right_arrow_icon.png') no-repeat center;
                            transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0s, opacity 0.5s 0s;
                        }

        .slide-block > .inner:hover > .inset > .iconbox > .contents > h4:after {
            opacity: 1;
            transform: translate(1em,-50%);
            right: -40px;
        }
/* Slide Block */
/* Kurumsal Blok-1 */
.serit27.yukseklik {
    height: 100vh;
}

.serit27 {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
    /*padding: 50px 0;*/
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-blend-mode: overlay;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .serit27 > div > div {
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .serit27 > div > div > div > .ipad-iphones {
            width: 100%;
            position: relative;
            margin: 0 auto;
            text-align: center;
        }

            .serit27 > div > div > div > .ipad-iphones > a {
                display: block;
            }

        .serit27 > div > div > .lefin {
            padding: 0 4%;
        }

            .serit27 > div > div > .lefin > h4 {
                display: block;
                color: #000;
                padding-top: 0;
                padding-left: .2rem;
            }

            .serit27 > div > div > .lefin > h1 {
                max-width: 500px;
                text-transform: uppercase;
                color: #000;
                margin-top: 2rem;
            }

            .serit27 > div > div > .lefin > p {
                color: #000;
                padding-left: .2rem;
                margin: 1rem auto;
            }

.btn.active, .btn:active {
    background-image: none;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-ba.white {
    color: #fff;
    margin: 25px 0 !important;
}

.btn-ba {
    color: #000;
    background-color: transparent;
    padding: 15px 0;
    width: 160px;
    position: relative;
    text-align: center;
    text-decoration: none;
    margin: 0 auto;
}

    .btn-ba svg {
        left: 0;
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
    }

    .btn-ba.white svg path {
        stroke: #fff;
    }

    .btn-ba svg path {
        fill: none;
        stroke: #000;
        stroke-width: 1;
        stroke-dasharray: 500, 0;
        transition-property: all;
        transition-duration: 3s;
        transition-timing-function: ease;
    }

    .btn-ba:hover path {
        stroke-dasharray: 30, 310;
        stroke-dashoffset: 290;
        transition: all 1.35s cubic-bezier(0.19, 1, 0.22, 1);
    }

@media (max-width: 992px) {
    .serit27, .serit27 > div > div > .lefin {
        margin-left: 0 !important;
        margin-right: 0 !important;
        height: auto;
    }

    .serit27 {
        padding: 50px 0;
    }

        .serit27.yukseklik {
            height: auto;
        }

        .serit27 > div > div {
            display: block;
        }

            .serit27 > div > div > div > .ipad-iphones > a > img {
                max-width: 100% !important;
                height: auto !important;
            }

            .serit27 > div > div > .lefin > h1,
            .serit27 > div > div > .lefin > h1 * {
                font-size: medium !important;
            }

            .serit27 > div > div > .lefin > h4, .serit27 > div > div > .lefin > .tus, .serit27 > div > div > .lefin > p,
            .serit27 > div > div > .lefin > h4 *, .serit27 > div > div > .lefin > .tus *, .serit27 > div > div > .lefin > p * {
                font-size: small !important;
            }
}
/* Kurumsal Blok-1 */
/* Ekibimiz */
.owl-item > .thumb-info {
    padding: 10px;
}

.thumb-info {
    display: block;
    position: relative;
    text-decoration: none;
    max-width: 100%;
    background-color: #fff;
    border-radius: 4px;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translate3d(0,0,0);
    margin: 5px auto 15px;
}

    .thumb-info .thumb-info-wrapper {
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        transform: translate3d(0,0,0);
        border-radius: 4px;
        margin: 0;
        overflow: hidden;
        display: block;
        position: relative;
    }

.thumb-info-caption {
    padding: 10px 0;
}

.thumb-info img {
    transition: all .3s ease;
    border-radius: 3px;
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
}

.thumb-info:hover img {
    transform: scale(1.1,1.1);
}

.thumb-info .thumb-info-title {
    transition: all .3s;
    background: rgba(33,37,41,.8);
    color: #fff;
    font-weight: 600;
    left: 0;
    letter-spacing: -.05em;
    position: absolute;
    z-index: 2;
    max-width: 90%;
    font-size: 14px;
    padding: 10px 30px;
    bottom: 10%;
    border-radius: 0 8px 8px 0;
}

.thumb-info .thumb-info-inner {
    transition: all .3s;
    display: block;
}

.thumb-info .thumb-info-type {
    background-color: #ccc;
    border-radius: 2px;
    display: inline-block;
    float: left;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0;
    margin: 8px -2px -15px 0;
    padding: 2px 12px;
    text-transform: uppercase;
    z-index: 2;
    line-height: 2.3;
    color: var(--colortwo);
}

.thumb-info-caption .thumb-info-caption-text {
    font-size: .9em;
    margin: 0;
    padding: 15px 0;
    display: block;
}

.thumb-info-social-icons {
    margin: 0;
    padding: 0;
    display: block;
}

    .thumb-info-social-icons a {
        background: var(--colorone);
        border-radius: 25px;
        display: inline-block;
        height: 30px;
        line-height: 30px;
        text-align: center;
        width: 30px;
    }

        .thumb-info-social-icons a span {
            display: none;
        }

        .thumb-info-social-icons a svg {
            color: var(--colortwo);
            font-size: .9em;
            font-weight: 400;
        }

.team-detail > img {
    border-radius: 8px;
}

.team-detail > h1 {
    color: var(--colortwo);
    font-weight: bold;
    letter-spacing: -0.02em;
    line-height: 1em;
}

.team-detail > p {
    color: var(--colortwo);
    line-height: 1.75em;
}

.team-detail > h3 {
    color: var(--colortwo);
    font-size: 16px;
    font-weight: 400;
    margin: 15px auto;
    position: relative;
    z-index: 1;
}

    .team-detail > h3 > strong {
        color: var(--colortwo);
        font-size: 16px;
        font-weight: 900;
        margin: 0 0 15px;
        position: relative;
        z-index: 1;
    }

.team-detail .social {
    margin-top: 20px;
    display: block;
    width: 100%;
}

    .team-detail .social h5 {
        text-transform: uppercase;
        letter-spacing: 4px;
        font-weight: 900;
        margin: 5px 0;
        display: inline-block;
        margin-bottom: 10px !important;
        width: auto;
        font-size: 10px !important;
        color: var(--colortwo);
    }

    .team-detail.social .icons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: -webkit-box;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        list-style: none;
    }

        .team-detail .social .icons li.icon {
            padding-right: 20px;
            opacity: .8;
            -webkit-transition: .5s ease;
            -o-transition: .5s ease;
            transition: .5s ease;
        }

    .team-detail .social ul li {
        width: auto;
        margin-right: 5px;
        display: inline-block;
    }

    .team-detail .social .icons li.icon a {
        width: 22px;
        height: 22px;
        display: block;
        color: var(--colortwo);
        font-size: 22px;
        font-weight: 500;
        margin-bottom: 15px;
    }

    .team-detail .social .icons li.icon svg {
        width: 22px;
        height: 22px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        margin: 0;
    }
/* Ekibimiz */
/* Footer */
.p-r {
    padding-right: 3.3333em;
}

footer {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

    footer > div > .container {
        margin: 0 auto;
    }

.footer__top {
    padding-top: 3.3333em;
    padding-bottom: 3.3333em;
    background-color: #333230;
    color: #e5e3da;
}

.footer__bottom {
    padding-top: 1.66665em;
    padding-bottom: 1.66665em;
    background-color: #2b2a29;
    color: #807e79;
}

    .footer__bottom .container.center {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

.m-footer-title {
    font-weight: 800;
    color: #e5e3da;
    text-transform: uppercase;
}

.footer__line {
    width: 100%;
    height: 1px;
    background-color: #403f3d;
    margin-top: 1.66665em;
    margin-bottom: 1.66665em;
}

.footer__top ul {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
}

    .footer__top ul.adres {
        columns: 1;
        -webkit-columns: 1;
        -moz-columns: 1;
    }

    .footer__top ul li {
        margin-bottom: 0.833325em;
    }

        .footer__top ul li a {
            color: #b2b1aa;
            transition: color .25s ease,border .25s ease;
            font-size: .8889em;
            display: inline-block;
            padding: 5px 0;
        }

        .footer__top ul li.kirmizi {
            display: none;
        }

ul.adres-two li {
    list-style-type: none;
}

ul.adres-two {
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
}

    ul.adres-two li a div {
        float: left;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    ul.adres-two li a i {
        margin-right: 10px;
    }

    ul.adres-two li a .icon-phone:before {
        content: url(/Content/img/phone.svg);
        line-height: 0;
        filter: drop-shadow(2px 4px 6px black);
    }

    ul.adres-two li a .icon-mail:before {
        content: url(/Content/img/mail.svg);
        line-height: 0;
        filter: drop-shadow(2px 4px 6px black);
    }

    ul.adres-two li a .icon-location:before {
        content: url(/Content/img/location.svg);
        line-height: 0;
        filter: drop-shadow(2px 4px 6px black);
    }

    ul.adres-two li.area-form a {
        border-radius: 5px;
        background-color: #e1323d;
        height: 40px;
        border: 1px solid #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.5s;
        color: #fff;
    }

        ul.adres-two li.area-form a:before {
            content: url(/Content/img/form.svg);
            line-height: 0;
            margin-right: 10px;
        }

        ul.adres-two li.area-form a:hover {
            background-color: transparent;
        }

.social-links {
    margin-top: 10px;
}

    .social-links a {
        display: inline-block;
        width: 1.5em;
        height: 1.5em;
        border-radius: 50%;
        border: 1px solid #fff;
        text-align: center;
        line-height: 1.5em;
        font-size: 21px;
        margin-right: 8px;
        transition: 0.5s;
    }

        .social-links a:hover {
            border: 1px solid #b1b1b1;
            transition: 0.5s;
        }

            .social-links a:hover svg {
                color: #b1b1b1;
            }

        .social-links a svg {
            color: #fff;
            margin: 0 !important;
            fill: #fff;
            width: 16px !important;
            display: inline-block;
        }

.footer__top ul.adres li:first-child a {
    color: #ffda99;
    font-size: 1.1112em;
    font-weight: 700;
    transition: color .25s ease;
}

.footer__top ul.adres li a.footer__link--dashed {
    border-bottom: 1px dashed hsla(53,5%,68%,.25);
}

.footer__top ul.adres li a.footer__link--solid {
    border-bottom: 1px solid hsla(53,5%,68%,.25);
}

.o-footer__bottomMenu a,
.footer__top ul.adres li:last-child a {
    font-size: 10px;
    margin-top: 1.66665em;
    color: #807e79;
}

.footer__top ul li a:focus,
.footer__top ul li a:hover {
    text-decoration: none;
    background-color: transparent;
    color: #e5e3da;
}

.footer__braind-logo a {
    width: 49%;
    padding-right: 2%;
    display: inline-block;
}

    .footer__braind-logo a:last-child {
        width: 49%;
        padding-right: 0;
        display: inline-block;
        font-size: 10px;
        color: #807e79;
    }

.o-footer__bottomMenu {
    padding: 0;
}

.o-footer__bottomMenu--link {
    padding-right: 5px;
    border-right: 1px solid #807e79;
}

    .o-footer__bottomMenu--link:last-child {
        padding-right: 5px;
        border-right: 0 solid #807e79;
    }

.footer_play-logo {
    text-align: center;
}

    .footer_play-logo a {
        width: 49%;
        display: inline-block;
        font-size: 10px;
        color: #807e79;
    }

        .footer_play-logo a:first-child {
            border-right: 1px solid rgba(177, 177, 169, 0.25);
        }

        .footer_play-logo a img {
            margin: 0 auto 5px;
        }
/* Footer */
/* İletişim */
.contact-middle {
    position: relative;
    margin: 2.5em auto;
    padding: 0;
    overflow: visible;
}

    .contact-middle > .elementor-row {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin: 0 auto;
    }

        .contact-middle > .elementor-row > .address_box {
            width: 28%;
            position: relative;
            z-index: 20;
            margin: 0;
            background-color: #fff;
            border-radius: 2px;
            box-shadow: 0 10px 20px rgb(0 0 0 / 20%);
            white-space: normal;
            text-align: left;
        }

            .contact-middle > .elementor-row > .address_box > .address_box_inset {
                padding: 1em 1.6em;
            }

                .contact-middle > .elementor-row > .address_box > .address_box_inset > .address-widget-wrap > .address-widget > div > div {
                    padding: 0;
                }

                    .contact-middle > .elementor-row > .address_box > .address_box_inset > .address-widget-wrap > .address-widget > div > div > .form-group {
                        margin-bottom: 0;
                    }

.form-group .yorum {
    float: right;
}

label > p {
    color: #807e79;
    border-bottom: 1px solid hsla(53,5%,68%,.5);
    transition: color .25s ease,border .25s ease;
    font-weight: 500;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px #e1323d solid;
    border-radius: 4px;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
    background-color: #e1323d;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
    left: 6px;
    top: 3px;
    width: 5px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(35deg);
    -ms-transform: rotate(35deg);
    transform: rotate(35deg);
}

.contact-middle > .elementor-row > .map_box {
    position: relative;
    width: 72%;
    padding-right: 3.6em;
}

    .contact-middle > .elementor-row > .map_box > .map-area {
        position: relative;
        z-index: 20;
        margin: 0;
        background-color: #fff;
        border-radius: 2px;
        box-shadow: 0 1px 1px rgb(0 0 0 / 20%);
        white-space: normal;
        text-align: left;
    }

        .contact-middle > .elementor-row > .map_box > .map-area > .wrap {
            padding: 3.3em;
        }

            .contact-middle > .elementor-row > .map_box > .map-area > .wrap > .google_maps {
                width: 100%;
                height: 30vh;
                position: relative;
                line-height: 0;
                overflow: hidden;
                display: inline-block;
            }

                .contact-middle > .elementor-row > .map_box > .map-area > .wrap > .google_maps > iframe {
                    height: 100%;
                    filter: brightness( 87% ) contrast( 143% ) saturate( 0% ) blur( 0px ) hue-rotate( 215deg );
                    max-width: 100%;
                    width: 100%;
                    margin: 0;
                    line-height: 1;
                    border: none;
                }

            .contact-middle > .elementor-row > .map_box > .map-area > .wrap > .page-row.last-child,
            .contact-middle > .elementor-row > .address_box > .address_box_inset > .address-widget-wrap > .address-widget > .page-row.last-child {
                border-bottom: 0;
            }

            .contact-middle > .elementor-row > .address_box > .address_box_inset > .address-widget-wrap > .address-widget > .page-row,
            .contact-middle > .elementor-row > .map_box > .map-area > .wrap > .page-row {
                display: inline-block;
                width: 100%;
                padding: 2.5em 0;
                border-bottom: 1px solid #e5e5e5;
            }

                .contact-middle > .elementor-row > .address_box > .address_box_inset > .address-widget-wrap > .address-widget > .page-row p,
                .contact-middle > .elementor-row > .map_box > .map-area > .wrap > .page-row p {
                    font-size: 1.2em;
                    line-height: 1.3;
                    font-weight: 700;
                    margin: 0.67em 0;
                }


.form-group td {
    padding: 0 10px;
}

    .form-group td label {
        padding-left: 10px;
        cursor: pointer;
    }

.form-group .label {
    color: #000;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.0rem;
    padding: 0;
}

.form-group .form-control {
    padding: 12px 16px 12px 16px;
    border-radius: 0px;
    background-color: #f6f7f9;
    font-size: 12px;
    border: 1px solid rgb(203, 202, 198);
    height: 45px;
    color: #000;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    display: block;
    width: 100%;
    font-weight: 500;
    line-height: 1.5;
    -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    -o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    -webkit-box-shadow: 0px 16px 32px 0px rgb(32 85 125 / 10%);
    box-shadow: 0px 16px 32px 0px rgb(32 85 125 / 10%);
}

    .form-group .form-control:focus,
    .form-group .form-control:active {
        border-color: #ffda99 !important;
        color: #000;
        background-color: #fff;
        border-color: #ffda99;
        outline: 0;
        -webkit-box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%);
        box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%);
    }

.form-group svg {
    position: absolute;
    top: 15px;
    right: 10px;
    color: #e1323d;
}

textarea.form-control {
    height: 150px !important;
}

.form-group > .btn {
    display: block;
    margin: 10px auto;
    cursor: pointer;
    color: #fff;
    background-color: var(--colorone);
    display: inline-block;
    font-weight: 700;
    line-height: 1.7;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 2px solid var(--colorone);
    box-sizing: border-box;
    transform: translateY(0);
    padding: 10px 25px;
    font-size: 14px;
    transition: all .2s ease-in-out;
    border-radius: 5px !important;
    margin-bottom: 0.75rem !important;
}

    .form-group > .btn:hover {
        color: #fff;
        background-color: #ffda99;
        border-color: #ffda99;
        transform: translateY(-0.15rem);
        box-shadow: 0 0.25rem 0.75rem rgb(30 34 40 / 15%);
        color: #fff;
    }

section > iframe {
    display: block;
}
/* İletişim */
/* Referans Galeri */
.referans-item {
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
    text-align: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    height: 25vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .referans-item * {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

    .referans-item img {
        max-width: 100%;
        width: 100%;
        padding: 15px;
    }

    .referans-item div {
        position: absolute;
        top: 50%;
        left: 50%;
        display: block;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        width: 50px;
        height: 50px;
        opacity: 0;
        box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
        background: #ffffff;
    }

        .referans-item div:before,
        .referans-item div:after {
            content: '';
            width: 50px;
            height: 50px;
            background: rgba(205, 45, 56, 0.4);
            position: absolute;
            top: 0;
            left: 0;
            -webkit-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
        }

    .referans-item svg {
        top: 0;
        left: 0;
        font-size: 34px;
        color: var(--colorone) !important;
        width: 50px;
        height: 50px;
        line-height: 50px;
    }

    .referans-item a {
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        position: absolute;
    }

    .referans-item.blue svg {
        color: var(--colorone) !important;
        opacity: 1;
    }

    .referans-item:hover img,
    .referans-item.hover img {
        opacity: 0.3;
        -webkit-filter: grayscale(100%);
        filter: grayscale(100%);
    }

    .referans-item:hover div,
    .referans-item.hover div {
        opacity: 1;
    }

        .referans-item:hover div:after,
        .referans-item.hover div:after,
        .referans-item:hover div:before,
        .referans-item.hover div:before {
            -webkit-transition-delay: 0.1s;
            transition-delay: 0.1s;
        }

        .referans-item:hover div:before,
        .referans-item.hover div:before {
            -webkit-transform: scale(1.45);
            transform: scale(1.45);
        }

        .referans-item:hover div:after,
        .referans-item.hover div:after {
            -webkit-transform: scale(1.88);
            transform: scale(1.88);
        }
/* Referans Galeri */
/* Galeri */
.galeri-item {
    position: relative;
    overflow: hidden;
    background: #000000;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 0 5px rgb(0 0 0 / 15%);
    margin-bottom: 30px;
}

    .galeri-item a {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        z-index: 1;
    }

    .galeri-item img {
        opacity: 0.8;
        -webkit-transition: opacity 0.35s;
        transition: opacity 0.35s;
        width: 100%;
        height: 250px;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: 50% 50%;
        object-position: 50% 50%;
    }

    .galeri-item figcaption {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

        .galeri-item figcaption > div {
            height: 50%;
            overflow: hidden;
            width: 100%;
            position: relative;
        }

    .galeri-item h2,
    .galeri-item h3,
    .galeri-item .icons {
        margin: 0;
        position: absolute;
        right: 0;
        padding: 0 30px;
        -webkit-transition: all 0.6s ease;
        transition: all 0.6s ease;
    }

    .galeri-item h2 {
        font-weight: bold;
        line-height: 1.2em;
        font-size: 18px;
        bottom: 0;
    }

    .galeri-item h3 {
        top: 0;
        color: #fff;
        font-size: 15px;
        line-height: 2em;
    }

    .galeri-item .icons {
        opacity: 0;
        -webkit-transform: translateY(-150%);
        transform: translateY(-150%);
    }

        .galeri-item .icons a {
            color: #ffffff;
            text-decoration: none;
            padding: 5px;
            font-size: 1.6em;
            opacity: 0.6;
        }

            .galeri-item .icons a:hover {
                opacity: 1;
                cursor: pointer;
            }

    .galeri-item:hover img,
    .galeri-item.hover img {
        opacity: 0.3;
        -webkit-filter: grayscale(100%);
        filter: grayscale(100%);
    }

    .galeri-item:hover figcaption h3,
    .galeri-item.hover figcaption h3 {
        -webkit-transform: translateY(-150%);
        transform: translateY(-150%);
        opacity: 0;
    }

    .galeri-item:hover figcaption .icons,
    .galeri-item.hover figcaption .icons {
        opacity: 1;
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }
/* Galeri */
/* Ekibe Katıl */
.ekibekatil-banner {
    position: relative;
    z-index: 9;
    padding: 2.5em 0;
}

    .ekibekatil-banner .form-group .form-control {
        padding: 15px;
        border-radius: 0;
        background-color: transparent;
        font-size: 16px;
        border: none;
        border-bottom: 2px solid #000;
        height: 45px;
        color: #000;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        display: block;
        width: 100%;
        font-weight: bold;
        line-height: 1.5;
        -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
        transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
        -o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
        transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
        transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
        -webkit-box-shadow: 0px 16px 32px 0px rgb(32 85 125 / 10%);
        box-shadow: 0px 16px 32px 0px rgb(32 85 125 / 10%);
    }

        .ekibekatil-banner .form-group .form-control:focus,
        .ekibekatil-banner .form-group .form-control:active {
            border-color: #b44026 !important;
            color: #000;
            background-color: #fff;
            outline: 0;
            -webkit-box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%);
            box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%);
        }

        .ekibekatil-banner .form-group .form-control::placeholder {
            color: #000;
            opacity: 1; /* Firefox */
        }

        .ekibekatil-banner .form-group .form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
            color: #000;
        }

        .ekibekatil-banner .form-group .form-control::-ms-input-placeholder { /* Microsoft Edge */
            color: #000;
        }

.step-btn {
    max-width: 100%;
    width: 100%;
    max-height: 150px;
    height: 150px;
    display: block;
    position: relative;
    z-index: 1;
    background-color: #e1323d;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
    overflow: hidden;
    margin: 0;
    border-radius: 0;
    color: #fff;
    font-size: 18px;
}

.cv-group {
    width: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    position: relative;
    background: #2b2e36;
    height: 70px;
    margin-top: 5px;
}

    .cv-group > .normaltext {
        text-align: center;
        display: block;
        font-weight: 500;
        font-size: 14.5px;
        line-height: 1.79;
        color: #fff;
    }

    .cv-group > .normaltext2 {
        text-align: center;
        display: block;
        font-size: 12.5px;
        letter-spacing: .13px;
        color: #686d79;
        font-weight: 500;
    }

    .cv-group input[type=file] {
        color: #fff;
        width: 100%;
        height: 100%;
        background: none;
        overflow: hidden;
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }
/* Ekibe Katıl */
/* Katalog */
.snip1580 {
    position: relative;
    display: inline-block;
    overflow: hidden;
    margin: 5px;
    width: 24%;
    background-color: #000000;
    color: #ffffff;
    text-align: left;
    font-size: 16px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

    .snip1580 * {
        -webkit-transition: all 0.35s;
        transition: all 0.35s;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    .snip1580 img {
        max-width: 100%;
        vertical-align: top;
    }

    .snip1580 figcaption {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 20px;
        background-color: rgba(0, 0, 0, 0.75);
    }

    .snip1580 h3 {
        font-size: 20px;
        font-weight: 400;
        line-height: 20px;
        margin: 3px 0;
    }

    .snip1580 h5 {
        font-weight: 400;
        margin: 0;
        color: #bbb;
        letter-spacing: 1px;
    }

    .snip1580 a {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
    }

    .snip1580:hover figcaption,
    .snip1580.hover figcaption {
        top: 20px;
        left: 20px;
        right: 20px;
        bottom: 20px;
        background-color: #fff;
    }

    .snip1580:hover h3,
    .snip1580.hover h3,
    .snip1580:hover h5,
    .snip1580.hover h5 {
        color: #333;
    }
/* Katalog */
/* WhatsApp */
.call-now-button {
    z-index: 9999;
    clear: both;
    margin: 0 auto;
    position: fixed;
    border-radius: 50px;
}

    .call-now-button div {
        display: flex;
        cursor: pointer;
    }

        .call-now-button div a .quick-alo-ph-img-circle, .call-now-button div a .quick-alo-phone-img-circle {
            background-color: #0c3;
        }

.quick-alo-ph-circle.active {
    width: 130px;
    height: 130px;
    top: -40px;
    left: -40px;
    position: absolute;
    background-color: transparent;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid rgba(30,30,30,.4);
    opacity: 1;
    -webkit-animation: quick-alo-circle-anim 1.2s infinite ease-in-out;
    -moz-animation: quick-alo-circle-anim 1.2s infinite ease-in-out;
    -ms-animation: quick-alo-circle-anim 1.2s infinite ease-in-out;
    -o-animation: quick-alo-circle-anim 1.2s infinite ease-in-out;
    animation: quick-alo-circle-anim 1.2s infinite ease-in-out;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.quick-alo-ph-circle-fill.active {
    width: 80px;
    height: 80px;
    top: -15px;
    left: -15px;
    position: absolute;
    background-color: #000;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid transparent;
    opacity: 1;
    -webkit-animation: quick-alo-circle-fill-anim 2.3s infinite ease-in-out;
    -moz-animation: quick-alo-circle-fill-anim 2.3s infinite ease-in-out;
    -ms-animation: quick-alo-circle-fill-anim 2.3s infinite ease-in-out;
    -o-animation: quick-alo-circle-fill-anim 2.3s infinite ease-in-out;
    animation: quick-alo-circle-fill-anim 2.3s infinite ease-in-out;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.quick-alo-phone-img-circle.shake {
    width: 50px;
    height: 50px;
    top: 0;
    left: 0;
    position: absolute;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid transparent;
    opacity: 1;
    background: url(../img/whatsapp-logo.png) no-repeat center center;
    -webkit-animation: quick-alo-circle-img-anim 1s infinite ease-in-out;
    -moz-animation: quick-alo-circle-img-anim 1s infinite ease-in-out;
    -ms-animation: quick-alo-circle-img-anim 1s infinite ease-in-out;
    -o-animation: quick-alo-circle-img-anim 1s infinite ease-in-out;
    animation: quick-alo-circle-img-anim 1s infinite ease-in-out;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

@keyframes ani-rotate {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes quick-alo-circle-anim {
    0% {
        -webkit-transform: rotate(0) scale(.5) skew(1deg);
        transform: rotate(0) scale(.5) skew(1deg);
        opacity: .1;
    }

    30% {
        -webkit-transform: rotate(0) scale(.7) skew(1deg);
        transform: rotate(0) scale(.7) skew(1deg);
        opacity: .5;
    }

    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        transform: rotate(0) scale(1) skew(1deg);
        opacity: .1;
    }
}

@keyframes quick-alo-circle-fill-anim {
    0% {
        -webkit-transform: rotate(0) scale(.7) skew(1deg);
        transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2;
    }

    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        transform: rotate(0) scale(1) skew(1deg);
        opacity: .2;
    }

    100% {
        -webkit-transform: rotate(0) scale(.7) skew(1deg);
        transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2;
    }
}

@keyframes quick-alo-circle-img-anim {
    0% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        transform: rotate(0) scale(1) skew(1deg);
    }

    10% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
        transform: rotate(-25deg) scale(1) skew(1deg);
    }

    20% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
        transform: rotate(25deg) scale(1) skew(1deg);
    }

    30% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
        transform: rotate(-25deg) scale(1) skew(1deg);
    }

    40% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
        transform: rotate(25deg) scale(1) skew(1deg);
    }

    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        transform: rotate(0) scale(1) skew(1deg);
    }

    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        transform: rotate(0) scale(1) skew(1deg);
    }
}


.call-now-button {
    bottom: 5%;
    right: 2%;
    background: transparent;
}

@media only screen and (min-width: 320px) and (max-width: 758px) {
}
/* WhatsApp */
/* Cookie */
.cookie-container {
    position: fixed;
    left: 3%;
    top: auto;
    right: auto;
    bottom: 3%;
    z-index: 999;
    display: block;
    width: 36em;
    padding: 2em;
    background-color: #ffffff;
    font-size: 12px;
    text-align: center;
    border-radius: 8px;
}

    .cookie-container > .cookie-icon {
        width: 2.76em;
        max-width: none;
        margin-bottom: 1em;
    }

    .cookie-container > .cookie-texte {
        margin-bottom: 0.5em;
        color: #000000;
        font-size: 21px;
    }

.p-cookie {
    margin-bottom: 1.5em;
    color: rgb(0 0 0 / 75%);
}

.link-cookie {
    color: #000;
    font-weight: bold;
}

    .link-cookie:hover {
        color: rgb(0 0 0 / 75%);
    }

.cookie-button-holder {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.button-cookie {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: visible;
    min-width: 10em;
    margin-right: 1em;
    padding: 0.6em 2.5em;
    border: 1px solid #ccc;
    border-radius: 1.3em;
    background-color: transparent;
    -webkit-transition: background-color 300ms cubic-bezier(.25, .46, .45, .94), color 300ms cubic-bezier(.25, .46, .45, .94);
    transition: background-color 300ms cubic-bezier(.25, .46, .45, .94), color 300ms cubic-bezier(.25, .46, .45, .94);
    color: #000000;
    font-size: 0.86em;
    font-weight: 400;
    text-align: center;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
}

    .button-cookie:hover {
        background-color: #f2f2ec;
        color: #141413;
    }

.button-text {
    margin-right: auto;
    margin-left: auto;
    -webkit-transition: -webkit-transform 400ms cubic-bezier(.25, .46, .45, .94);
    transition: -webkit-transform 400ms cubic-bezier(.25, .46, .45, .94);
    transition: transform 400ms cubic-bezier(.25, .46, .45, .94);
    transition: transform 400ms cubic-bezier(.25, .46, .45, .94), -webkit-transform 400ms cubic-bezier(.25, .46, .45, .94);
}

.button-no-cookie {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: visible;
    min-width: 10em;
    padding: 0.6em 2.5em;
    border: 1px solid #ccc;
    border-radius: 1.3em;
    background-color: transparent;
    -webkit-transition: background-color 300ms cubic-bezier(.25, .46, .45, .94), color 300ms cubic-bezier(.25, .46, .45, .94);
    transition: background-color 300ms cubic-bezier(.25, .46, .45, .94), color 300ms cubic-bezier(.25, .46, .45, .94);
    color: #000000;
    font-size: 0.86em;
    font-weight: 400;
    text-align: center;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
}

    .button-no-cookie:hover {
        background-color: var(--colorone);
        color: #fff;
    }
/* Cookie */



/* Mobile */
.laptop {
    display: block;
}

.mobile {
    display: none;
}

.sidenav,
.header-mobile {
    display: none;
}

@media screen and (max-width: 1650px) {
}

@media screen and (max-width: 1450px) {
}

@media screen and (max-width: 1300px) {
}

@media screen and (max-width: 1100px) {
}

.hemenaramobil {
    display: none;
}

@media screen and (max-width: 1000px) {
    .small-slider__slide-wrapper {
        margin-bottom: 20px;
    }

        .small-slider__slide-wrapper img {
            height: auto !important;
        }

    .side-menu-wrapper .two-columns .footer-nav-wrapper .two-row .item {
        display: inline-block;
        padding: 0 5px;
        font-size: 14px;
        color: #fff;
        border-right: 1px solid #fff;
        margin: 0 auto;
    }

        .side-menu-wrapper .two-columns .footer-nav-wrapper .two-row .item:last-child {
            border-right: 0;
        }

        .side-menu-wrapper .two-columns .footer-nav-wrapper .two-row .item a {
            display: inline-block;
            padding: 0;
            font-size: 14px;
            color: #fff;
        }

    .subscribe-form .caption,
    .block-area.corporate2 .layer .dt .dtc .title-wrapper h1,
    .block-area .layer .dt .dtc .title-wrapper h1 {
        line-height: normal;
    }

    .block-area.flex {
        display: block;
    }

        .block-area.flex .container,
        .mobil-pad,
        .block-area .layer.pad {
            padding: 0;
        }

    .corporate {
        padding: 50px 0 0 !important;
    }

    .corporate2 {
        padding: 0 !important;
    }

    .dil, .dil li {
        display: block;
    }

        .dil span {
            margin: 5px auto;
            color: #fff;
            transition: color .25s ease;
            font-size: 12px;
            text-transform: uppercase;
            display: block;
            padding: 5px 32px;
        }

        .dil li a {
            padding: 5px 32px;
            text-decoration: none;
            font-size: 12px;
            color: #fff;
            font-weight: normal;
            font-variant: normal;
            display: block;
            transition: 0.3s;
        }

    .cookie-container {
        width: 94%;
        display: none !important;
    }

    .hemenaramobil {
        position: relative;
        top: 0;
        z-index: 10;
        display: block;
        clear: both;
        width: 100%;
        background-color: #e1323d !important;
        /* border-top: 1px solid #000;
        border-bottom: 1px solid #000;*/
        text-align: center;
        padding: 15px 0;
        margin: 0 auto;
    }

        .hemenaramobil a {
            color: #fff;
            cursor: pointer;
            letter-spacing: .025em;
            font-weight: 700;
            font-size: 14px;
        }

            .hemenaramobil a svg {
                -webkit-animation: quick-alo-circle-img-anim 1s infinite ease-in-out;
                -moz-animation: quick-alo-circle-img-anim 1s infinite ease-in-out;
                -ms-animation: quick-alo-circle-img-anim 1s infinite ease-in-out;
                -o-animation: quick-alo-circle-img-anim 1s infinite ease-in-out;
                animation: quick-alo-circle-img-anim 1s infinite ease-in-out;
            }

    @keyframes quick-alo-circle-img-anim {
        0% {
            -webkit-transform: rotate(0) scale(1) skew(1deg);
            transform: rotate(0) scale(1) skew(1deg);
        }

        10% {
            -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
            transform: rotate(-25deg) scale(1) skew(1deg);
        }

        20% {
            -webkit-transform: rotate(25deg) scale(1) skew(1deg);
            transform: rotate(25deg) scale(1) skew(1deg);
        }

        30% {
            -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
            transform: rotate(-25deg) scale(1) skew(1deg);
        }

        40% {
            -webkit-transform: rotate(25deg) scale(1) skew(1deg);
            transform: rotate(25deg) scale(1) skew(1deg);
        }

        50% {
            -webkit-transform: rotate(0) scale(1) skew(1deg);
            transform: rotate(0) scale(1) skew(1deg);
        }

        100% {
            -webkit-transform: rotate(0) scale(1) skew(1deg);
            transform: rotate(0) scale(1) skew(1deg);
        }
    }

    .catalog-right-col .catalog-form {
        display: block;
    }

    .catalog-card .catalog-form {
        display: none;
    }

    .catalog-right-col {
        width: 100%;
        padding-left: 0;
    }

    .sidenav {
        display: block;
        height: 100%;
        width: 0;
        position: fixed;
        z-index: 999;
        top: 0;
        left: 0;
        background-color: #000;
        overflow-x: hidden;
        transition: 0.5s;
    }

        .sidenav li {
            border-bottom: 1px solid #fff;
        }

    .dropdown-menu li {
        border-bottom: none;
    }

    .sidenav a {
        padding: 10px 10px 10px 32px;
        text-decoration: none;
        font-size: 13px;
        color: #fff;
        font-weight: 600;
        font-variant: normal;
        display: block;
        transition: 0.3s;
    }

    .sidenav .closebtn {
        position: absolute;
        top: 0;
        right: 0;
        font-size: 36px;
        margin-left: 50px;
    }

    .footer_play-logo-corporate a {
        width: 49%;
    }

    .tabs__sidebar,
    .tabs__main {
        width: 100%;
        border: none;
    }

    .tab-area > .container,
    .contact-middle > .elementor-row {
        display: block;
    }

        .contact-middle > .elementor-row > .map_box {
            position: relative;
            width: 100%;
            padding-right: 0;
        }

        .contact-middle > .elementor-row > .address_box {
            width: 100%;
        }

    .product-area h1 {
        margin-top: 0;
    }

    .titlebar {
        height: 200px;
    }

    .product-area > div,
    .l-page__content {
        padding: 0;
    }

    .urunler-area {
        padding: 1.5em 0;
    }

    .catalog-filter-col {
        display: none;
        width: 100%;
        text-align: center;
        margin-bottom: 70px;
    }

    .catalog-card-back {
        height: 12vh;
        right: 0;
    }

    .bottom-menu li:hover > ul.dropdown-menu {
        position: relative;
        width: 100%;
        border: none;
        padding: 8px 8px 8px 25px;
    }

    .mobile-menu_logo {
        border-bottom: 1px solid #e9e9e9;
        padding: 1.2em 1.6em;
    }

        .mobile-menu_logo img {
            width: 35%;
            margin: 0 auto 15px;
        }

    .header-mobile {
        display: block;
        /*font-size: 1rem;*/
    }

    .blog-area {
        padding-left: 15px;
        padding-right: 15px;
    }

    .header-mobile__top {
        position: relative;
        padding: 0.6em;
        display: block;
        width: 100%;
        background-color: #000;
        height: 80px;
    }

    .header-mobile__menu {
        display: block;
        padding: 1em 0.5em;
        float: left;
    }

        .header-mobile__menu span {
            position: relative;
            color: #fff;
            width: 0.8888em;
            height: 0.6em;
            font-size: 32px;
        }

    .header-mobile__logo {
        display: block;
        float: left;
        height: 3em;
        margin: 10px 0.8em;
    }

        .header-mobile__logo img {
            width: auto;
            height: 100%;
        }

    .header-mobile__basket {
        display: block;
        padding: 5px;
        position: absolute;
        right: 0;
        top: 25%;
    }

    header {
        display: none;
    }

    .l-page__content-designers {
        padding: 0 2em;
        width: 100%;
    }

    .footer__braind-logo,
    .o-footer__bottomMenu {
        text-align: center;
    }

    .features-list {
        padding-left: 0;
        padding-right: 0;
        margin-top: 2em;
    }

        .features-list .p-r {
            padding-left: 0;
            padding-right: 0;
        }

    .footer_play-logo {
        margin: 15px auto;
    }

    .p-r {
        padding-right: 15px;
    }

    .m-footer-title:before {
        float: right !important;
        content: '\f067';
        font-family: 'Font Awesome 5 Free';
        padding-right: 5px;
    }

    .m-footer-title.plus:before {
        content: '\f068';
    }

    .pages-header > .container > h1 {
        font-size: medium;
    }

    .navbar-nav {
        margin: 0 auto;
    }

    .heading2 > h2 {
        width: 100%;
    }

    .contact-area {
        padding: 5px 10px;
    }

    .contact-button,
    .text-right {
        text-align: center;
    }

    .customer-card {
        padding: 0 15px;
    }

    .block-area {
        min-height: auto;
        padding: 50px 0;
    }

        .block-area .section-background,
        .section-video {
            position: relative;
        }

    .section-video__video-wrapper {
        position: relative;
        bottom: 0;
        overflow: hidden;
        left: 0;
        transform: none;
        width: 100%;
        height: 100%;
    }

        .section-video__video-wrapper video {
            position: relative;
            bottom: 0;
            height: 50%;
            width: 100%;
            left: 0;
            transform: translateX(0);
            opacity: 1;
            transition: opacity .15s ease;
        }

    .home__screen__text > div > h1 {
        text-align: center;
        font-size: x-large;
    }

    .home__screen__text > div > p {
        text-align: center;
        font-size: small;
    }

    .home__screen__text {
        bottom: 50%;
        right: 5%;
        left: 5%;
        text-align: center;
        width: 90%;
    }

    .product-right:before,
    .product-right:after {
        display: none;
    }

    .product-right,
    .product-card {
        width: 100%;
        height: auto;
        margin: 0 auto;
    }

    .dt-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        right: 0;
        position: absolute;
        bottom: -20%;
        left: 0;
    }

    .about__features-item {
        margin: 0 auto;
    }

    .corporate .dtc,
    .block-area.video,
    .block-area.main-corporate .layer .dt .dtc, .block-area.left .layer .dt .dtc,
    .item-area,
    .contact-area > .row,
    .block-area > .container,
    header > .head-area > .container,
    header > .head-area > .container > .inset,
    header > .head-area > .container > .inset > .col {
        display: block;
    }

    .block-area .mright,
    .block-area .mleft {
        margin-top: 15px;
        padding: 0 15px;
    }

    .elementor-widget-wrap > .elementor-element > .elementor-widget-container > .infobox {
        height: 50vh;
    }

    .referance-area .item-brand .inner {
        border: 1px solid #dbdbdb;
    }

    .footer-menu-area > .maps-pic,
    .footer-menu-area > div > h3 {
        margin: 15px auto !important;
        display: block;
    }

    header > .head-area {
        padding: 10px 0;
    }

        header > .head-area > .container > .inset > .col-sol,
        header > .head-area > .container > .inset > .col-sag {
            max-width: 100%;
        }

        header > .head-area > .container > .inset > .col > a > img {
            margin: 0 auto;
        }

        header > .head-area > .container > .inset > .col > .col-flex {
            display: inline-block;
        }

        header > .head-area > .container > .inset > .col-sag {
            text-align: center !important;
        }
    /* Mobile Header */
    .navbar-collapse {
        width: 100%;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        background-color: #ffbf00;
        border-top: 1px solid rgba(255,255,255,.1);
        z-index: 9999;
        max-height: calc(100vh - 70px);
        padding: 0 15px;
        margin: 0 auto !important;
    }

        .navbar-collapse > ul > li {
            display: block;
            float: none;
        }

            .navbar-collapse > ul > li > a {
                display: block;
                padding: 10px 20px;
                font-size: 14px;
                border-bottom: 1px solid rgba(255,255,255,.1);
                color: #fff !important;
                font-weight: 400 !important;
            }

                .navbar-collapse > ul > li > a > i {
                    margin-right: 5px;
                }

    .navbar-nav li:hover > ul.dropdown-menu {
        display: block;
        width: 100%;
        position: relative;
        border-radius: 0;
        left: 0;
        margin: 0;
    }

    .footer-menu-area > div > h3.right:before {
        float: right !important;
        content: '\f067';
        font-family: FontAwesome;
        padding-right: 5px;
    }
    /* Mobil Header */
    .laptop {
        display: none !important;
    }

    .mobile {
        display: block !important;
    }
}

@media all and (min-width: 1000px) {
    .navbar-collapse.collapse {
        display: block;
    }
}

@media (min-width: 768px) {
    .collapse.dont-collapse-sm {
        display: block;
        height: auto !important;
        visibility: visible;
    }
}

.urunlersidebar {
    padding: 0;
}

    .urunlersidebar a {
        cursor: pointer;
    }

    .urunlersidebar .nav-item.dropdown svg {
        position: absolute;
        right: 15px !important;
        font-size: 14px;
        z-index: 9;
        top: 15px;
    }

    .urunlersidebar .nav-item.dropdown ul {
        list-style: none !important;
        overflow: hidden;
    }

    .urunlersidebar .collapse {
        overflow: hidden;
        display: none;
    }

        .urunlersidebar .collapse.in {
            overflow: hidden;
            display: block;
        }

    .urunlersidebar a ~ .fa-angle-down {
        display: none;
    }

    .urunlersidebar a ~ .fa-angle-up {
        display: block;
    }

    .urunlersidebar a.collapsed ~ .fa-angle-down {
        display: block !important;
    }

    .urunlersidebar a.collapsed ~ .fa-angle-up {
        display: none !important;
    }

    .urunlersidebar a .fa-angle-down {
        display: none;
    }

    .urunlersidebar a .fa-angle-up {
        display: block;
    }

    .urunlersidebar a.collapsed .fa-angle-down {
        display: block !important;
    }

    .urunlersidebar a.collapsed .fa-angle-up {
        display: none !important;
    }
