@import url('https://fonts.googleapis.com/css2?family=Roboto');
*{
    margin:0;
    padding:0;
}
a{
    text-decoration: none;
}

:root{
    --bgcolor1:#3d3155;
    --textcolor:#fff;
    --orange:#f48529;
}
html, body{
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
}

.topheader{
    display: flex;
    flex-flow: column;
}
.topheadertop{
    z-index: 10;
    min-height: 20px;    
    background-color:var(--bgcolor1);
    color: var(--textcolor);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 4px;
}
.down, .up{
    display: none;
}
.iactive{
    display: block;
}
.topheadercontainer{
    position: absolute;
    background-color:var(--bgcolor1);
    color: var(--textcolor);
    z-index: 8;    
    width: 100%;
    transform: translateY(-200px);
}
.topheadertopdown{
    animation: slidedown 0.5s forwards;
}

@keyframes slidedown{
    0%{
        transform: translateY(-200px);
    }
    100%{
        transform: translateY(25px);
    }
}
.topheadertopup{
    animation: slideup 0.5s forwards;
}
@keyframes slideup{
    0%{
        transform: translateY(25px);
    }
    100%{
        transform: translateY(-220px);
    }
}

.topheaderleft{
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    padding: 5px;
}
.topheader span{
    display: block;
    padding:2px;
    font-size: 0.9rem;
}
.topheaderleft span a{
    color:#fff;
    padding :2px 5px;
   
}
.topheaderright{
    display: flex;
    justify-content: center;
    align-content: center;
    padding:5px;
    
}
.topheaderright span{
    font-size: 1.2rem;
}
.topheaderright span a{
    color:#fff;
    padding :2px 5px;
   
}

/* Main Header */
.mainheader{
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}
.brandcontainer{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.brandcontainer a img{
    height: 60px;
    width: auto;
    padding:5px 10px;
}
.navbar-toggler {
	border: 2px solid var(--bgcolor1);
	border-radius: 0;
	margin: 15px 15px;
    padding: 8px 8px;
    border-radius: 5px;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
}

.navbar-toggler span {
	background: var(--bgcolor1);
	display: block;
	width: 22px;
	height: 2px;
	margin: 0 auto;
	margin-top: 0px;
	margin-top: 0px;
	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
	border-radius: 1px;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
}

.navbar-toggler span+span {
	margin-top: 5px;
}

.navbar-toggler:hover {
	border: 2px solid var(--bgcolor1);
}

.navbar-toggler:hover span {
	background: var(--bgcolor1);
}
.navbar{
    width: 100%;
}
.nav{
    list-style: none;    
    background-color: var(--bgcolor1);
    color: #fff;
    display: none;
}
.navitem a{
    color:var(--textcolor);
    display: block;
    padding: 10px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}
.navitem:hover a{
    color:var(--orange);
}
.subnav{
    display: none;    
}
.subnavitem a{
    color:var(--textcolor);
    display: block;
    padding: 10px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    width: 100%;
}
.subnavitem:hover a{
    color:var(--textcolor);
}
/* Slider */

.slider, .slide{
    width: 100%;
    height: 400px;
}
.slide{
    position: absolute;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #aaa;
    background-blend-mode:screen;
}
.s1{
    background-image: url("../images/s1.jpg");
    animation: slide1 15s linear infinite;
    
}
.s2{
    background-image: url("../images/s2.jpg");
    animation: slide2 15s linear infinite;
}
.s3{
    background-image: url("../images/s3.jpg");
    animation: slide3 15s linear infinite;
}

@keyframes slide1{
    0%{
        visibility: visible;
    }
    33.33%{
        visibility: hidden;
    }
    66.66%{
        visibility: hidden;
    }
    100%{
        visibility: visible;
    }
}
@keyframes slide2{
    0%{
        visibility: hidden;
    }
    33.33%{
        visibility: hidden;
    }
    66.66%{
        visibility: visible;
    }
    100%{
        visibility: hidden;
    }
}
@keyframes slide3{
    0%{
        visibility: hidden;
    }
    33.33%{
        
        visibility: hidden;
    }
    66.66%{
        visibility: hidden;
    }
    100%{
        visibility: visible;
    }
}
.textbox{    
    position: absolute;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-top: 150px;
    text-align: center;
    width: 100%;
}
.textbox h3{
    font-size: 1.2rem;
    animation:textdown 5s infinite;
    transform: translateY(-50px);
    opacity: 0;
}
@keyframes textdown{
    10%{
        transform: translateY(0px);
        opacity: 1;
    }
    80%{
        transform:translateY(0px);
        opacity:1 ;
    }
    95%{
        transform: translateY(-50px);
        opacity: 0;
    }   
    100%{
            transform: translateY(-50px);
            opacity: 0;
    }
}


.textbox h1{
    font-size: 2.2rem;
    animation:textscale 5s infinite;
    
    opacity: 0;
    
}
@keyframes textscale{
    30%{
       
        opacity:1 ;
    }
    80%{
        
        opacity:1 ;
        
    }
    95%{
       
        opacity:0 ;
        
    }
    100%{
        
        opacity:0 ;
    }
}

.textbox p{
    font-size: 1.2rem;
    animation:textup 5s infinite;
    transform: translateY(50px);
    opacity: 0;
}
@keyframes textup{
    10%{
        transform: translateY(0px);
        opacity: 1;
    }
    80%{
        transform:translateY(0px);
        opacity:1 ;
    }
    95%{
        transform: translateY(50px);
        opacity: 0;
    }   
    100%{
            transform: translateY(50px);
            opacity: 0;
    }
}
.slide img{
    display:none;
}

/* Welcome Section */
.welcome{
   padding: 40px ;
   display: flex;
   flex-flow: column;
   align-items: center;
   justify-content: center;
   text-align: center;
   
}
.welcome h3{
    font-size: .9rem;
    margin-bottom: 10px;
    padding-bottom:5px ;
    border-bottom: 1px solid rgba(0, 0, 0, 0.8);
}
.welcome h1{
   font-size: 1.2rem;
    margin-bottom: 20px;
}
.welcome p{
    font-size: .9rem;
    text-align: justify;
}
.welcome img{
    display: none;
}
 /* wcu */
.wcusection{
    background-color: #3d3155;
    color:#fff;
  }
  .wcu{
    padding: 40px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    
  }
  .wcu-left{
      padding:20px 0;
  }
  .wcu-left h3{
    font-size: 1.2rem;
    margin-bottom: 20px;
    
} 
.wcu-left p{
    font-size: .9rem;
    text-align: justify;
}
.wcu-left ul{
    margin-top:20px;
    margin-left:20px;
    text-align: left;
    font-size: .9rem;

}
.form{
    background-color: var(--orange);  
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding:20px;
    border-radius: 20px;
}
.form input,.form textarea, .form button {
    padding: 5px 10px;
    border-radius:10px ;
    margin: 5px;
    width: 80%;
}
.form button{
    background-color: var(--bgcolor1);
    color: var(--textcolor);
}

/* Service */

.services{
    display:flex;
    flex-flow: column;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    text-align: center;

}
.services h3{
    margin-bottom: 10px;
}
.services p{
    margin-bottom: 20px;
}
.sl, .sm , .sr{
    display: flex;
    flex-flow: column;
}
.sm{
    display: none;
}
.cardsl{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding:15px 5px;
}
.cardsr{
    display: flex;
    justify-content:flex-end;
    align-items: center;
    padding:15px 5px;
    flex-flow: row-reverse;
}
.cardsr .srtext
{
    text-align: left;
}
.cardsl .sltext{
    text-align: right;
}
.cardsl .slimg{
    display: block;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.13);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.13);
    margin-left:20px;
}
.cardsr .srimg{
    display: block;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.13);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.13);
    margin-right:20px;
}
.cardsl img , .cardsr img{
    width:50px;
    height: auto;
}
 

/* top footer */

.topfootersection{
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color:#fff;
   
}
.topfooter{
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-content: center;
    min-height: 50px;
    padding: 40px;
}

.tfl{
    text-align: center;
}
.tfl h3{
    margin-bottom: 20px;
}
.tfm{
    padding:20px 0px ;
}
.tfr{
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-content: center;
    padding:20px 0px ;
    text-align: center;
}
.tfr ul{
    list-style: none;
    padding:20px;
}
.tfr ul li a{
    color:#fff;
}
.bfootersection{
    background-color: rgba(0, 0, 0, .9);
    color: #FFF;
}
.bfooter{
    text-align: center;
    padding: 10px;
}
/* Destop CSS */
@media only screen and (min-width: 768px) {
    .topheader{
        flex-flow: row;
    }
    .topheadertop{
        display:none;
    }
    .topheadercontainer{
        position: relative;
        transform: translateY(0px);
        display: flex;
        flex-flow: row;
        justify-content: space-between;
        align-items: center;   

    }
    .topheadersection{
        background-color: var(--bgcolor1);
    }
    .topheaderleft, .topheaderright{
        width: auto;
        flex-flow: row;
    }
    .container{
        width:90%;
        margin: 0 auto;
    }
    
    /* Main Header */
    .mainheader{
        flex-flow: row;
    }
    .navbar{
        display: block;
    }
    .navbar-toggler{
        display: none;
    }
    .nav{
        display: flex;
        flex-flow: row;
        justify-content: flex-end;
        background-color: rgba(0, 0, 0, 0);
    }
    .navitem a{
        color:var(--bgcolor1);
    }
    .subnav{
        list-style: none;
        position: absolute;
        z-index: 15;
        background-color: var(--bgcolor1);
        transform: translateY(20px);
    }
    .subnavitem a{
        color: var(--orange);
        width: auto;
    }
    .textbox{
        justify-content: start;
        text-align: left;
        align-items: flex-start;
        padding-left:100px;
        width: 600px;
    }
    .textbox h3{
        font-size: 1.4rem;
    }
    .textbox h1{
        font-size: 2.5rem;
    }
    .textbox p{
        font-size: 1.4rem;
    }
    .slide img{
        display:block;
        position: absolute;
        height: 400px;
        width: auto;
        bottom: 0;
        right: 150px;
        animation: simage 5s infinite;
        transform: scale(0.9);
        opacity: 0;
    }
    @keyframes simage {
        0%{
            transform: scale(0.9);
            opacity: 0;
        }
        20%{
            transform: scale(1);
            opacity: 1;
        }
        80%{
            transform: scale(1);
            opacity: 1;
        }
        100%{
            transform: scale(0.9);
            opacity: 0;
        }
    }
    .fixed-menu { 
        top:0px;     
        width: 100%;  
        position: fixed;
        box-shadow: 0px 3px 6px 3px rgba(0, 0, 0, 0.06);
        -webkit-animation-duration: 1s;
        animation-duration: 1s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        -webkit-animation-name: fadeInDown;
        animation-name: fadeInDown;
        background: #fff;
        z-index: 20;
    }

    /* Welcome */
    .welcome{
        padding: 40px 80px;
        margin: 0 auto;
        padding-bottom: 40px;
    }
    .welcome h3{
        font-size: 1.6rem;
        margin-bottom: 10px;
        padding-bottom:5px ;
        border-bottom: 1px solid rgba(0, 0, 0, 0.8);
        font-weight: 200;
    }
    .welcome h1{
       font-size: 2rem;
        margin-bottom: 10px;
        font-weight: 200;
    }
    .welcome p{
        font-size: 1rem;
        font-weight: 200;
    }
    .welcome img{
        display: block;
        width: auto;
        height: 100%;
        padding: 30px 10px;
    }

    /* WCU */
   
     .wcu{
         flex-flow: row;
         
     }
     .wcu-left{
         padding: 0 40px;
         text-align: left;
     }
     .wcu-left p{
        font-size: 1rem;
        font-weight: 200;
     }
     .wcu-left h3{
        display:block;
        font-size: 1.6rem;
        font-weight: 200;
        margin-bottom: 20px;
        padding-bottom:5px ;
        border-bottom: 1px solid rgba(255, 255, 255, 0.8);
     }
     .wcu-left ul{
        font-size: 1rem;
        font-weight: 200;
     }
     .form{
         margin-top: 0;
     }
    /* sevices */
    .services{
        flex-flow: column;
    }
    .cardcontainer{
        display: flex;
        flex-flow: row;
        margin-top: 40px;
    }
    .sl, .sm , .sr{
        width: 33%;
    }
    .sm{
        display: flex;
    }
    .sm img{
        width:300px;
        height: auto;
        margin: 0 auto;
    }
     
    /* top footer */
    .topfooter{
        flex-flow: row;
        justify-content: space-between;
    }
    .tfl , .tfm, .tfr{
        width: 33%;
        padding:0px;
        text-align: left;
    }
    .tfr{
        display :flex;
        justify-content: flex-end;
        align-items: center;
    }
    .bfootersection{
        background-color: rgba(0, 0, 0, 0.9);
        color: #fff;
    }
    
}