/*	PLUGIN: SLIDER
--------------------------------------------*/
    .tcc-slick-slide .tcc-slide {
        height: 100vh;
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        background-size: cover;
        background-position: left top, center center;
		background-repeat: no-repeat;
        position: relative;
        z-index: 0;
    }
    /* .tcc-slick-slide .tcc-slide:before {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.3);
        z-index: 1;
    } */
    .tcc-slick-slide .tcc-slide .tcc-slide-content {
        position: relative;
        z-index: 2;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 1200px;
        max-width: 90%;
        margin: 0 auto;
    }
    .tcc-slick-slide .tcc-slide-body {
        margin-bottom: 20px;
        text-align: center;
        line-height: 1;
        color:white;
    }
    .tcc-slick-slide h1{
        color:white;
        font-size: 55px;
    }
    body.home .tcc-slick-slide h2{
        text-transform: none;
    }
    @media only screen and (max-width: 1024px) {
        .tcc-slick-slide .tcc-slide {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
            -webkit-box-pack: end;
            -webkit-justify-content: flex-end;
            -moz-box-pack: end;
            -ms-flex-pack: end;
            justify-content: flex-end;
        }
        .tcc-slick-slide .tcc-slide .tcc-slide-content {
            display: block;
            width: 100%;
            padding-top: 30px;
            padding-bottom: 30px;
        }
    }

    /* ARROWS
    ======================================= */
    .slick-prev,
    .slick-next {
        font-size: 0;
        line-height: 0;
        position: absolute;
        top: 50%;
        display: block;
        width: 50px;
        height: 50px;
        padding: 0;
        -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        transform: translate(0, -50%);
        cursor: pointer;
        color: transparent;
        border: none;
        outline: none;
        background: transparent;
        z-index: 1;
    }
    .slick-prev:hover,
    .slick-prev:focus,
    .slick-next:hover,
    .slick-next:focus {
        color: transparent;
        outline: none;
        background: transparent;
    }
    .slick-prev:hover:before,
    .slick-prev:focus:before,
    .slick-next:hover:before,
    .slick-next:focus:before {
        opacity: 1;
    }
    .slick-prev.slick-disabled:before,
    .slick-next.slick-disabled:before {
        opacity: .25;
    }
    .slick-prev:before,
    .slick-next:before {
        font-size: 50px;
        line-height: 1;
        opacity: .75;
        color: white;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    .slick-prev {
        left: 0;
    }
    .slick-prev:before {
        content: "\f341";
    }
    .slick-next {
        right: 0;
    }
    .slick-next:before {
        content: "\f345";
    }

    /* DOTS
    ======================================= */
    .slick-dots {
        position: absolute;
        bottom: 0;
        display: block;
        width: 100%;
        padding: 0;
        margin: 0;
        list-style: none;
        text-align: center;
    }
    .slick-dots li {
        position: relative;
        display: inline-block;
        width: 20px;
        height: 20px;
        margin: 0 5px;
        padding: 0;
        cursor: pointer;
    }
    .slick-dots li button {
        font-size: 0;
        display: block;
        width: 20px;
        height: 20px;
        padding: 5px;
        cursor: pointer;
        border: 0;
        background: white;
        opacity: 0.3;
        border-radius: 50%;
    }
    .slick-dots li button:hover {
        opacity: 1
    }
    .slick-dots li.slick-active button {
        opacity: .75;
        color: black;
    }
