.button-solid {
    background-color: white;
    border-radius: 100px;
    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: 20px 16px;
    font-size: 14px;
    line-height: 0;
    color: black
}

.hero {
    width: 100%;
    height: 75vh;
    min-height: 600px;
    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;
}

.hero-slide > .content-left > h1 {
    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 > h1 {
    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: 15px;
    z-index: 3;
}

.dot {
    width: 40px;
    height: 15px;
    border-radius: 15px;
    position: relative;
    border: 1px solid #ffffff;
    background-color: #f7c9b2;
}

.dot::before {
    position: relative;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
}

.dot.active {
    background-color: #e14f29;
    transform: scale(1.25);
    border: 1px solid #ffffff;
}