/* CSS style for KHUPA webpage */
body {
    margin: 0%;
    /*background: -webkit-gradient(linear, left top, left bottom, from(#535353), to(rgb(204, 204, 204))) fixed;*/
    background: url(img/bg.jpg);

}

footer {
    text-align: center;
    padding: 1%;
    background-color: #333;
    color: white;
    margin-bottom: 0;
}

#main {
    height: auto;

    margin-left: 2%;
    margin-right: 2%;
    background-color: rgba(255, 255, 255, 0.8);
}

.content {
    padding: 1.5%;
    margin: auto;
}

::selection {
    color: tomato;
    background-color: cyan;
}

#board {
    text-align: center;
}

/*items of main page */
#items {
    /*width: 80px;*/
    /*height: 50px;*/
    margin: 1%;
    display: inline-block;
    text-align: center;
    padding: 40px 50px;
    /*font-size: x-large;*/
    transition: 0.75s;
    border-radius: 15%;
}

#items:hover {
    padding: 40px 70px;
    border-radius: 0%;
    box-shadow: 0 0 7px #000000;

}

@media only screen and (max-width: 600px) {
    #items {
        font-size: 11px;
        /*width: max-content;*/
        /*height: 1.5%;*/
        margin: 1%;
        display: inline-block;
        text-align: center;
        padding: 2% 2%;
        /*font-size: x-large;*/
        transition: 0.75s;
        border-radius: 15%;
    }

    #items:hover {
        padding: 2% 6%;
        border-radius: 0%;
        box-shadow: 0 0 7px #000000;

    }
}




/* CSS style for navigator */
/*######################################################################################################################################*/


#navbar {
    overflow: auto;
    height: max-content;
    background-color: #333;
    margin: auto;
}


#navbar a {
    float: right;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 1% 2%;
    text-decoration: solid;
    font-size: large;
}

@media only screen and (max-width: 600px) {
    #navbar a {
        float: right;
        display: block;
        color: #f2f2f2;
        text-align: center;
        padding: 1% 2%;
        text-decoration: solid;
        font-size: 20px;

    }
}

#navbar a h6 {
    margin: 0%;
    font-size: x-large;
}

#navbar a:hover {
    background-color: #ddd;
    color: black;
}

#navbar a.activet {
    background-color: #134c83;
    color: white;
}



.sticky {
    position: fixed;
    z-index: 100;
    top: 0;
    width: 100%;
}

.sticky+.content {
    padding-top: 2%;
}


/*CSS style for slider */
/*######################################################################################################################################*/


/* Slideshow container */
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
    margin-top: 5%;
    box-shadow: 0 0 8px #000000;

}

/* Caption text */
.text {
    color: #ff0000;
    
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.dot {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active {
    background-color: #717171;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
    .text {
        font-size: 11px
    }
}



/*CSS style for aboutUs */
/*######################################################################################################################################*/

#aboutUs {
    height: auto;

    margin-left: 2%;
    margin-right: 2%;
    background-color: rgba(255, 255, 255, 0.8);
}

#intro{
    overflow: auto;
    display: inline-block;
    height: max-content;
    margin: 0.1%;
}

#intro img{

    display: inline-block;
    height: 200px;
    width: 200px;
    margin: auto;
    border-radius: 50%;
    transition: 0.75s;
}

#intro img:hover{

    display: inline-block;
    height: 220px;
    width: 220px;
    border-radius: 10%;
    box-shadow: 0 0 8px #000000;
}

#intro p{
    bottom: 0;
    display: inline-block;
    text-align: center;
    font-size: medium;
    margin: 1%;

}

/*CSS style for News */
/*######################################################################################################################################*/

#news {
    height: auto;

    margin-left: 2%;
    margin-right: 2%;
    background-color: rgba(255, 255, 255, 0.8);
}