.th-hero-wrapper {    position: relative;    overflow: hidden;}.th-hero-slider {    display: flex;    transition: transform 0.6s ease;    width: 100%;}.th-hero-slide {    min-width: 100%;    height: 85vh;    background-size: cover;    background-position: center;    position: relative;    display: flex;    align-items: center;    -webkit-user-select: none; /* Safari */  -ms-user-select: none; /* IE 10 and IE 11 */  user-select: none; /* Standard syntax */}@media (max-width:600px) {    .th-hero-slide {        height: 60vh;    }    .hero-arrow {        display: none;    }}@media (max-width:1600px) {    .th-hero-slide {        height: 80vh;    }   }@media (max-width:1400px) {    .th-hero-slide {        height: 70vh;    }   }.th-hero-slide .overlay {    position: absolute;    inset: 0;    width: 100%;    height: 100%;    object-fit: cover;    pointer-events: none;    opacity: 0.7;}.hero-style6 {    color: #fff;    position: relative;    z-index: 2;    animation: fadeUp .8s ease forwards;}@keyframes fadeUp {    from { opacity: 0; transform: translateY(20px); }    to { opacity: 1; transform: translateY(0); }}/* OKLAR */.hero-arrow {    position: absolute;    top: 50%;    transform: translateY(-50%);    color: #fff;    font-size: 48px;    cursor: pointer;    z-index: 10;    padding: 10px 20px;    user-select: none;    transition: 0.3s;}.hero-arrow:hover {    opacity: 0.6;}.hero-arrow.left { left: 20px; }.hero-arrow.right { right: 20px; }/* DOTS */.hero-dots {    position: absolute;    bottom: 25px;    width: 100%;    text-align: center;    z-index: 10;}.hero-dots button {    width: 14px;    height: 14px;    border-radius: 50%;    margin: 0 6px;    border: none;    background: rgba(255, 255, 255, 0.5);    cursor: pointer;    transition: 0.3s;}.hero-dots button.active {    background: #fff;    transform: scale(1.2);}