html, body {
    height: 100%;
}
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
main {
    flex: 1 0 auto;
}
body {
    font-family: 'Poppins', sans-serif;
}
.bg-custom-teal {
    background-color: #63b3a7;
}
.text-custom-teal {
    color: #63b3a7;
}
.border-custom-teal {
    border-color: #63b3a7;
}

.before-after-slider {
    position: relative;
    overflow: hidden;
    cursor: col-resize;
    max-width: 700px;
    max-height: 400px;
    margin: 0 auto;
}
.before-image,
.after-image {
    max-width: 700px;
    max-height: 400px;
}
.before-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
    z-index: 10;
}
.after-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 4px;
    background-color: white;
    cursor: col-resize;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
}
.slider-handle-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    color: #63b3a7;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    font-variation-settings: 'FILL' 1, 'wght' 700, 'GRAD' 0, 'opsz' 48;
}
img {
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

