:root {
    --container-width: 1350px;
    --container-out: calc(calc(100vw - var(--container-width)) / 2);
    --default-color: #ED1C24;
    --fancybox-bg: #fff;
}

.fancybox__container {
    --fancybox-color: #282828;
    --fancybox-hover-color: #282828;
    --fancybox-bg: rgb(255 255 255 / 80%);
}

* {
    font-family: 'Volte';
    font-style: normal;
    font-weight: normal;
    scroll-behavior: smooth;
    outline: 0 !important;
    outline: none;
    text-decoration: none;
    box-sizing: border-box;
}

img.lazy-img {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img:not(.lazy-img) {
    opacity: 1;
}

.slick-prev:before, .slick-next:before {
    display: none;
}

strong,b {
    font-weight: 600;
}

.flex-1 {
    flex: 1;
}

img {
    vertical-align: middle;
    max-width: 100%;
    object-fit: contain;
}

::after, ::before {
    box-sizing: border-box;
}

body {
    font-family: 'Volte';
    font-weight: 400;
    font-optical-sizing: auto;
    scroll-behavior: smooth;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    outline: 0 !important;
    outline: none;
    text-decoration: none;
    margin: 0;
}

@font-face {
    font-family: 'icon-ideal';
    src: url('./icon-font/font/icon-ideal.eot?55414916');
    src: url('./icon-font/font/icon-ideal.eot?55414916#iefix') format('embedded-opentype'), url('./icon-font/font/icon-ideal.woff?55414916') format('woff'), url('./icon-font/font/icon-ideal.ttf?55414916') format('truetype'), url('./icon-font/font/icon-ideal.svg?55414916#icon-ideal') format('svg');
    font-weight: normal;
    font-style: normal;
}

.demo-icon {
    font-family: "icon-ideal";
    font-style: normal;
    font-weight: normal;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    margin-left: .2em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    padding-bottom: 0;
}

/* width */
::-webkit-scrollbar {
    width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--default-color);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--default-color);
}

.c-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.cl-container {
    margin: 0 auto;
    margin-left: var(--container-out);
}

.gap-1 {
    gap: 1rem!important;
}

.gap-2 {
    gap: 2rem!important;
}

.gap-8 {
    gap: 8rem!important;
}

.pore {
    position: relative;
}

.poab {
    position: absolute;
}

h1, h2, h3, h4, h5, h6 ,p {
    margin-top: 0;
    margin-bottom: .5rem;
    line-height: 1.2;
}

.w-25 {
    width: calc(25% - 7px);
}

.w-50 {
    width: calc(50% - 7px);
}

.w-100 {
    width: 100%;
}

.d-block {
    display: block;
}

.text-center {
    text-align: center;
}

.h-100 {
    height: 100%;
}

.row-gap {
    row-gap: var(--bs-gutter-x);
}

.column-gap {
    column-gap: var(--bs-gutter-x);
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

li {
    list-style: none;
}

ul {
    margin: 0;
    padding-left: 0;
}

header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    padding: 0;
}

header.header {
    position: relative;
    top: 0;
}

header .menu {
    display: flex;
    align-items: center;
    justify-content: end;
    margin-bottom: 20px;
}

header .menu li {
    position: relative;
    margin: 0 2px;
    padding: 15px 15px 15px;
    font-weight: 500;
}

header .menu li {
    text-transform: uppercase;
}

header .menu> li:first-child {
    margin-left: 0
}

header .menu li.no-drop:last-child {
    margin-right: 0;
    background: var(--default-color);
    border-radius: 30px;
    padding: 15px 24px 15px 50px;
    margin-left: 15px;
    position:relative;
}

header .menu li.no-drop:not(.dropdown):last-child:after  {
    font-size: 18px;
    content:"";
    content: "\e812";
    font-family: "icon-ideal";
    position: absolute;
    top: 15px;
    left: 20px;
    width: 20px;
    height: 20px;
    color:#fff;
    
}

header .menu li .dropdown-menu {
    position: absolute;
    top: 50px;
    left: 0;
    padding: 16px 0px 16px 24px;
    background: #fff;
    display: none;
    z-index: 88
}

header .menu li .dropdown-menu li {
    margin: 0;
    padding: 9px 0px;
    width: 100%;
    padding-right: 24px;
}

header .menu li.dropdown:hover .dropdown-menu {
    display: block
}
header .menu li .dropdown-menu li .right-down {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    background: #fff;
    padding: 0 10px 5px;
}
header .menu li .dropdown-menu li:hover .right-down {
    display: block;
   
}
header .menu li a,header .menu li span {
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    display: flex;
    align-items: center;
    color: #fff;
    gap: 8px;
    cursor: pointer;
}

header .menu li .dropdown-menu a {
    color: #000;
    text-transform: initial;
}

header .menu i {
    font-size: 11px;
    font-weight: 400;
}

.slider {
    position: relative;
    overflow: hidden;
    background: #f8f8f8;
}

.slider p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 0;
    max-width: 42rem;
}

.slider picture:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background: rgba(0,0,0,1);
    background: -moz-linear-gradient(top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0,0,0,1)), color-stop(50%, rgba(0,0,0,0)), color-stop(100%, rgba(0,0,0,1)));
    background: -webkit-linear-gradient(top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,1) 100%);
    background: -o-linear-gradient(top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,1) 100%);
    background: -ms-linear-gradient(top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,1) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000', GradientType=0 );
    opacity: 0.86;
    z-index: 1;
}

.slider picture img,.slider picture video {
    height: 100vh;
    width: 100%;
    object-position: center;
    object-fit: cover;
    max-width: 100%;min-height: 950px;
}

.slider .item {
    position: relative
}

.slider .content {
    position: absolute;
    width: 100%;
    height: 100%;
    display: inline-flex;
    align-items: center;
    padding-top: 24vh;
    left: 0;
    bottom: 0;
    z-index: 16;
}

.slider .content-detail {
    padding-left: 0;
    padding-bottom: 0;
}

.slider .content-product-detail {
    padding-right: 8vw;
}

.slider .content h2 {
    font-size: 60px;
    line-height: 72px;
    font-weight: 300;
    margin-top: 66px;
    margin-bottom: 0px;
    color: #fff;
}

.slider .content b {
    font-weight: 600;
    display: block;
}

.slider .arrows {
    position: absolute;
    bottom: 64px;
    width: 100%;
    left: 0;
    padding-left: 0;
    padding-top: 0px;
    z-index: 5;
}

.slider .arrows-btn {
    gap: 15px;
    margin-bottom: 30px;
}

.slider .arrows-btn li {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    border-radius: 60px;
    opacity: .5;
    cursor: pointer;
}

.slider .arrows-btn i {
    font-size: 21px;
    color: #fff;
}

.slider .arrows-btn li:last-child {
    opacity: 1;
}

.scroll-indicator {
    position: absolute;
    left: 60px;
    bottom: -20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transform: translateY(-50%);
    z-index: 1000;
    cursor: pointer;
}

.scroll-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 14px;
    color: white;
    font-weight: 500;
}

.lines {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: -25px;
}

.line {
    width: 2px;
    background-color: white;
}

.line.long {
    height: 52px;
}

.line.short {
    height: 52px;
    margin-top: 52px;
}

.left-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: calc(100% - 250px);
}

.header-social-contact {
    padding: 15px 0;
    border-bottom: 1px solid rgb(162 162 162 / 27%);
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: end;
}

.header-social-contact .header-contact {
    display: flex;
    color: #fff;
    align-items: center;
    gap: 10px;
}

.header-social-contact .header-contact a {
    color: #fff
}

.social {
    display: flex;
    align-items: center;
    color: #fff;
    gap: 5px;
}

.social a i {
    font-size: 18px;
    color: #fff;
}

.social a i.icon-twitter {
    font-size: 16px;
    margin-top: 2px;
}

.search {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    border: 1px solid #fff;
    color: #fff;
    cursor: pointer;
}

header .lang {
    position: relative;
    padding: 8px 0;
}

header .lang a.block {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;
    z-index: 9;
    font-size: 16px;
    gap: 9px;
    font-weight: 600;
    text-transform: uppercase;
}

header .lang img {
    border-radius: 20px;
}

header .lang i {
    font-size: 11px;
}

header .drop-lang {
    transition: all .5s;
    position: absolute;
    top: 100%;
    right: 0;
    padding: 18px 0px 12px 5px;
    background: #fff;
    visibility: hidden;
    text-align: left;
    z-index: 8;
    width: calc(100% + 5px);
    border-radius: 5px;
}

header .lang .drop-lang li {
    margin-bottom: 12px;
    margin-left: 0;
}

header .lang:hover .drop-lang {
    background: #fff;
    visibility: visible;
}

header .drop-lang a {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 8px;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
}

.payment-referance-register {
    position: absolute;
    right: 25px;
    top: 17%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: end;
    gap: 23px;
    z-index: 7;
}

.banner .payment-referance-register {
    top: 30px;
}

.payment-referance-register .payment {
    border-radius: 7px;
    background: var(--default-color);
    color: #fff;
    display: flex;
    align-items: center;
    padding: 15px 7px 12px;
    flex-direction: column;
    gap: 9px;
    text-align: center;
    cursor: pointer;
}

.payment-referance-register i {
    color: #fff;
    font-size: 46px;
}

.payment-referance-register span {
    color: #fff;
    font-size: 16px;
    width: 5rem;
}

.payment-referance-register b {
    font-weight: 600;
}

.payment-referance-register .referance {
    border-radius: 7px;
    background: var(--default-color);
    color: #fff;
    display: flex;
    align-items: center;
    padding: 15px 7px 12px;
    flex-direction: column;
    gap: 13px;
    text-align: center;
    cursor: pointer;
}

.payment-referance-register .register {
    margin-top: 25px;
    background: #fff;
    border-radius: 7px;
    text-align: center;
    padding: 0 14px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner .payment-referance-register .register {
    background: #F8F8F8;
}

.payment-referance-register .register img {
    position: relative;
    top: -25px;
    width: 129px;
    margin-bottom: -23px;
}

.payment-referance-register .register h4 {
    color: #282828;
    font-weight: 600;
    font-size: 18px;
    line-height: 16px
}

.payment-referance-register .register p {
    max-width: 12rem;
    color: #282828;
    font-weight: 400;
    font-size: 14px;
}

.icon-btn {
    background: var(--default-color);
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    border: none;
    cursor: pointer;
}

.icon-btn-white {
    background: #fff;
    font-size: 16px;
    font-weight: 600;
    color: var(--default-color);
    padding: 12px 28px;
    border-radius: 50px;
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    border: none;
    cursor: pointer;
}

.icon-btn i {
    font-size: 16px;
}

.btn-black {
    background: #282828;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    padding: 13px 28px;
    border-radius: 50px;
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    border: none;
    cursor: pointer;
}
.btn-white {
    background: #fff;
    font-size: 16px;
    font-weight: 600;
    color: #282828;
    padding: 13px 28px;
    border-radius: 50px;
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    border: none;
    cursor: pointer;
}
header.header a, header.header li,header.header span,header.header i {
    color: #282828 !important;
}

header .menu li.no-drop:last-child a,header .menu li.no-drop:last-child a i {
    color: #fff !important;
}

.contact-buttons {
    position: fixed;
    right: 40px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.contact-buttons span {
    width: 60px;
    text-align: center;
    font-size: 10px;
}

.contact-buttons a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.contact-buttons .phone {
    background-color: #ED1C24;
}

.contact-buttons .phone i {
    color: #fff;
    font-size: 20px;
}

.contact-buttons .whatsapp {
    background-color: #67D449;
}

.contact-buttons .whatsapp i {
    color: #5B5A56;
    font-size: 24px;
}

.home-search {
    background-color: var(--default-color);
    color: white;
    padding: 132px 5vw 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.home-search-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
    padding-bottom: 45px;
}

.home-search-left {
    position: absolute;
    left: 60px;
    bottom: 0;
}

.home-search-left img {
    max-height: 470px;
    width: auto;
    max-width: 100%;
}

.home-search-right {
    flex: 1;
    padding-left: 0;
    margin: 0 auto;
    max-width: 890px;
}

.home-search-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.home-search-title span.ideal {
    font-weight: 700;
    display: block;
    font-size: 110px;
    line-height: .5;
    text-align: center;
    color: #D2131A;
}

.home-search-title span.unisec {
    text-align: center;
    display: block;
    position: relative;
    bottom: 20px;
    font-size: 40px;
    margin-bottom: -11px;
}

.search-box {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.search-box > div {min-width:200px;}.
.search-box select, .search-box button {
    padding: 12px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    flex: 1;
    width: 100%;
}

.search-box button {
    background-color: #1d1d1d;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 25%;
    min-height: 48px;
    flex: 1;
    border: none;
}

.subtext {
    margin-bottom: 20px;
    font-size: 18px;
    text-align: center;
    margin-top: 52px;
}

.custom-select {
    position: relative;
    height: 48px;
    padding: 0 0px;
    outline: none;
    border: 1px solid rgb(112 112 112 / 25%);
    color: #707070;
}

.custom-select select {
    display: none;
}

.select-selected {
    background-color: #00000000;
}

.select-selected:after {
    content: "\e800";
    font-family: "icon-ideal";
    position: absolute;
    top: 20px;
    right: 0;
    width: 20px;
    height: 20px;
    font-size: 10px;
    color: #000 !important;
    font-weight: 700;
}

.select-selected.select-arrow-active:after {
    content: "\e802";
}

.select-items div,.select-selected {
    color: #000 !important;
    padding: 0px 10px;
    border: none;
    border-color: transparent;
    cursor: pointer;
    user-select: none;
    height: 100%;
    display: flex;
    align-items: center;
    background: #fff;
}

.select-items div {
    height: 45px;
    border-bottom: 1px solid #707070;
    color: #1d1d1d !important;
}

.select-items {
    position: absolute;
    background-color: #000;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    max-height: 225px;
    overflow: auto;
}

.select-hide {
    display: none;
}

.select-items div:hover, .same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
    color: #fff !important;
}

.toast-message {
    font-family: var(--font2);
    font-size: 14px;
    color: #fff;
}

#toast-container>.toast {
    background: #000;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    background-position: left center;
    background-position-x: 14px;
    padding: 25px 34px 25px 50px;
    width: initial;
}

.outline-text {
    font-size: 110px;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(0, 0, 0, 0.05);
    text-align: center;
}

/*footer*/
.footer-top-bg {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.footer-top-bg::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    background-image: url("./images/footer-bg.webp");
    z-index: 1;
    width: 75%;
    background-size: contain;
    background-position: bottom right;
    background-repeat: no-repeat;
	min-width: 1380px;
}
.footer-top-bg::after {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      width: 100%;
      height:30%;
background: #ffffff;
background: linear-gradient(180deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 38%, rgba(255, 255, 255, 0) 100%);
      z-index: 6;
      }
.footer-top {
    display: flex;
    flex-wrap: wrap;
    padding: 57px 0 46px;
    color: #333;
    gap: 30px;
    justify-content: space-between;
    position: relative;
    z-index: 8;
}

.footer-col {
    flex: 1;
}

.footer-col:first-child {
    min-width: 400px;
    text-align: center;
    border-right: 1px solid #eee;
    padding-right: 40px;
}

.bulten-title {
    margin-top: 50px;
    margin-bottom: 7px;
    font-size: 18px;
    color: #000;
    font-weight: 400;
}

.footer-col:nth-child(2) {
    min-width: 430px;
    border-right: 1px solid #eee;
    padding-right: 40px;
}

.footer-col:nth-child(3) {
    min-width: calc(calc(100% - 830px) /2);
    border-right: 1px solid #eee;
    padding-right: 40px;
}

.footer-col:nth-child(4) {
    text-align: right;
}

footer .payment-referance-register {
    position: relative;
    right: 0;
    top: 0;
    flex-direction: row;
    justify-content: start;
    align-items: stretch;
    gap: 23px;
    margin-top: 35px;
}

.newsletter {
    display: flex;
    gap: 10px;
    position: relative;
}

.newsletter input {
    padding: 16px;
    border: 1px solid #F5F5F5;
    flex: 1;
    border-radius: 20px;
    background: #F5F5F5;
    font-size: 15px;
}

.newsletter button {
    background: var(--default-color);
    color: #fff;
    border: none;
    padding: 11px 22px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 400;
    position: absolute;
    right: 4px;
    top: 4px;
}

.footer-bottom {
    background: var(--default-color);
}

.footer-policy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0 30px;
    border-bottom: 2px solid rgb(0 0 0 / 10%);
}

.footer-copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    color: #fff;
    font-size: 14px;
}

footer .social {
    display: flex;
    align-items: center;
    color: #fff;
    gap: 5px;
    margin-top: 33px;
}

footer .social a i {
    font-size: 19px;
    color: #000000;
    font-weight: 500;
}

.support-box a {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    padding: 5px 0px 5px 1px;
}

.support-box i {
    display: flex;
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
    background: var(--default-color);
    border-radius: 60px;
    color: #fff;
    font-size: 27px;
}

.support-box .text {
    display: flex;
    flex-direction: column;
    padding-right: 36px;
}

.support-box span {
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

.support-box strong {
    font-size: 24px;
    color: var(--default-color);
    font-weight: 600;
    margin-bottom: 0;
}

.footer-policy .left-links {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
}

.footer-policy .left-links a {
    color: #fff;
    font-size: 15px;
}

.footer-col:nth-child(4) li {
    margin-bottom: 17px;
}

.footer-col:nth-child(4) li a {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
}

.footer-col h4 {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.footer-col:nth-child(3) a {
    color: #000;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 8px;
    display: block;
}

.footer-col:nth-child(2) li {
    display: flex;
    align-items: start;
    gap: 15px;
    margin-bottom: 20px;
    color: #000;
    font-size: 18px;
    line-height: 24px;
    max-width: 19rem;
}

.footer-col:nth-child(2) li i {
    font-size: 26px;
    color: var(--default-color);
}

.footer-col:nth-child(2) li a i {
    font-size: 18px;
}

.footer-col:nth-child(2) li a i.icon-email {
    font-size: 16px;
}

.footer-col:nth-child(2) li a {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #000;
}

.footer-logo {
    width: 161px;
    object-fit: cover;
}

/*footer end*/
.outlined-text {
    color: #fff;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px #F2F2F2;
    font-size: 110px;
    font-weight: 700;
    text-align: center;
    line-height: 113px;
}

.privileges {
    margin-top: 124px;
    padding-bottom: 30px;
}

.privileges-slider {
    margin-top: 50px;
    margin-bottom: 29px;
}

.privileges .slide {
    margin: 15px 30px 15px 0;
    width: 315px;
    background: #F8F8F8;
    border: 1px solid #EFEFEF;
    border-radius: 10px;
    padding: 11px;
    position: relative;
    top: 0;
    transition: all .5s;
}

.privileges .slide .item {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    top: 0;
    transition: all .5s;
}

.privileges .slick-prev {
    left: -50px;
    color: var(--default-color);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: start;
}

.privileges .slick-next {
    right: -50px;
    color: var(--default-color);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: end;
    z-index: 9;
}

.privileges .item span {
    font-size: 25px;
    text-transform: capitalize;
    width: 8rem;
}

.privileges .item span strong {
    font-weight: 600;
}

.privileges .slide:hover {
    top: 10px;
}

.privileges .slide a,.privileges .slide button {
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--default-color);
    color: #fff;
    font-size: 18px;
    border-radius: 18px;
    padding: 7px 25px;
    width: 50%;
    margin: 0 auto;border:none
}

.privileges .slide:hover a {
    opacity: 1;
}
.privileges .slide:hover button {
    opacity: 1;
}
.privileges .slide:hover .item {
    top: -32px;
}

.privileges h3 {
    text-align: center;
    font-size: 45px;
    font-weight: 600;
    color: #282828;
    margin-top: -60px;
}

.privileges h3 span {
    color: var(--default-color);
    font-weight: 600;
}

.privileges p {
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    color: #282828;
    max-width: 47rem;
    margin: 0 auto;
    line-height: 25px;
}

.ideal-radio {
    position: relative;
    min-height: 400px;
    background: #fff;
}

.ideal-radio .bg-img {
    object-fit: cover;min-height: 780px;
}

.ideal-radio .right-img {
    position: absolute;
    right: 0;
    bottom: calc(100% - 9.3vw );
    overflow: hidden;
}

.ideal-radio .right-img img {
    transform: translateX(4vw);
    width: 22vw;
}

.ideal-radio .radio-text {
    position: absolute;
    width: 100%;
    bottom: 0;
}

.ideal-radio .content {
    display: inline-flex;
    align-items: center;
    flex-direction: column;
    width: initial;
    margin-bottom: 52px;
}

.ideal-radio .content h4 {
    font-size: 57px;
    color: var(--default-color);
    line-height: 68px;
    font-weight: 600;
}

.ideal-radio .content span {
    color: #282828;
    font-size: 40px;
    font-weight: 500;
    line-height: 48px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ideal-radio .content span d {
    color: #fff;
    background: var(--default-color);
    padding: 5px 5px 0;
    font-weight: 500;
}

.ideal-radio .playbutton {
    margin-bottom: 95px;
    font-size: 45px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 7px;
}

.experience-box {
    padding: 183px 0 122px;
}

.exp-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
}


.exp-left h2 {
    font-size: 45px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #282828;
    line-height: 35px;
}

.exp-left h3 {
    font-size: 45px;
    font-weight: 600;
    color: var(--default-color);
    margin: 0;
    line-height: 35px;
}

.exp-right p {
    font-size: 18px;
    color: #282828;
    font-weight: 400;
    max-width: 47rem;
}

.stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 28px;
}

.stats div {
    text-align: center;
}

.stats strong {
    font-size: 45px;
    font-weight: 600;
    color: #282828;
    line-height: 38px;
}

.stats span {
    font-size: 18px;
    color: #282828;
    font-weight: 500;
}

.stats strong span {
    font-size: 45px;
    font-weight: 600;
    color: #282828;
    line-height: 38px;
}

.faq-section {
    padding: 60px 20px;
    background: #fff;
    font-family: 'Volte', sans-serif;
    margin-top: 100px;
    margin-bottom: 90px;
}

.faq-section h2 {
    font-size: 45px;
    font-weight: 600;
    color: #282828;
    text-align: center;
}

.faq-section h2 span {
    font-weight: 600;
    color: var(--default-color);
}

.faq-section p {
    font-size: 18px;
    color: #282828;
    margin-bottom: 34px;
    text-align: center;
}

.faq-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: stretch;
}

.faq-item {
    background: #F8F8F8;
    padding: 20px 0;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 400;
    position: relative;
    padding-left: 85px;
    min-height: 105px;
    display: flex;
    align-items: center;
    width: calc(100% / 3 - 20px);
    border: 1px solid #EFEFEF;
    cursor: pointer;
    padding-right: 10px;
}

.faq-item .number {
    position: absolute;
    left: 0px;
    top: 57%;
    transform: translateY(-50%);
    font-size: 86px;
    font-weight: 600;
    color: #fff;
    min-width: 80px;
    text-align: center;
    letter-spacing: -7px;
}

.faq-footer {
    justify-content: center;
    margin-top: 45px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.all-faq {
    font-size: 20px;
    color: #282828;
    font-weight: 600;
}

.faq-btn {
    display: inline-block;
    background: var(--default-color);
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    margin-top: 10px;
    text-decoration: none;
    font-weight: 600;
}

.faq-img {
    position: absolute;
    right: -5vw;
    bottom: calc(100% - 7vw);
    max-width: 25vw;
}

.faq-modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
}

.faq-modal-content {
    background: #fff;
    margin: 0px auto 15vh;
    padding: 30px;
    width: 890px;
    max-width: calc(100% - 20px);
    border-radius: 8px;
    position: relative;
}

.faq-close {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 24px;
    cursor: pointer;
}

.faq-modal-body {
    display: flex;
    align-items: start;
    gap: 15px;
}

.faq-modal-body #faq-index {
    font-size: 86px;
    color: var(--default-color);
    font-weight: 600;
    line-height: 73px;
}

.faq-modal-body .right {
    padding-right: 40px;
    padding-top: 15px;
}

.faq-modal-body .right ul {
    margin-left: 20px;
}

.faq-modal-body .right ul li {
    list-style: disc;
    font-size: 18px;
    color: #282828;
    margin-bottom: 10px;
}

#faq-title {
    font-size: 22px;
    font-weight: 600;
    color: #282828;
    margin-bottom: 30px;
}

.faq-modal-body .right p,.faq-modal-body .right span {
    font-size: 18px !important;
    display:block;
    color: #282828 !important;
    margin-bottom:25px !important;
}
.faq-modal-body .right br{height:45px !important;display:block;}
/*bigbaff*/
.bigbaff {
    background: #F0F0F0;
    padding-top: 80px;
    overflow: hidden;
    padding-bottom: 300px;
}

.bigbaff-flex {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    position: relative;
    z-index: 8;
}

.bigbaff-flex h2 {
    display: flex;
    font-size: 45px;
    font-weight: 600;
    color: #282828;
    flex-direction: column;
    max-width: 23rem;
    line-height: 1.1;
    margin-top: 20px;
}

.bigbaff-flex h2 span {
    font-weight: 600;
    color: var(--default-color);
}

.bigbaff-flex p {
    font-size: 18px;
    color: #282828;
    max-width: 24rem;
    margin-bottom: 23px;
}

.bigbaff-flex .bigbaff-logo {
    display: flex;
    align-items: center;
}

.bigbaff-flex .bigbaff-logo img {
    width: 15vw;
}

.bigbaff-flex .center img {
    width: 28vw;
}

.bigbaff .bulut {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 5;
}

.icon-yuzde img {
    position: absolute;
    z-index: 2;
}

.icon-yuzde img.yuzde1 {
    left: -44px;
    top: 13%;
    width: 160px;
}

.icon-yuzde img.yuzde2 {
    left: -1%;
    top: 41%;
    width: 365px;
}

.icon-yuzde img.yuzde3 {
    left: 73%;
    top: 74%;
    width: 141px;
}

.icon-yuzde img.yuzde4 {
    left: 35%;
    top: 60%;
}

.icon-yuzde img.yuzde5 {
    left: 86%;
    top: 40%;
    transform: rotate(-37deg);
    opacity: .6;
}

.icon-yuzde img.yuzde6 {
    left: 62%;
    top: 39%;
    width: 47px;
}

/*bigbaff*/
.grid-container {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 19px;
    margin: 0 auto;
}

.grid-container img {
    width: 100%;
    object-fit: cover;
    transition: all .5s;
    border-radius: 10px 10px 0 0;
    transform: scale(1);
    height: calc(100% - 72px);
}

.grid-container .grid-card {
    border-radius: 10px;
    overflow: hidden;
    background: #F0F0F0;
}

.grid-container .grid-card:nth-child(5n+1) {
    grid-column: 1 / span 4;
    grid-row: 1 / span 2;
}

.grid-container .grid-card:nth-child(5n+2) {
    grid-column: 5 /span 2;
    grid-row: 1;
}

.grid-container .grid-card:nth-child(5n+3) {
    grid-column: 7 /span 2;
    grid-row: 1;
}

.grid-container .grid-card:nth-child(5n+4) {
    grid-column: 5 / span 2;
    grid-row: 2;
}

.grid-container .grid-card:nth-child(5n+5) {
    grid-column: 7 /span 2;
    grid-row: 2;
}

.activity-info {
    height: 72px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 18px;
}

.activity-info .date {
    font-size: 16px;
    position: absolute;
    bottom: 100%;
    background: var(--default-color);
    color: #fff;
    left: 0;
    border-radius: 0 5px 0 0;
    padding: 4px 8px;
}

.activity-info h3 {
    font-size: 19px;
    font-weight: 600;
    color: #282828;
    margin-bottom: 0;
    line-height: 25px;
}

.activities-section {
    margin: 200px 0;
}

.activities-section h2 {
    font-size: 45px;
    font-weight: 600;
    color: var(--default-color);
    text-align: center;
}

.activities-section h2 strong {
    font-weight: 600;  
    color: #282828;
}

.activities-section p {
    font-size: 18px;
    color: #282828;
    margin-bottom: 34px;
    text-align: center;
}

.activity-btn-wrapper {
    justify-content: center;
    margin-top: 45px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.activity-btn {
    display: inline-block;
    background: var(--default-color);
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    margin-top: 10px;
    text-decoration: none;
    font-weight: 600;
}

.magazine {
    padding-bottom: 0;
}

.banner {
    margin-top: 10px;
    position: relative;
}
.banner > img {
  min-height: 320px;
  object-fit:cover;
}

.breadcrumb {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
}

.breadcrumb h1 {
    color: #fff;
    font-size: 34px;
    font-weight: 600;
    line-height: 34px;
    text-transform: capitalize;
}

.breadcrumb ul {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 4px;
    margin-bottom: 7px;
    width: 100%;
    overflow: auto;
    white-space: nowrap;
}
.breadcrumb ul::-webkit-scrollbar {
    width: 0px;height:0;
}
.breadcrumb ul li {
    position: relative;
    padding-right: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}

.breadcrumb ul li a {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}

.magazine h2 {
    font-size: 45px;
    font-weight: 600;
    color: var(--default-color);
    text-align: center;
}

.magazine h2 strong {
    font-weight: 600;
    color: #282828;
}

.magazine p {
    font-size: 18px;
    color: #282828;
    margin-bottom: 34px;
    text-align: center;
}

.magazine .right-img {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 24vw;
}

.dergi {
    display: flex;
    align-items: start;
    gap: 60px;
    flex-wrap: wrap;
}

.dergi a {
    display: flex;
    align-items: center;
    gap: 1px;
    flex-direction: column;
    font-size: 20px;
    color: #282828;
    font-weight: 500;
}

.dergi a span {
    display: flex;
    align-items: center;
    gap: 1px;
    flex-direction: column;
    font-size: 20px;
    color: #282828;
    font-weight: 500;
}

.dergi a:nth-child(n+2) {
    margin-top: 50px
}

.dergi a:nth-child(n+2) img {
    width: 145px;
}

.dergi a:nth-child(1) img {
    width: 450px;
}

.timeline {
    position: relative;
    padding: 20px;
}

.timeline-line {
    position: absolute;
    top: 50px;
    bottom: 0;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    z-index: 1;
    height: calc(100% - 160px);
    background: #FFFFFF;
    background: linear-gradient(90deg,rgba(255, 255, 255, 0) 0%, rgba(237, 28, 36, 1) 10%, rgba(237, 28, 36, 1) 90%, rgba(255, 255, 255, 1) 100%);
    border-radius: 2px;
    opacity: .9;
}

.timeline-item {
    position: relative;
    box-sizing: border-box;
    padding: 0 45px;
    margin-bottom: 60px;
}

.timeline-content {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
}

.timeline-item:nth-child(odd) .timeline-content {
    flex-direction: row-reverse;
}

.timeline-content .left {
    flex: 1;
    min-height: 325px;
}

.timeline-content .right {
    flex: 1;
}

.timeline-content .right .text {
    padding-left: 90px;
}

.timeline-item:nth-child(odd) .timeline-content .text {
    text-align: right;
    padding-left: 0;
    padding-right: 90px;
}

.timeline-content .year {
    display: inline-block;
    margin-bottom: 5px;
    color: #fff;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px var(--default-color);
    font-size: 45px;
    font-weight: 700;
    line-height: 1.1;
    position: relative;
}

.timeline-content .year:after {
    content: "";
    right: -15px;
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--default-color);
    border-radius: 20px;
    transform: translate(10px , 50%);
}

.timeline-item:nth-child(even) .timeline-content .year:after {
    content: "";
    left: -40px;
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--default-color);
    border-radius: 20px;
    transform: translate(10px , 60%);
}

.timeline-content .year:before {
    content: "";
    top: 40%;
    left: calc(100% + 34px);
    position: absolute;
    width: 49px;
    height: 2px;
    background: #DEDEDE;
    border-radius: 20px;
    bottom: 0;
}

.timeline-item:nth-child(even) .timeline-content .year:before {
    content: "";
    top: 45%;
    left: initial;
    right: calc(100% + 34px);
    position: absolute;
    width: 49px;
    height: 2px;
    background: #DEDEDE;
    border-radius: 20px;
    bottom: 0;
}

.timeline-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #282828;
}

.timeline-content p {
    font-size: 16px;
    color: #282828;
    line-height: 25px;
    min-height: 80px;
}

.page {
    margin-top: 78px;
    margin-bottom: 65px;
}

.page .section-title {
    margin-bottom: 75px;
}

.page .section-title h2 {
    font-size: 45px;
    font-weight: 600;
    color: #282828;
    text-align: center;
}

.page .section-title h2 span,.page .section-title h2 strong {
    font-weight: 600;
    color: var(--default-color);
}

.page .section-title p {
    font-size: 18px;
    color: #282828;
    margin-bottom: 34px;
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 35px;
}

.quality-item-top {
    display: flex;
    align-items: stretch;
    gap: 30px;
}

.quality-item-top .quality-content {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quality-content h3:not(.quality-content-title) {
    font-size: 30px;
    font-weight: 600;
    color: var(--default-color);
    max-width: 18rem;
    text-transform: uppercase;
}

.quality-content p {
    font-size: 16px;
    font-weight: 400;
    color: #282828;
    line-height: 1.4
}

.quality-content .quality-content-title h3 {
    position: absolute;
    top: 10vh;
    text-align: center;
    left: 0;
    right: 0;
    font-size: 45px;
    font-weight: 600;
    color: #282828;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: initial;
}

.quality-content-title  h3 strong {
    display: block;
    font-size: 45px;
    font-weight: 600;
    color: var(--default-color);
}

.quality-content-text {
    background: #F7F8F9;
    border-radius: 10px;
    padding: 0 7vw 0 65px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}
.quality-content-text:not(.h-100) {
 
    height: 55%;
  
}

.quality-item-bottom {
    margin-top: 30px;
}

.quality-item-bottom .quality-content {
    display: flex;
    align-items: stretch;
    gap: 30px;
    margin-bottom: 30px;
}

.quality-item-bottom .quality-content .quality-content-text {
    flex: 1;
}

.quality-item-bottom .quality-content img {
    flex: 1;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 10px;
    max-width: 50%;
}

.quality-item-bottom .quality-content-text {
    height: initial;
}

.quality-item-bottom .quality-content:nth-child(even) {
    flex-direction: row-reverse;
}

.personnel h3 {
    font-size: 45px;
    font-weight: 600;
    color: var(--default-color);
}

.personnel-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin: 30px auto;
}

.person-card {
    width: calc(100% / 3 - 20px);
    background: #F0F0F0;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
}
.person-card img{height:300px; object-fit:cover;width:100%;object-position:center;}
.person-card h4 {
    font-size: 22px;
    font-weight: 600;
    color: #282828;
    margin-top: 15px;
    margin-bottom: 1px;
}

.person-card h5 {
    font-size: 16px;
    font-weight: 400;
    color: #282828;
    margin-bottom: 15px;
}

.faq-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--default-color);
    margin-top: 60px;
    padding: 0 13px 0 75px;
    border-radius: 10px;
}

.faq-bottom img {
    max-width: 236px;
    position: relative;
    top: -32px;
    margin-bottom: -32px;
}

.faq-bottom .text1 {
    color: #fff;
    font-weight: 600;
    font-size: 30px;
    max-width: 25rem
}

.faq-bottom .center {
    color: #fff;
    font-weight: 400;
    font-size: 19px;
    max-width: 26rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 15px;
}

.kit-grid {
    display: flex;
    align-items: stretch;
    gap: 30px;
}

.kit-grid .logo {
    flex: 1;
    background: #F8F8F8;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.kit-grid .logo img {
    margin-bottom: 43px;
}

.kit-grid .logo .download-link {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: center;
}

.kit-grid .logo .download-link a {
    color: var(--default-color);
    font-size: 18px;
    font-weight: 500;
    border-bottom: 1px solid;
    text-transform: uppercase;
}

.kit-grid .katalog {
    flex: 2;
    background: #F8F8F8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 35px;
}

.kit-grid .katalog img {
    position: relative;
    top: 20px;
}

.kit-grid .katalog .katalog-text h3 {
    font-size: 18px;
    font-weight: 600;
    max-width: 12rem;
    margin-bottom: 15px;
}

.kit-grid .katalog .katalog-text a {
    color: var(--default-color);
    font-size: 18px;
    font-weight: 500;
    border-bottom: 1px solid;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-grid {
    opacity: 0;
    animation: fadeSlideIn 0.5s ease forwards;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-auto-rows: 200px;
    gap: 16px;
    margin: auto;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 327px;
    aspect-ratio: 2/1;
}

.gallery-item:nth-child(14n + 2) {
    grid-column: span 2;
}

.gallery-item:nth-child(14n + 4) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item:nth-child(14n + 5) {
    grid-row: span 2;
}

.gallery-item:nth-child(14n + 10) {
    grid-column: span 2;
}

.gallery-item:nth-child(14n + 11) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item:nth-child(14n + 12) {
    grid-row: span 2;
}

.allgallery {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.magazinelink {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.oldmagazine {
    display: flex;
    align-items: center;
    background: #F8F8F8;
    margin-bottom: 60px;
    border-radius: 10px;
}

.oldmagazine img {
    flex: 1;
    width: 60%;
    position: relative;
    top: -10vh;
    margin-bottom: -11vh;
}

.oldmagazine .text {
    width: 40%;
}

.magazinelink a {
    color: var(--default-color);
    font-size: 18px;
    font-weight: 500;
    border-bottom: 1px solid;
}

.oldmagazine span {
    color: var(--default-color);
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 7px;
    display: inline-block;
}

.oldmagazine h3 {
    color: #282828;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 19px;
}

.page-dergi-grid {
    margin-top: 60px;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.page-dergi-grid a {
    overflow: hidden;
    width: calc(100% / 4 - 22.5px);
    display: flex;
    align-items: center;
    flex-direction: column;
    font-size: 20px;
    color: #282828;
    font-weight: 500;
    border-radius: 10px;
}

.page-dergi-grid img {
    width: 100%;
}

.page-dergi-grid a span {
    display: flex;
    align-items: center;
    gap: 1px;
    flex-direction: column;
    font-size: 20px;
    color: #282828;
    font-weight: 500;
}

.visitor-grid {
    display: flex;
    align-items: stretch;
    gap: 30px;
    flex-wrap: wrap;
}

.visitor-grid .visitor-content {
    width: calc(100% / 3 - 20px);
    min-width: 430px;
    background: #F8F8F8;
    border-radius: 10px;
    border: 1px solid #EFEFEF;
    padding: 55px 20px 30px 40px;
}

.visitor-grid .visitor-content p {
    font-size: 18px;
    font-weight: 400;
    color: #282828;
}

.visitor-grid .quote-icon {
    font-size: 56px;
    color: var(--default-color);
    margin-bottom: 0;
    line-height: .6;
}

.visitor-author {
    font-weight: 600;
    font-size: 19px;
    color: #282828;
    margin-bottom: 10px;
    display: block;
    margin-top: 24px;
    text-transform: capitalize;
}

.visitor-date {
    font-size: 14px;
    color: #777777;
}

.visitor-form {
    margin-top: 60px;
}

.visitor .form {
    max-width: 890px;
    margin: 0 auto;
}

.form form {
    display: flex;
    flex-wrap: wrap;
    row-gap: 25px;
    align-items: center;
    justify-content: center;
    column-gap: 30px;
}

.form .form-input {
    flex: 1;
    min-width: calc(50% - 15px);
    position: relative;
}
.form .form-input label{
   position:absolute;bottom:calc(100% - 10px);background:#fff;left:10px;padding:0 8px;font-size:14px;color:#282828;font-weight:500;
}

.form input {
    width: 100%;
    color: #282828;
    border: 1px solid #D9D9D9;
    padding: 16px 14px;
    font-size: 18px;
}

.form .custom-select {
    flex: 1; position: relative;
    min-width: calc(50% - 15px);
}
.form .custom-select label {
    position: absolute;
    bottom: calc(100% - 10px);
    background: #fff;
    left: 10px;
    padding: 0 8px;
    font-size: 14px;
    color: #282828;
    font-weight: 500;
}
.form select {
    width: 100%;
    min-width: calc(50% - 15px);
    font-size: 18px;
}

.form .form-text {
    width: 100%;
    position: relative;
}
.form .form-text label {
    position: absolute;
    bottom: calc(100% - 10px);
    background: #fff;
    left: 10px;
    padding: 0 8px;
    font-size: 14px;
    color: #282828;
    font-weight: 500;
}
.form .form-policy-group label {
    padding-left: 35px;
    opacity: .8;
    height: 100%;
    z-index: 9;
}

.form .form-policy-group {
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    justify-content: flex-start;
    padding-left: 0;
    min-height: 27px;
}

.form .form-policy-group input {
    width: 1px;
    height: 1px;
    opacity: 0;
    position: absolute;
}

.form .form-policy-group:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    border: 1px solid var(--default-color);
}

.form .form-policy-group:after {
    content: "\e807";
    font-family: "icon-ideal";
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    background: var(--default-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 300ms;
    opacity: 0;
}

.form-policy-group:has(input:valid):after {
    opacity: 1;
}

.form textarea {
    width: 100%;
    border: 1px solid #D9D9D9;
    color: #282828;
    padding: 15px;
    margin-bottom: 0;
    font-size: 18px;
    min-height: 120px;
    max-width: 100%;
    min-width: 100%;
}


.form .icon-btn {
    border-radius: 5px;
    min-width: 250px;
    margin-top: 0;
}

.page-bigbaff {
    margin-top: 0;
}

.page-bigbaff .bg-gray {
    background: #F0F0F0;
    padding-top: 60px;
    margin-bottom: 0;
    padding-bottom: 35px;
}

.page-bigbaff .bigbaff {
    padding-top: 0;
}

.bigbaff-section-title-two {
    margin-top: 70px;
}

.bigbaff-grid {
    display: flex;
    align-items: stretch;
    gap: 30px;
    flex-wrap: wrap;
}

.bigbaff-content {
    text-align: center;
    width: calc(100% / 3 - 20px);
    border-radius: 10px;
    border: 1px solid #EFEFEF;
    padding: 50px 2vw 50px 2vw;
}

.bigbaff-logo {
    height: 111px;
    text-align: center;
}

.bigbaff-logo img {
    max-width: 70%;
    object-fit: contain;
    max-height: 100%;
}

.bigbaff-content h3 {
    font-size: 30px;
    color: var(--default-color);
    font-weight: 600;
    margin-bottom: 21px;
    margin-top: 20px;
}


.bigbaff-content p {
    margin: 0 auto;
    margin-bottom: 38px;
    max-width: 20rem;
    color: #282828;
    min-height: 71px;
    line-height: 25px;
}

.hostel {
    margin-bottom: 110px;
}

.hostel .section-title span {
    display: block;
}

.city-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    font-family: sans-serif;
}

.city-card {
    width: calc(100% / 3 - 20px);
    background: #ED1C24;
    border-radius: 10px;
    overflow: hidden;
    color: #fff;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.city-img img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.city-content {
    padding: 0 0 77px;
    text-align: center;
}

.city-content h3 {
    font-size: 45px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1;
}

.city-content h3 span {
    font-size: 45px;
    font-weight: 600;
    margin-bottom: 5px;
}

.city-content small {
    font-size: 18px;
    display: block;
    margin-bottom: 20px;
}

.city-buttons {
    display: inline-flex;
    flex-direction: column;
    gap: 15px;
}

.city-buttons a {
    background: #fff;
    color: var(--default-color);
    padding: 13px 34px;
    border-radius: 20px;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.city-buttons a:hover {
    background: #f5f5f5;
}

.city-img {
    position: relative;
}

.city-img:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: #FFFFFF;
    background: linear-gradient(180deg,rgba(255, 255, 255, 1) 0%, rgba(255, 249, 249, 0) 0%, rgba(237, 28, 36, 1) 100%);
}

.yurt-opsiyon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--default-color);
    margin-top: 0;
    padding: 0 13px 0 75px;
    border-radius: 10px;
    margin-bottom: 60px;
}

.yurt-opsiyon img {
    max-width: 236px;
    position: relative;
    top: -32px;
    margin-bottom: -32px;
}

.yurt-opsiyon .text1 {
    color: #fff;
    font-weight: 600;
    font-size: 30px;
    max-width: 25rem
}

.yurt-opsiyon .center {
    color: #fff;
    font-weight: 400;
    font-size: 19px;
    max-width: 26rem;
    display: flex;
    align-items: start;
    flex-direction: column;
    text-align: center;
    gap: 3px;
}

.yurt-opsiyon .center span a{
    color: #fff;
    font-weight: 400;
    font-size: 19px;
  
}
.branch-box {
    display: flex;
    align-items: center;
    gap: 30px;
    border-radius: 10px;
    flex-wrap: wrap;
    max-width: 100%;
    margin-bottom: 100px;
}

.branch-img img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    max-height: 400px;
}

.branch-img {
    flex: 1;
    position: relative;
}

.branch-img:before {
    content: '';
    position: absolute;
    right: -10px;
    top: -10px;
    width: 100%;
    background: var(--default-color);
    height: 100%;
    z-index: -1;
    transition: 300ms;
    border-radius: 10px;
}

.branch-content {
    flex: 1;
    min-width: 280px;
    text-align: right;
}

.branch-content h3 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #282828;
}

.branch-content h3 span {
    color: var(--default-color);
    font-weight: 600;
    font-size: 30px;
}

.btn-detail {
    display: inline-block;
    background-color: var(--default-color);
    color: #fff;
    padding: 12px 35px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 20px;
}

.branch-info p {
    font-size: 16px;
    margin: 19px 0;
    color: #282828;
}
.branch-info p  a{
    font-size: 16px;
    margin: 19px 0;
    color: var(--default-color);font-weight:500
}
.branch-info strong {
    font-weight: 600;
}

.branch-grid .branch-box:nth-child(even) {
    flex-direction: row-reverse;
}

.branch-grid .branch-box:nth-child(even) .branch-content {
    text-align: left
}

.branch-grid .branch-box:nth-child(even) .branch-img:before {
    right: initial;
    left: -10px;
}

.branch-detail-grid {
    display: flex;
    align-items: end;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 100%;
    margin-bottom: 25px;
}

.branch-detail-grid .branch-detail-img {
    flex: 1;
    position: relative;
}

.branch-detail-grid .branch-detail-img #playButton {
    position: absolute;
    right: 0;
    bottom: 0;
    background: #fff;
    padding: 15px;
    border-radius: 10px 0px 0px 0px;
    height: 120px;
}

.branch-detail-grid .branch-detail-content {
    flex: 1;
    padding-bottom: 0;
}

.branch-detail-grid .branch-detail-content span {
    color: #282828;
    font-weight: 600;
    display: block;
}

.branch-detail-grid .branch-detail-content p {
    color: #282828;
    display: block;
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 9px;
}

.branch-detail-grid .branch-detail-content a d {
    border-bottom: 1px solid var(--default-color);
    color: var(--default-color);
    font-weight: 600;
}

.branch-detail-grid .branch-detail-content a {
    height: 120px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.branch-detail-grid .branch-detail-content p a  {
    height: initial;
    display: initial;
   color:var(--default-color);
}
.branch-detail-grid .branch-detail-content a span {
    display: initial;
}

.branch-privilege {
    background: #F8F8F8;
    padding: 40px 40px 60px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.branch-privilege h4 {
    font-size: 16px;
    color: #282828;
    font-weight: 600;
    margin-bottom: 25px;
}

.branch-list {
    list-style: none;
    position: relative;
    column-count: 4;
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-gap: 90px;
    -webkit-column-gap: 90px;
    -moz-column-gap: 90px;
    column-rule: 1px solid rgba(0,0,0,0.16);
    -webkit-column-rule: 1px solid rgba(0,0,0,0.16);
    -moz-column-rule: 1px solid rgba(0,0,0,0.16);
}

.branch-list li {
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #282828;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.branch-list li i {
    color: var(--default-color);
    font-size: 16px;
}

.branch-map {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
    gap: 30px;
}

.branch-map .item {
    flex: 1;
    background: var(--default-color);
    border-radius: 10px;
    gap: 30px;
    min-width: 250px;
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.branch-map .item span {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    align-items: center;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    cursor: pointer;
}

.branch-map .item span i {
    font-size: 28px;
}

.branch-info-yetkili {
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
    gap: 20px;
    border-bottom: 1px solid rgb(162 162 162 / 27%);
    padding-bottom: 50px;
}

.branch-info-yetkili  span {
    font-weight: 400;
    color: #282828;
    align-items: center;
    display: flex;
}

.branch-info-yetkili  span b {
    min-width: 8rem;
    font-weight: 600;
    color: #282828;
}
.branch-info-yetkili  span a {
    min-width: 8rem;
    font-weight: 500;
    color: var(--default-color);
}

.gallery-two {
    margin-bottom: 40px;
}

.gallery-two h4 {
    font-size: 16px;
    color: #282828;
    font-weight: 600;
    margin-bottom: 20px;
}

.gallery-content {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.gallery-content .gallery-item {
    width: calc(100% / 3 - 20px);
    text-align: center;
    cursor: crosshair;
}

.gallery-content .gallery-item .text {
    color: #282828;
    font-size: 18px;
    font-weight: 600;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 10px 10px;
}

.gallery-content .gallery-item:hover .text {
    background: var(--default-color);
    color: #fff;
}

.news {
    margin-bottom: 120px;
}

.news-grid {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 30px;
}

.news-grid .news-card {
    width: calc(100% / 3 - 20px);
}
.news-grid .news-card img{
  height:270px;object-fit:cover;width:100%;
}

.news-grid .news-card .activity-info {
    background: #F0F0F0;
    border-radius: 0 0 10px 10px;
}

.first-news {
    display: flex;
    margin-bottom: 30px;
    align-items: stretch;
}

.first-news img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    max-width: 50%;
    height: 450px;
}

.first-news img {
    flex: 1;
    border-radius: 10px 0px 0px 10px;
}

.first-news .first-activity-info {
    flex: 1;
    background: #F0F0F0;
    border-radius: 0px 10px 10px 0px;
    padding: 0 30px 50px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 0;
}

.first-news .first-activity-info .icon-btn {
    max-width: 150px;
    margin-top: 0;
}

.first-news .first-activity-info .date {
    background: var(--default-color);
    max-width: 130px;
    padding: 7px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    border-radius: 0px 0px 10px 10px;
}

.first-news .first-activity-info h3 {
    font-size: 30px;
    font-weight: 600;
    color: #282828;
    margin-bottom: 20px;
}

.first-news .first-activity-info p {
    font-size: 30px;
    font-weight: 600;
    color: #282828;
    font-size: 18;
    font-size: 18px;
    line-height: 25px;
}
.news-detail-flex{
    display: flex;
    align-items: start;
    gap: 30px;
    flex-wrap: wrap;
}
.news-detail .news-detail-content {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 60px;
    flex: 1;
    width: 50%;
}
.news-detail .news-detail-content a{
   color:var(--default-color);font-weight:500
}
.news-detail img {
    object-fit: cover;
    object-position: center;
    flex: 1;
    width: 50%;
    border-radius: 10px;
    position: sticky;
    top: 30px;
}

.news-detail h2 {
    font-weight: 600;
    margin-top: 25px;
    font-size: 28px;
}

.news-detail strong {
    font-weight: 600;
    font-size: 18px;
}

.news-detail ul {
    margin: 0px 0px 15px 20px;
}

.news-detail p,.news-detail li {
    font-weight: 400;
    font-size: 18px;
    list-style: disc;
    line-height: 25px;
    margin-bottom: 10px;
}

.news-detail p {
    margin-bottom: 15px;
    width: 100%;
}

.news-detail .form {
    max-width: 890px;
    margin: 110px auto 0;
}

.privileges-grid .privileges-content {
    display: flex;
    align-items: center;
    margin-bottom: 52px;
    gap: 30px;
}

.privileges-grid .privileges-content:nth-child(even) {
    flex-direction: row-reverse;
}

.privileges-grid .privileges-content:nth-child(even) .privileges-text {
    text-align: right;
}

.privileges-grid .privileges-content img {
    width: 273px;max-height: 300px;
}

.privileges-grid .privileges-content .privileges-text {
    width: calc(100% - 323px);
    max-width: 50rem;
}

.privileges-grid .privileges-content .privileges-text p {
    color: #282828;
    font-size: 18px;
    line-height: 25px;
}
.privileges-grid .privileges-content .privileges-text span {
    color: #282828;
    font-size: 27px;
    line-height: 52px;
    margin-bottom:15px;
    display:block;
    text-transform: capitalize;
    }
.blog-grid{display:flex;align-items:stretch;flex-wrap:wrap;gap:30px;}
.blog-grid .blog-card {width:calc(50% - 15px);min-width:660px;display:flex;align-items:stretch;overflow: hidden;border-radius: 10px;}
.blog-card img{flex:1;max-width:100%;width: calc(50% - 15px);object-fit: cover;min-height: 320px;object-position: left top;}
.blog-card .blog-info{flex:1;background:#F0F0F0;padding: 30px;width: calc(50% + 15px);}
.blog-card .blog-info h3{font-size:20px;font-weight:600;color:#282828;line-height:25px;}
.blog-card .blog-info p {font-size:18px;font-weight:400;color:#282828;line-height:25px;} 
.first-blog {margin-bottom:30px;position:relative;overflow:hidden;border-radius:10px;}
.first-blog img{object-fit:cover;height: 48vh;width:100%;max-height: 450px;}
.first-blog:after{content:"";position:absolute;bottom:0;height: 10vh;left:0;width:100%;background: #282828;background: linear-gradient(0deg,rgba(40, 40, 40, 1) 0%, rgba(40, 40, 40, 0.75) 50%, rgba(40, 40, 40, 0) 100%);}
.first-blog h3{font-size:20px;font-weight:600;color:#fff;line-height:25px;position: absolute;bottom: 24px;left: 50px;z-index:5;}
.profile-img{
    float: right;
    margin-left: 65px;
    margin-bottom: 50px;
    }
.profile-text h2{font-size:30px;color:var(--default-color);font-weight:600;line-height:37px;margin-bottom: 0;padding-top: 50px;}
.profile-text h3{font-size: 16px;color:#282828;font-weight:500;line-height: 22px;margin-bottom: 28px;}
.profile-text p{font-size:18px;color:#282828;font-weight:400;line-height:25px;margin-bottom: 44px;}
.contact-maps {width:100%;height:80vh;position:relative;}
.contact-maps:after {content:"";position:absolute;left:0;top:0;width:100%;height:15vh;background: #FFFFFF;
background: linear-gradient(0deg,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.97) 77%, rgba(255, 255, 255, 1) 100%);}
.contact-maps #map{height: 100%;
    width: 100%;}
	.gm-style .gm-style-cc {
  background-color: #fff !important;
  padding: 8px 12px !important;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  font-size: 12px;
  color: #000 !important;
}
.contact-grid{display:flex;align-items:stretch;flex-wrap:wrap;gap:60px;margin-bottom: 90px;}
.contact-grid .contact-info,.contact-grid .form{flex:1;}
.contact-grid h2{font-weight:600;color:#282828;font-size:45px;margin-bottom:50px;}
.contact-grid h2 span,.contact-grid h2 strong{color:var(--default-color);font-weight:600;}
.contact-info .item {font-size:18px;line-height:25px;display:flex;align-items:start;margin-bottom: 23px;gap:10px;color:#282828;max-width:25rem}
.contact-info i {color:var(--default-color);font-size:24px;}
.contact-info .item strong{display:block;margin-bottom:5px;color: var(--default-color);}
.contact-info .item d{font-weight:600;color:#282828}
.contact-info .social {margin-top:55px;gap:20px;}
.contact-info .social i{font-weight:500;color:var(--default-color);font-size:26px;}
.contact-info .social i.icon-twitter{font-weight:500;color:var(--default-color);font-size:22px;}
#registerModal .form {
    max-width: 890px;
    background: #fff;
    margin: 44px auto 0;
}
.register-modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
}

.register-modal-content {
    background: #fff;
    margin: 0px auto 15vh;
    padding: 60px 90px;
    width: 890px;
    max-width: calc(100% - 20px);
    border-radius: 8px;
    position: relative;
    max-height: 100vh;
}

.register-close {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 24px;
    cursor: pointer;
}
.phoneregister-close {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 24px;
    cursor: pointer;
}


.register-modal-body h2 {
    font-size: 45px;
    color: #282828;
    font-weight: 600;
    line-height: 50px;
}
.register-modal-body span {
    color: var(--default-color);
    font-weight: 600;
    line-height: 50px;
}
.form .custom-select {
  
    height: 57px;
}
.form-group.form-file-group {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
}
.form-group.form-file-group input {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 1px;
    height: 1px;
    opacity: 0;
}
.form-group.form-file-group label {
    border: 2px solid var(--default-color);
    min-height: 51px;
    color: var(--default-color);
    display: flex;
    align-items: center;
    padding: 15px 20px 16px 31px;
    position: relative;
    cursor: pointer;
    user-select: none;
    font-size: 19px;
}
.form-group.form-file-group label i {
    width: 40px;
    height: 40px;
    background: var(--default-color);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: lighter;
    border-radius: 100%;
    position: absolute;
    left: 20px;
    transition: 300ms;
}
.form-group.form-file-group:has(input:valid) label i:before {
    content: '\f00c';
}
.form-group.form-file-group:has(input:valid) label i {
    background: #282828;
    color: var(--default-color);
}
.form-group.form-file-group .placeholder-title {
    margin: 0;
    border: none;
    height: initial;
    padding: 0;
    color: #282828;
}
.page .form{max-width: 1100px;
    margin: 0 auto;}
.bigbaff-detail{margin-bottom: 25px;display: flex;align-items: center;gap: 9vw;}
.bigbaff-detail img{width: 19vw;}
.bigbaff-detail-text{max-width: 40rem;}
.bigbaff-detail-text p{font-size: 18px;line-height: 25px;}
.bigbaff-detail-text a{color:var(--default-color);font-size: 18px;line-height: 25px;font-weight:600;}

.mapmodal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
}
.mapmodal  #map{height: 500px;width: 100%;}
.map-modal-content {
    background: #fff;
    margin: 0px auto;
    padding: 60px 30px;
    width: 1170px;
    max-width: calc(100% - 30px);
    border-radius: 8px;
    position: relative;
}

.mapmodal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 24px;
    cursor: pointer;
}
.sanalmodal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
}
.sanalmodal-content {
    background: #fff;
    margin: 0px auto;
    padding: 60px 30px;
    width: 1170px;
    max-width: calc(100% - 30px);
    height: 700px;
    border-radius: 8px;
    position: relative;
    max-height: 90vh;
}

.sanalmodal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 24px;
    cursor: pointer;
}
.unimodal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
}
.unimodal-content {
    background: #fff;
    margin: 0px auto 0;
    padding: 60px 30px;
    width: 1170px;
    max-width: calc(100% - 30px);
    border-radius: 8px;
    position: relative;
}

.unimodal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 24px;
    cursor: pointer;
}
#unilist{columns: 2;}
#unilist li {font-size: 22px; font-weight: 600;line-height: 34px;color:#282828}
.pagination{
    display: flex;
    margin-top: 50px;
    gap: 10px;
    flex-wrap: wrap;
    }
.pagination .page-item{
    border: 1px solid var(--default-color);
    width: 34px;
    height: 34px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--default-color);
}
.pagination .page-item a{
   
    color: var(--default-color);
}
.pagination .page-item.active {
   
    background-color: var(--default-color);
}
.pagination .page-item.active span{
   
    color: #fff;
}
.policy p{font-size: 18px;color:#282828;line-height: 25px;}
.videoplayicon{position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;}
    .videoplayicon i{font-size: 69px;
    color: #fff;}
.gallery-two #tabList {display: flex;align-items: center;justify-content: center;gap:25px;margin-bottom: 70px;white-space: nowrap;overflow: auto;}
.gallery-two #tabList::-webkit-scrollbar {
    width: 0;height:0;
}
.gallery-two #tabList li{padding: 12px 38px; color:#282828;font-size:18px ;background: #F8F8F8;border: 1px solid #EFEFEF;border-radius: 120px;cursor: pointer;}
.gallery-two #tabList li.active{color:#fff;background: var(--default-color);border-color: var(--default-color);font-weight: 600;}
#galerisehir {display: flex;align-items: center;justify-content: center;flex-wrap: wrap;gap:25px;margin-bottom: 70px;}
#galerisehir li,#galerisehir li a{padding: 12px 38px; color:#282828;font-size:18px ;background: #F8F8F8;border: 1px solid #EFEFEF;border-radius: 120px;cursor: pointer;}
#galerisehir li.active,#galerisehir li.active a{color:#fff;background: var(--default-color);border-color: var(--default-color);font-weight: 600;}
.sanalmodaleye{cursor: pointer;}
.sanalmodaleye .btn-detail{padding: 18px 39px;display: inline-flex;align-items: center;gap: 7px;}
.sanalmodaleye i{font-size: 36px;}
.category_detail a{color:var(--default-color)}
.gallery-two #toptabList {display: flex;align-items: center;justify-content: center;flex-wrap: wrap;gap:25px;margin-bottom: 30px;}
.gallery-two #toptabList li{padding: 12px 38px; color:#282828;font-size:18px ;background: #F8F8F8;border: 1px solid #EFEFEF;border-radius: 120px;cursor: pointer;}
.gallery-two #toptabList li.active{color:#fff;background: var(--default-color);border-color: var(--default-color);font-weight: 600;}
.gallery-two #tabList.tabList-two li{padding: 12px 38px; color:#282828;font-size:18px;background:transparent;border:none;border-bottom: 1px solid #282828;border-radius: 0;cursor: pointer;font-weight: 600;}
.gallery-two #tabList.tabList-two li.active{color:var(--default-color);border-color: var(--default-color);font-weight: 600;}
.popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup-box {
 background: #fff;
    margin: 0px auto 15vh;
    padding: 30px;
    width: 890px;
    max-width: calc(100% - 60px);
    border-radius: 8px;
    position: relative;
}
.popup-close {
    position: absolute;
    top: 5px;
    right: 0px;
    font-size: 24px;
    cursor: pointer;
}
.menu-btn {display:none;}
.menu-wrapper {
      position: fixed;
    right: 0;
    top: 0;
    z-index: 99;
    background: #fff;
    height: 100%;
    padding: 20px 40px 40px;
    width: 420px;
    overflow: auto;
    transition: 300ms;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    max-width: 100%;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
table thead {
  background-color: var(--default-color);
  color: #fff;
}
table th,
table td {
  padding: 12px 16px;
  text-align: left;
  border: 1px solid #ddd;
}

table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

table tbody tr:hover {
  background-color: var(--default-color);color:#fff;
}
#playButton2 img{padding:20px;}