.container.marketing {
    padding-top: 50px;
}

@media (max-width: 768px) {
    .container.marketing {
        padding-top: 30px;
    }
}

/* JUMBOTRON */
.jumbotron {
    background-color: transparent;
    color: #fff;
    margin-bottom: 0;
    text-align: center;
}

.jumbotron h1 {
    font-size: 33px;
    margin-bottom: 0px;
    margin-top: 75px;
}

.jumbotron p {
    max-width: 440px;
    font-size: 15px;
    margin: 10px auto 0 auto;
    text-align: center;
}

.carousel p {
    text-align: center;
}

@media (min-width: 768px) {
    .jumbotron {
        padding-bottom: 100px;
    }
}

@media (max-width: 768px) {
    .jumbotron {
        padding-top: 51px;
    }

    .jumbotron h1 {
        margin-top: 30px;
    }
}

/* CAROUSEL */
.slider-size {
    height: 450px;
}

.slider-zoom {
    animation: zoom 30s infinite ease-in-out;
}

.slider-content {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

@keyframes zoom {
    0% {
        transform-origin: bottom left;
        transform: scale(1.0);
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1.0);
    }
}