
/* Slideshow container */
#container {
    width: 100%;
    position: relative;
    background-color: aqua;
}

.slide {
    opacity: 0; 
    position: absolute; 
    top: 0; 
    left: 0;
    -webkit-transition: opacity 2s linear;
    -moz-transition: opacity 2s linear;
    -o-transition: opacity 2s linear;
    transition: opacity 2s linear;
}

.showMe{
    opacity: 1;
}

.intro-text .text {
    padding-top: 40px;
    padding-bottom: 40px;
    font-size: 18px;
    text-align:center;
}

.homepage>.slideshow
{
    width: 100%;
    /* To Keep Aspect ratio */
    height: 32vw;       
}

.homepage>.slideshow-mobile
{
    width: 100%;
    /* To Keep Aspect ratio */
    height: 65vw;       
    /* height: auto; */
    display: none;
}

.homepage .banner-slide
{
    width: 100%;
    height: 100%;
    display: block;
}

@media (max-width: 900px){
    .homepage>.slideshow
    {
        display: none;

    }
    .homepage>.slideshow-mobile
    {
        display: block;
        
    }

    .intro-text .text {
        padding-left: 20px;
        padding-right: 20px;
    }

    .made-smaller img {
        object-position: 0px -3px;
        margin-bottom: -3px;
    }
}

@media (min-width:1900px){
    .made-smaller img {
        object-position: 0px -20px;
        margin-bottom: -20px;
    }
}