#content3 {
    margin-top: 50px;
    text-align: center;
}

#content3 h1 {
    margin-bottom: 25px;
    color: #263C86;
}

/* CAROUSEL */

#carousel {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    height: 800px;
    background: rgb(31, 48, 112);
    background: linear-gradient(180deg, rgba(31, 48, 112, 1) 10%, rgba(2, 84, 161, 1) 80%);
}

#content3 .overlay {
    background-color: rgba(38, 60, 134, 0.6);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 1;
}

.slide-image {
    width: 100%;
    background-position: center;
    background-size: cover;
    display: inline-block;
}

.slide-image .desc {
    position: absolute;
    color: white;
    top: 25%;
    text-align: center;
    width: 100%;
    z-index: 2;
}

.slide-image .desc h1 {
    color: #FF9D0E !important;
}

.slide-image .container-slide {
    position: relative;
}

.slide-image img {
    width: 100%;
    max-width: 1440px;
    object-fit: cover;
}

#content3 .arrow {
    z-index: 10;
    width: 2%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 42px;
    color: #FF9D0E;
}

#right-arrow {
    right: 30px;
}

#left-arrow {
    left: 30px;
}

.desc .icon {
    width: 75px;
}

/* FOR LAPTOP SMALL SIZE */

@media screen and (max-width: 1320px) and (min-width: 1024px) {
    #carousel {
        height: 550px
    }
}

/* FOR TABLET DEVICE */

@media screen and (max-width: 1023px) and (min-width: 600px) {
    #carousel {
        height: 500px
    }

    #content3 .desc h5 {
        margin: 0px;
        font-size: 16px;
    }
}

/* FOR MOBILE DEVICE */

@media screen and (max-width: 600px) {
    #carousel {
        height: 500px;
    }

    #content3 .img-carousel {
        height: 500px;
    }

    #content3 .slide-image .desc {
        white-space: normal;
        top: 20%;
        padding: 0px 50px;
    }

    #content3 .arrow {
        top: 40%;
    }

    .fa-angle-left {
        margin-left: -10px;
    }

    #content3 .desc h1 {
        font-size: 1.5rem;
    }

    #content3 .desc h5 {
        font-size: 1rem;
    }
}