@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --theme-color: #0274a6;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
}

body.active {
    overflow: hidden;
}

.header-wrapper-logo {
    display: flex;
    width: 200px;
    height: 100%;
    padding: 0.5rem;
}

.header-wrapper-logo>a {
    display: flex;
    width: 100%;
    padding: .3rem;
}

.header-wrapper-logo>a>img {
    width: 100%;
    object-fit: contain;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    height: 95px;
    margin-bottom: 0.5rem;
    position: relative;
}

.header-wrapper-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    height: 100%;
}

.header-wrapper-right>div {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    border-left: 1px solid rgba(0, 0, 0, .1);
    cursor: pointer;
    background-color: #fff;
    position: relative;
    z-index: 9;
}

.header-wrapper-left {
    padding-left: 1.5rem;
}

.header-wrapper-right>div>i {
    font-size: 25px;
}

.header-wrapper-menu-btn>i {
    font-size: 40px !important;
    color: #fff;
    transition: .3s ease-in-out;
}

.header-wrapper-menu-btn {
    background-color: var(--theme-color) !important;
    width: 120px !important;
}

.header-search {
    position: absolute !important;
    left: 0;
    width: calc(150px) !important;
    border: none !important;
    padding: 1rem;
    background-color: transparent !important;
    z-index: 8 !important;
    opacity: 0;
    visibility: hidden;
    height: calc(100%) !important;
    cursor: unset !important;
    transition: .3s ease-in-out;
}

.header-search.active {
    left: calc(-150px);
    opacity: 1;
    visibility: visible;
}

.header-search-input {
    display: flex;
    width: 100%;
}

.header-search-input>form {
    width: 100%;
    display: flex;
}

.header-search-input>form>input {
    width: 100%;
    height: 30px;
    padding: .5rem 1rem;
    border-radius: 25px;
    border: 1px solid rgba(0, 0, 0, .1);
    outline: 0 !important;
    font-size: 12px;
    color: #000;
}

.header-search-input>form>input::placeholder {
    font-size: 13px;
    font-weight: 500;
    color: #999;
}



.header-language.active {
    left: calc(-230px - 0rem);
    opacity: 1;
    visibility: visible;
    background: white !important
}

.header-language>ul {

    list-style: none;
    padding: 0;
    margin: 0;
}


.header-language>ul>li {
    display: inline-block;
    opacity: 0.5;
}

.header-language>ul>li.active {
    opacity: 1;
}

.header-language>ul>li>a {
    font-size: 17px;
    font-weight: 600;
    color: #000;
    text-decoration: none;

    padding: 0 1rem;
    transition: .2s ease-in-out;
}

.header-language>ul>li:first-child>a {
    border-right: 1px solid rgba(0, 0, 0, .1);
}

.header-language>ul>li>a:hover {
    color: #777;
}

.header-menu-wrapper {
    position: absolute;
    inset: 0;
    top: 100%;
    background-color: #f6f6f6;
    z-index: 9999;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease-in-out;
    bottom: unset;
}

.header-menu-wrapper.active {
    opacity: 1;
    visibility: visible;
}

.header-wrapper-menu-btn.active>i::before {
    content: "\F659";
    font-family: bootstrap-icons !important;
}

.header-menu-wrapper-top {
    display: flex;
    justify-content: space-between;
}

.header-menu-list>ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.header-menu-list-title>span {
    display: flex;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    padding-bottom: 0.5rem;
    color: #444;
}

.header-menu-list-title {
    margin-bottom: 1.5rem;
}

.header-menu-list-title>span::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 1px;
    background-color: #999;
}

.header-menu-list>ul>li>a {
    font-size: 13px;
    font-weight: 400;
    color: #333;
    text-decoration: none;
    display: flex;
    position: relative;
    transition: .2s ease-in-out;
}

.header-menu-wrapper-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 2rem;
}

.header-menu-wrapper-bottom>ul {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 3.5rem;
}

.header-menu-wrapper-bottom>ul>li>a {
    font-size: 16px;
    font-weight: 500;
    color: #444;
    text-decoration: none;
    display: flex;
    padding-bottom: .5rem;
    position: relative;
}

.header-menu-wrapper-bottom>ul>li>a::before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60%;
    height: 2px;
    background-color: #000;
}

.header-menu-wrapper-bottom>ul>li:nth-child(1)>a::before {
    background-color: #608FCA;
}

.header-menu-wrapper-bottom>ul>li:nth-child(2)>a::before {
    background-color: #75C7B8;
}

.header-menu-wrapper-bottom>ul>li:nth-child(3)>a::before {
    background-color: #EE8A2B;
}

.header-menu-social {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.header-menu-social>ul {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 1rem;
}

.header-menu-social>ul>li>a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: #444;
    border-radius: 50%;
    transition: .2s ease-in-out;
}

.header-menu-social>ul>li>a>i {
    color: #fff;
}

.header-menu-social>ul>li:nth-child(1)>a:hover {
    background-color: #000;
}

.header-menu-social>ul>li:nth-child(2)>a:hover {
    background-color: #c13584;

}

.header-menu-social>ul>li:nth-child(3)>a:hover {
    background-color: #3b5998;
}

.header-menu-social>ul>li:nth-child(4)>a:hover {
    background-color: #f00;
}

.header-menu-list>ul>li>a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
    width: 8px;
    height: 2px;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    transition: .2s ease-in-out;
}

.header-menu-list>ul>li>a:hover::before {
    left: 0;
    opacity: 1;
    visibility: visible;
}

.header-menu-list>ul>li>a:hover {
    padding-left: 15px;
}

.header-menu-list {
    width: 100%;
}

.swiper-slide-image {
    width: 100%;
}

.swiper-slide-image img {
    width: 100%;
}

.swiper-slide-image>img {
    width: 100%;
}

.homeSwiper .swiper-button-next,
.homeSwiper .swiper-button-prev {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: var(--theme-color);
}

.homeSwiper .swiper-button-next::after,
.homeSwiper .swiper-button-prev::after {
    font-size: 25px;
    color: #fff;
}

.homeSwiper .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--theme-color);
}

.home-date-top-container {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
}

.home-date-title>span {
    display: block;
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.home-date-title>p {
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    margin: 0;
}

.home-date-wrapper {
    position: relative;
    background-color: var(--theme-color);
    padding: 2rem 0;
    margin-top: 3rem;
    padding-bottom: 0;
}

.date-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 1rem 0;
}

.date-item-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, .5);
    cursor: unset;
    transition: .2s ease-in-out;
}

.date-item-number:hover {
    color: rgba(255, 255, 255, .7);
}

.date-item.active .date-item-number {
    background-color: #fff;
    color: var(--theme-color);
}

.date-item-text {
    color: #fff;
    font-size: 12px;
    font-weight: 300;
    opacity: 0;
    visibility: hidden;
    transition: .2s ease-in-out;
}


.date-item-text .pencere {
    padding: 0.5rem;
}

.date-item-text .pencere img {
    width: 20px
}

.date-item.active .date-item-text {
    opacity: 1;
    visibility: visible;
}


.etkinlikOnizleme {
    transition: 0.4s !important;
    opacity: 1;
}

.etkinlikOnizleme.pasif {
    opacity: 0;
}


.home-date-bottom {
    padding: 0 2.5rem;
    margin-top: 3em;
    z-index: 999;
    position: relative
}

.home-date-sub-contain {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    transition: .3s ease-in-out;
}

.home-date-sub-wrapper {
    max-width: 100%;
    width: 100%;
    background-color: #fff;
    display: flex;
    border-bottom: 2px dashed rgba(0, 0, 0, .1);
}

.home-date-sub-contain.active {
    opacity: 1;
    visibility: visible;
}

.home-date-sub-content {
    display: flex;
    align-items: flex-start;
    padding: 0.5rem 1rem;
    gap: 1.5rem;
}

.home-date-sub-left {
    display: flex;
    width: 25%;
}

.home-date-sub-image {
    display: flex;
    width: 100%;
}

.home-date-sub-image>img {
    width: 100%;
    height: 100px;
    object-fit: cover
}

.home-date-sub-right {
    width: 75%;
}

.home-date-sub-right {
    align-items: center;
}

.home-date-sub-right-text {
    width: 100%;
    display: flex;
    justify-content: space-between
}

.home-date-sub-right-btn {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.home-date-sub-right-btn>a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-color);
    width: max-content;
    padding: .5rem 1rem;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    border: 2px solid transparent;
    transition: .2s ease-in-out;
}

.home-date-sub-name>span {
    font-size: 18px;
    font-weight: 600;
}

.home-date-sub-name {
    margin-bottom: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.home-date-sub-info {
    /*
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    */

}

.home-date-sub-info>div>span {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.1;
}

.home-date-sub-info>div>i {
    font-size: 19px;
}

.home-date-sub-info>div {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.swiper-container .swiper-slide {
    transition: .5s ease-in-out;
    transform: scale(0.8);
}

.swiper-container .swiper-slide.swiper-slide-active {
    transform: scale(1);
}

.home-featured-slider {
    position: relative;
    overflow: hidden;
}

.featured-item,
.featured-item-image {
    display: flex;
    width: 100%;
}

.featured-item-image>img {
    width: 100%;
    height: 340px;
    object-fit: cover;
}

.page-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

.page-title>span {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 6px;
    display: flex;
    position: relative;
    text-align: center;
}

.page-title>span::before {
    content: "";
    position: absolute;
    top: 0;
    left: -15px;
    width: 35px;
    height: 35px;
    border-left: 2px solid var(--theme-color);
    border-top: 2px solid var(--theme-color);
}

.page-title>span::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: -15px;
    width: 35px;
    height: 35px;
    border-right: 2px solid var(--theme-color);
    border-bottom: 2px solid var(--theme-color);
}

.featured-item {
    position: relative;
}

.featured-item-name {
    position: absolute;
    inset: 0;
    margin: 1rem;
    background-color: #0274a6c9;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.5);
    opacity: 0;
    visibility: hidden;
    transition: .5s ease-in-out;
}

.featured-item-name>a {
    font-size: 20px;
    letter-spacing: 2px;
    font-weight: 400;
    color: #fff !important;
    text-decoration: none !important;
    text-align: center;
    letter-spacing: 3px;
}

.featured-item:hover .featured-item-name,
.home-featured-slider .swiper-slide-active .featured-item-name {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.home-featured-slider .swiper-button-next,
.home-featured-slider .swiper-button-prev {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: var(--theme-color);
}

.home-featured-slider .swiper-button-next::after,
.home-featured-slider .swiper-button-prev::after {
    font-size: 25px;
    color: #fff;
}

.home-featured-wrapper {
    margin: 4rem 0;
}

.footer-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1rem 2rem;
    background-color: var(--theme-color);
}

.footer-logo>a {
    display: flex;
    width: 100%;
}

.footer-logo>a>img {
    width: 100%;
}

.footer-social>ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-social>ul>li>a {
    font-size: 25px;
    color: #000;
    width: 30px;
    height: 30px;
    display: flex;
    background-color: #fff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.footer-social>ul>li>a>i {
    display: flex;
    font-size: 17px;
}

.footer-text>span {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

.footer-logo {
    display: flex;
    margin-bottom: 2rem;
    width: 200px;
}

.footer-form-title>span {
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 5px;
    color: var(--theme-color);
    border-bottom: 1px solid var(--theme-color);
}

.footer-form {
    padding: 1rem;
    background-color: #fff;
    width: 70%;
}

.footer-form-title {
    display: flex;
    margin-bottom: 1rem;
}

.footer-form-content>input,
.footer-form-content>textarea {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    width: 100%;
    padding-bottom: 0.5rem;
    outline: 0 !important;
    font-size: 13px;
}

.footer-form-content>input:focus,
.footer-form-content>textarea:focus {
    border-bottom: 1px solid var(--theme-color);
}

.footer-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-form-btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer-form-btn>button {
    display: flex;
    width: 150px;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background-color: var(--theme-color);
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    letter-spacing: 2px;
    outline: 0;
    border: 2px solid transparent;
    transition: .2s ease-in-out;
}

.img-container-grid {
    display: flex;
    flex-wrap: wrap;
    gap: .1rem;
}

.smallsquare {
    max-width: calc(20% - .1rem);
    height: auto;
    flex: 0 0 20%;
    padding-top: 20%;
    display: grid;
    position: relative;
}

.h_rectangle {
    max-width: calc(40% - .1rem);
    flex: 0 0 40%;
    padding-top: 20%;
    position: relative;
}

.bigsquare {
    max-width: calc(40% - .1rem);
    height: auto;
    flex: 0 0 40%;
    padding-top: 40%;
    display: grid;
    position: relative;
}

.bigsquare_blank {
    max-width: calc(40% - .1rem);
    height: auto;
    flex: 0 0 40%;
    display: flex;
    flex-wrap: wrap;
    gap: .1rem;
}

.inner_square {
    max-width: calc(50% - .1rem);
    flex: 0 0 50%;
    height: calc(50% - .1rem);
    position: relative;
}

.v_rectangle {
    max-width: calc(20% - .1rem);
    flex: 0 0 20%;
    padding-top: 40%;
    position: relative;
}

.img-grid-c {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    object-fit: cover;
    object-position: center;
    transition: transform 2s cubic-bezier(0.23, 1, 0.32, 1),
        -webkit-transform 2s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery-name {
    position: absolute;
    bottom: -100px;
    left: 15px;
    overflow: unset !important;
    transition: .5s ease-in-out;
}

.gallery-name>a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    color: #fff !important;
    letter-spacing: 2px;
    text-shadow: 1px 0 #000, -1px 0 #000, 0 1px #000,
        0 -1px #000, 1px 1px #000,
        -1px -1px #000, 1px -1px #000, -1px 1px #000;
    position: relative;
    cursor: pointer;
}

.gallery-name>a::before {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 25%;
    height: 4px;
    background-color: var(--theme-color);
}

.img-container-grid>div,
.img-container-grid>div>div {
    overflow: hidden;
}

.img-container-grid>div:hover>a>img,
.img-container-grid>div .inner_square:hover>a>img {
    transform: scale(1.2);
}

.img-container-grid>div:hover>.gallery-name,
.img-container-grid>div .inner_square:hover .gallery-name {
    bottom: 30px;
}

.home-date-sub-content:nth-child(2n + 1) {
    border-right: 2px dashed rgba(0, 0, 0, .1);
}

.footer-wrapper-left {
    width: 30%;
}

.footer-wrapper-right {
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.references-item {
    display: flex;
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    padding: 2rem 1rem;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
}

.references-item>img {
    height: 100px;
    object-fit: contain;
    width: 100%;
}

.referencesSwiper {
    padding: 2rem 0.5rem;
}

.home-referances-slider .swiper-button-next,
.home-referances-slider .swiper-button-prev {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: var(--theme-color);
}

.home-referances-slider .swiper-button-next::after,
.home-referances-slider .swiper-button-prev::after {
    font-size: 25px;
    color: #fff;
}

.home-referances-wrapper {
    margin: 3rem 0;
    margin-bottom: 0;
}

.home-referances-slider .swiper-slide {
    transition: .5s ease-in-out;
    transform: scale(0.8);
}

.home-referances-slider .swiper-slide.swiper-slide-active {
    transform: scale(1);
}

.header-top-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    height: 90px;
    border-bottom: 2px solid var(--theme-color);
}

.header-top-right-social>ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-top-right {
    display: flex;
    align-items: center;
}

.header-top-right-social {
    display: flex;
    margin-right: 1.5rem;
}

.header-top-right-social>ul>li>a>i {
    font-size: 25px;
    color: var(--theme-color);
}

header {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.header-top-left-image {
    display: flex;
    width: 230px;
}

.header-top-left-image>a {
    display: flex;
    width: 100%;
}

/*
.header-top-left-image > a > img {
    width: 100%;
}
*/


.header-top-right-image>a {
    display: flex;
    max-width: 155px;
}

.header-top-right-image>a>img {
    max-width: 100%;
}

.header-top-right-image {
    display: flex;
    align-items: center;
}

.home-date-sub-right-btn>a:hover {
    background-color: transparent;
    border: 2px solid var(--theme-color);
    color: var(--theme-color);
}

.footer-form-btn>button:hover {
    background-color: transparent;
    border: 2px solid var(--theme-color);
    color: var(--theme-color);
}

.header-top-right-image>a:first-child {
    border-right: 1px solid rgba(0, 0, 0, .2);
    margin-right: 1rem;
}

.header-wrapper-social>ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.3rem;
}

.header-wrapper-social>ul>li>a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #444;
    text-decoration: none;
}

.header-wrapper-social>ul>li>a>i {
    color: #fff;
    font-size: 13px;
    display: flex;
}

.header-wrapper-social {
    width: 160px !important;
}

.header-wrapper-mobil {
    display: none;
}

.home-modal-image,
.home-modal-image>a {
    display: flex;
    width: 100%;
}

.home-modal-image>a>img {
    width: 100%;
}

.modal-footer.home-modal-footer>button {
    background-color: var(--theme-color) !important;
    border: none !important;
    border-radius: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
}

#homeModal .modal-content {
    background-color: transparent !important;
    border: none !important;
    position: relative;
}

#homeModal .modal-header {
    border: none;
    padding-right: 0;
    justify-content: flex-end;
    padding: 0;
    position: absolute;
    z-index: 9;
    top: 15px;
    right: 15px;
}

#homeModal .modal-body {
    padding: 0;
}

#homeModal .modal-header>button {
    padding: 0;
    margin: 0;
    display: flex;
    width: 40px;
    height: 40px;
    background-color: #444;
    opacity: 1;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    outline: 0 !important;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

#homeModal .modal-header>button>span {
    color: #fff !important;
}

.header-wrapper-social.mobile-social {
    display: none;
}

.home-mobile-gallery {
    display: none;
}


.login-page-contain {
    display: flex;
    justify-content: center;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    border-radius: 5px;
    overflow: hidden;
    background-color: #fff;
    width: 60%;
}

.login-page-wrapper {
    display: flex;
    height: 100vh;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    position: relative;
}

.login-page-form .form-group>label {
    font-size: 14px;
    padding-left: 0.5rem;
    margin-bottom: .5rem;
    font-weight: 500;
    color: var(--theme-color);
    position: relative;
    display: flex;
    padding-left: 1rem;
}

.login-page-form .form-group .form-group-input>input {
    width: 100%;
    height: 50px;
    border-radius: 70px;
    border: 1px solid rgba(0, 0, 0, .1);
    padding: 1rem;
    outline: 0 !important;
    font-size: 13px;
    font-weight: 400;
}

.login-page-form .form-group .form-group-input>input:focus {
    border-color: var(--theme-color);
}

.login-page-form {
    display: flex;
    width: 100%;
}

.login-page-form form {
    width: 100%;
}

.login-page-form .form-group:not(:last-child) {
    margin-bottom: 1.5rem;
}

.login-form-btn>button {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .5rem;
    border: none;
    outline: 0;
    background-color: var(--theme-color);
    border-radius: 0;
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    transition: .2s ease-in-out;
}

.login-form-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-form-btn>button:hover {
    opacity: .7;
}

.login-pege-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.login-pege-title>span {
    font-size: 20px;
    font-weight: 500;
    color: var(--theme-color);
    width: 60%;
    text-align: center;
}

.login-page-left {
    width: 50%;
    padding: 1rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.login-page-right {
    width: 50%;
    background-color: #f0f0f0;
}

.login-page-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.login-page-image>img {
    width: 300px;
}

.login-page-form .form-group .form-group-input {
    position: relative;
}

.login-page-form .form-group .form-group-input>input {
    width: 100%;
    height: 50px;
    border-radius: 70px;
    border: 1px solid rgba(0, 0, 0, .1);
    padding: 1rem;
    outline: 0 !important;
    font-size: 13px;
    font-weight: 400;
}

.login-page-form .form-group .form-group-input>input:focus {
    border-color: var(--theme-color);
}


.show-password {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.show-password>i {
    font-size: 20px;
    color: #666;
}

.success-contain {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

div#success-image {
    width: 300px;
}

.success-wrapper {
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
}

.success-text>span {
    font-size: 25px;
    color: #00C985;
    font-weight: 600;
    text-align: center;
}

.success-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.success-text>a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #fff;
    padding: 1rem;
    color: #444;
    text-decoration: none;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    transition: .2s ease-in-out;
}

.success-text>a:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.success-text>p {
    width: 60%;
    text-align: center;
    font-size: 15px;
    color: #666;
    font-weight: 400;
}

.dt-layout-cell.dt-start .dt-length {
    position: relative;
}

.delete-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 250px;
    width: 100%;
}

.delete-btn>button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    background-color: var(--theme-color);
    border: none;
    outline: 0;
    padding: 0.3rem 1rem;
    font-size: 14px;
    color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: .2s ease-in-out;
}

.delete-btn>button:hover {
    opacity: .7;
}

.logout-btn {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
}

.logout-btn>button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    background-color: var(--theme-color);
    border: none;
    outline: 0;
    padding: 0.7rem 1rem;
    font-size: 14px;
    color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: .2s ease-in-out;
    width: 150px;
}

.logout-btn>button>i {
    font-size: 15px;
}


.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 1rem 0;
}

.dashboard-logo {
    display: flex;
    height: 80px;
}

.dashboard-logo>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#user-table th,
#user-table td {
    text-align: start;
}

#user-table td>a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #000;
}

#user-table th span,
#user-table td span {
    font-size: 14px;
}

input[type="checkbox"] {
    position: relative;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    background: none;
    background-color: #f0f0f0;
    cursor: pointer;
    line-height: 0;
    outline: 0;
    padding: 0 !important;
    vertical-align: text-top;
    height: 25px;
    width: 25px;
    -webkit-appearance: none;
    opacity: 0.5;
    color: transparent;
}

input[type="checkbox"]:hover {
    opacity: 1;
}

input[type="checkbox"]:checked {
    background-color: var(--theme-color);
    border: 2px solid var(--theme-color);
    opacity: 1;
}

input[type="checkbox"]:before {
    content: "";
    position: absolute;
    right: 50%;
    top: 50%;
    width: 6px;
    height: 12px;
    border: solid transparent;
    border-width: 0 2px 2px 0;
    margin: -1px -1px 0 -1px;
    transform: rotate(45deg) translate(-50%, -50%);
    z-index: 2;
}

input[type="checkbox"]:checked:before {
    border-color: #fff;
}

.dt-paging-button.current {
    background-color: var(--theme-color) !important;
    border-color: transparent !important;
}

.dashboard-wrapper form {
    padding: 0 2rem;
    padding-bottom: 0.5rem;
}

#user-table_wrapper {
    height: 100%;
}

.dt-length>label {
    padding-left: 0.5rem;
}

.dt-layout-row.dt-layout-table {
    height: calc(100% - 110px) !important;
    padding: 0;
    border: 1px solid rgba(0, 0, 0, .1);
}

.dt-layout-row {
    height: calc(55px - .5rem);
    padding: 0;
}

.dt-layout-cell {
    padding: 0 !important;
    height: 100%;
}


.inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.inputfile+label {
    max-width: 100%;
    font-size: 1.25rem;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    padding: 0.625rem 1.25rem;
}

.no-js .inputfile+label {
    display: none;
}

.inputfile:focus+label,
.inputfile.has-focus+label {
    outline: 1px dotted #000;
    outline: -webkit-focus-ring-color auto 5px;
}

.inputfile+label svg {
    width: 1em;
    height: 1em;
    vertical-align: middle;
    fill: currentColor;
    margin-top: -0.25em;
    margin-right: 0.25em;
}

.inputfile-1+label {
    color: #000;
    background-color: #fff;
}

.inputfile-1:focus+label,
.inputfile-1.has-focus+label,
.inputfile-1+label:hover {
    opacity: 0.8;
}

.form-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    z-index: 9999;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 90%;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease-in-out;
}

.form-modal.active {
    opacity: 1;
    visibility: visible;
}

.form-modal-remove {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    height: 40px;
}

.form-modal-remove>i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #000;
    cursor: pointer;
    font-size: 20px;
}

.form-modal-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: #f0f0f0;
    margin: 1rem 0;
    height: 60px;
}

.form-modal-info>i {
    font-size: 20px;
}

.form-modal-content {
    color: #555;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    height: calc(100% - 100px);
    overflow: auto;
    padding-bottom: 1rem;
}

.form-modal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

.form-modal-btn>a,
.form-modal-btn>button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-color) !important;
    width: 200px;
    padding: 0.6rem;
    border-radius: 70px;
    color: #fff;
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: 300;
    text-decoration: none;
    border: none;
    transition: .3s ease-in-out;
}

.form-modal-btn>a:hover,
.form-modal-btn>button:hover {
    transform: scale(1.1);
}

.form-modal-content::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background: #e6e6e6;
    border-radius: 5px;
}

.form-modal-content::-webkit-scrollbar-thumb {
    background: var(--theme-color);
    border-radius: 5px;
}

.form-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background-color: rgba(0, 0, 0, .7);
    opacity: 0;
    visibility: hidden;
    transition: .3s ease-in-out;
}

.form-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.form-modal-remove>span {
    color: #000;
    font-size: 20px;
    font-weight: 500;
}

.form-group-input-content input,
.form-group-input-content select {
    width: 100%;
    height: 40px;
    border-radius: 0 !important;
    border: 1px solid rgba(0, 0, 0, .1) !important;
    box-shadow: none !important;
    outline: none !important;
    padding: .5rem;
}

.form-content label {
    font-size: 13px;
    font-weight: 500;
    color: #777;
}

.form.title>span {
    font-size: 20px;
    font-weight: 300;
}

.form.title {
    margin-bottom: 1rem;
}

.page-form-bottom {
    display: flex;
    width: 100%;
    gap: 1rem;
}

.page-form-bottom>div {
    width: calc(50% - (1rem) / 2);
}

.page-form-top {
    margin-bottom: 2rem;
}

.page-form-top .form-group {
    width: calc(50% - (1rem) / 2);
}

.form-group-input-content textarea {
    width: 100%;
    border-radius: 0 !important;
    border: 1px solid rgba(0, 0, 0, .1) !important;
    box-shadow: none !important;
    outline: none !important;
    padding: .5rem;
}

.page-form {
    margin: 2rem 0;
}

span#kvkk-modal>a {
    color: #000;
    font-weight: bold;
    text-decoration: underline;
}

span#kvkk-modal>a {
    color: #000;
    font-weight: bold;
    text-decoration: underline;
}

.page-form-btn {
    display: flex;
    margin-top: 2rem;
}

.page-form-btn>button {
    display: flex;
    background-color: var(--theme-color);
    border: none;
    outline: none;
    padding: .5rem 1.5rem;
    color: #fff;
}

.form-group-input-content {
    overflow: hidden;
}

.inputfile {
    width: auto !important;
}

label.file-label {
    width: 100%;
    height: 40px;
    border: 1px solid rgba(0, 0, 0, .1);
}

table.dataTable>thead>tr>th,
table.dataTable>thead>tr>td {
    min-width: 250px !important;
}

.form-content label.required::before {
    content: "* ";
    color: #c16060;
}


.artists-wrapper {
    margin-top: 4rem;
}

.artists-contain {
    padding: 2rem 3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    row-gap: 3rem;
    padding-top: 0;
}

.artists-contain>ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    list-style: none;
}

.artists-contain>ul>h2 {
    display: flex;
    width: 100%;
    color: var(--theme-color);
    padding-bottom: .5rem;
    border-bottom: 1px solid var(--theme-color);
    margin-bottom: 2rem;
    margin-top: 2rem;
    font-weight: 400;
}

.artists-contain>ul>li {
    display: flex;
    width: 25%;
    padding: 0.3rem 0;
}

.artists-contain>ul>li>a {
    font-size: 16px;
    font-weight: 300;
    color: #000;
    text-decoration: none;
    transition: .2s ease-in-out;
}

.artists-contain>ul>li>a:hover {
    color: var(--theme-color);
}

.tab-page-nav>ul {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0;
    list-style: none;
    gap: 2rem;
}

.tab-page-nav>ul>li>a {
    font-size: 15px;
    font-weight: 400;
    color: #777 !important;
    cursor: pointer;
}

.tab-page-nav>ul>li.active>a,
.tab-page-nav>ul>li:hover>a {
    color: #000 !important;
}

.tab-page-nav>ul>li>a:hover {
    text-decoration: underline !important;
}

.tab-page-contain {
    padding: 2rem 3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.tab-page-div {
    background-color: #efefef;
    padding: 3rem 0;
}

.tab-page-wrapper {
    margin-top: 5rem;
}

.tab-page-wrapper .page-title {
    margin-bottom: 4rem;
}

.tab-page-content {
    display: flex;
    width: calc(25% - (2rem * 3) / 4);
}

.tab-page-content>a {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-decoration: none;
}

.tab-page-content-image {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.tab-page-content-image>img {
    display: flex;
    width: 100%;
    transition: transform 2s cubic-bezier(0.23, 1, 0.32, 1);
}

.tab-page-content:hover .tab-page-content-image>img {
    transform: scale(1.1);
}

.tab-page-content-name {
    display: flex;
    padding: 1rem;
    background-color: #fff;
    height: 90px;
    align-items: center;
    transition: .2s ease-in-out;
}

.tab-page-content-name>span {
    font-size: 16px;
    font-weight: 300;
    color: #000;
    transition: .2s ease-in-out;
}

.tab-page-content:hover .tab-page-content-name {
    background-color: var(--theme-color);
}

.tab-page-content:hover .tab-page-content-name>span {
    color: #fff;
}

.header-top-right-image>a>img {
    filter: grayscale(1);
    transition: .2s ease-in-out;
}

.header-top-right-image>a:hover>img {
    filter: grayscale(0);
}

.post-text-wrapper {
    padding: 2rem 4rem;
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    margin-top: 2rem;
}

.post-text-left {
    width: 25%;
}

.post-text-right {
    width: 75%;
}

.post-text-left>ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-text-image {
    width: 40%;
}

.post-text-image img {
    width: 100%;
}

.post-text-left>ul>li>a {
    font-size: 15px;
    font-weight: 300;
    color: #000;
    padding: 0.8rem;
    display: flex;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: .5rem;
    text-decoration: none;
    gap: .5rem;
    transition: .2s ease-in-out;
}

.post-text-left>ul>li.active>a,
.post-text-left>ul>li>a:hover {
    color: var(--theme-color);
}

.post-text-right .page-title {
    margin-top: 0;
}

.post-text-image {
    float: left;
    margin-right: 25px;
    margin-bottom: 25px;
}

.post-text-content {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.9;
}

.post-text-left>ul>li>a>i {
    color: gray;
}

.post-text-left>ul>li.active>a>i {
    color: var(--theme-color);
}



.post-text-left>ul.pagination {
    margin-top: 2rem !important;
    ;
    display: block;
    text-align: center;
}

.post-text-left>ul.pagination>li {
    display: inline-block
}

.artist-post-wrapper {
    display: flex;
    align-items: flex-start;
    padding: 4rem;
    gap: 2rem;
}

.artist-post-wrapper-left {
    width: 25%;
}

.artist-post-wrapper-left>img {
    width: 100%;
}

.artist-post-wrapper-right {
    width: 75%;
}

.artist-post-text-title>span {
    font-size: 25px;
    font-weight: 400;
}

.artist-post-text-title {
    display: flex;
    margin-bottom: 1rem;
}

.artist-post-text>p {
    color: #707070;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
}

.venues-wrapper .page-title>span,
.news-wrapper .page-title>span {
    font-size: 20px;
}

.venues-wrapper .page-title>span::before,
.venues-wrapper .page-title>span::after,
.news-wrapper .page-title>span::before,
.news-wrapper .page-title>span::after {
    width: 25px;
    height: 25px;
}

.venues-wrapper .page-title>span::before,
.news-wrapper .page-title>span::before {
    left: -10px;
}

.venues-wrapper .page-title>span::after,
.news-wrapper .page-title>span::after {
    right: -10px;
}

.venues-container-image,
.news-container-image {
    display: flex;
    width: 100%;
    margin-bottom: 3rem;
}

.venues-container-image>img,
.news-container-image>img {
    width: 100%;
}

.venues-container-content-title,
.news-container-content-title {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 2rem;
}

.venues-container-content-title>span,
.news-container-content-title>span {
    font-size: 25px;
    font-weight: 400;
}

.venues-container-content-text>p,
.news-container-content-text>p {
    color: #707070;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
}

.venues-container-iframe {
    display: flex;
    width: 100%;
    margin-bottom: 4rem;
}

.panel-container {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.panel-wrapper {
    padding: 4rem;
}

.panel-container-left {
    width: 40%;
}

.panel-container-right {
    width: 60%;
}

.panel-container-image {
    width: 100%;
    display: flex;
}

.panel-container-image>img {
    width: 100%;
}

.panel-container-title {
    display: flex;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    padding-bottom: .5rem;
}

.panel-container-title>span {
    font-size: 20px;
    font-weight: 400;
}

.panel-container-content>ul {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 2rem;
}

.panel-container-content>ul>li>i {
    color: var(--theme-color);
}

.panel-container-content>ul>li>span {
    font-size: 14px;
    font-weight: 300;
}

.panel-container-content>ul>li {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.panel-container-content {
    display: flex;
    flex-direction: column;
}

.panel-container-content>span {
    color: #707070;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.panel-container-content>a>i {
    font-size: 35px;
    color: var(--theme-color);
}

.panel-container-content>a {
    display: flex;
    text-decoration: none;
}


/* sss */
.sss-accordion-wrapper {
    padding: 2rem 3rem;
}

.sss-accordion-wrapper .accordion {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sss-accordion-wrapper .accordion .accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 0 !important;
}

.sss-accordion-wrapper .accordion .accordion-item button {
    outline: 0 !important;
    box-shadow: none !important;
    transition: .2s ease-in-out;
}

.sss-accordion-wrapper .accordion .accordion-item button[aria-expanded="true"] {
    background-color: var(--theme-color);
    border-radius: 0 !important;
    color: #fff !important;
}

/* sss */
/*******************************************/
/*******************************************/
/*******************************************/
/*******************************************/


.anasayfaHaber .kutu .gorsel img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.anasayfaHaber .kutu .ozet {
    font-size: 15px;
}

.anasayfaHaber .kutu .ozet a {
    color: var(--theme-color);
    text-decoration: none;
}

.anasayfaMekan .kutu .gorsel img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}


.anasayfaMekan .kutu .ozet a {
    color: var(--theme-color);
    text-decoration: none;
    text-align: center;
}

.yaziGaleri .kutu {
    display: inline-block;
    width: 23%;
    height: 300px;
    margin: 10px 1% 10px 0;
    border: 1px solid #ddd;
}

.yaziGaleri .kutu img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}


.dropdown-menu li a {
    padding: 1rem 1rem;
    border-bottom: 1px solid #ddd;
    color: #555 !important
}

.dropdown-menu li:nth-last-child(1) a {
    border: none;
}

.dropdown:hover>.dropdown-menu {
    display: block;
}

.dropdown>.dropdown-menu.kuratorler {
    top: 10px;
    left: 40%;
}

.dropdown>.dropdown-menu.kuratorler li a {
    padding: 0.5rem 1rem;
}

#anaMenu .navbar-nav li a {
    color: #333;
    white-space: nowrap; /* Menülerin satır atlamasını engelle */
  
}

.dropdown-menu {
    box-shadow: 3px 3px 3px #00000020;
}


.popup .modal-footer {
    display: none;
}

.popup .modal-body {
    padding: 0;
}

.popup .modal-body video {
    width: 100%;
    height: auto;
    max-width: 100%;
}

.pencere .modal-header {
    background-color: var(--theme-color) !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.pencere .btn-primary {
    background-color: var(--theme-color) !important
}

@media screen and (max-width:1200px) {
    .anaMenuKapsayan {
        position: fixed;
        z-index: 999;
    }

    #anaMenu {
        position: fixed;
        transition: 0.3s;
        left: -300px;
        top: 0;
        background: #fff;
        z-index: 999;
        width: 285px;
        display: block !important;
        box-shadow: 3px 3px 3px #00000020;
        border: 5px solid var(--theme-color);
        border-left: none;
        border-right: none;
        height: 100vh;
        overflow: auto;
        font-size: 1.2rem
    }

    #anaMenu.active {
        left: 0;
        top: 0;
    }

    #anaMenu .navbar-nav {
        display: block;
        padding: 1rem 0;
        width: 100%;
    }

    #anaMenu .navbar-nav>li {
        display: block !important;
        border-bottom: 1px solid #ddd;
        margin: 0 !important;

    }

    #anaMenu .navbar-nav>li>a {
        padding: 0.8rem 1rem;
    }

    #anaMenu li .dropdown-menu {
        /*display: block;*/
        position: relative;
        left: 0;
        top: 0;
        font-size: 1rem;
        padding-left: 1rem;
        border: none;
        box-shadow: none !important;
    }


    #anaMenu li .dropdown-menu li {
        border-bottom: none;
    }

    #anaMenu li .dropdown-menu li a {
        padding: 0.6rem 0.6rem;
    }



    .header-search.active {
        left: calc(-150px - 0rem);
        z-index: 99;
        width: 160px !important;
    }


    .header-top-wrapper {
        display: flex;
        justify-content: space-between;
        height: 60px;
        overflow: hidden
    }

    .header-top-wrapper img {
        width: auto !important;
        max-width: 100% !important;
        max-height: 50px;
    }



    .header-top-left-image {
        width: 100%;
        padding-right: 1rem;
    }

    .header-top-right-image {
        width: 100% !important;
    }

    .header-wrapper {
        height: 60px;
    }

    .header-wrapper-right>div,
    .header-wrapper-menu-btn {
        width: 50px !important;
    }

    .header-wrapper-right>.header-language {
        width: 85px !important
    }

    .header-wrapper-right>.header-language a {
        padding: 0 0.4rem;
    }

    .header-wrapper-logo {
        width: 110px;
    }

    .header-wrapper-logo img {
        width: 100%
    }


    button.navbar-toggler {
        margin-top: -20px;
    }


    /*yazi*/
    .post-text-wrapper {
        padding: 1rem;
        display: block;
        gap: 0rem;
        margin-top: 0rem;
        display: flex;
        /* Flexbox düzeni */
        flex-direction: column;
        /* Üst üste düzen */


    }

    .post-text-left {
        width: 100%;
        order: 2;
    }

    .post-text-right {
        width: 100%;
        margin-top: 3rem;
        order: 1
    }

    .yaziGaleri .kutu {
        display: block;
        width: 100%;
    }

    /*yazi*/


    /*sanatci*/

    .artist-post-wrapper {
        display: block !important;
        padding: 1rem;
        gap: 0rem;
    }

    .artist-post-wrapper-left {
        width: 100%;
        margin-bottom: 1rem;
        text-align: center;
    }

    .artist-post-wrapper-left>img {
        width: 100%;
        max-width: 300px;
    }

    .artist-post-wrapper-right {
        width: 100%;
    }


    .artists-contain>ul>li {
        width: 100%;

    }

    /*sanatci*/


    /* sss */
    .sss-accordion-wrapper {
        padding: 0.5rem;
    }

    /* sss */


}