:root {
    --first-font: "Nunito Sans", sans-serif;
    --second-font: 'Roslindale Dsp';
}

body {
    font-family: var(--first-font);
    font-weight: 400;
    font-size: 16px;
    overflow-x: hidden;
}

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

header {
    padding: 0 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;

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

        li {
            float: left;


            a {
                font-weight: 300;
                font-size: 16px;
                padding: 40px;
                display: inline-block;
            }
        }
    }

    .basvuru-btn {
        display: flex;
        align-items: center;
        font-weight: 800;
        font-size: 20px;
                color: #cd9b4f;
        padding: 40px 0 40px 40px;

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

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

        .head-social img {
            height: 30px;
            margin-left: 30px;
        }
    }
}

.main-slider {
    position: relative;

    .s-slide {
        display: flex;

        .left {
            width: 60%;
            height: 100%;
            position: relative;

            img {
                float: left;
            }

            .videos {
                width: 100%;
                height: 100%;
                object-fit: cover;
                margin-bottom: -10px;
                pointer-events: none;
            }
        }

        .right {
            width: 40%;
            background-image: url('../img/slide-vector.svg');
            background-repeat: no-repeat;
            background-size: cover;
            background-position: left;
            min-height: 100%;
            background-color: #FAFAFA;
            padding: 50px;

            .info {
                padding: 30px 0;
                margin-top: 80px;

                .title {
                    font-weight: 700;
                    font-size: 32px;
                    line-height: 32px;
                    margin-bottom: 30px;
                    color: #6c3e27;
                }
            }

            .slide-contact {
                display: flex;
                align-items: flex-end;
                justify-content: space-between;
                margin-top: 30px;

                .c-info {
                    display: flex;
                    flex-direction: column;

                    a {
                        font-weight: 300;
                        font-size: 14px;
                        color: #A1A1AA;
                        margin-top: 10px;

                        img {
                            margin-right: 5px;
                            display: inline-block;
                        }
                    }
                }

                .c-social {

                    img {
                        display: inline-block;
                    }
                }
            }

        }
    }

    .slick-dots {
        position: absolute;
        left: calc(60% + 50px);
        top: 40px;
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
        align-items: center;

        li {
            float: left;
            margin-right: 30px;
            border: none;
            background: none;
            font-weight: 300;
            font-size: 32px;
            color: #D4D4D8;
            transition: all .3s ease;
            transform: scale(1);


            &.slick-active {

                font-weight: 300;
                color: #CD9B4F;
                position: relative;
                line-height: 56px;
                transform: scale(1.7);

                &::after {
                    content: '';
                    position: absolute;
                    bottom: -10px;
                    left: 50%;
                    transform: translate(-50%, 0) scale(0.5);
                    background: url('../img/slide-active.svg') no-repeat;
                    background-position: top center;
                    background-size: contain;
                    width: 24px;
                    height: 24px;
                }

            }
        }
    }

    .s-prev,
    .s-next {
        width: 40px;
        height: 40px;
        border: 1px solid #E6D1A2;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        transform: translate(0, -50%);
        left: 30px;
        transition: all .3s ease;
        cursor: pointer;

        &:hover {
            background: #CD9B4F;
            border: 1px solid #CD9B4F;

            svg path {
                fill: #fff
            }
        }
    }

    .s-next {
        left: calc(60% - 70px);
        transform: translate(0, -50%) rotateY(180deg);
    }
}

.home-projects {
    padding: 50px 0;

    .title {
        font-family: var(--second-font);
        font-weight: 100;
        font-size: 40px;
        line-height: 100%;
        color: #CD9B4F;
        margin-bottom: 80px;

        span {
            display: block;


            &:last-of-type {
                display: block;
                font-family: var(--second-font);
                color: #6C3E27;
                font-weight: 200;
                font-size: 64px;
                margin-top: 20px;
            }
        }
    }

    .s-project {
        background: #FAFAFA;
        display: flex;
        align-items: center;

        .info {
            padding: 50px;
            width: 40%;
        }

        .img {
            width: 60%;
        }

        .p-map {
            font-weight: 300;
            font-size: 20px;
            color: #CD9B4F;
            display: flex;
            align-items: center;

            span {
                margin-left: 10px;
            }
        }

        .p-title {
            font-weight: 300;
            font-size: 32px;
            color: #6C3E27;
            margin-bottom: 50px;
        }

        .p-desc {
            font-weight: 400;
            font-size: 16px;
            margin-bottom: 30px;
        }

        .p-detail-btn {
            padding: 20px 32px;
            background: #17305d;
            display: inline-block;
            color: #fff;
            font-weight: 400;
            font-size: 14px;
        }
    }
}

@keyframes bounce {
    0% {
        transform: scale(0);
        opacity: 0;
    }

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

.home-catalog {
    margin: 50px 0 0 0;
    display: flex;


    .img {
        width: 50%;

        img {
            margin-top: -40px;
        }
    }

    .info {
        width: 50%;
        background: #F4F4F5;
        min-height: 100%;
        padding: 40px;

        .title {
            font-weight: 400;
            font-size: 54px;
            font-family: var(--second-font);
        }

        .s-list {
            display: flex;
            align-items: center;
            padding: 20px 0;
            border-bottom: 1px solid #E4E4E7;

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

            .circle {
                width: 24px;
                height: 24px;
                border-radius: 50%;
                margin-right: 30px;
                position: relative;

                &::after {
                    content: '';
                    width: 24px;
                    height: 24px;
                    background: #e5e5e5;
                    position: absolute;
                    border-radius: 50%;
                    transition: all .3s ease;
                    animation: bounce 2s alternate infinite;
                    z-index: 0;
                }

                &::before {
                    content: '';
                    width: 24px;
                    height: 24px;
                    background: #E6D1A2;
                    position: absolute;
                    border-radius: 50%;
                    z-index: 1;
                }
            }

            .s-title {
                font-weight: 400;
                font-size: 20px;
                color: #6C3E27;
                margin-bottom: 10px;
            }

            .s-desc {
                font-weight: 300;
                font-size: 16px;
                color: #27272A;
            }
        }
    }
}

.home-form {
    display: flex;

    .slogan {
        min-height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 50px;
        background: url('../img/contact-bg.png') no-repeat;
        background-position: center;
        background-size: cover;
        width: 50%;
        position: relative;

        .shape {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .title {
            font-family: var(--second-font);
            font-weight: 400;
            font-size: 71.43px;
            color: #fff;

            span {
                color: #CD9B4F;
            }
        }
    }

    .form {
        min-height: 100%;
        background: radial-gradient(50% 50% at 50% 50%, #1D3865 0%, #132E5B 40.51%, #001A47 100%);
        width: 50%;
        padding: 50px;

        .input-group {
            width: 100%;
            float: left;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 15px;

            input {
                width: 100%;
                background: #FFFFFF03;
                font-weight: 300;
                font-size: 16px;
                color: #A1A1AA;
                border: 1px solid #FFFFFF1A;
                padding: 16px 24px;

                &:focus {
                    outline: 0;
                    box-shadow: none;
                    border: 1px solid #CD9B4F;
                }
            }
        }

        select,
        textarea {
            width: 100%;
            background: #FFFFFF03;
            font-weight: 300;
            font-size: 16px;
            color: #A1A1AA;
            border: 1px solid #FFFFFF1A;
            padding: 16px 24px;
            margin-bottom: 15px;

            &:focus {
                outline: 0;
                box-shadow: none;
                border: 1px solid #CD9B4F;
            }
        }

        textarea {
            height: 300px;
        }

        button {
            padding: 20px 32px;
            font-weight: 400;
            font-size: 16px;
            color: #fff;
            border: none;
            background: #CD9B4F;
            float: right;
        }
    }
}

footer {
    padding: 50px;
    margin-top: 50px;
    background: url('../img/foot-shape.svg') no-repeat;
    background-position: top center;
    background-size: cover;
    background-color: #fff;

    .top-foot {
        display: flex;
        align-items: center;

        .left,
        .right {
            width: 50%;
            display: flex;
            align-items: center;
        }

        .right {
            justify-content: flex-end;

            .link-group {
                display: grid;
                grid-template-columns: repeat(1, 1fr);
                gap: 10px;


                .title {
                    font-weight: 400;
                    font-size: 18px;
                    color: #152E5B;
                    padding-left: 15px;
                    position: relative;
                    display: block;

                    &::after {
                        content: '';
                        position: absolute;
                        width: 8px;
                        height: 8px;
                        background: #2f4d8f;
                        left: 0;
                        top: 50%;
                        transform: translate(0, -50%);
                    }
                }
                a{
                    display: block;
                }
            }
        }
    }


    .info {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-top: 1px solid #E4E4E7;
        border-bottom: 1px solid #E4E4E7;
        margin-bottom: 50px;

        .foot-menu {
            font-weight: 400;
            font-size: 18px;
            color: #A1A1AA;


            a {
                border-left: 1px solid #E4E4E7;
                padding: 50px;
                display: inline-block;
            }
        }
    }

    .contact {
        padding: 0 50px;

        .s-cont {
            display: block;
            font-weight: 300;
            font-size: 16px;
            color: #27272A;
            margin-bottom: 10px;

            span {
                margin-left: 10px;
            }
        }

        .foot-social {

            a {
                margin-right: 10px;
            }
        }
    }

    .copyright {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        font-weight: 300;
        font-size: 16px;
        color: #27272A;
        margin-top: 50px;



        .box:nth-child(2) {
            text-align: center;

            a {
                margin: 0 10px;
            }
        }

        .box:last-of-type {
            text-align: right;
        }
    }
}

.about-bread {
    background: linear-gradient(90deg, #152E5B 0%, #173366 100%);
    padding: 100px;
    color: #fff;
    position: relative;

    h1 {
        font-family: var(--second-font);
        font-weight: 300;
        font-size: 56px;
        text-align: center;

    }

    .bread-shape {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.about-bg {
    background: url(../img/corporate-bg.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;

    &::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #ffffffcf;
        z-index: -1;
    }
}

.about-detail {
    display: flex;
    align-items: center;
    justify-content: center;

    .img {
        width: 50%;
    }

    .content {
        padding: 200px 0 100px 0;
        width: 70%;
        text-align: center;

        p {
            font-weight: 300;
            font-size: 20px;
            color: #27272A;

            &:first-of-type {
                font-weight: 400;
                font-size: 24px;
                color: #A1642D;
            }
        }

        .counter {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            padding: 0;
            margin-top: 100px;

            .box {
                border-right: 1px solid #E4E4E7;
                text-align: center;

                .num {
                    font-weight: 300;
                    font-size: 64px;
                    color: #CD9B4F;
                    font-family: var(--second-font);
                }

                .name {
                    font-weight: 300;
                    font-size: 20px;
                    color: #27272A;
                }

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

.catalog-banner {
    padding: 50px 0;
}

.mission-vision {
    padding-bottom: 100px;

    .title {
        font-family: var(--second-font);
        font-weight: 300;
        font-size: 40px;
        padding: 0 30px;
        margin-bottom: 30px;
        color: #6C3E27;
    }

    .desc {
        font-weight: 300;
        font-size: 20px;
        color: #27272A;
        padding: 0 30px;
        border-right: 1px solid #E4E4E7;

        ul {
            margin: 15px 0 0 0;
            padding: 0;
            list-style: inside;
        }
    }
}

.project-category {
    display: flex;

    .s-cat {
        display: inline-block;
        width: 50%;
        position: relative;

        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: #00000080;
            transition: all .3s ease;
        }

        .title {
            font-weight: 300;
            font-size: 48px;
            text-align: center;
            color: #fff;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-family: var(--second-font);
        }

        &:hover,
        &.active {

            .overlay {
                background: #BB8137B2;
            }
        }
    }
}

.projects {
    padding: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;

    .box {
        position: relative;

        .title {
            font-weight: 700;
            font-size: 20px;
            text-align: center;
            color: #fff;
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: #00000080;
            padding: 10px 15px;
        }
    }
}

.p-detail-title {
    position: relative;

    .content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
        text-align: center;
        width: 90%;

        .title {
            font-weight: 300;
            font-size: 64px;
            text-align: center;
            color: #F9F6ED;
            margin-top: 30px;
            font-family: var(--second-font);
            text-shadow: 0 4px 16px #000000
        }

        img {
            filter: drop-shadow(0 4px 16px #000000);
        }
    }

    &::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #BB8137;
        opacity: .6;
    }

    a {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translate(-50%, 0);
        z-index: 2;
        font-weight: 400;
        font-size: 16px;
        text-align: center;
        color: #CD9B4F;
        padding: 20px 32px;
        background: #FFFFFF;
    }
}

.p-detail {
    padding: 100px 0;

    .desc {
        font-weight: 300;
        font-size: 20px;
        color: #27272A;
    }
}

.p-gallery {

    .title {
        font-family: var(--second-font);
        font-weight: 200;
        font-size: 40px;
        color: #CD9B4F;


        span {
            display: block;
            font-family: var(--second-font);
            font-weight: 300;
            font-size: 64px;
            line-height: 64px;
            color: #6C3E27;

        }
    }

    .gallery-wrap {
        margin: 80px -30% 0 -30%;
        position: relative;

        .g-slide {

            a {
                display: block;
                position: relative;

                &::after {
                    content: '';
                    background: #00000066;
                    position: absolute;
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    transition: all .3s ease;
                }

                img {
                    height: 500px;
                    object-fit: cover;
                }
            }

            &.slick-center {

                a {

                    &::after {
                        opacity: 0;
                    }
                }
            }
        }

        .g-prev,
        .g-next {
            position: absolute;
            left: 32%;
            width: 40px;
            height: 40px;
            background: #17305d;
            top: 50%;
            transform: translate(0, -50%);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        .g-next {
            left: auto;
            right: 32%;
            transform: translate(0, -50%) rotateY(180deg);
        }
    }
}

.detail-form {

    .title {
        font-family: var(--second-font);
        font-weight: 400;
        font-size: 40px;
        margin: 50px 0;
        color: #351B13;
        text-align: center;

        span {
            color: #CD9B4F;
        }
    }

    .input-group {
        width: 100%;
        float: left;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 15px;

        input {
            width: 100%;
            background: #FFFFFF03;
            font-weight: 300;
            font-size: 16px;
            color: #A1A1AA;
            border: 1px solid #E4E4E7;
            padding: 16px 24px;

            &:focus {
                outline: 0;
                box-shadow: none;
                border: 1px solid #CD9B4F;
            }
        }
    }

    select,
    textarea {
        width: 100%;
        background: #FFFFFF03;
        font-weight: 300;
        font-size: 16px;
        color: #A1A1AA;
        border: 1px solid #E4E4E7;
        padding: 16px 24px;
        margin-bottom: 15px;

        &:focus {
            outline: 0;
            box-shadow: none;
            border: 1px solid #CD9B4F;
        }
    }

    textarea {
        height: 300px;
    }

    button {
        padding: 20px 32px;
        font-weight: 400;
        font-size: 16px;
        color: #fff;
        border: none;
        background: #17305d;
        float: right;
    }
}

.other-projects {
    padding: 100px 0;

    .title {
        font-family: var(--second-font);
        font-weight: 200;
        font-size: 40px;
        color: #CD9B4F;

        span {
            display: block;
            font-family: var(--second-font);
            font-weight: 300;
            font-size: 64px;
            line-height: 64px;
            color: #6C3E27;
            margin-bottom: 50px;
        }
    }

    .o-projects {
        display: flex;

        .box {
            width: 33.33%;
            min-height: 500px;
            position: relative;
            text-align: center;
            border-right: 1px solid #fff;
            transition: all .3s ease;

            &::after {
                background: #00000080;
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
            }

            .o-title {
                font-weight: 700;
                font-size: 20px;
                color: #fff;
                margin: 15px 0;
            }

            .bg {
                height: 100%;
                object-fit: cover;
            }

            .content {
                position: absolute;
                top: 50px;
                left: 50%;
                transform: translate(-50%, 0);
                width: 500px;
                z-index: 2;
                color: #fff;

                a {

                    font-weight: 400;
                    font-size: 14px;
                    text-align: center;
                    color: #fff;
                    padding: 15px 32px;
                    background: #152e5b;
                    display: inline-block;
                    margin-top: 30px;
                    visibility: hidden;
                    opacity: 0;
                    transition: all .5s ease;

                }

                .desc {
                    visibility: hidden;
                    opacity: 0;
                    transform: translate(0, 30px);
                    transition: all .5s ease;
                }
            }

            &.active {
                width: 60%;

                .content {

                    a,
                    .desc {
                        visibility: visible;
                        opacity: 1;
                        transform: translate(0, 0);
                    }
                }
            }
        }
    }
}

.contact-bread {
    position: relative;

    #harita {
        width: 100%;
        height: 600px;
    }

    .content {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        pointer-events: none;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;

        img {
            filter: drop-shadow(0 4px 16px #000000);
        }

        .title {
            font-family: var(--second-font);
            font-weight: 300;
            font-size: 56px;
            text-align: center;
            color: #fff;
            margin-top: 20px;
            text-shadow: 0 4px 16px #000000;
        }
    }
}

.contact-info {
    display: flex;

    .info,
    .form {
        width: 50%;
        min-height: 100%;
    }

    .info {
        background: url('../img/c-info-bg.png') no-repeat;
        background-position: center;
        background-size: cover;
        display: flex;
        flex-direction: column;
        padding: 50px;
        justify-content: center;

        a {
            display: flex;
            align-items: center;
            margin: 15px 0;
            backdrop-filter: blur(8px);
            background: #FFFFFF0D;
            padding: 32px;
            font-weight: 300;
            font-size: 16px;
            color: #FFFFFF;

            b {
                display: block;
            }

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

    .form {
        padding: 50px;
        background: #FAFAFA;

        .input-group {
            width: 100%;
            float: left;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 15px;

            input {
                width: 100%;
                background: #FFFFFF03;
                font-weight: 300;
                font-size: 16px;
                color: #A1A1AA;
                border: 1px solid #E4E4E7;
                padding: 16px 24px;

                &:focus {
                    outline: 0;
                    box-shadow: none;
                    border: 1px solid #CD9B4F;
                }
            }
        }

        select,
        textarea {
            width: 100%;
            background: #FFFFFF03;
            font-weight: 300;
            font-size: 16px;
            color: #A1A1AA;
            border: 1px solid #E4E4E7;
            padding: 16px 24px;
            margin-bottom: 15px;

            &:focus {
                outline: 0;
                box-shadow: none;
                border: 1px solid #CD9B4F;
            }
        }

        textarea {
            height: 300px;
        }

        button {
            padding: 20px 32px;
            font-weight: 400;
            font-size: 16px;
            color: #fff;
            border: none;
            background: #152e5b;
            float: right;
        }

        .title {
            font-family: var(--second-font);
            font-weight: 300;
            font-size: 40px;
            margin-bottom: 30px;
        }
    }
}

.mobile-btn,
.mobile-menu {
    display: none;
}

.home-gallery {

    .title {
        font-family: var(--second-font);
        font-weight: 300;
        font-size: 64px;
        color: #6C3E27;
    }

    .gallery-wrap {
        margin: 15px -30% 0 -30%;
        position: relative;

        .g-slide {
            position: relative;

            a {
                display: block;
                position: relative;

                &::after {
                    content: '';
                    background: #00000066;
                    position: absolute;
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    transition: all .3s ease;
                }

                img {
                    height: 500px;
                    object-fit: cover;
                }

            }

            &.slick-center {

                a {
                    &::after {
                        opacity: 0;
                    }
                }

                .info {
                    opacity: 1;
                }
            }

            .info {
                display: flex;
                align-items: center;
                position: absolute;
                bottom: -100%;
                transition: all .5s ease;
                left: 30px;
                right: 30px;
                justify-content: space-between;
                opacity: 0;

                .icon {
                    font-weight: 200;
                    font-size: 20px;
                    color: #fff;
                    display: flex;
                    align-items: center;

                    span {
                        margin-left: 5px;
                    }
                }

                .p-name {
                    font-weight: 300;
                    font-size: 32px;
                    color: #fff;
                }

                .p-btn {
                    font-weight: 300;
                    font-size: 16px;
                    text-align: center;
                    color: #fff;
                    padding: 20px 32px;
                    background: #152e5b;
                }
            }

            &:hover {
                .info {
                    bottom: 30px;
                }
            }
        }

        .g-prev,
        .g-next {
            position: absolute;
            left: 32%;
            width: 40px;
            height: 40px;
            background: #17305d;
            top: 50%;
            transform: translate(0, -50%);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        .g-next {
            left: auto;
            right: 32%;
            transform: translate(0, -50%) rotateY(180deg);
        }
    }
}

.home-header {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 2;


    .basvuru-btn {
        display: flex;
        align-items: center;
        font-weight: 800;
        font-size: 20px;
        padding: 40px 0 40px 40px;
        color: #000;


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

.first-slider {
    height: 100vh;
    position: relative;
    margin-bottom: 30px;

    .f-slide {
        position: relative;

        .bg {
            height: 100vh;
            object-fit: cover;
        }

        .m-bg {
            display: none;
        }

        .title {
            font-family: var(--second-font);
            font-weight: 300;
            font-size: 80px;
            text-align: center;
            position: absolute;
            top: 50%;
            left: 50%;
            width: 70%;
            transform: translate(-50%, -50%);
            color: #660066;
        }
    }

    .contact-info {
        position: absolute;
        bottom: 30px;
        left: 30px;
        right: 30px;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;

        .box {
            display: block;
            margin-top: 10px;

            span {
                margin-left: 10px;
                padding-left: 10px;
                border-left: 1px solid #00000033;
            }
        }
    }

    .s-prev,
    .s-next {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #FFFFFF;
        position: absolute;
        top: 50%;
        left: 30px;
        transform: translate(0, 50%);
        cursor: pointer;
    }

    .s-next {
        left: auto;
        right: 30px;
        transform: translate(0, 50%) rotateY(180deg);
    }

    .slick-dots {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translate(-50%, 0);
        z-index: 99;

        li {
            width: 64px;
            height: 4px;
            list-style: none;
            background: #fff;
            float: left;
            margin: 0 5px;
            cursor: pointer;
            opacity: .2;
            transition: all .3s ease;

            &.slick-active {
                width: 90px;
                opacity: 1;
            }
        }

        button {
            display: none;
        }
    }
}

.p-detail-slider {
    padding-top: 100px;

    .slider-t-wrap {
        position: relative;

        .date {
            font-family: var(--second-font);
            font-weight: 400;
            font-size: 20px;
            text-align: center;
            color: #BB8137;
            opacity: .5;
            position: relative;
            padding-top: 30px;

            &::after {
                content: '';
                width: 2px;
                height: 20px;
                background: #BB8137;
                position: absolute;
                left: 50%;
                top: 0;
                transform: translate(-50%, 0);
                z-index: 2;
            }

            &.slick-center {
                opacity: 1;
                font-weight: 700;
            }
        }

        &::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, #F2E8CF 0%, #D4CAB1 50%, #F2E8CF 100%);
            top: 10px;
            z-index: -1;
        }
    }

    .slider-b-wrap {
        margin-top: 50px;

        .box {
            display: flex;
            align-items: center;

            .title {
                font-family: var(--second-font);
                font-weight: 300;
                font-size: 24px;
                margin-bottom: 30px;
            }

            img {
                width: 45%;
            }

            .desc {
                width: 55%;
                padding-left: 50px;
                font-weight: 300;
                font-size: 16px;
            }
        }
    }

    .s-prev,
    .s-next {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #E6D1A2;
        position: absolute;
        top: 50%;
        transform: translate(0, -50%);
        transition: all .3s ease;

        &:hover {
            background: #CD9B4F;
            border: 1px solid #CD9B4F;

            svg {

                path {
                    fill: #fff;
                }
            }
        }
    }

    .s-prev {
        left: -80px;
    }

    .s-next {
        right: -80px;
        transform: translate(0, -50%) rotateY(180deg);
    }
}

.etap {
    padding: 50px 0 0 0;
    text-align: center;

    .etap-btn {
        padding: 20px 32px;
        background: #152e5b;
        display: inline-block;
        color: #fff;
        font-weight: 400;
        font-size: 14px;
        margin-right: 10px;
    }

    .active {
        background: #0b1832;
    }


}

.mt-50 {
    margin-top: 50px !important;
}

.overlay2 {
    position: absolute;
    top: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    display: none;
    background: rgba(108, 62, 038, 0.85);
}

.cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px #ddd solid;
    border-top: 4px #DFBD70 solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
}

@keyframes sp-anime {
    100% {
        transform: rotate(360deg);
    }
}

.is-hide {
    display: none;
}

.p-detail-history {
    padding-top: 100px;

    .dates {
        font-family: var(--second-font);
        font-weight: 400;
        font-size: 20px;
        text-align: center;
        color: #CD9B4F;
        position: relative;
        padding-top: 30px;
        padding-left: 30px;
        padding-right: 30px;
        margin-left: 40px;

        .date-title {
            color: #BB8137;
            position: absolute;
            top: -40px;
            font-weight: 700;
            width: 100%;
            left: 0;
        }

        .date-title-2 {
            position: absolute;
            top: -40px;
            left: 50%;
            transform: translate(-50%, -40px);

            .spinner-wrap {

                position: absolute;
                z-index: 999999999999;
                top: -15px;
                height: 70px;
                width: 100%;

                .spinner-item {
                    border: 1px solid #BB8137;
                    border-radius: 50%;
                    height: 100px;
                    width: 100px;
                    position: absolute;
                    left: 50%;
                    top: 75%;
                    transform: translate(-50%, -50%);
                    opacity: 0;
                    animation: zoom 2s linear 0.75s infinite;


                }

                .spinner-item--2 {
                    animation-delay: 1.75s;
                }

                .spinner-item--3 {
                    animation-delay: 2.25s;
                }




            }

            @keyframes zoom {
                0% {
                    transform: translate(-50%, -50%) scale(0.2);
                    opacity: 0;
                }

                50% {
                    opacity: 0.9;
                }

                100% {
                    transform: translate(-50%, -50%) scale(1);
                    opacity: 0;
                }
            }

            img {
                padding: 5px;
                background: #FFF;
                border-radius: 50px;
                width: 100%;
                -webkit-box-shadow: 0 0 3px 3px #ffe5aa;
                box-shadow: 0 0 3px 1px #ffe5aa;
            }
        }

        &::after {
            content: '';
            width: 2px;
            height: 20px;
            background: #BB8137;
            position: absolute;
            left: 50%;
            top: 0;
            transform: translate(-50%, 0);
            z-index: 2;
        }
    }

    .cizgi {
        position: relative;
        justify-content: space-between;

        &::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 3px;
            background: linear-gradient(180deg, #F2E8CF 0%, #D4CAB1 50%, #F2E8CF 100%);
            top: 10px;
            z-index: 1;
        }

    }
}

@keyframes zoom {
    0% {
        transform: translate(-50%, -50%) scale(0.2);
        opacity: 0;
    }

    50% {
        opacity: 0.9;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

.d-title {
    font-weight: 300;
    font-size: 32px;
    color: #6C3E27;
    margin: 100px 0 0 0;
}

.blog {
    padding: 100px 0;

    .title {
        font-family: var(--second-font);
        font-weight: 300;
        font-size: 40px;
        margin-bottom: 30px;
        padding: 0 50px;
        color: #6C3E27;
    }

    .desc {
        p {
            font-weight: 300;
            font-size: 20px;
            color: rgb(39, 39, 42);
            padding: 0 50px;
        }
    }
}