* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    width: 100%;
}

h1 {
    text-align: center;
}

.gallery-carousel {
    padding: 0.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 90ch;
    margin: 1rem auto;
    overflow: hidden;
}

.gallery-carousel-first,
.gallery-carousel-second {
    width: 100%;
    position: relative;
}

.gallery-carousel-first .slides,
.gallery-carousel-second .slides {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.gallery-carousel-first .slides {
    gap: 1rem;
    -webkit-transform: translateX(calc(-0%));
    transform: translateX(calc(-0%));
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.gallery-carousel-first-slide {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    background-color: #3a3a3a;
    height: 300px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    border: 1px solid #858585;
}

.gallery-carousel-first-slide picture {
    height: 100%;
    width: 100%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    place-items: center;
}

.gallery-carousel-first-slide picture img {
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
}

.gallery-carousel-first-slide .caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    white-space: normal;
    background-color: rgba(22, 22, 22, 0.315);
    color: #008ED0;
}

.gallery-carousel-first-prev-btn,
.gallery-carousel-first-next-btn {
    position: absolute;
    top: 50%;
    height: 30px;
    width: 30px;
    background-color: black;
    color: white;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.gallery-carousel-first-prev-btn:hover,
.gallery-carousel-first-next-btn:hover {
    background-color: white;
    color: black;
}

.gallery-carousel-first-prev-btn {
    left: -0.5rem;
}

.gallery-carousel-first-next-btn {
    right: -0.5rem;
}

.gallery-carousel-second .slides {
    gap: 1rem;
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.gallery-carousel-second-slide {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100px;
    flex: 0 0 100px;
    border: 1px solid white;
    width: 100px;
    height: 100px;
    cursor: pointer;
    position: relative;
}

.gallery-carousel-second-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.gallery-carousel-second-slide:not(.active):before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
}

.gallery-carousel-second-prev-btn,
.gallery-carousel-second-next-btn {
    position: absolute;
    top: 50%;
    height: 20px;
    width: 20px;
    background-color: black;
    color: white;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.gallery-carousel-second-prev-btn:hover,
.gallery-carousel-second-next-btn:hover {
    background-color: white;
    color: black;
}

.gallery-carousel-second-prev-btn {
    left: -0.5rem;
}

.gallery-carousel-second-next-btn {
    right: -0.5rem;
}

@media only screen and (min-width: 768px) {
    .gallery-carousel-first-slide {
        height: 600px;
    }
}


/*# sourceMappingURL=style.css.map */