

	
@media (min-width: 767px) {
	

#bannermain{
    height: auto;
    width: 100%;
    overflow: hidden;
    position: fixed;
    z-index: 999999;
    top: 24%;
    display: inline-flex;
    justify-content: center;
    border: 0;
    cursor:pointer;
    opacity: 1;
    transition: all 0s ease 0s;
}

.imagemain{
    width: 100%;
    max-width: 800px;
    height: 100%;
    max-height: 450px;
    min-height:300px;
    border: 4px solid #07ff5d;
    border-radius: 20px;
}



#banner a {
    height: 100%;
    width: 100%;
    display: block;
    position: relative;
    overflow: hidden;
    animation: 1s fadein ease-in-out;
    animation-fill-mode: forwards;
}




}



@media (max-width: 767px) {



#bannermain{
    overflow: hidden;
    position: fixed;
    z-index: 999999;
    top: 33%;
    display: inline-flex;
    justify-content: center;
    transition: all 0s ease 0s;
}

.imagemain{
    /* width: 80%; */
    /* height: 50%; */
    max-height: 450px;
    border: 4px solid #07ff5d;
    border-radius: 20px;
}


#banner a {
    height: 100%;
    width: 100%;
    display: block;
    position: relative;
    overflow: hidden;
    animation: 1s fadein ease-in-out;
    animation-fill-mode: forwards;
}


}



@keyframes fadein {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


