 body {
    /*background-color: #f7f7f7!important;*/
}
.box {
    width: 300px;
    position: relative;
    background: rgba(255,255,255,1);
    display: inline-block;
    margin: 0 10px;
    cursor: pointer;
    color: #2c3e50;
    text-align: center;
}

    .box:hover {
        -webkit-transition-delay: 0s;
        transition-delay: 0s;
    }

    .box h3 {
        font-family: "Ruthie", cursive;
        font-size: 180px;
        line-height: 370px;
        margin: 0;
        font-weight: 400;
        width: 100%;
    }

    .box span {
        display: block;
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 13px;
        padding: 5px;
    }

    .box h3,
    .box span {
        -webkit-transition: color 0.4s 0.5s;
        transition: color 0.4s 0.5s;
    }


    .box svg {
        position: absolute;
        top: 0;
        left: 0;
    }

        .box svg line {
            stroke-width: 2;
            stroke: white;
            fill: none;
            -webkit-transition: all .8s ease-in-out;
            transition: all .8s ease-in-out;
        }

    .box:hover svg line {
        stroke: red;
    }

    .box:hover svg line {
        -webkit-transition-delay: 0.1s;
        transition-delay: 0.1s;
    }

    .box svg line.top,
    .box svg line.bottom {
        stroke-dasharray: 330 240;
    }

    .box svg line.left,
    .box svg line.right {
        stroke-dasharray: 490 400;
    }

    .box:hover svg line.top {
        -webkit-transform: translateX(-600px);
        transform: translateX(-600px);
    }

    .box:hover svg line.bottom {
        -webkit-transform: translateX(600px);
        transform: translateX(600px);
    }

    .box:hover svg line.left {
        -webkit-transform: translateY(920px);
        transform: translateY(920px);
    }

    .box:hover svg line.right {
        -webkit-transform: translateY(-920px);
        transform: translateY(-920px);
    }

/* Alternatives */

/* Color */
.demo-2 .box {
    box-shadow: inset 0 0 0 10px #2c3e50;
}

    .demo-2 .box:hover h3,
    .demo-2 .box:hover span {
        color: #fe6f83;
    }

    .demo-2 .box svg line {
        stroke-width: 8;
    }

    .demo-2 .box:hover svg line {
        stroke: #fe6f83;
    }

/* Frame */
.demo-3 .box {
    background: rgba(0,0,0,0);
    color: #fff;
    box-shadow: none;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
}

    .demo-3 .box:hover {
        background: rgba(0,0,0,0.4);
    }

    .demo-3 .box h3,
    .demo-3 .box span {
        -webkit-transition: none;
        transition: none;
    }

    .demo-3 .box svg line {
        -webkit-transition: all .5s;
        transition: all .5s;
    }

    .demo-3 .box:hover svg line {
        stroke-width: 10;
        -webkit-transition-delay: 0s;
        transition-delay: 0s;
    }

    .demo-3 .box:hover svg line {
        opacity: 0;
    }


        .demo-3 .box:hover svg line.top {
            -webkit-transform: translateX(-300px);
            transform: translateX(-300px);
            opacity: 1;
        }

        .demo-3 .box:hover svg line.bottom {
            -webkit-transform: translateX(300px);
            transform: translateX(300px);
            opacity: 1;
        }

        .demo-3 .box:hover svg line.left {
            -webkit-transform: translateY(460px);
            transform: translateY(460px);
            opacity: 1;
        }

        .demo-3 .box:hover svg line.right {
            -webkit-transform: translateY(-460px);
            transform: translateY(-460px);
            opacity: 1;
        }

 
/* Spin */
.demo-4 .box {
    box-shadow: none;
    background: rgba(0,0,0,0.4);
    -webkit-transition: none;
    transition: none;
    color: #fff;
}

    .demo-4 .box h3,
    .demo-4 .box span {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-transition: -webkit-transform 0.5s;
        transition: transform 0.5s;
    }

    .demo-4 .box:hover h3,
    .demo-4 .box:hover span {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    .demo-4 .box svg line {
        stroke-width: 30;
        -webkit-transition: all .4s;
        transition: all .4s;
    }

    .demo-4 .box:hover svg line {
        -webkit-transition-delay: 0s;
        transition-delay: 0s;
    }

    .demo-4 .box:hover svg line {
        stroke-width: 0;
    }

    .demo-4 .box svg line.top,
    .demo-4 .box svg line.bottom {
        stroke-dasharray: 300;
    }

    .demo-4 .box svg line.left,
    .demo-4 .box svg line.right {
        stroke-dasharray: 460;
    }

    .demo-4 .box:hover svg line.top {
        -webkit-transform: translateX(-300px);
        transform: translateX(-300px);
    }

    .demo-4 .box:hover svg line.bottom {
        -webkit-transform: translateX(300px);
        transform: translateX(300px);
    }

    .demo-4 .box:hover svg line.left {
        -webkit-transform: translateY(460px);
        transform: translateY(460px);
    }

    .demo-4 .box:hover svg line.right {
        -webkit-transform: translateY(-460px);
        transform: translateY(-460px);
    }

.boxContainer {
    width: 190px;
    display: block;
    height: auto;
    margin-right: 10px;
    padding: 10px;
    box-sizing: border-box;
    flex: 0 0 25em;
    margin-bottom: 10px;
}

.grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}


/*****************hover efekti**************************/
.btn-6 {
    display: inline-block;
    position: relative;
    background: none;
    border: none;
    color: black;
    font-size: 17px;
    cursor: pointer;
}

    .btn-6::before, .btn-6::after {
        content: "";
        width: 0;
        height: 1px;
        position: absolute;
        transition: all 0.2s linear;
        background: red;
    }

.line::before, .line::after {
    content: "";
    width: 1px;
    height: 0;
    position: absolute;
    transition: all 0.2s linear;
    background: red;
}

.btn-6:hover::before, .btn-6:hover::after {
    width: 100%;
}

.btn-6:hover .line::before, .btn-6:hover .line::after {
    height: 100%;
}


/*----- button 6 -----*/
.btn-6::before {
    left: 100%;
    top: 0;
    transition-duration: 0.4s;
}

.btn-6::after {
    left: 0%;
    bottom: 0;
    transition-duration: 0.4s;
}

.btn-6 .line::before {
    left: 0;
    top: 0%;
    transition-duration: 0.4s;
}

.btn-6 .line::after {
    right: 0;
    top: 100%;
    transition-duration: 0.4s;
}

.btn-6:hover::before, .btn-6:hover::after {
    left: 0;
}

.btn-6:hover .line::before, .btn-6:hover .line::after {
    top: 0;
}

.boxContainer .btn-6 {
    width: 100%;
}

.boxContainer img {
    width: 100%;
}

.UrunAd {
    padding: 10px 0;
    text-align: center;
    font-family: inherit;
}


    .boxContainer {
       background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, rgba(255,255,255,1)), color-stop(100%, rgba(237,237,237,1)));
    background: -webkit-radial-gradient(center, ellipse cover, rgba(255,255,255,1) 0%, rgba(237,237,237,1) 100%);
    background: -o-radial-gradient(center, ellipse cover, rgba(255,255,255,1) 0%, rgba(237,237,237,1) 100%);
    background: -ms-radial-gradient(center, ellipse cover, rgba(255,255,255,1) 0%, rgba(237,237,237,1) 100%);
    background: radial-gradient(ellipse at center, rgba(255,255,255,1) 0%, rgba(237,237,237,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed', GradientType=1 );
    }

 label span
    {display: inline-block;
    padding: 0px 7px;
    border: 1px solid red;
    transition: all ease-in-out .3s;
    font-family: catamaran;
    font-weight: 500;
    border-radius:2px;
    }
  label span:hover
    {border:1px solid black
    }
    label
    {margin-right:5px
    }
    .chkbx
    {
        opacity:0;
    }
    .containerx
    {
        max-width: 1200px;
        margin: 0 auto;
    }

    .UrunRenderContainer
    {
        width: 100%;
        background: #ededed!important;
        position: relative;
        top: 0!important;
    }

    .boxContainer
    {
         
        background: #ffffff!important;
    }

    #gallery_area
    {
        background: #ededed;
        top: 0;
    }

    .btn-6Yeni
    {
        width: 100%;
        height: 70px;
        line-height: 70px;
        color: red;
        font-family: 'Lato', sans-serif;
        font-size: 17px;
        display: block;
        vertical-align: middle;
        overflow: hidden;
    }

    .UrunRenderContainer
    {
        width: 100%;
        background: #fff;
        position: relative;
    }

    .gallery-sec:before
    {
        background: none;
    }

    .AltKatBAslik
    {
        background: #fff;
        color: #ff0000;
        border: none;
    }

        .AltKatBAslik:hover
        {
            color: #000;
        }

    .owl-item .AltKatBAslik
    {
        /*height: 67px;*/
        padding: 10px;
    }

    .owl-carousel .owl-item
    {
        /*min-height: 67px!important;*/
        min-height: 90px;
    }

    /*.img1, .img2
    {
        display: none!important;
    }*/

    .AnaKatUl
    {
        box-shadow: none;
        position: relative;
        top: -5px;
        border-bottom: 1px solid lightgray;
    }

    .boxContainer
    {
        background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, rgba(255,255,255,1)), color-stop(100%, rgba(237,237,237,1)));
        background: -webkit-radial-gradient(center, ellipse cover, rgba(255,255,255,1) 0%, rgba(237,237,237,1) 100%);
        background: -o-radial-gradient(center, ellipse cover, rgba(255,255,255,1) 0%, rgba(237,237,237,1) 100%);
        background: -ms-radial-gradient(center, ellipse cover, rgba(255,255,255,1) 0%, rgba(237,237,237,1) 100%);
        background: radial-gradient(ellipse at center, rgba(255,255,255,1) 0%, rgba(237,237,237,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed', GradientType=1 );
    }

    .secili
    {
        background: red;
        color: white!important;
    }

        .secili .btn-6Yeni
        {
            background: red;
            color: white!important;
        }

.aktiffiltre
{
    background:red;
    color:white;
}


@media (min-width: 1200px)
{
    .container
    {

        width: 1200px;
    }
    .container, .container-fluid {
    padding-left: 0;
    padding-right: 0;
}
}
@media (max-width: 992px)
{
    .container
    {
        width: 100%;
    }
}
@media (max-width: 768px)
{
    .container
    {
        width:100%
    }
}
 

 