/* SLIDER */

.wrapper {
    width: 100%;
    height: 800px;
}

.wrapper-inner {
    width: 100%;
    height: 800px;
}

.slide {
    width: 100%;
    height: 800px;
    position: relative;
}

.slide .image {
    width: 100%;
    height: 800px;
    object-fit: cover;
}

.slide .bg-info {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.slide .bg-info p{
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 5px;
    margin-bottom: 10px;
    text-transform: uppercase;
}


.slide .bg-info button {
    padding:  10px 25px;
    color: #393939;
    border: none;
    background: #fff;
    font-size: 17px;
    font-weight: 400;
    cursor: pointer;
    transition: 0.3s;
}


.wrapper .swiper-pagination-bullet{
    height: 10px;
    width: 10px;
    background: #fff;
    opacity: 0.5s;
    transition: 0.3s;
}

.wrapper .swiper-pagination-bullet-active{
    width: 20px;
    opacity: 1;
    border-radius: 7px;
}

.wrapper .swiper-button-prev,
.wrapper .swiper-button-next {
    color: #fff;
}

.icon-card img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100px;
    height: 100px;
} 