* {
    font-family: "Mulish", sans-serif;
}

html,
body {
    overflow-x: hidden;
}

.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
}

    .navbar .container-fluid {
        padding: 0 30px;
    }

.navbar-collapse {
    flex-grow: 0;
}

.nav-item {
    font-size: 15px;
}

    .nav-item.blink {
        border: 3px solid red;
        animation: 1s navbar-blink infinite ease-in-out;
        border-radius: 8px;
    }

@keyframes navbar-blink {
    0% {
        border-color: red;
    }

    50% {
        border-color: white;
    }

    100% {
        border-color: red;
    }
}

.nav-item.social-media {
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
    border: 1px solid #ffffff;
    cursor: pointer;
}

    .nav-item.social-media:hover {
        border-color: #848484;
    }

    .nav-item.social-media a {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-item.social-media img {
        width: 20px;
        height: 20px;
    }

#intro {
    margin-top: 76px;
    padding: 30px;
    padding-top: 0;
    width: 100vw;
}

    #intro main {
        background-color: rgb(255, 255, 255);
        border-radius: 1rem;
        display: flex;
        flex-direction: column;
    }

.swiper {
    width: 100%;
    height: 100%;
}

    .swiper .swiper-slide {
        background-color: #ffffff;
        width: 100%;
        height: 100%;
        border-top-left-radius: 1rem;
        border-top-right-radius: 1rem;
    }

        .swiper .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-top-left-radius: 1rem;
            border-top-right-radius: 1rem;
        }

.swiper-pagination {
    text-align: left !important;
    margin-left: 30px;
    margin-bottom: 15px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #ffffff;
}

.buttons {
    display: flex;
}

    .buttons .rotate-animation:first-child {
        border-bottom-left-radius: 1rem;
        border-bottom-right-radius: 0;
    }

    .buttons .rotate-animation:last-child {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 1rem;
    }

.rotate-animation {
    width: 100%;
    position: relative;
    overflow: hidden;
    outline: none;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
}

.default-btn,
.hover-btn {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 15px 20px;
    font-size: 17px;
    font-weight: 500;
    transition: all 1s ease;
    height: 100%;
    color: white;
}

.hover-btn {
    position: absolute;
    inset: 0;
    transform: translate(0%, 100%);
    background-image: linear-gradient( 180deg, rgba(0, 0, 0, 0.146), hsla(0, 0%, 100%, 0) );
}

.rotate-animation:hover .default-btn {
    transform: translate(0%, -100%);
}

.rotate-animation:hover .hover-btn {
    transform: translate(0%, 0%);
}

#invitation .area {
    background-color: #0e1f3c;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 6px;
    padding: 30px 60px;
    border-radius: 20px;
}

    #invitation .area h5 {
        color: #fff;
        font-size: 1.2em;
        line-height: 1.3;
    }

    #invitation .area h6 {
        color: #fff;
        font-size: 0.8em;
        line-height: 1.3;
    }

    #invitation .area a {
        margin-top: 1rem;
        background: #0ba6b8;
        border: none;
        outline: none;
        padding: 10px 25px;
    }

        #invitation .area a:hover {
            background: #000000;
        }

#sponsors .title {
    color: #ff5501;
    font-size: 1.3em;
    line-height: 1.4;
    text-align: center;
    font-weight: bold;
}

#sponsors a {
    width: 192px;
    height: 100px;
    margin: 10px;
    padding: 0px;
    border-style: solid;
    border-width: 1px;
    border-color: #cecece;
    border-radius: 5px;
    box-shadow: 0 17px 20px -13px rgba(0, 0, 0, 0.17);
}

#sponsors img {
    width: 190px;
    height: 98px;
    object-fit: cover;
}

.page-content {
    margin-top: 76px;
    background-color: #e3e8ec;
    height: 100%;
}

    .page-content .container {
        padding-left: 50px;
        padding-right: 50px;
    }

    .page-content .head {
        padding-top: 60px;
        padding-bottom: 40px;
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
    }

        .page-content .head::before {
            content: "";
            background-color: #0ba6b8;
            display: block;
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }

    .page-content .page-title {
        color: #0ba6b8;
        font-size: 3.5rem;
        text-transform: uppercase;
        font-weight: 500;
        padding-bottom: 40px;
    }

    .page-content .inner-content .invitation {
        width: 80%;
        font-size: 1.1em;
        line-height: 1.8;
        font-weight: 600;
        text-align: left;
        padding-bottom: 60px;
    }

    .page-content .inner-content .speakers-box {
        border-radius: 10px;
        margin-bottom: 40px;
        padding: 20px;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        border-top: 3px solid #2a3a98;
        background-color: #fff;
        box-shadow: 0 7px 16px 2px rgba(0, 0, 0, 0.07);
    }

        .page-content .inner-content .speakers-box .speaker {
            width: 250px;
            padding: 20px;
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: start;
            gap: 5px;
            background-color: #f1f1f1;
            border: 4px solid #f1f1f1;
            text-align: center;
            transition: all 0.3s ease-in-out;
            cursor: pointer;
        }

            .page-content .inner-content .speakers-box .speaker:hover {
                background-color: #ffffff;
                scale: 1.02;
            }

            .page-content .inner-content .speakers-box .speaker .photo {
                width: 100%;
                height: 200px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 10px;
                background-color: #2a3a98;
                background-image: linear-gradient(69deg, #2a3a98, #1477b9);
            }

                .page-content .inner-content .speakers-box .speaker .photo img {
                    width: 110px;
                    height: 110px;
                    border-radius: 50%;
                    object-position: top;
                    object-fit: cover;
                    border-style: solid;
                    border-width: 4px;
                    border-color: #2a3a98;
                }

            .page-content .inner-content .speakers-box .speaker p.name {
                margin-bottom: 8px !important;
                margin-top: 8px !important;
                font-weight: 600;
            }

            .page-content .inner-content .speakers-box .speaker span.title {
                color: rgba(16, 16, 25, 0.65);
                font-size: 0.8em;
            }

    .page-content .inner-content .files-box {
        padding: 20px;
        padding-bottom: 40px;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: flex-start;
        align-items: center;
    }

        .page-content .inner-content .files-box .file {
            width: 250px;
            padding: 20px;
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: start;
            position: relative;
            gap: 5px;
            background-color: #ffffff;
            text-align: center;
            transition: all 0.3s ease-in-out;
            cursor: pointer;
            text-decoration: none;
            color: black;
        }

            .page-content .inner-content .files-box .file:hover {
                scale: 1.07;
            }

            .page-content .inner-content .files-box .file .preview {
                width: 100%;
                height: 210px;
            }

                .page-content .inner-content .files-box .file .preview img {
                    width: 100%;
                    height: 100%;
                    background-color: #dbdbdb;
                    object-fit: cover;
                }

            .page-content .inner-content .files-box .file p.name {
                font-size: 1rem;
                font-weight: 600;
                margin: 5px;
            }

            .page-content .inner-content .files-box .file span.extension {
                position: absolute;
                right: 15px;
                top: 15px;
                padding: 10px 10px;
                background-color: #000000;
                color: #ffffff;
                border-radius: 8px;
            }

.timer {
    display: grid;
    grid-template-columns: auto auto;
    width: 100%;
}

    .timer div {
        color: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 5px;
    }

        .timer div span {
            display: block;
        }

            .timer div span:first-child {
                font-weight: bold;
                font-size: 1.6rem;
                margin: 0;
            }

            .timer div span:last-child {
                font-size: 0.6rem;
            }

    .timer .days {
        border-right: 1px solid #fff;
    }

    .timer .seconds {
        border-top: 1px solid #fff;
    }

    .timer .hours {
        border-top: 1px solid #fff;
        border-right: 1px solid #fff;
    }

.rotate-animation.bg-warning .default-btn {
    background-color: #eb3434;
    transition: all 2s ease-in-out;
    animation: 30s disco infinite;
}

.rotate-animation.bg-warning .hover-btn {
    background-color: #0441c3;
    background-image: linear-gradient( 180deg, rgba(0, 0, 0, 0.146), hsla(0, 0%, 100%, 0) );
}

@keyframes disco {
    0% {
        background-color: #eb3434;
    }

    10% {
        background-color: #eb8334;
    }

    20% {
        background-color: #ebeb34;
    }

    30% {
        background-color: #68eb34;
    }

    40% {
        background-color: #34eb52;
    }

    50% {
        background-color: #34ebeb;
    }

    60% {
        background-color: #3477eb;
    }

    70% {
        background-color: #3443eb;
    }

    80% {
        background-color: #ab34eb;
    }

    80% {
        background-color: #eb34df;
    }

    100% {
        background-color: #eb3434;
    }
}

.person-modal img {
    width: 200px;
    height: 200px;
    border-radius: 0.5rem;
}

.person-modal .name {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 0;
}

.person-modal .title {
    font-weight: bold;
    display: block;
    margin-bottom: 1rem;
}

.dropdown-menu li {
    position: relative;
}

.dropdown-menu .dropdown-submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: -7px;
}

.dropdown-menu .dropdown-submenu-left {
    right: 100%;
    left: auto;
}

.dropdown-menu > li:hover > .dropdown-submenu {
    display: block;
}

.kayitformu {
    margin-top: 1rem;
    background: #0ba6b8;
    outline: none;
    padding: 10px 25px;
    color: white;
}

    .kayitformu:hover {
        margin-top: 1rem;
        border: 1px solid #0ba6b8;
        outline: none;
        padding: 10px 25px;
        color: #0ba6b8;
    }



.but1 {
    padding: 0.5em 2em;
    background: none;
    border: 2px solid #fff;
    font-size: 15px;
    color: white;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    border-radius: 12px;
    background-color: #4167bb;
    font-weight: bolder;
    box-shadow: 0 2px 0 2px #000;
}


.buton-container a {
    text-decoration: none !important;
    color: white !important;
}

.but1:before {
    content: "";
    position: absolute;
    width: 100px;
    height: 120%;
    background-color: #ffffff;
    opacity: .3;
    filter: blur(12px);
    top: 50%;
    transform: skewX(30deg) translate(-150%, -50%);
    transition: all 0.5s;
}


.but1:hover {
    background-color: #003f5df0;
    color: #fff;
    box-shadow: 0 2px 0 2px #0d3b66;
}

.buton-container a:hover {
    background-color: #003f5df0;
    color: #fff;
    text-decoration: none;
}

.but1:hover::before {
    transform: skewX(30deg) translate(340%, -50%);
    transition-delay: 0.1s;
}

.buton-container a:hover::before {
    text-decoration: none;
    color: #fff;
}

.but1:active {
    transform: scale(0.9);
}

.lang {
    color: black;
    text-decoration: none;
}

.lang-active {
    color: blue;
    text-decoration: none;
}

.program-buton .Documents-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: fit-content;
    height: 45px;
    border: none;
    padding: 0px 15px;
    border-radius: 5px;
    background-color: rgb(42 58 152);
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.program-buton .folderContainer {
    width: 40px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

.program-buton .fileBack {
    z-index: 1;
    width: 80%;
    height: auto;
}

.program-buton .filePage {
    width: 50%;
    height: auto;
    position: absolute;
    z-index: 2;
    transition: all 0.3s ease-out;
}

.program-buton .fileFront {
    width: 85%;
    height: auto;
    position: absolute;
    z-index: 3;
    opacity: 0.95;
    transform-origin: bottom;
    transition: all 0.3s ease-out;
}

.program-buton .text {
    color: white;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2px;
    margin-bottom: 0
}

.program-buton .Documents-btn:hover .filePage {
    transform: translateY(-5px);
}

.program-buton .Documents-btn:hover {
    background-color: rgb(37 73 160)
}

.program-buton .Documents-btn:active {
    transform: scale(0.95);
}

.program-buton .Documents-btn:hover .fileFront {
    transform: rotateX(30deg);
}

.program-buton a {
    text-decoration: none;
}

.program-buton {
    display: block;
    align-items: center !important
}

/*ARŞİV*/

#arsiv .nav-link {
    color: #fff !important;
    background-color: #176bb2;
    text-align: center;
}

#arsiv .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #fff !important;
    background-color: #393282 !important;
    text-align: center;
}

.arsiv-btn {
    background-color: #0ba6b8 !important;
    border-color: #0ba6b8 !important;
    border-radius: 20px;
    font-size: 14px !important;
}

@media (min-width: 576px) {
    #arsiv .modal-dialog {
        max-width: 700px !important;
        margin-right: auto;
        margin-left: auto;
    }
}

/*ARŞİV*/
