* {
    font-family: 'Alkatra', cursive;
}

.hero img {
    min-height: 323px !important;
}

.text-danger {
    color: red !important;
}

.bg-danger {
    background-color: red !important;
}


.overlay-container {
    position: relative;
    overflow: hidden;
}

.image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.text a {
    color: red;
    position: absolute;
    text-decoration: none;
    top: 50%;
    text-align: center;
    width: 100%;
    font-size: 20px;
    transition: translate(-50%, -50%);
}

/*Initial overlay setup*/
.overlay {
    position: absolute;
    transition: all .3s ease;
    opacity: 0;
    background: rgba(255, 255, 255, 0.6);
}

/*All overlay fade-in*/
.overlay-container:hover .overlay {
    opacity: 1;
}

.overlay-left {
    height: 100%;
    width: 0;
    top: 0;
    left: 0;
}



/*Hover states for each of the overlays*/
.overlay-container:hover .overlay-left {
    width: 100%;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.arrival {
    padding: 100px 0px;
}

.title-margin {
    margin-bottom: 100px;
}

#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: red;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
    transition: 0.1s;
}

#myBtn:hover {
    background-color: #ffffff;
    color: red;

}