/*   ////// // //    /////  /////
    |||||||||||||   |||||| ||||||
      |||  ||||||   |||///||///
      |||  ||||||   |||||| |||||
      |||  ||||||///|||/// ////||
      |||  |||||||||||||||||||||   */

    .carousel {
        margin-bottom: 0px;
        height: auto;
    }

    .ghosted {
        opacity: 0.5;
    }

    .tile-content>a>img  {
        width: 100%;
    }

    .tile-content {
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .tile.col-sm-4 .tile-content>a>img  {
        object-fit: cover;
    }

    .tile {
        position: relative;
        padding: 7.5px 15px;
        text-align: center;
        color: white;
        overflow: hidden;
    }

    .tile-basic-button {
        display: grid;
        align-items: center;
        padding: 25px;
        transition: all 0.3s ease;
    }

    .text-large {
        font-size: 5em;
    }

    .text-medium {
        font-size: 2em;
    }

    .text-small {
        font-size: 1.5em;
    }

    .text-bottom {
        bottom: 7.5px;
       
        padding: 2px 0;
        width: calc(100% - 30px);
        transition: all 0.3s ease;
    }

    .tile-content>a>.tile-text {
        position: absolute;
    }

    .tile-content>a>.tile-text.centered-text {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .squeeze-on-hover {
        transition: all 0.3s ease;
    }

    .squeeze-on-hover:hover {
        padding: 35px 25px;
    }

    .tile-button {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100px;
        transition: all 0.3s ease;
    }

    .tile-button a {
        text-decoration: none !important;
    }
    
    .tile-darken {
        transition: all 0.3s ease;
    }

    .tile-darken:hover {
        filter: brightness(0.8);
    }

    .tile-brighten {
        transition: all 0.3s ease;
    }

    .tile-brighten:hover {
        filter: brightness(1.2);
    }

    .carousel-control{
        /* top: 7.5px !important; */
        
        transition: all 0.3s ease;
    }

    .centered-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .carousel-control.right {
        right: 0;
        left: auto;
        background-image: -webkit-linear-gradient(left,rgba(0,0,0,0) 0,rgba(0,0,0,0) 100%);
        background-image: -o-linear-gradient(left,rgba(0,0,0,0) 0,rgba(0,0,0,0) 100%);
        background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,0)),to(rgba(0, 0, 0, 0)));
        background-image: linear-gradient(to right,rgba(0,0,0,0) 0,rgba(0,0,0,0) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#00000000', GradientType=1);
        background-repeat: repeat-x;
    }

    .carousel-control.left {
        left: 0;
        right: auto;
        background-image: -webkit-linear-gradient(left,rgba(0,0,0,0) 0,rgba(0,0,0,0) 100%);
        background-image: -o-linear-gradient(left,rgba(0,0,0,0) 0,rgba(0,0,0,0) 100%);
        background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,0)),to(rgba(0, 0, 0, 0)));
        background-image: linear-gradient(to right,rgba(0,0,0,0) 0,rgba(0,0,0,0) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#00000000', GradientType=1);
        background-repeat: repeat-x;
    }

    .carousel-control.right:hover {
        background-image: -webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);
        background-image: -o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);
        background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));
        background-image: linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
        background-repeat: repeat-x;
    }

    .carousel-control.left:hover {
        background-image: -webkit-linear-gradient(right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);
        background-image: -o-linear-gradient(right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);
        background-image: -webkit-gradient(linear,right top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));
        background-image: linear-gradient(to left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
        background-repeat: repeat-x;
    }
    
    
    @media (min-width: 768px) {

        .tile {
            padding: 7.5px;
        }

        .text-bottom {
            width: calc(100% - 15px);
        }

    }

    .carousel-inner>.item>img {
        position: relative !important; 
        top: auto !important; 
        left: auto; 
        min-width: 100%;
    }


    .carousel .item {
        height: auto !important;
        /*background-color: #777;*/
        overflow: hidden;
    }

    @media (min-width: 992px) {

        .text-small {
            font-size: 1.25em;
        }

    }
