.mySlides {
    display: none;
}

.carousel {
    position: relative;
}

.carouselImg {
    width: 100%;
    height: 740px;
}

.slideshow-container {
    width: 100%;
    position: relative;
    margin: auto;
}

.carouselInnerDiv {
    position: absolute;
    top: 0px;
    background-color: transparent;
    width: 100%;
    height: 62%;
    padding: 0px 0px 0px 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}


/* Next & previous buttons */

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    border-radius: 0 3px 3px 0;
    user-select: none;
    transition: all 0.3s ease;
}


/* Position the "next button" to the right */

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}


/* On hover, add a black background color with a little bit see-through */

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
    color: #f45725;
}


/* Caption text */

.text {
    background-color: transparent;
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    width: 100%;
}


/* Number text (1/3 etc) */

.numbertext {
    background-color: transparent;
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
}


/* The dots/bullets/indicators */

#dotsDiv {
    position: absolute;
    top: 450px;
    margin-left: 50px;
    background-color: transparent;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 10px 0px 0px;
    background: #ffffff;
    opacity: 0.2;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.6s ease;
}

.activeCarousel,
.dot:hover {
    background-color: #fff;
    opacity: 1;
}


/* Fading animation */

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: 0.4;
    }
    to {
        opacity: 1;
    }
}

.textFed {
    font-family: "Rubik", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 50px;
    line-height: 80px;
    letter-spacing: 0.005em;
    color: #ffffff;
    background-color: transparent;
}

.textFedDescription {
    width: 70%;
    margin: 30px 0px;
    font-family: "Manrope";
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 40px;
    letter-spacing: 0.005em;
    background-color: transparent;
    color: #ffffff;
}

@media only screen and (max-width: 1000px) {
    .textFed {
        font-size: 40px;
    }
    .textFedDescription {
        font-size: 18px;
    }
}

@media only screen and (max-width: 750px) {
    .textFed {
        font-size: 30px;
    }
    .textFedDescription {
        font-size: 16px;
    }
}

@media only screen and (max-width: 650px) {
    #dotsDiv {
        top: auto;
        bottom: 70px;
        margin-left: 30px;
    }
    .slideshow-container {
        position: static;
    }
    .carouselInnerDiv {
        padding: 0px 0px 0px 30px;
        top: auto;
        bottom: 90px;
    }
    .textFed {
        line-height: 150%;
        font-size: 20px;
    }
    .textFedDescription {
        width: 95%;
        font-weight: 500;
        line-height: 150%;
        font-size: 14px;
    }
}

@media only screen and (max-width: 300px) {
    .prev,
    .next,
    .text {
        font-size: 11px;
    }
}