@charset "UTF-8";

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}



.carousel {
    height: 100vh;
    padding: 0px 10%;
    overflow: hidden;
}

.carousel .box-info {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 650px;
    height: 250px;
    overflow: hidden;
}

.box-info .list-info {
    transition: 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.list-info .info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    height: 250px;
}

.info h2 {
    font-size: 50px;
    line-height: 1em;
}

.info p {
    font-size: 1em;
    margin: 20px 0px;
}

.info a {
    color: #fff;
}

.info .btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 180px;
    height: 50px;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    font-size: 1em;
    color: #fff;
    text-decoration: none;
    font-weight: 600px;
}

.carousel .list-img {
    height: 100%;
    transition: 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.list-img .item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.item img {
    position: absolute;
    right: 0;
    pointer-events: none;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, .1));
}

.navegation {
    position: absolute;
    bottom: 7%;
    left: 50%;
    transform: translateX(-50%);
}

.navegation span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    cursor: pointer;
    margin: 0px 10px;
    font-size: 55px;
}

.bg-box .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.bg-box .bg:nth-child(1) {
    background: rgb(2,0,36);
    background: linear-gradient(180deg, rgba(2,0,36,1) 30%, rgba(0,0,0,1) 70%);
}

.bg-box .bg:nth-child(2) {
    background: rgb(213,18,18);
    background: linear-gradient(180deg, rgba(213,18,18,1) 0%, rgba(26,34,152,1) 100%);
}

.bg-box .bg:nth-child(3) {
    background: rgb(201,114,114);
    background: linear-gradient(180deg, rgba(201,114,114,1) 10%, rgba(194,120,194,1) 43%);
}

.bg-box .bg:nth-child(2),
.bg-box .bg:nth-child(3) {
    clip-path: circle(0% at 50% 50%);
}

.bg-box .bg:nth-child(2).active,
.bg-box .bg:nth-child(3).active {
    clip-path: circle(75% at 50% 50%);
}