@import url("./styles.css");



.quote {
    background-color:black;
    padding: 3rem 8rem;
}

#backgroundTitle {
    top: 20%;
    width: 100%;
    text-align: center;
    padding: 3rem 8rem;
    font-size: 6rem;
}
.quote p {
    font-size: 1em;
    text-align: center;
    color: white;
    border: 1px solid white;
    border-radius:20px;
    padding:4rem;

}

.features{
    color:black;
    padding:  2vw 10vw;
}

.sub-header{
    font-size: 3rem;
    font-weight:600;
    margin-block:1rem 0rem;
}

.description{
    color:rgb(96, 96, 96);
    margin-bottom:2rem;
    font-size:1.5rem;
}

.getStarted .description{
    color:black;
}

.feature-boxes{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.feature-box{
    text-align: center;
    max-width: 240px;
    padding: 3rem 2rem;
    border-radius: 20px;
    transition-duration: .4s;
}

.feature-box img{
    width: 40px;
}

.feature-box:hover{
    box-shadow: 0 0 10px 10px #e2e2e227;

}

.display {
    padding:  5rem 10vw;
    display: flex;
    flex-wrap: wrap-reverse;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    background: black;
    flex-direction: row;
    overflow-x: hidden;
}

.display .container {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}



.imageContainer {
    width: 180px;
    overflow: hidden;
    transition-duration: .3s;
    border-radius: 20px;
    margin: 1vw;
}

#imageSlider {
    -webkit-appearance: none;
    width: 80%;
    height: 8px;
    background: #555;
    border-radius: 5px;
    outline: none;
    transition: 0.3s;
    margin: 2rem 0;
}

#imageSlider:hover {
    background: #777;
}

#imageSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

#imageSlider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.imageContainer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.selected {
    transform: scale(1.2);
    box-shadow: 0 0 10px 10px #242424bd;
}