:root {
    --main-color: #C60091;
}

body,
html {
    padding: 0;
    margin: 0;
    font-family: 'Saira', sans-serif;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
    outline: unset;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: normal;
}

img {
    max-width: 100%;
    max-height: 100%;
}

.d-flex {
    display: flex;

    &.align-items-center {
        align-items: center;
    }
}

.container {
    width: 1000px;
    max-width: 90%;
    margin: 0 auto;
}

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

    svg {
        width: 250px;
        height: 50px;
    }
}

.loading {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;

    img {
        display: block;
        height: 32px;
    }
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 10%;
    z-index: 5;
    box-shadow: 0 1px 0 rgba(0, 0, 0, .05);
    position: fixed;
    background-color: white;

    .top {
        display: flex;
        align-items: center;
        z-index: 1;

        iconify-icon {
            margin-left: auto;
            font-size: 20px;
            display: none;
            color: #777;
        }
    }

    nav {
        display: flex;
        align-items: center;
        list-style: none;

        li {
            padding: 0 12px;
            line-height: 100px;
            text-transform: uppercase;
            font-size: 12px;
            font-weight: 400;
            color: #333;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: all .3s ease;
            cursor: pointer;
            position: relative;

            img {
                transition: all .3s ease;
            }

            .show {
                transition: all .3s ease;
                opacity: 0;
                pointer-events: none;
                position: absolute;
                bottom: 1px;
                right: 0;
                display: flex;
                transform: translateY(100%);
                background-color: white;
                box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.25);
                z-index: 1;
                padding: 20px;
                flex-direction: column;
                width: fit-content;

                input {
                    width: 200px;
                }

                .arama {
                    display: flex;
                    flex-direction: column;
                    line-height: 1;

                    a {
                        &:first-child {
                            margin-top: 20px;
                        }

                        padding: 5px 0;
                        display: flex;
                        align-items: center;
                        gap: 5px;
                        color: black;
                        background-color: white;

                        img {
                            width: 36px;
                            height: 36px;
                            object-fit: cover;
                        }

                        span {
                            line-height: 1;
                            text-transform: none;
                            transition: all .3s ease;
                        }

                        &:hover {
                            span {
                                color: var(--main-color);
                            }
                        }
                    }
                }

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

                    li {
                        width: 190px;
                        color: black;
                        line-height: normal;
                        padding: 10px 25px 10px 22px;
                        transition: all .3s ease;

                        &:hover {
                            color: var(--main-color);
                        }
                    }
                }
            }

            &:hover {
                .show {
                    opacity: 1;
                    pointer-events: all;
                }
            }

            a {

                &:hover,
                &.active {
                    color: var(--main-color);
                }
            }
        }

        .seperator {
            position: relative;
            padding-left: 30px;
            display: flex;
            align-items: center;

            &:before {
                content: "";
                left: 14px;
                top: 50%;
                transform: translateY(-50%);
                height: 30px;
                width: 1px;
                background-color: #ccc;
                position: absolute;
            }

            li {
                a {
                    display: flex;
                    align-items: center;
                }
            }

            iconify-icon {
                font-size: 20px;
            }
        }
    }

    &.active {
        nav {
            li {
                line-height: 60px;
            }
        }
    }
}

.main-carousel {
    width: 100%;
    height: 100vh;
    max-height: 700px;
    padding-top: 100px;
    margin-bottom: 100px;
    position: relative;

    .owl-stage-outer {
        height: 100%;

        .owl-stage {
            height: 100%;

            .owl-item {
                height: 100%;

                .item {
                    height: 100%;
                }
            }
        }

        .owl-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }

    .owl-dots {
        opacity: 0;
        transition: all .3s ease;
        position: absolute;
        bottom: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 2px;
        left: 50%;
        transform: translateX(-50%);

        .owl-dot {
            width: 14px;
            height: 14px;
            background-color: var(--main-color);
            border-radius: 50%;
            position: relative;

            &.active {
                &:after {
                    width: 70%;
                    height: 70%;
                    border-radius: 50%;
                    content: "";
                    position: absolute;
                    left: 50%;
                    top: 50%;
                    transform: translateY(-50%) translateX(-50%);
                    background-color: white;
                }
            }
        }
    }

    .owl-nav {
        opacity: 0;
        position: absolute;
        top: calc(50% + 50px);
        transform: translateY(-50%);
        width: 100%;
        display: flex;
        align-items: center;
        pointer-events: none;
        transition: all .3s ease;

        .owl-prev,
        .owl-next {
            width: 30px;
            height: 100px;
            color: white !important;
            background: rgba(198, 0, 145, 0.5) !important;
            pointer-events: all;
            transition: all .3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 15px;

            &:hover {
                background: rgba(198, 0, 145, 0.9) !important;
            }
        }

        .owl-prev {
            border-radius: 0 5px 5px 0;
        }

        .owl-next {
            margin-left: auto;
            border-radius: 5px 0 0 5px;
        }
    }

    &:hover {

        .owl-nav,
        .owl-dots {
            opacity: 1;
        }
    }

    .item {
        position: relative;
        width: 100%;
        height: calc(100vh - 100px);

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

        .mesaj {
            position: absolute;
            top: 50%;
            width: 100%;
            left: 50%;
            transform: translateY(-50%) translateX(-50%);

            h3 {
                font-size: 60px;
                color: #333;
                font-family: "Grand Hotel", sans-serif;
            }

            p {
                font-size: 18px;
                color: #454545;
            }
        }
    }

}

.heading {
    display: flex;
    align-items: center;
    font-family: 'Grand Hotel';
    line-height: 1.5;
    white-space: nowrap;
    margin: 0 0 30px;
    font-family: 'Grand Hotel', sans-serif;
    font-weight: normal;
    color: var(--main-color);
    gap: 5px;

    &.long-line {
        white-space: nowrap !important;

        &:after {
            content: "";
            background-color: var(--main-color);
            width: 100%;
            height: 1.2px;
            margin-left: 20px;
        }
    }
}

.f-30 {
    font-size: 30px;
}

.sorular {
    margin: 100px 0;
    background-image: url(../img/pattern.png);
    padding: 60px 0;

    .container {
        display: flex;
        align-items: center;
        gap: 30px;

        h4 {
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 18px;
            color: var(--main-color)
        }

        p {
            margin: 0;
            color: #7e7e7e;
            font-size: 14px;
        }
    }
}

.button-1 {
    padding: 15px 30px;
    background-color: var(--main-color);
    color: #fff;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    white-space: nowrap;
    transition: all .3s ease;

    &:hover {
        background-color: #000;
    }
}

.button-2 {
    background: #222;
    color: #fff;
    border: unset;
    border-radius: 0;
    letter-spacing: 1px;
    padding: 10px 20px;
    cursor: pointer;
    transition: all .3s ease;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-transform: uppercase;

    &:hover {
        background-color: var(--main-color);
    }
}

.bilgiler {
    padding: 100px 0;

    .container {
        gap: 60px;
        display: flex;
        align-items: center;
    }

    .bilgi {
        display: flex;
        flex-direction: column;
        align-items: center;
        flex: 1;
        align-self: stretch;
        background-color: var(--main-color);
        padding: 30px;
        text-align: center;
        color: white;
        position: relative;

        i {
            position: absolute;
            left: 50%;
            top: 0;
            transform: translateY(-50%) translateX(-50%);
            box-shadow: 0 0 0px 5px #dddddd;
            border-radius: 50%;
            width: 80px;
            height: 80px;
            background-color: white;
            padding: 20px;

            img {
                width: 100%;
                height: 100%;
                object-fit: contain;
            }
        }

        h4 {
            font-weight: 700;
            color: white;
            font-size: 18px;
            max-width: 200px;
            margin: 0 auto;
            margin-top: 40px;
        }

        p {
            margin: 30px 0;
            font-size: 14px;
            line-height: 30px;
        }

        a {
            background-color: rgba(255, 255, 255, .20);
            transition: all .3s ease;
            border-radius: 4px;
            padding: 5px 10px;
            font-size: 11px;
            width: fit-content;
            margin-top: auto;
            font-weight: bold;

            &:hover {
                background-color: transparent;
            }
        }
    }
}

footer {
    color: #6f7273;

    .footer-top {
        background: #222222;
        padding: 80px 0;

        .container {
            display: flex;
            gap: 60px;
            justify-content: space-between;
        }

        .footer-menu {
            flex: 1;
            display: flex;
            flex-direction: column;

            h4 {
                color: white;
                font-size: 12px;
                font-weight: 700;
                letter-spacing: 3px;
                text-transform: uppercase;
                min-height: 40px;
            }

            p {
                margin: 30px 0;
                line-height: 30px;
                color: #7e7e7e;
                font-size: 12px;
            }

            .a {
                color: white;
                transition: all .3s ease;
                padding: 5px 10px;
                font-size: 12px;
                margin-top: auto;
                width: fit-content;

                &:hover {
                    background-color: var(--main-color)
                }
            }

            .d-flex {
                display: flex;
                align-items: center;
                gap: 10px;
                margin-top: auto;

                a {
                    color: #777;
                    transition: all .3s ease;
                    font-size: 20px;

                    &:hover {
                        color: white;
                    }
                }
            }
        }
    }

    .footer-bottom {
        background: #1b1b1b;
        padding: 35px 0;
        border-top: 1px solid #2c2c2c;
        width: 100%;

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

        p {
            font-size: 14px;

            a {
                color: white;
                transition: all .3s ease;

                &:hover {
                    color: var(--main-color)
                }
            }
        }
    }
}

/* Animasyonlar */
@keyframes slideFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideFromRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideFromTop {
    0% {
        opacity: 0;
        transform: translateY(-100px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideFromBottom {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.animated {
    opacity: 0;

    &.animate {
        &.slideFromLeft {
            animation: slideFromLeft 1s forwards;
        }

        &.slideFromRight.animate {
            animation: slideFromRight 1s forwards;
        }

        &.slideFromTop.animate {
            animation: slideFromTop 1s forwards;
        }

        &.slideFromBottom.animate {
            animation: slideFromBottom 1s forwards;
        }

        &.fadeIn {
            animation: fadeIn 1s forwards;
        }
    }
}

@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

.flipInX {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX;

    &.animated {
        opacity: 1;
        animation: flipInX 2s 1s;
    }
}

/* Animasyonlar */

.sayfa {
    margin-top: 100px;
    margin-bottom: 100px;
    position: relative;
    padding: 50px 0;
    background-color: #F5F5F5;

    .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .heading {
        font-size: 30px;
        margin-bottom: 0;
    }

    .sayfalama {
        display: flex;
        align-items: center;
        gap: 5px;

        a {
            color: #222;
            font-size: 12px;
            text-transform: uppercase;
            transition: all .3s ease;

            &[href] {
                color: #7e7e7e;
            }

            &:after {
                cursor: default;
                content: "/";
                margin-left: 5px;
                color: #7e7e7e
            }

            &:last-child {
                &:after {
                    content: "";
                }
            }

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

.hakkimizda {
    h3 {
        color: #333;
        font-size: 24px;
    }

    p {
        font-size: 14px;
        margin-bottom: 0;
        line-height: 30px;
        color: #7e7e7e;
    }
}

.insan_kaynaklari {
    padding-top: 100px;

    .heading {
        font-size: 30px;
    }

    form {
        display: grid;
        --form-row: 2;
        grid-template-columns: repeat(var(--form-row), 1fr);
        gap: 30px;
    }
}

.davetiye_listesi {
    display: grid;
    --davetiye-row: 5;
    grid-template-columns: repeat(var(--davetiye-row), 1fr);
    gap: 30px;

    .liste {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 10px;
        position: relative;
        cursor: pointer;
        max-width: 300px;

        img:first-child {
            width: 150px;
            height: 150px;
        }

        img:nth-child(2) {
            height: 40px;
            width: fit-content;
            object-fit: contain;
        }

        i {
            opacity: 0;
            transition: all .3s ease;
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            backdrop-filter: blur(2px);

            &::before {
                content: "";
                background-image: url(../img/browse.svg);
                background-size: contain;
                position: absolute;
                left: 45%;
                top: 50%;
                width: 32px;
                height: 32px;
                opacity: 0;
                transition: all 1s ease;
                transform: translateX(-50%) translateY(-50%);
            }
        }

        &:hover,
        &:focus {
            i {
                opacity: 1;

                &::before {
                    opacity: 1;
                    left: 50%;
                }
            }
        }
    }

    &.index {
        display: grid;
        --index-row: 3;
        grid-template-columns: repeat(var(--index-row), 1fr);
        gap: 10px;

        .liste {
            img:first-child {
                width: 100%;
                height: 300px;
                object-fit: contain;
            }

            .heading {
                margin-top: 30px;
                font-size: 25px;
            }
        }
    }
}

.davetiyeler {
    display: grid;
    --davetiyeler-row: 3;
    grid-template-columns: repeat(var(--davetiyeler-row), 1fr);
    gap: 30px;
    margin: 100px 0;

    .davetiye {
        display: flex;
        flex-direction: column;

        .img {
            height: 250px;
            overflow: hidden;

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: all .3s ease;
            }
        }

        &:hover {
            .img {
                img {
                    transform: scale(1.1);
                }
            }

            h3 {
                color: var(--main-color)
            }
        }

        h3 {
            margin: 0;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #222;
            padding: 15px 0;
            line-height: 1;
            transition: all .3s ease;
        }

        h4 {
            font-size: 30px;
            color: var(--main-color);
            line-height: 1;
        }
    }
}

.dosyalar {
    display: grid;
    --dosyalar-row: 5;
    grid-template-columns: repeat(var(--dosyalar-row), 1fr);
    gap: 30px;

    .dosya {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 10px;
        position: relative;
        cursor: pointer;

        .first {
            width: 150px;
            height: 150px;
        }

        .second {
            height: 40px;
            width: fit-content;
            object-fit: contain;
            margin-bottom: 50px;
        }

        a {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
            font-size: 12px;
            font-weight: bold;
            width: 100%;
            text-align: left;
            padding: 5px 10px;

            img {
                width: 16px;
                height: 16px;
            }
        }
    }
}

.bayilerimiz {
    .heading {
        font-size: 30px;
    }

    .bayiler {
        display: flex;
        flex-direction: column;
        position: relative;

        &:before {
            border-left: 1px dashed #cecece;
            bottom: 10px;
            content: "";
            left: 15px;
            position: absolute;
            top: 25px;
            z-index: 0;
        }

        .bayi {
            display: flex;
            flex-direction: column;

            h3 {
                width: fit-content;
                position: relative;
                letter-spacing: 3px;
                color: #222;
                position: relative;
                padding: 14px 20px 14px 40px;
                font-size: 14px;
                font-weight: 400;
                text-transform: uppercase;
                line-height: 30px;
                cursor: pointer;

                &:before {
                    content: "";
                    position: absolute;
                    left: 0;
                    top: 14px;
                    background-image: url(../img/arrow-down.svg);
                    background-size: 60%;
                    background-repeat: no-repeat;
                    background-position: center;
                    width: 30px;
                    transition: all .3s ease;
                    height: 30px;
                    transform-origin: center;
                    background-color: #222;
                }

                &:hover {
                    &:before {
                        background-color: var(--main-color);
                    }
                }
            }

            ul {
                padding: 10px 20px 20px 40px;
                font-size: 14px;
                color: #777;
                line-height: 1.8;
                list-style: none;
                display: none;

                li {
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    margin-bottom: 10px;

                    img {
                        background: #ddd;
                        width: 30px;
                        height: 30px;
                        line-height: 30px;
                        text-align: center;
                        padding: 7.5px;
                    }

                    &:last-child {
                        margin-bottom: 0;
                    }

                    a {
                        color: var(--main-color)
                    }
                }
            }

            &.active {
                h3 {
                    &:before {
                        background-color: var(--main-color);
                        transform: rotate(180deg);
                    }
                }
            }
        }
    }

}

.sss {
    .flex {
        display: flex;

        .bayiler {
            width: 100%;
            height: fit-content;
        }

        .bilgiler {
            padding: 0;

            .container {
                width: 300px;

                flex-direction: column;

                .bilgi {
                    width: 300px;
                }
            }
        }
    }
}

.iletisim {
    display: flex;
    justify-content: space-between;
    padding: 100px 0;
    gap: 30px;

    .kanal {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        text-align: center;

        img {
            width: 48px;
            height: 48px;
        }

        h3 {
            font-family: 'Grand Hotel', sans-serif;
            font-size: 30px;
        }

        p {
            margin: 0;
            font-size: 14px;

            a {
                transition: all .3s ease;

                &:hover {
                    color: var(--main-color);
                }
            }
        }
    }
}

.iletisim_form {
    text-align: center;
    padding: 100px 0;
    padding-top: 0;

    .heading {
        font-size: 30px;
        justify-content: center;
    }

    p {
        width: 60%;
        display: inline-block;
        line-height: 25px;
        color: #7e7e7e;
        font-size: 14px;
        margin-top: 0;
        margin-bottom: 100px;
    }

    .flex {
        display: flex;
        gap: 10px;
    }

    .cevapla {
        display: flex;
        align-items: center;
        margin-top: 10px;
        gap: 10px;

        input {
            width: 300px;
        }

        button {
            height: 40px;
        }
    }

}

label {
    display: block;
    flex: 1;

    h5 {
        margin-bottom: 5px;
        text-transform: uppercase;
        font-size: 14px;
        color: #7e7e7e;
        text-align: left;
    }
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid #e4e4e4;
    height: 40px;
    color: #555;
    padding: 6px 12px;
    font-family: 'Saira', sans-serif;
    resize: none;
}

textarea {
    height: 100px;
}

button {
    font-family: 'Saira', sans-serif;
}

.yazilar {
    display: grid;
    --yazilar-row: 2;
    grid-template-columns: repeat(var(--yazilar-row), 1fr);
    gap: 30px;

    .kategori {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    h2 {
        color: #333;
        text-transform: uppercase;
    }

    h4 {
        color: #7e7e7e;
        font-size: 14px;
        margin-bottom: 50px;
    }

    .yazi {
        background: #f5f5f5;
        padding: 20px;
        margin-bottom: 30px;
        display: inline-block;
        border-radius: 4px;
        position: relative;
        line-height: 30px;
        color: #7e7e7e;
        font-size: 14px;

        &:after {
            background-color: #f5f5f5;
            border-color: #f5f5f5;
            border-image: none;
            border-right: 1px solid #f5f5f5;
            border-style: none;
            bottom: -7px;
            content: "";
            display: block;
            height: 14px;
            left: 25px;
            position: absolute;
            transform: rotate(45deg);
            -moz-transform: rotate(45deg);
            -webkit-transform: rotate(45deg);
            width: 15px;
        }
    }
}

.zoomContainer {
    cursor: crosshair !important;
}

.davetiye_sayfa {
    display: flex;
    gap: 60px;

    .card-gallery {
        width: 60%;
        min-width: 60%;
        display: flex;
        flex-direction: column;
        gap: 10px;

        figure {
            width: 100%;
            margin: 0;
        }
    }

    .card-details {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 30px;

        .header {
            display: flex;
            flex-direction: column;
            background-color: var(--main-color);
            padding: 15px 30px 30px 30px;
            border-radius: 4px;
            color: white;

            div {
                text-align: center;
                font-size: 12px;

                a:first-child {
                    float: left;
                }

                a:nth-child(2) {
                    float: right;
                }

                b {
                    display: inline-block;
                }
            }

            h3 {
                display: block;
                font-size: 36px;
                margin: 0;
                margin-top: 30px;
                line-height: 1;
                text-align: center;
            }
        }

        .details {
            color: #7e7e7e;
            font-size: 14px;
        }

        table {
            font-size: 14px;

            tr {
                td:first-child {
                    padding: 5px 0;
                    display: inline-block;
                    letter-spacing: 2px;
                    color: #000;
                    font-size: 12px;
                    text-transform: uppercase;
                }

                td:nth-child(2) {
                    color: #666;
                }
            }
        }

        .share {
            a {
                iconify-icon {
                    color: #cdcdcd;
                    font-size: 17px;
                    transition: all .3s ease;
                }

                &:hover {
                    iconify-icon {
                        color: black;
                    }
                }
            }
        }

        .buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
    }
}

.notifications {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
    pointer-events: none;
    z-index: 5;

    .notification {
        pointer-events: none;
        width: 200px;
        display: flex;
        color: white;
        align-items: center;
        padding: 10px;
        opacity: 0.8;
        margin: 2.5px 0;
        animation: bildirim 5s forwards;
        position: relative;
        font-size: 12px;

        &:after {
            content: "";
            position: absolute;
            bottom: 0;
            width: 0;
            left: 0;
            height: 3px;
            background-color: #eee;
            animation: bildirim-progress 5s forwards;
        }

        i {
            min-width: 36px;
            min-height: 36px;
            width: 36px;
            height: 36px;
            background-size: 100% 100%;
            margin-right: 10px;
        }

        h5 {
            margin: 0;
            font-size: 12px !important;
            color: white;
        }

        &.success {
            background: #0f9b0f;
            background: -webkit-linear-gradient(to right, #0f9b0f, #59822d);
            background: linear-gradient(to right, #0f9b0f, #59822d);

            i {
                background-image: url(../img/success.svg);
            }
        }

        &.loading {
            background: #2193b0;
            background: -webkit-linear-gradient(to right, #6dd5ed, #2193b0);
            background: linear-gradient(to right, #6dd5ed, #2193b0);

            i {
                background-image: url(../img/loading.svg);
            }
        }

        &.error {
            background: #ED213A;
            background: -webkit-linear-gradient(to right, #93291E, #ED213A);
            background: linear-gradient(to right, #93291E, #ED213A);

            i {
                background-image: url(../img/error.svg);
            }
        }
    }
}

@keyframes bildirim {
    0% {
        opacity: 0;
        transform: translateY(50%);
    }

    20%,
    80% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(-50%);
    }
}

@keyframes bildirim-progress {
    0% {
        width: 0;
    }

    90%,
    100% {
        width: 100%;
    }
}

*[data-title] {
    position: relative;
}

*[data-title]:hover::after {
    pointer-events: none;
    background-color: black;
    color: white !important;
    padding: 10px;
    font-size: 10px;
    border-radius: 5px;
    text-align: center;
    font-weight: normal;
    content: attr(data-title);
    position: absolute;
    left: 50%;
    white-space: nowrap;
    top: -10px;
    transform: translateX(-50%) translateY(-100%);
}

@media (max-width:763px) {
    .main-carousel {
        height: 50vh;

        .item {
            .mesaj {
                h3 {
                    font-size: 40px;
                }

                p {
                    font-size: 15px;
                }
            }
        }
    }

    header {
        height: 100px;
        transition: all .3s ease;
        padding: 0 5%;

        &.active {
            height: 60px;
        }

        .top {
            width: 100%;

            iconify-icon {
                display: block;
            }
        }

        nav {
            opacity: 0;
            pointer-events: none;
            position: fixed;
            left: 0;
            top: 0;
            transition: all .3s ease;
            width: 100%;
            height: 100vh;
            background-color: white;
            flex-direction: column;
            justify-content: flex-end;
            padding-top: 100px;

            .seperator {
                padding-left: 0;
                margin-top: auto;

                &:before {
                    content: unset;
                }
            }

            li {
                line-height: 80px !important;
                font-size: 15px;
            }
        }

        &.hamburger {
            height: 100px !important;

            .hamburger-toggle {
                color: var(--main-color)
            }

            nav {
                opacity: 1;
                pointer-events: all;
            }
        }
    }

    .davetiye_listesi {
        --davetiye-row: 2;

        &.index {
            --index-row: 2;
        }
    }

    .sorular {
        .container {
            flex-direction: column;
            text-align: center;
        }
    }

    .bilgiler {
        .container {
            flex-direction: column;
        }
    }

    footer {
        .footer-top {
            .container {
                flex-direction: column;

                h4 {
                    min-height: unset;
                }

                p {
                    margin: 10px 0;
                }
            }
        }
    }

    .sayfa {
        .container {
            gap: 10px;
            flex-direction: column;

            .sayfalama {
                flex-wrap: wrap;
                justify-content: center;
            }
        }
    }

    .davetiyeler {
        --davetiyeler-row: 1;
    }

    .davetiye_sayfa {
        flex-direction: column;

        .card-gallery {
            width: 100%;
        }
    }

    .heading {
        white-space: unset;
    }

    .iletisim_form {
        p {
            width: 100%;
        }

        .flex {
            flex-direction: column;
        }
    }

    .dosyalar {
        --dosyalar-row: 1;
    }

    .insan_kaynaklari {
        form {
            --form-row: 1;
        }
    }

    .sss {
        .flex {
            flex-direction: column;
        }
    }

    .yazilar {
        --yazilar-row: 1;

        .kategori {
            margin-bottom: 50px;

            &:last-child {
                margin-bottom: 0;
            }
        }
    }
}