/* Alınan site: https://cssloaders.github.io/ */
.loader {
    width: 20px;
    height: 20px;
    border: 3px solid #fff;
    border-bottom-color: #ff3d00;
    border-radius: 50%;
    display: flex;
    max-width: 20px;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    margin-right: 5px;
    /* margin: auto; */
    }

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Open Sans", sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    scroll-behavior: smooth;
}

/* Header section start */

header {
    background-color: #081a24;
    display: flex;
    height: 80px;
    z-index: 9000;
    position: fixed;
    width: 100%;
    box-shadow: 0 0 10px #3d3d3d;
}

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

.header-elements {
    display: flex;
    margin: auto;
    vertical-align: middle;
    justify-content: space-between;
    width: calc(100% - 45px);
    /* max-width: 1300px; */
}

header img {
    width: 300px;
    transition: 0.2s;
}

header a {
    text-decoration: none;
    color: #dcdcdc;
    transition: 0.2s;
    align-self: center;
}

header a:hover {
    color: #fff;
}

header nav {
    display: flex;
    transition: 0.2s;
}

header nav ul {
    list-style-type: none;
}

header nav ul li {
    display: inline-block;
}

header nav a {
    font-size: 18px;
    align-self: center;
    margin-left: 15px;
}

.nav-buttons {
    display: flex;
    align-items: center;
}

.nav-open, .nav-close {
    color: #dcdcdc;
    display: none;
    
}

.nav-buttons .fa-xmark, .nav-open .fa-bars {
    cursor: pointer;
    font-size: 30px;
    float: right;
}

.nav-buttons .fa-xmark {
    padding: 5px 10px;
}

.nav-open {
    align-self: center;
}

.header-search {
    display: none;
}

.slide {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000080;
    z-index: 8999;
    transition: 0.2s;
}

/* Header section end */

button, .button {
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    text-decoration: none;
    padding: 7px 14px;
    border-radius: 5px;
    background-color: #081a24;
    color: #fff;
    transition: 0.2s;
    cursor: pointer;
    border: none;
}

.button:hover {
    background-color: #113142;
}

.btn-highlighted {
    background-color: #da9708;
}

.btn-highlighted:hover {
    background-color: #eba307;
}

.content {
    margin: 120px auto;
    /* width: calc(100% - 30px); */
    width: 100%;
    max-width: 1300px;
    transition: 0.2s;
}

.homepage-content {
    margin: 0 auto;
    width: calc(100% - 30px);
    max-width: 1300px;
}






.container {
    display: flex;
    width: 100%;
}

.main-content {
    flex: 1;
    flex-wrap: wrap;
    width: 100%;
    gap: 10px;
    height: 100%;
}

.page-404 {
    align-content: center;
    text-align: center;
}

.page-404 h1 {
    font-size: 100px;
}

.box-small {
    display: flex;
    flex-direction: column;
    background-color: #f1f1f1;
    border-radius: 10px;
    margin-bottom: 10px;
    padding: 10px;
    width: 100%;
    height: 100%;
    transition: 0.2s !important;
}

a.box-small {
    text-decoration: none;
    color: inherit;
}

.box-small.clickable {
    cursor: pointer;
}

a.box-small:hover {
    background-color: #dedede;
}

.box-small.clickable:hover {
    background-color: #dedede;
}

.box-full {
    display: flex;
    flex-direction: column;
    background-color: #f1f1f1;
    border-radius: 10px;
    margin-bottom: 10px;
    padding: 10px;
    width: 100%;
    height: 100%;
    transition: 0.2s;
}

.transparent {
    background-color: transparent;
}

.sidebar {
    flex: 0 0 300px;
    margin-left: 10px;
}

.sidebar-items {
    border-radius: 10px;
    background-color: #f1f1f1;
    margin-bottom: 10px;
}

h1.main-title {
    margin-bottom: 10px;
    text-align: center;
    font-size: 32px;
}

.side-by-side {
    display: flex;
}

.side-by-side-yes-space {
    display: flex;
    justify-content: space-between;
}

.side-by-side.cont {
    gap: 10px;
}
.side-by-side.cont>* {
    display: flex;
    flex-direction: column;
    width: 50%;
}

.box-small .logo-content {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 10px;
}

.box-small h2 {
    margin: auto;
    margin-left: 0;
}

.box-small h2.title {
    color: #00499c;
}

/* Burada bazı şeyler sorulacak */
.box-small .event-img {
    width: 200px;
    /* height: fit-content; /* Firefox */
    margin-right: 20px;
    object-fit: cover;
    border-radius: 10px;
}

/* Apple uyumlu yapılacak kısım */
/* .box-small .event-img {
    width: 200px;
    height: auto;
    max-height: 100%; /* Use max-height to ensure responsiveness */
    /*
    margin-right: 20px;
    border-radius: 10px;
}
*/

.box-small .list-img {
    width: 400px;
    min-width: 400px;
    height: fit-content; /* Burasının nasıl yapılacağı sorulacak */
    max-height: 225px;
    margin-right: 20px;
    object-fit: cover;
    border-radius: 10px;
}

.meta {
    color: #585858;
    font-size: 15px;
    margin-bottom: 20px;
}

.event-status {
    font-weight: bold;
}

.cancelled {
    color: #b90d0d;
}
.pending {
    color: #e0a60c;
}
.delayed {
    color: #e0a60c;
}
.ended {
    color: #138819;
}

.img-text .main-img {
    width: 100%;
    height: 300px;
    margin: auto;
    object-fit: cover;
    filter: blur(5px);
    transition: 0.2s;
    
}

.img-text {
    position: relative;
    text-align: center;
    margin-bottom: 20px;
}

.img-text h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px;
    transition: 0.2s;
    color: #f5f5f5;
    text-shadow: 2px 2px 4px #000;
    font-size: 40px;
}

.inside-text {
    margin-bottom: 20px;
}

/* .inside-text img, .inside-text h1, .inside-text h2, .inside-text h3, .inside-text h4, .inside-text h5, .inside-text h6, .inside-text table {
    margin-top: 20px;
    margin-left: 20px;
} */

.inside-text p {
    margin-top: 0.5em;
    text-indent: 20px;
    line-height: 1.3em;
    text-align: justify;
}

.inside-text img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto; /* Center align the images if needed */
    margin-top: 15px;
}

.inside-text .image-style-side {
    float: right; /* or right depending on your layout needs */
    margin: 0 0 1em 1em; /* Adjust margin as needed */
    max-width: 50%; /* Limit the size of side images */
}

.inside-text p img {
    float: left; /* or right depending on your layout needs */
    margin: 0 1em 1em 1em; /* Adjust margin as needed */
    max-width: 50%; /* Limit the size of side images */
}

figure.image {
    margin-bottom: 1.3em;
}

figure.image.smaller img {
    width: 100%;
    max-width: 600px;
}

.inside-text figure.image figcaption {
    text-align: center;
    font-style: italic;
    font-size: 14px;
    padding: 0.5em 0;
    border: 1px solid #0000001c;
}

.inside-text figure.table {
    display: flex;
    overflow-y: auto;
    margin: 20px 0;
}

.inside-text table {
    margin: auto;
    min-width: 570px;
}

.inside-text thead {
    background-color: #bbe1ff;
    border-bottom: 2px solid #45afff;
}

.inside-text table, .inside-text thead, .inside-text tbody, .inside-text th, .inside-text td, .inside-text tr {
    border: 1px solid #0000001c;
    border-collapse: collapse;
    padding: 5px;
}

.inside-text ul, .inside-text ol {
    margin-top: 10px;
    list-style-position: outside;
    margin-left: 1.5em;
}

.inside-text li {
    margin-bottom: 1em;
    padding-left: 0.5em;
}

/* .event-details {
    font-size: 18px;
} */

/* Eski kod başlangıcı */

/* .member-list {
    display: flex;
    justify-content: space-between;
} */

/* .member-list p {
    text-indent: inherit;
    line-height: inherit;
} */

/* .member-list h1, .member-list h2, .member-list h3, .member-list h4, .member-list h5, .member-list h6 {
    margin-bottom: 5px;
} */

/* Bu koddan bazı bölümler aşağıda yapay zekâ ile oluşturulan bölüme eklendi. */
/* .member-info {
    text-align: center;
}

.member-info img {
    border-radius: 50%;
    width: 170px;
    height: 170px;
    object-fit: cover;
    
} */

/* Eski kod bitişi */

h1.homepage {
    margin-top: 20px;
}

.homepage-event {
    display: flex;
    flex-direction: column;
    width: fit-content;
    margin: auto;
}

.homepage-event .button {
    margin: auto;
}

.box-small.transparent.homepage:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
}

.slideshow {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide-img {
    min-width: 100%;
    position: relative;
    text-align: center;
}

.slide-img img {
    width: 100%;
    height: calc(100vh - 150px);
    max-height: 630px;
    min-height: 250px;
    object-fit: cover;
    vertical-align: middle;
}

.slide-img h2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 50%;
    color: white;
    background: linear-gradient(to top, rgb(0 0 0 / 70%) 0%, rgb(0 0 0 / 35%) 50%, rgb(0 0 0 / 0%) 100% 100%);
    margin: 0;
    /* padding: 0 10px; */
    padding: 0 100px 100px 0;
    /* padding-top: 0;
    padding-bottom: clamp(20px, 100px, 150px);
    padding-left: 0;
    padding-right: clamp(20px, 100px, 150px); */
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    text-align: right;
    font-size: 40px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 780px) {
    .slide-img h2 {
        padding: 0 20px 90px 35px;
    }    
}


.dots-container {
    text-align: center;
    position: absolute;
    bottom: 15px;
    width: 100%;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: #717171;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background-color: #bbb;
}

/* Yeni kod başlangıcı */

.grid-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Adjust the gap between items as needed */
    margin-top: 20px;
}

.grid-info {
    flex: 1 1 300px; /* Adjust the minimum width as needed */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    /* gap: 10px; /* Adjust the gap between the image and text */
    /* border: 1px solid #ccc; /* Optional: Add border to distinguish items */
    padding: 10px; /* Optional: Add padding inside the items */
    transition: 0.2s;
    border-radius: 10px;
}

.grid-info:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transform: scale(1.1) !important;
}

.grid-info img {
    border-radius: 50%;
    width: 170px; /* Adjust the size of the image */
    height: 170px;
    object-fit: cover; /* Ensure the image covers the designated area */
}

.grid-info h2, .grid-info p {
    margin: 0;
    text-indent: 0;
}

a.grid-info {
    text-decoration: none;
    color: inherit;
}

.img-mobile {
    display: none;
}

.img-mobile img {
    width: 100%;
}



@media screen and (max-width: 850px) {
    .desktop {
        display: none;
    }

    .img-mobile {
        display: block;
    }


}

/* Yeni kod bitişi */



button.scroll-to-top {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #eba206;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    cursor: pointer;
    /* transition: 0.2s; */
    z-index: 9994;
    animation: fadeIn 0.3s;
}




.sbs-list {
    display: table;
    table-layout: fixed;
    width: 100%;
    margin: 0;
    position: relative;
}

.sbs-list dt, .sbs-list dd {
    display: table-cell;
    vertical-align: top;
    margin: 0;
}

.sbs-box dd {
    vertical-align: middle;
}

.image-inline {
    float: left;
    margin: 0 1em 1em 0; /* Add some margin to the right and bottom for spacing */
}

.ck.ck-editor__editable .image-inline {
    max-width: 50%;
}

.sbs-list p.detail {
    margin-top: 4px;
    color: #696969;
    font-size: 14px;
}

.sbs-list dt {
    border-right: 1px solid transparent;
    border-color: #c7c7c7;
    text-align: right;
    width: 28%;
    padding: 20px 15px 5px 0;
}

.sbs-list dd {
    width: 72%;
    padding: 20px 15px 5px 20px;
}

.sbs-list dd .pp img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
}

.sbs-list p.detail {
    margin-top: 4px;
    color: #696969;
    font-size: 14px;
}

.sbs-box input[type=text], .sbs-box input[type=email], .sbs-box input[type=password], .sbs-box input[type=number], .sbs-box input[type="datetime-local"], .sbs-box input[type="search"] {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    width: 100%;
    padding: 8px 16px;
    border: 1px solid #aaa !important;
}

.buttons {
    float: right;
}



/* .share-btn-contaniner {
    display: flex;
} */

.share-buttons {
    display: flex;
}

.share-buttons:not(.no-float) {
    float: right;
}

.share-buttons span {
    margin: auto;
    color: #4d4d4d;
}

.share-buttons ul {
    list-style: none;
    margin-left: 10px;
}

.share-buttons ul li {
    display: inline-block;
}

.share-buttons ul li .share-btn {
    display: inline-block;
    height: 40px;
    width: 40px;
    color: #000;
    background-color: #00000011;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: 0.2s;
}

.share-buttons .share-btn:hover {
    background-color: #00000036;
}

.share-buttons .share-btn.facebook:hover {
    background-color: #1877f2;
    color: #fff;
}

.share-buttons ul li .share-btn.x:hover, .share-buttons ul li .share-btn.tiktok:hover, .share-buttons ul li .share-btn.github:hover {
    background-color: #000;
    color: #fff;
}

.share-buttons ul li .share-btn.whatsapp:hover {
    background-color: #25d366;
    color: #fff;
}

.share-buttons ul li .share-btn.telegram:hover {
    background-color: #24a1de;
    color: #fff;
}

.share-buttons ul li .share-btn.linkedin:hover {
    background-color: #0077b5;
    color: #fff;
}

.share-buttons ul li .share-btn.instagram:hover {
    background-color: #e1306c;
    color: #fff;
}

.share-buttons ul li .share-btn.youtube:hover {
    background-color: #fff;
    color: #f00;
}

.grid-info .share-buttons {
    margin-top: 7px;
}

.grid-info .share-buttons ul {
    margin: 0 auto;
}

.grid-info .share-buttons ul li {
    margin-bottom: 5px;
}

footer {
    background-color: #081a24;
    width: 100%;
    position: relative;
    bottom: 0;
    margin-top: auto;
}

footer .row {
    display: flex;
    justify-content: space-around;
    padding: 40px 100px;
    transition: 0.2s;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 21px;
    position: relative;
}

.footer-col h4::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #eba206;
    height: 3px;
    box-sizing: border-box;
    width: 65px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li, .footer-col a {
    color: #dcdcdc;
    margin-bottom: 3px;
}

.footer-col a {
    text-decoration: none;
    transition: 0.2s;
}

.footer-col a:hover {
    color: #fff;
}

.footer-social i {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: #ffffff36;
    margin-right: 5px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: 0.2s;
}

.footer-social i:hover {
    color: #000;
    background-color: #fff;
}

footer .copyright {
    font-size: 14px;
    padding: 20px 5px;
    color: #dcdcdc;
    text-align: center;
}

footer .copyright a {
    color: #dcdcdc;
    transition: 0.2s;
}

footer .copyright a:hover {
    color: #fff;
}






.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9996;
    overflow: auto;
}
  
.popup-content {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 10px;
    padding: 40px 20px;
    box-shadow: 5px 10px 18px #00000080;
    transition: 0.2s;
    /* width: 100%; */
    width: calc(100% - 20px);
    max-width: 800px;
    max-height: calc(100vh - 50px);
    overflow: auto;
}
  
.close {
    position: absolute;
    top: 20px;
    right: 25px;
    cursor: pointer;
    font-size: 20px;
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    z-index: 9995; /* Ensure it's below the pop-up */
}


#message-box {
    display: none;
    /* flex-direction: column; */
    position: fixed;
    align-self: center;
    /* align-items: center; */
    bottom: -100px;
    /* bottom: 40px; */
    background-color: #000;
    box-shadow: 0 0 10px #3d3d3d;
    color: #fff;
    padding: 10px 20px;
    min-width: 200px;
    max-width: calc(100% - 40px);
    border-radius: 40px;
    z-index: 9999;
    transition: bottom 0.2s;
}

#message-box > .message-box-container {
    margin: auto;
    display: flex;
}

#message-box .fa-solid, #message-box .fa-regular {
    margin: auto 5px auto auto;
}

#message-box .fa-circle-check {
    color: #138819;
}

#message-box .fa-circle-xmark {
    color: #b90d0d;
}

#message-box .fa-triangle-exclamation {
    color: #e0a60c;
}

#message-box .fa-circle-info {
    color: #1091db;
}

.success {
    color: #fff;
    width: 100%;
    background-color: #138819;
    margin-bottom: 20px;
    padding: 10px 20px;
    border-radius: 10px;
}

.warning {
    color: #fff;
    width: 100%;
    background-color: #ec8a0b;
    margin-bottom: 20px;
    padding: 10px 20px;
    border-radius: 10px;
}

.error {
    color: #fff;
    width: 100%;
    background-color: #b90d0d;
    margin-bottom: 20px;
    padding: 10px 20px;
    border-radius: 10px;
}

.success a {
    color: #abe1ff;
    transition: 0.2s;
}

.success a:hover {
    color: #d6f1ff;
}

.warning a, .error a {
    color: #ffe4e4;
    transition: 0.2s;
}

.warning a:hover, .error a:hover {
    color: #fff4f4;
}

@media screen and (max-width: 1345px) {
    .content h1#title, .content .meta, .content .slideshow-container, .content .share-buttons {
        margin: 0 10px;
    }
}

.mobile-1190-px {
    display: none;
}

@media screen and (max-width: 1230px) {
    header {
        height: 60px;
    }

    .mobile-1190-px {
        display: unset;
    }

    header img {
        width: 240px;
    }
    
    header nav {
        position: fixed;
        right: -100%;
        top: 0;
        display: block;
        width: 260px;
        height: 100%;
        background-color: #081a24;
        z-index: 9999;
        box-shadow: -2px -2px 8px #081a24;
        margin: 0;
    }

    header nav ul li {
        display: block;
    }

    .nav-buttons {
        display: block;
    }

    .nav-buttons a {
        display: block;
        width: 100%;
        margin: 0;
        padding: 8px 16px;
        border-radius: 8px;
    }

    .nav-buttons a.btn-highlighted {
        margin: 0 10px;
        width: 250px;
    }

    .nav-buttons a:hover {
        background-color: #15394d;
    }

    .nav-buttons a.btn-highlighted:hover {
        background-color: #eba307;
    }

    .nav-open, .nav-close {
        display: block;
    }

    .nav-close {
        text-align: right;
        padding: 10px 10px 50px 0;
        cursor: pointer;
    }

    .header-search {
        display: contents;
    }

    .redirectors {
        display: flex;
        justify-content: left;
    }
}

@media screen and (max-width: 1000px) {
    .side-by-side.cont {
        flex-direction: column;
        gap: 0;
    }

    .side-by-side.cont>* {
        width: 100%;
    }
}

@media screen and (min-width: 950px) {
    .footer-col {
        max-width: 30%;
    }
}

@media screen and (max-width: 949px) {
    footer .row {
        flex-direction: column;
        padding: 20px;
    }

    footer .col {
        max-width: 100%;
    }

    footer .footer-col ul {
        margin-left: 15px;
        margin-bottom: 15px;
    }

    footer .copyright {
        padding: 20px;
    }
}

@media screen and (max-width: 900px) {
    .blog-clickable .side-by-side {
        display: block;
    }

    .box-small .list-img {
        width: 100%;
        max-height: 250px;
        min-width: auto;
    }
}

@media screen and (max-width: 879px) {
    h1.main-title {
        font-size: 29px;
    }

    .main-cover-content .header h1 {
        font-size: 30px;
    }

    .main-cover-content .header {
        font-size: 15px;
    }

    .sbs-list {
        display: block;
        /* table-layout: fixed;
        width: 100%;
        margin: 0;
        position: relative; */
    }
    
    .sbs-list dt, .sbs-list dd {
        display: block;
        width: 100%;
        padding: 15px 0;
        text-align: left;
    }
    
    .sbs-list dt {
        border: none;
        margin-bottom: 0;
    }

    .sbs-list dd {
        margin-top: -20px;
    }

    .dot {
        width: 7px;
        height: 7px;
    }

    .slide-img h2 {
        font-size: 30px;
    }
}

@media screen and (max-width: 850px) {
    .content {
        margin-top: 100px;
    }
    
}

@media screen and (max-width: 770px) {
    .homepage-event .side-by-side, .event-list .side-by-side {
        display: block;
    }

    .homepage-event .event-img, .event-list .event-img {
        width: 100%;
    }
}

@media screen and (max-width: 700px) {

    .grid-info {
        flex: 1 1 150px;
    }

    .grid-info img {
        width: 130px;
        height: 130px;
    }
}


/* Cover at homepage BEGIN */

/* .main-cover {
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 0;
    background-image: url("../../images/admin/erciyes-universitesi-snowy-blurred.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: flex;
    background-position-y: center;
    object-fit: cover;
    position: relative;
    filter: contrast(150%);
    color: #f5f5f5;
}

.main-cover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 81, 128, 0.2); /* Semi-transparent blue overlay */
    /* z-index: 0;
}

.main-cover .main-cover-content {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    width: calc(100% - 20px);
    max-width: 550px;
    opacity: 0;
    /* transform: translateY(50px); */
    /* transition: opacity 1s ease, transform 1s ease;
}

.main-cover-content.visible {
    opacity: 1;
    /* transform: translateY(0); */
/* }

.main-cover-content>div {
    margin-bottom: 20px;
}

.main-cover-content .button {
    padding: 10px 20px;
    transition: background-color 0.3s;
}

.main-cover-content h1 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 10px;
}

.main-cover-content p {
    font-weight: lighter;
} */

.main-cover {
    display: flex;
    flex-direction: column;
    position: relative;
    text-align: center;
    width: 100%;
    height: calc(100vh + 150px);
}

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

.main-cover-content {
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    width: calc(100% - 20px);
    max-width: 550px;
    opacity: 0;
    transition: opacity 1s ease, transform 1s ease;

}

.main-cover-content>div {
    margin-bottom: 20px;
}

.main-cover-content .button {
    padding: 10px 20px;
    transition: background-color 0.3s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 10px;
}

.main-cover-content .btns br {
    display: none;
}

@media screen and (max-width: 420px) {
    .main-cover-content .btns br {
        display: unset;
    }
}

.main-cover-content h1 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 10px;
}

.main-cover-content.visible {
    opacity: 1;
    transform: translate(-50%, calc(-50% - 75px));
}







/* Cover at homepage END */



.pagination {
    display: flex;
    /* justify-content: center; */
    max-width: max-content;
    text-align: center;
    margin: auto;
    background-color: #081a24;
    color: #dcdcdc;
    /* padding: 10px 10px; */
    border-radius: 10px;
}

.pagination a {
    color: #dcdcdc;
    text-decoration: none;
    padding: 8px 10px;
    transition: 0.2s;
    border-radius: 10px;
}

.pagination a.active, .pagination a:hover {
    color: #fff;
    background-color: #0a5e8f;
}





.redirectors {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 150px;
    /* background-image: linear-gradient(to bottom, #00499c00, #00499c); */
    background-image: linear-gradient(to bottom, #003a7c00, #003a7c);
    overflow-x: auto;
    overflow-y: hidden;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.redirectors ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin: 0;
    padding: 0;
}

.redirectors ul li {
    display: inline-block;
    margin: 0 20px;
    padding: 0 10px;
}

.redirectors ul li a {
    display: flex;
    flex-direction: column;
    color: #ececec;
    text-decoration: none;
    align-items: center;
    font-size: 18px;
    font-weight: 450;
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.redirectors ul li a:hover {
    color: #fff;
}


.redirectors a img {
    /* width: 65px; */
    height: 65px;
    object-fit: cover;
    /* border-radius: 50%; */
    margin-bottom: 10px;
}

@media screen and (max-width: 850px) {
    .redirectors {
        display: none;
    }

    .main-cover {
        height: 100vh;
    }

    .main-cover-content {
        transform: translate(-50%, calc(-50% + 75px));
    }

    .main-cover-content.visible {
        transform: translate(-50%, -50%);
    }
}







.homepage-content section#blog {
    margin-top: 20px;
    margin-bottom: 20px;
}

.homepage-content section {
    margin: 50px auto;
    /* padding: 50px; */
    /* max-width: 800px; */
    /* border: 1px solid #ccc; */
    /* background: #f9f9f9; */
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.homepage-content section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Sonradan eklendi */
/* General animation for all direct children inside sections */
/* section > * {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
} */

/* Specific animations for certain types of content */
/* .homepage-content section p, 
.homepage-content section .grid-list, 
.homepage-content section video, 
.homepage-content section img, 
.homepage-content section .inside-text, 
.homepage-content section h1, 
.homepage-content section h2, 
.homepage-content section a {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity .5s ease, transform .5s ease;
} */
.homepage-content section>*,
.homepage-content section .box-small,
.homepage-content section h1, 
.homepage-content section h2,
.homepage-content section .grid-info,
.homepage-content section .inside-text p,
.homepage-content section video
{
    opacity: 0;
    transform: translateY(50px);
    transition: opacity .5s ease, transform .5s ease;
}

/* Make elements visible when the class is added */
/* .homepage-content section > *.visible, 
.homepage-content section p.visible, 
.homepage-content section .grid-list.visible, 
.homepage-content section video.visible, 
.homepage-content section img.visible, 
.homepage-content section .inside-text.visible, 
.homepage-content section h1.visible, 
.homepage-content section h2.visible, 
.homepage-content section a.visible {
    opacity: 1;
    transform: translateY(0);
} */
.homepage-content section>*.visible,
.homepage-content section .box-small.visible,
.homepage-content section h1.visible, 
.homepage-content section h2.visible,
.homepage-content section .grid-info.visible,
.homepage-content section .inside-text p.visible,
.homepage-content section video.visible
{
    opacity: 1;
    transform: translateY(0);
}

/* Animations for child elements */
/* Animate only direct children inside the sections */
/* section > * {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

section > *.visible {
    opacity: 1;
    transform: translateY(0);
} */

/* Sonradan eklendi. */ 

div#club-member-chk {
    text-align: center;
}

#club-member-chk i.fa-solid {
    font-size: 42px;
    margin-bottom: 10px;
}

#club-member-chk i.fa-solid.fa-circle-check {
    color: #138819;
}

#club-member-chk i.fa-solid.fa-circle-xmark {
    color: #b90d0d;
}

#club-member-chk p {
    font-size: 20px;

}











