* {
    margin: 0;
    padding: 0;
    color: white;
    font-family: "Open Sans", sans-serif;
}

a {
    text-decoration: none;
    color: white;
}

.button-solid {
    background-color: white;
    border-radius: 30px;
    border: 1px solid white;
    display: inline;
    cursor: pointer;
    transition: ease-out 0.15s;
}

.button-solid:hover {
    transform: translateY(-2px);
    transition: ease-out 0.15s;
}

.button-solid > p {
    padding: 15px 12px;
    font-size: 14px;
    line-height: 0;
    color: black
}

.hero {
    width: 100%;
    height: 50vh;
    min-height: 400px;
    background-color: black;
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    position: relative;
}

.hero-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: centre;
    align-items: centre;
    position: relative;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide > .content-left {
    width: 40%;
    height: 100%;
    margin-left: 10%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    z-index: 2;
}

.vitrinbaslik{
	  text-shadow: 2px 0 #2C3E50, -2px 0 #2C3E50, 0 2px #2C3E50, 0 -2px #2C3E50,
               1px 1px #2C3E50, -1px -1px #2C3E50, 1px -1px #2C3E50, -1px 1px #2C3E50;
  font-family: "SN Pro", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
.hero-slide > .content-left > h2 {
    margin-bottom: 30px;
}

.hero-slide > .content-left > p {
    margin-bottom: 60px;
}

.hero-slide > .content-right {
    width: 40%;
    height: 100%;
    margin-right: 10%;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    z-index: 2;
}

.hero-slide > .content-right > h2 {
    margin-bottom: 30px;
}

.hero-slide > .content-right > p {
    margin-bottom: 60px;
}

.hero-slide > .image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-slide > .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
}

@media screen and (max-width: 1200px) {
    .hero-slide > .content-right {
        width: 50%;
    }

    .hero-slide > .content-left {
        width: 50%;
    }
}

@media screen and (max-width: 900px) {
    .hero-slide > .content-right {
        width: 80%;
        margin-left: 10%;
        margin-right: 10%;
        justify-content: center;
        text-align: center;
    }

    .hero-slide > .content-left {
        width: 80%;
        margin-left: 10%;
        margin-right: 10%;
        justify-content: center;
        text-align: center;
    }

    .hero-slide > .image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.75) blur(2px);
    }
}

.slide-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 32px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
}

.dot::before {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background-color: transparent;
}

.dot:hover,
.dot.active {
    transform: scale(1.25);
}