/*Extra small devices (portrait phones, less than 576px)
No media query for `xs` since this is the default in Bootstrap*/

.ocw-sub-home {
    height: 90vh;
}

.ocw-sub-home .slick-slide {
    height: 90vh;
}

.ocw-sub-home__item {
    position: relative;
    height: 90vh;
}

.ocw-sub-home__item {
    position: relative;
    height: 100vh;
}

.ocw-sub-home__content {
    position: absolute;
    
    left: 0;
    font-family: "roboto-regular", sans-serif;
    margin: 0;
    padding: 1em;
    width: 100%;

    bottom: 100px;
}

.ocw-intro-hero__image {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.ocw-sub-home__content h5 {
    color: #19a301;
    font-size: 22px;
}

a.ocw-text-decorationlink {
    color: #19a301 !important;
    text-decoration: none;
    background-color: transparent;
}

.ocw-sub-home__content h3 {
    color: #fff;
    font-size: 35px;
}

.ocw-sub-home__content p {
    color: #fff;
    font-size: 16px;
}

.ocw-sub-home .slick-dots {
    display: flex;
    width: 100%;
    list-style: none;    
    position: absolute;
    
    padding: 1em;

    bottom: 10px;
}

.ocw-sub-home .slick-dots li {
    display: none;
    width: 100%;
    
}

.ocw-sub-home .slick-dots .slick-active {
    position: relative;
    display: block;
}

.ocw-sub-home .slick-dots .slick-active::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-left: 10px solid #19a301;
    border-top: 0px solid transparent;
    border-bottom: 10px solid transparent;
}

.ocw-sub-home .slick-dots li button {
    background-color: transparent;
    border-left: none;
    border-right: none;
    border-bottom: none;
    border-top: 1px solid #fff;
    color: #fff;
    font-size: 13px;
    padding-top: 1.5em;
    text-align: left;
    width: 100%;
    line-height: 1.5;
}

.ocw-sub-home .slick-dots .slick-active button {
    border-top: 1px solid #19a301;
    width: 100%;
}

/*Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {}

/*Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
    .ocw-sub-home__item {
        height: 80vh;
    }

    .ocw-sub-home__content {
        bottom: 120px;
    }

    .ocw-sub-home .slick-dots {
        bottom: 30px;
    }

    .ocw-sub-home .slick-dots li {
        display: grid;
    }

}

/*Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
    .ocw-sub-home__item {
        height: 100vh;
    }
    .ocw-sub-home .slick-slide {
        height: 100vh;
    }
    .ocw-sub-home__content {
        margin-left: 6rem;
        width: 50%;
    }
    .ocw-sub-home .slick-dots {
        padding: 0 6rem;
    }

    .ocw-sub-home .slick-dots li button {
        font-size: 13px;
    }
}

/*Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {}

/*Extra extra large devices (large desktops, 1400px and up)*/
@media (min-width: 1400px) {}