body {
    background: url('../img/body-bg.png');
    background-color: #89724B;
    font-family: "Lora", serif;
    font-size: 20px;
    color: #89724B;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

@keyframes logoAnim {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.loader {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;

    .wrap {
        background: #89724B;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 1s ease;

        &.active {
            margin-top: -200%;
        }

        img {
            animation: logoAnim 1s linear infinite;
            height: 50px;
        }
    }
}

header {
    position: absolute;
    top: -100%;
    z-index: 2;
    width: 100%;
    transition: all 1s ease;

    .wrap {
        padding: 15px 30px;
        background-color: #89724B66;
        backdrop-filter: blur(5px);
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-radius: 24px;

        .login a {
            margin-left: 20px;
        }
    }

    &.active {
        top: 50px;
    }
}

@keyframes slideMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .slide-title .track {
        animation-duration: 0.01ms;
        animation-iteration-count: 1;
    }
}

.page-title {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;

    span {
        font-weight: 400;
        font-size: 105.32px;
        text-align: center;
        color: #FFEFDA;
        display: block;
        line-height: normal;

        &:nth-child(2) {
            font-weight: 400;
            font-size: 65.09px;
            text-align: center;
        }
    }

    p {
        font-weight: 300;
        font-size: 30px;
        color: #FFEFDA;
        margin-top: 100px;
        text-align: center;
    }

    .slide-title {
        font-weight: 400;
        font-size: 128px;
        text-align: center;
        color: #FFEFDA;

    }

    .slide-title .track {
        display: inline-block;
        white-space: nowrap;
        will-change: transform;
        animation: slideMarquee 120s linear infinite;
    }

    .slide-title .track span {
        display: inline-block;
        padding-right: 3rem;

        &:nth-child(2) {
            font-weight: 400;
            font-size: 128px;
            text-align: center;
            color: #FFEFDA;
        }
    }

    /* .slide-title:hover .track {
        animation-play-state: paused;
    } */
}



.home-video {

    video {
        height: 100vh;
        object-fit: cover;
    }
}

.detail-btn {
    border: 1px solid #89724B;
    padding: 12px 24px;
    border-radius: 12px;
    margin-top: 30px;
    display: block;
    width: fit-content;
}

.seperator {
    margin: 50px 0;

    .wrap {
        border-top: 1px solid rgba(137, 114, 75, 1);
        position: relative;
        padding-top: 10px;
        font-weight: 400;
        font-size: 12px;
        color: #89724B;
        display: flex;
        align-items: center;
        justify-content: space-between;

        .square {
            width: 5px;
            height: 5px;
            background: #89724B;
            transform: rotate(45deg);
            position: absolute;
            top: -2.5px;

            &:first-of-type {
                left: -5px;

            }

            &:nth-child(2) {
                right: -5px;
            }
        }

        &::after {
            content: '';
            width: 1px;
            height: 20px;
            position: absolute;
            background: #89724B;
            top: 0;
            left: 33%;
            transform: translate(-33%, 0);
        }

        &::before {
            content: '';
            width: 1px;
            height: 20px;
            position: absolute;
            background: #89724B;
            top: 0;
            right: 33%;
            transform: translate(-33%, 0);
        }
    }
}

.home-story {
    position: relative;

    .title {
        font-weight: 500;
        font-size: 65px;
        color: #89724B;
        text-align: center;
    }

    .detail-btn {
        margin: 30px auto;
    }

    .img-group {
        margin-top: 50px;
        text-align: center;
        z-index: 2;
        position: relative;

        img {
            position: relative;
            transform: scale(0);

            &:first-of-type {
                margin-top: -130px;
                transition: all 1s ease;
            }

            &:nth-child(2) {
                margin: 0px -130px;
                z-index: 2;
                transition: all 2s ease;
            }

            &:nth-child(3) {
                transition: all 3s ease;
            }

        }
    }

    .story-shape {
        position: absolute;
        bottom: 160px;
        transition: all 2s ease;

        &:first-of-type {
            left: -100%;
        }

        &:last-of-type {
            right: -100%;
        }
    }

    &.active {
        .story-shape {

            &:first-of-type {
                left: 0;
            }

            &:last-of-type {
                right: 0;
            }
        }

        .img-group {
            margin-top: 50px;
            text-align: center;
            z-index: 2;
            position: relative;

            img {
                transform: scale(1);

            }
        }
    }
}

.home-products {
    position: relative;
    padding-bottom: 50px;

    .slick-list {
        overflow: visible;
    }

    .hp-slide {
        text-align: center;

        .big-product {
            margin: 50px auto;
            width: 45%;
            transition: all 1s cubic-bezier(.47, 1.64, .41, .8);
            transform: scale(0);
        }

        .detail-btn {
            margin: auto;
        }

        .product-shape {

            img {
                position: absolute;
                transform: scale(0);


                &:nth-child(1) {
                    top: -100px;
                    left: 0;
                    transition: all 1s cubic-bezier(.47, 1.64, .41, .8);
                    transform-origin: left top;
                }

                &:nth-child(2) {
                    bottom: 0;
                    right: 0;
                    transition: all 2s cubic-bezier(.47, 1.64, .41, .8);
                    transform-origin: right bottom;
                }
            }

        }

        &.slick-active {
            .big-product {
                transform: scale(1);
            }

            .product-shape {

                img {
                    transform: scale(1);
                }

            }
        }
    }

    .title {
        font-weight: 500;
        font-size: 65px;
        color: #89724B;
        text-align: center;
    }

    .hp-prev,
    .hp-next {
        position: absolute;
        top: 50%;
        transform: translate(0, -50%);
        cursor: pointer;
    }

    .hp-prev {
        left: 20%;
        transform: translate(0, -50%) rotateY(180deg);
    }

    .hp-next {
        right: 20%;
    }
}

.home-stores {
    position: relative;
    padding-bottom: 50px;

    .title {
        font-weight: 500;
        font-size: 65px;
        color: #89724B;
        text-align: center;
    }

    .img-group {
        margin: 0 auto;
        text-align: center;
        position: relative;
        z-index: 2;

        img {
            &:nth-child(1) {
                transform: rotate(20deg) translate(180px, 0px);
                transform-origin: right bottom;
                transition: all 2s ease;
            }

            &:nth-child(2) {
                margin: 0px -160px;
                position: relative;
                z-index: 2;
            }

            &:nth-child(3) {
                transform: rotate(-20deg) translate(-180px, 0px);
                transform-origin: left bottom;
                transition: all 2s ease;
            }
        }
    }

    &.active {
        .img-group {

            img {
                &:nth-child(1) {
                    transform: rotate(0) translate(0, 0px);
                }

                &:nth-child(3) {
                    transform: rotate(0) translate(0, 0px);
                }
            }
        }
    }

    .detail-btn {
        margin: auto;
    }

    .store-shape {

        position: absolute;

        &:first-of-type {
            top: 0;
            left: 0;
        }

        &:last-of-type {
            bottom: 0;
            right: 0;
        }
    }
}

.home-catalog {
    padding-bottom: 50px;

    .title {
        font-weight: 500;
        font-size: 65px;
        color: #89724B;
        text-align: center;
        margin-bottom: 50px;
    }

    .detail-btn {
        margin: 30px auto;
    }
}

.home-corporate {
    padding-bottom: 100px;

    .title {
        font-weight: 500;
        font-size: 65px;
        color: #89724B;
        text-align: center;
        margin-bottom: 50px;
    }

    .cor-slider {
        margin: 0 -250px 0 50px;

        .c-slide {
            position: relative;
            border-radius: 25px;
            overflow: hidden;
            margin: 0 15px;
            cursor: ew-resize;

            .info {
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                padding: 30px;

                .c-title {
                    font-weight: 500;
                    font-size: 32px;
                    color: #fff;
                }

                .desc {
                    font-weight: 500;
                    font-size: 16px;
                    color: #fff;
                }

                a {
                    display: flex;
                    align-items: center;
                    justify-content: end;
                    font-family: Lora;
                    font-weight: 400;
                    font-size: 16px;
                    color: #fff;
                    text-align: right;
                    width: 100%;

                    img {
                        height: 35px;
                        margin-left: 15px;
                    }
                }
            }
        }
    }
}

footer {
    background: #89724B;
    padding: 50px 0;

    .f-title {
        font-weight: 700;
        font-size: 16px;
        color: #FFEFDA;
        margin-bottom: 10px;
        
        a{
            font-weight: 700;
        font-size: 16px;
        color: #FFEFDA;
        margin-bottom: 10px;
        }
    }

    a {
        display: block;
        font-weight: 400;
        font-size: 12px;
        color: #FFEFDA;
        margin-bottom: 5px;
    }

    .copy {
        font-weight: 400;
        font-size: 12px;
        color: #FFEFDA;
        margin-top: 30px;
        border-top: 1px solid #FFEFDA;
        padding-top: 15px;

        .social a {
            display: inline-block;
            margin: 0 5px;
        }
    }
}

.inner-story {
    position: relative;
    padding: 50px 0 100px 0;

    &::after {
        content: '';
        position: absolute;
        width: 1px;
        background: #89724B;
        left: 50%;
        bottom: 100px;
        transform: translate(-50%, 0);
        top: 200px;
    }

    .title {
        font-weight: 400;
        font-size: 65px;
        color: #89724B;
        text-align: center;
        margin-bottom: 50px;
    }

    .s-story {
        position: relative;
        margin-bottom: 50px;

        &::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: #89724B;
        }

        &:nth-child(odd) .row {
            flex-direction: row-reverse;
        }
    }

    .mini-title {
        font-weight: 400;
        font-size: 48px;
        color: #89724B;
        padding: 0 50px;
    }

    .story-img {
        padding: 0 50px;
    }

    .desc {
        font-weight: 400;
        font-size: 16px;
        padding: 0 50px;
    }

    .detail-btn {
        margin: 30px auto;
    }

    .img-group {
        margin-top: 50px;
        text-align: center;
        z-index: 2;
        position: relative;

        img {
            position: relative;
            transform: scale(0);

            &:first-of-type {
                margin-top: -130px;
                transition: all 1s ease;
            }

            &:nth-child(2) {
                margin: 0px -130px;
                z-index: 2;
                transition: all 2s ease;
            }

            &:nth-child(3) {
                transition: all 3s ease;
            }

        }
    }

    .story-shape {
        position: absolute;
        top: 38%;
        transition: all 2s ease;

        &:first-of-type {
            left: -100%;
        }

        &:last-of-type {
            right: -100%;
        }
    }

    &.active {
        .story-shape {

            &:first-of-type {
                left: 0;
            }

            &:last-of-type {
                right: 0;
            }
        }

        .img-group {
            margin-top: 50px;
            text-align: center;
            z-index: 2;
            position: relative;

            img {
                transform: scale(1);

            }
        }
    }

    .story-lale {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
    }
}

.in-logos {
    position: relative;
    padding: 50px 0 100px 0;

    .title {
        font-weight: 400;
        font-size: 65px;
        color: #89724B;
        text-align: center;
        margin-bottom: 50px;
    }
}

.habes-seyidoglu {
    padding-bottom: 100px;

    .title {
        font-weight: 400;
        font-size: 65px;
        color: #89724B;
        text-align: center;
        margin-bottom: 50px;
    }

    .desc {
        font-weight: 400;
        font-size: 16px;
        padding: 0 50px;
    }
}

.inner-category {
    padding: 200px 0 100px 0;
    position: relative;

    .title {
        font-weight: 500;
        font-size: 65px;
        color: #89724B;
        text-align: center;
        margin-bottom: 50px
    }

    a {
        display: block;
        margin: 15px 0;

        .cat-btn {
            font-weight: 500;
            font-size: 20px;
            margin-top: 15px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
    }

    .detail-shape {
        position: absolute;

        &:first-of-type {
            left: -30px;
            top: 70%;
        }

        &:last-of-type {
            right: -30px;
            top: 20%;
        }
    }
}

.main-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    visibility: hidden;

    &::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        right: -100%;
        width: 0;
        background: #89724B;
        z-index: 2;
        transition: all 1s ease-in-out;
    }

    &::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        right: -100%;
        width: 60%;
        background: #F9E9D3;
        z-index: 1;
        transition: all 1.3s ease-in-out;
    }

    .menu-bg {
        position: absolute;
        top: 0;
        right: -100%;
        bottom: 0;
        width: 0;
        transition: all 1s ease-in-out;
    }

    .menu-shape {
        position: absolute;
        z-index: 4;
        top: 10%;
        right: 40%;
        width: 38%;
        opacity: 0;
        transition: all 4s ease;
    }

    nav {
        position: relative;
        z-index: 3;
        color: #fff;
        margin: 50px;
        opacity: 0;
        transition: all 1s ease-in-out;
        transition-delay: 0s;
        height: 100vh;
        display: flex;
        align-items: center;


        ul {
            list-style: none;
            margin: 0;
            padding: 0;

            a {
                font-weight: 600;
                font-size: 24px;
                color: #FFEFDA;
                margin: 15px 0;
                display: block;
            }
        }
    }

    .menu-logo {
        position: absolute;
        z-index: 3;
        margin: 50px;
        display: block;
        top: -100%;
        transition: all 2s ease;
    }

    &.active {
        visibility: visible;

        .menu-logo {
            top: 0;
            z-index: 5;
        }

        nav {
            opacity: 1;
            transition-delay: 1s;
        }

        .menu-bg {
            width: 40%;
            right: 0;
        }

        &::after {
            right: 40%;
            width: 60%;
        }

        &::before {
            right: 40%;
            width: 60%;
        }

        .menu-shape {
            opacity: 1;
        }

        .menu-imgs {
            display: none;

            img {
                transform: scale(1);

                &:first-of-type {

                    transition-delay: 0s;
                }

                &:first-of-type,
                &:nth-child(2),
                &:nth-child(3),
                &:nth-child(4) {
                    transition-delay: 2s;
                }
            }
        }

        .close-btn {
            opacity: 1;
            transition-delay: 2s;
        }
    }

    .drop {
        ul {
            display: none;
            float: left;
            width: 100%;
            margin: 0 0 30px 0;

            a {
                font-weight: 400;
                font-size: 16px;
                color: #FFEFDA80;
                transition: all .3s ease;

                &:hover {
                    color: #FFEFDA;
                }
            }
        }

        &.active {

            ul {
                display: block;


            }
        }
    }

    .menu-imgs {
        position: absolute;
        z-index: 4;
        top: 0;
        right: 40%;
        bottom: 0;
        left: 0;
        pointer-events: none;

        img {
            position: absolute;
            transform: scale(0);

            &:first-of-type {
                right: -10%;
                transition: all 1s cubic-bezier(.47, 1.64, .41, .8);
                transition-delay: 0s;
            }

            &:nth-child(2) {
                right: 25%;
                top: 25%;
                transition: all 1.5s cubic-bezier(.47, 1.64, .41, .8);
                transition-delay: 0s;
            }

            &:nth-child(3) {
                right: 0%;
                bottom: 10%;
                transition: all 2s cubic-bezier(.47, 1.64, .41, .8);
                transition-delay: 0s;
            }

            &:nth-child(4) {
                right: 25%;
                bottom: -5%;
                transition: all 2.5s cubic-bezier(.47, 1.64, .41, .8);
                transition-delay: 0s;
            }
        }
    }

    .close-btn {
        position: absolute;
        top: 50px;
        right: 50px;
        background: #8a724b;
        width: 50px;
        height: 50px;
        padding: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: all .3s ease;
        transition-delay: 0s;
        z-index: 5;

        span {
            width: 45%;
            height: 2px;
            background: #fff;
            display: block;
            position: absolute;

            &:first-of-type {
                transform: rotate(45deg);
            }

            &:nth-child(2) {
                transform: rotate(-45deg);
            }
        }
    }
}

.inner-hr {
    position: relative;
    padding: 50px 0 100px;

    .title {
        font-weight: 400;
        font-size: 65px;
        color: #89724B;
        text-align: center;
        margin-bottom: 50px;
    }
}

.hr-list {
    padding-bottom: 100px;

    .title {
        font-weight: 400;
        font-size: 55px;
        color: #89724B;
    }

    .s-list {
        display: block;
        width: 100%;
        float: left;
        font-weight: 300;
        font-size: 16px;
        color: #89724B;

        .content {
            width: 50%;

            .num {
                font-weight: 700;
                font-size: 120px;
                color: #89724B26;
                margin-bottom: -80px;
                margin-left: -30px;
            }
        }

        &:nth-child(even) {
            .content {
                float: right;
            }
        }
    }

    .desc-end {
        font-weight: 300;
        font-size: 16px;
        color: #89724B;
        text-align: center;
        margin-top: 50px;
    }
}

.hr-form {
    font-weight: 400;
    font-size: 64px;
    text-align: center;
    color: #89724B;
    padding-bottom: 100px;

    .desc {
        font-weight: 400;
        font-size: 16px;
        color: #89724B;
        text-align: center;
        margin: 50px 0;
    }

    label {
        font-weight: 600;
        font-size: 14px;
        color: #89724B;
        float: left;
        margin-bottom: 5px;
    }

    input,
    textarea {
        width: 100%;
        border-radius: 12px;
        background: #89724B1A;
        font-size: 14px;
        color: #89724B;
        float: left;
        padding: 10px;
        margin-bottom: 30px;
        box-shadow: none;
        border: none;

        &:focus {
            outline: 0;
            border: 0;
            box-shadow: none;
        }

        &::placeholder {
            color: #89724B;
        }
    }

    textarea {
        height: 200px;
    }

    .send-btn {
        font-weight: 400;
        font-size: 20px;
        text-align: center;
        width: 100%;
        padding: 15px;
        border-radius: 12px;
        border: 1px solid #88714a;
        background: #8a724b;
        color: #fff;
    }
}

.file-upload-content {
    display: none;
    border: 1px dashed #89724B;
    position: relative;
    border-radius: 12px;
    margin-top: 30px;
    transition: all .3s ease;

    .card-wrap {
        background: #eedec7;
        display: flex;
        align-items: center;
        padding: 15px;
        border-radius: 12px;
        justify-content: space-between;

        .info {
            display: flex;
            align-items: center;
        }

        img {
            height: 30px;
            margin-right: 10px;
        }

        .image-title {
            font-size: 15px;
            margin-right: 10px;
        }

        .remove-image {
            font-size: 14px;
            background: #8a724b;
            color: #fff;
            padding: 10px 25px;
            border: none;
            border-radius: 12px;
        }
    }
}

.file-upload-input {
    position: absolute;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    outline: none;
    opacity: 0;
    cursor: pointer;
    left: 0;
}

.image-upload-wrap {
    border: 1px dashed #89724B;
    position: relative;
    border-radius: 12px;
    margin-top: 30px;
    display: block;
    transition: all .3s ease;
}

.image-dropping,
.image-upload-wrap:hover {
    background-color: #89724B;
    border: 1px dashed #89724B;

    path {
        fill: #fff
    }
}

.image-title-wrap {
    padding: 15px;
    color: #222;
}

.drag-text {
    text-align: center;
}

.drag-text h3 {
    font-weight: 100;
    text-transform: uppercase;
    color: #15824B;
    padding: 60px 0;
}

.file-upload-image {
    max-height: 200px;
    max-width: 200px;
    margin: auto;
    padding: 20px;
}


.remove-image:hover {
    background: #c13b2a;
    color: #ffffff;
    transition: all .2s ease;
    cursor: pointer;
}

.remove-image:active {
    border: 0;
    transition: all .2s ease;
}

.inner-export {
    position: relative;
    padding: 50px 0 100px;

    .title {
        font-weight: 400;
        font-size: 65px;
        color: #89724B;
        text-align: center;
        margin-bottom: 50px;
    }
}

.inner-quality {
    position: relative;
    padding: 50px 0 100px;

    .title {
        font-weight: 400;
        font-size: 65px;
        color: #89724B;
        text-align: center;
        margin-bottom: 50px;
    }

    .box {
        border: 1px solid #89724B;
        border-radius: 18px;
        padding: 30px;
        text-align: center;

        img {
            height: 100px;
            margin-bottom: 30px;
        }

        .m-title {
            font-weight: 400;
            font-size: 24px;
        }
        

        .desc {
            font-weight: 400;
            font-size: 16px;
        }

        a {
            font-weight: 400;
            font-size: 16px;
            border-radius: 12px;
            background: #8a724b;
            color: #fff;
            padding: 10px 20px;
            margin-top: 30px;
            display: block;
        }
    }

    .q-desc {
        font-weight: 400;
        font-size: 16px;
        text-align: center;

        b {
            font-size: 22px;
            display: block;
            margin-bottom: 15px;
            font-weight: 600;
        }

    }
}

.inner-franchise {
    position: relative;
    padding: 50px 0 100px;

    .title {
        font-weight: 400;
        font-size: 65px;
        color: #89724B;
        text-align: center;
        margin-bottom: 50px;
    }

    .desc {
        font-weight: 400;
        font-size: 16px;
        text-align: center;
    }

    .m-title {
        font-weight: 500;
        font-size: 48px;
        text-align: center;
        line-height: normal;
    }

    ul {
        list-style: inside;
        font-weight: 400;
        font-size: 16px;
        text-align: center;
    }
}

.franchise-concept {
    position: relative;
    padding: 0 0 50px 0;

    .title {
        font-weight: 400;
        font-size: 65px;
        color: #89724B;
        text-align: center;
        margin-bottom: 50px;
    }

    .box {
        border: 1px solid #89724B;
        border-radius: 18px;
        padding: 30px;
        height: 100%;

        .m-title {
            font-weight: 400;
            font-size: 40px;
            text-align: center;
            margin-bottom: 30px;

        }

        .desc {
            font-weight: 400;
            font-size: 14px;
            text-align: center;
        }
    }

    .desc {
        font-weight: 400;
        font-size: 16px;
        text-align: center;
        margin-top: 50px;
    }
}

.franchise-form {
    position: relative;
    padding: 50px 0 100px 0;

    .title {
        font-weight: 400;
        font-size: 65px;
        color: #89724B;
        text-align: center;
    }

    .desc {
        font-weight: 400;
        font-size: 16px;
        text-align: center;
    }

    label {
        font-weight: 600;
        font-size: 14px;
        color: #89724B;
        float: left;
        margin-bottom: 5px;
    }

    input,
    textarea {
        width: 100%;
        border-radius: 12px;
        background: #89724B1A;
        font-size: 14px;
        color: #89724B;
        float: left;
        padding: 10px;
        margin-bottom: 30px;
        box-shadow: none;
        border: none;

        &:focus {
            outline: 0;
            border: 0;
            box-shadow: none;
        }

        &::placeholder {
            color: #89724B;
        }
    }

    textarea {
        height: 200px;
    }

    .send-btn {
        font-weight: 400;
        font-size: 20px;
        text-align: center;
        width: 100%;
        padding: 15px;
        border-radius: 12px;
        border: 1px solid #88714a;
        background: #8a724b;
        color: #fff;
    }

    form {
        margin-top: 50px;
    }

}

.inner-stores {
    position: relative;
    padding: 50px 0 100px;

    .title {
        font-weight: 400;
        font-size: 65px;
        color: #89724B;
        text-align: center;
        margin-bottom: 50px;
    }

    .box {
        border: 1px solid #89724B;
        border-radius: 18px;
        padding: 30px;
        margin: 15px 0;
        height: 100%;

        .m-title {
            font-weight: 500;
            font-size: 24px;
            text-align: center;
            color: #89724B;
            margin-bottom: 30px;
        }
        .magazaBaslik{
            text-transform: uppercase;
        }

        .store-icon {
            margin: auto;
            display: block;
            height: 100px;
        }

        .infos {
            margin-top: 30px;

            a {
                display: flex;
                align-items: center;
                font-weight: 400;
                font-size: 16px;
                color: #89724B;
                margin-top: 15px;

                img {
                    margin-right: 15px;
                }
            }
        }
    }
}

.inner-production {
    position: relative;
    padding: 50px 0 100px;

    .title {
        font-weight: 400;
        font-size: 65px;
        color: #89724B;
        text-align: center;
        margin-bottom: 50px;
        line-height: normal;
    }

    .box {
        border: 1px solid #89724B;
        border-radius: 18px;
        padding: 30px;
        margin: 15px 0;
        height: 100%;

        .m-title {
            font-weight: 600;
            font-size: 18px;
            color: #89724B;
            margin-bottom: 15px;
        }

        .production-icon {
            height: 52px;
            margin-bottom: 15px;
        }

        .desc {
            font-weight: 400;
            font-size: 14px;
        }
    }
}

.inner-contact {
    position: relative;
    padding: 50px 0 100px;

    .title {
        font-weight: 400;
        font-size: 65px;
        color: #89724B;
        text-align: center;
        margin-bottom: 50px;
    }

    .mini-title {
        font-weight: 400;
        font-size: 24px;
        text-align: center;
    }

    .cont-box {
        font-weight: 400;
        font-size: 16px;
        line-height: normal;
        margin-top: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: left;

        img {
            margin-right: 15px;
        }
    }

    .mail-title {
        font-weight: 500;
        font-size: 24px;
        text-align: center;
        color: #89724B;
        margin-bottom: 30px;
    }

    .mail-box {
        border: 1px solid #89724B;
        padding: 30px;
        border-radius: 18px;
        text-align: left;
        height: 100%;

        .mini-title {
            font-weight: 600;
            font-size: 16px;
            color: #89724B;
            text-align: left;
            margin-bottom: 15px;
        }

        span {
            display: flex;
            align-items: center;
            margin-bottom: 15px;

            img {
                height: 18px;
            }

            a {
                font-weight: 400;
                font-size: 16px;
                color: #89724B;
                margin-left: 5px;
            }
        }
    }
}

.title-box {
    position: absolute;
    top: 57%;
    transform: translate(-50%, -50%);
    left: 50%;

    .news-box {
        padding: 15px;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow:
            0 8px 32px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.5),
            inset 0 -1px 0 rgba(255, 255, 255, 0.1),
            inset 0 0 0px 0px rgba(255, 255, 255, 0);


        .news-title {
            font-family: Lora;
            font-weight: 400;
            font-size: 16px;
            margin-top: 15px;
            color: #ffffff;
        }

        img {
            border-radius: 12px;
            overflow: hidden;
        }

        a {
            font-weight: 400;
            font-size: 14px;
            color: #fff;
            text-decoration: underline;
            margin-top: 15px;
            margin-bottom: 15px;
            display: block;
        }
    }
}

.inner-news {
    position: relative;
    padding: 50px 0 100px;

    .title {
        font-weight: 400;
        font-size: 65px;
        color: #89724B;
        text-align: center;
        margin-bottom: 50px;
    }

    .news-box {
        padding: 15px;
        background: #FFEFDA40;
        box-shadow: 0px 4px 4px 0px #DBC6AA;
        backdrop-filter: blur(10px);
        border-radius: 20px;
        margin: 15px 0;

        .news-title {
            font-family: Lora;
            font-weight: 400;
            font-size: 16px;
            margin-top: 15px;
            color: #000000;
        }

        img {
            border-radius: 12px;
            overflow: hidden;
        }

        a {
            font-weight: 400;
            font-size: 14px;
            color: #000000;
            text-decoration: underline;
            margin-top: 15px;
            margin-bottom: 15px;
            display: block;
        }
    }
}

.inner-news-detail {
    position: relative;
    padding: 50px 0 100px;

    .title {
        font-weight: 400;
        font-size: 65px;
        color: #89724B;
        text-align: center;
        margin-bottom: 50px;
    }

    .desc {
        font-weight: 400;
        font-size: 16px;
        text-align: justify;
        margin-bottom: 50px;
    }

    .mini-title {
        font-weight: 400;
        font-size: 24px;
        text-align: center;
    }

    .cont-box {
        font-weight: 400;
        font-size: 16px;
        line-height: normal;
        margin-top: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: left;

        img {
            margin-right: 15px;
        }
    }
}

.inner-news-slider {
    padding-bottom: 50px;

    .title {
        font-weight: 400;
        font-size: 65px;
        color: #89724B;
        text-align: center;
        margin-bottom: 50px;
    }

    .i-n-slider {
        margin-right: -300px;

        .n-slide {
            margin: 0 15px;
        }
    }


    .news-box {
        padding: 15px;
        background: #FFEFDA40;
        box-shadow: 0px 4px 4px 0px #DBC6AA;
        backdrop-filter: blur(10px);
        border-radius: 20px;
        margin: 15px 0;

        .news-title {
            font-family: Lora;
            font-weight: 400;
            font-size: 16px;
            margin-top: 15px;
            color: #000000;
        }

        img {
            border-radius: 12px;
            overflow: hidden;
        }

        a {
            font-weight: 400;
            font-size: 14px;
            color: #000000;
            text-decoration: underline;
            margin-top: 15px;
            margin-bottom: 15px;
            display: block;
        }
    }
}

.p-detail-btn {
    border: 1px solid #89724B;
    padding: 20px 40px;
    width: max-content;
    margin: 50px auto auto auto !important;
    border-radius: 20px;
}
.mobile{
    display: none;
}
@media(max-width:769px) {
    .home-story {
        & .title {
            font-size: 50px;
        }

        &.active {
            & .img-group {
                margin-top: 150px;
                text-align: center;
                z-index: 2;
                position: relative;
            }

            .story-shape {
                display: none;
            }
        }

        .img-group {
            & img {
                &:nth-child(2) {
                    margin: -150px 0 0 0;
                }

                &:nth-child(3) {
                    margin-top: -150px;
                }
            }
        }
    }

    .loader {
        & .wrap {
            &.active {
                margin-top: -350%;
            }
        }
    }

    .home-products {
        .title {
            font-size: 50px;
            padding: 0 15px;
            line-height: normal;
        }

        & .hp-slide {
            & .product-shape {
                & img {
                    &:nth-child(1) {
                        top: -180px;
                        left: 0;
                        transition: all 1s cubic-bezier(.47, 1.64, .41, .8);
                        transform-origin: left top;
                        width: 30%;
                    }
                }
            }
        }

        & .hp-slide {
            & .product-shape {
                & img {
                    &:nth-child(2) {
                        bottom: -85px;
                        right: 0;
                        width: 35%;
                    }
                }
            }
        }

        & .hp-slide {
            .big-product {
                width: 100%;
            }
        }

        .hp-prev {
            left: 5%;
        }

        .hp-next {
            right: 5%;
        }
    }

    .home-stores {
        .title {
            font-size: 50px;
        }

        & .store-shape {
            display: none;
        }

        & .img-group {
            & img {
                &:nth-child(1) {
                    transform: rotate(0) translate(0, 0px);
                }

                &:nth-child(2) {
                    margin-top: -150px;
                }

                &:nth-child(3) {
                    margin-top: -200px;
                    margin-bottom: 50px;
                    transform: rotate(0) translate(0, 0px) !important;
                }
            }
        }
    }

    .home-catalog {
        .title {
            font-size: 50px;
            line-height: normal;
        }
    }

    .mmt-30 {
        margin-top: 30px;
    }

    .home-corporate {
        .title {
            font-size: 50px;
        }
    }

    .main-menu {
        &.active {
            &::after {
                right: 0;
                width: 100%;
            }
        }

        .menu-shape {
            right: 0%;
            width: 100%;
            top: auto;
            bottom: 0;
            pointer-events: none;
        }
    }

    header {
        &.active {
            top: 15px;
        }
    }

    .page-title {
        span {
            font-size: 60px;

            &:nth-child(2) {
                font-size: 45px !important;
                padding: 0 15px;
            }
        }

        p {
            font-size: 26px;
            margin-top: 30px;
        }

    }

    .inner-story {
        padding: 50px 0 0 0;

        .title {
            font-size: 50px;
        }

        & .s-story {
            &:nth-child(even) .row {
                flex-direction: column-reverse;
                text-align: center;
            }

            &:nth-child(odd) .row {
                flex-direction: column-reverse;
                text-align: center;
            }

            &::after {
                content: none;
            }
        }

        .mini-title {
            font-size: 48px;
            margin-top: 30px;
        }

        &::after {
            content: none;
        }
    }

    .in-logos {
        .title {
            line-height: normal;
            font-size: 50px;
        }
    }

    .habes-seyidoglu {
        .title {
            font-size: 50px;
            padding: 0 15px;
            line-height: normal;
        }
    }

    .m-order-1 {
        order: 1;
    }

    .m-order-2 {
        order: 2;
    }

    .m-order-3 {
        order: 3;
    }

    .title-box {
        width: 80%;
    }

    .inner-news-detail {
        .title {
            font-size: 50px;
            line-height: normal;
        }
    }

    .inner-news-slider {
        .title {
            font-size: 50px;
            line-height: normal;
        }
    }

    .inner-hr {
        .title {
            font-size: 50px;
        }
    }

    .hr-list {
        .title {
            font-size: 40px;
        }

        .s-list {
            padding: 0 30px;
            text-align: justify;

            .content {
                width: 100%;
            }
        }
    }

    .hr-form {
        font-size: 50px;
        padding: 0 15px;
        margin-bottom: 100px;
    }

    .inner-export {
        .title {
            font-size: 50px;
        }
    }

    .inner-category {
        .title {
            font-size: 50px;
        }
    }

    .inner-category {
        & .detail-shape {
            &:last-of-type {
                right: -120px;
                top: 10%;
            }

            &:first-of-type {
                left: -70px;
                top: 80%;
            }
        }
    }

    .inner-production {
        .title {
            font-size: 50px;
        }
    }

    .inner-franchise {
        .title {
            font-size: 50px;
            line-height: normal;
        }

        .m-title {
            font-size: 25px;
            padding: 0 30px;
        }

        ul {
            padding: 0;
        }
    }

    .franchise-concept {
        .title {
            font-size: 50px;
        }
    }

    .franchise-form {
        .title {
            font-size: 50px;
            margin-bottom: 30px;
        }
    }

    .inner-contact {
        .title {
            font-size: 50px;
        }
    }

    .inner-stores {
        .title {
            font-size: 50px;
        }
    }
    footer .row{
            flex-direction: column;
    text-align: center;
    }
    footer .social{
        text-align: center !important;
    }
    footer .f-title{
        margin-top: 30px;
    }
    .mobile{
        display: block !important;
    }
    .desktop{
        display: none !important;
    }
    .story-shape{
        display: none;
    }
    .logo img{
            height: 40px;
    }
}