@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600&display=swap');

:root{
    --primary-color:rgb(193, 47, 255);
    --secondary-color:darkblue;
    --primary-grad-color:linear-gradient(to left,darkviolet,deepskyblue);
}

*{
    box-sizing: border-box;
}

body{
    padding: 0;
    margin: 0;

    font-family: 'Source Sans Pro', sans-serif;
}

.row{
    margin: 0;
}

/* Start Header  */

/* Start Header Intro */

header{
    height: 80vh;
    background: var(--primary-grad-color);
    position: relative;
}


.headerintros{
    background-color: var(--primary-color);
    color:#fff;
    padding: 15px 0;
    display: none;
}

@media (min-width:1200px) {
    .visiblelgs{
        display: block;
    }
}

.infos{
    display: flex;
    justify-content: space-between;
    align-items: center;

    font-size: 14px;
    font-weight: bold;
}

.header-icons a{
    color: #fff;
    margin: 0 10px;

}

/* End Header Intro */

/* Start nav bar */
nav{
    position: relative;
    z-index: 1;
}


.menustyles li a{
    color: #000;
    font-size:13px;
    letter-spacing: 1.5px;

    transition: .5s;
}

.menustyles li a:hover{
    color: var(--primary-color);
}

.navbuttons{
    border:none;
}

.navbuttons:hover{
    box-shadow: none;
}

.lines1,.lines2,.lines3{
    width: 17px;
    height: 2px;
    margin: 3px;
}

.crossxs .lines1{
    transform: rotate(-45deg) translate(-3px,4px);
}

.crossxs .lines2{
    opacity: 0;
}

.crossxs .lines3{
    transform: rotate(45deg) translate(-3px,-4px);
}
/* End nav bar */

/* Start banner */
.banners{
    width: 90%;
    position:absolute;
    left: 50%;
    top: 50%;

    transform: translate(-50%,-50%);
}

.bannerheaders{
    font-weight: bold;
    letter-spacing: 3px;
    animation: bannerani 2s;
}

.bannerparagraphs,
.banner-btn{
    animation: bannerani 2s;
    animation-delay: .5s;
    animation-fill-mode: backwards;
}

@keyframes bannerani{
    from{
        transform: translateY(100px);
        opacity: 0;
    }
    to{
        transform: translate(0px);
        opacity: 1;
    }
}

/* End banner */

.studentgroups{
    width: 40%;
    z-index: 1;

    position: absolute;
    left: 0;
    bottom: 0;
}

.waves{
    width: 100%;
    position: absolute;
    bottom: -5px;
    left: 0;

    z-index: 2;
}
/* Start Header section */


/* Start Students Counter Section */

.counters{
    width: 100%;
    height: 20vh;

    font-weight: bold;
    letter-spacing: 2px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.counteritems{
    float: left;
    width: 25%;
    text-align: center;

    border-right:1px solid rgba(0,0,0,0.4) ;
}

.counteritems:last-child{
    border: none;
}

.counteritems .fas{
    background: var(--primary-grad-color);
    color:transparent;
    -webkit-background-clip: text;

}

.counteritems h5{
    font-size: 15px;
    font-weight: bold;
}

/* End Students Counter Section */

/* Start About Us section */
.aboutuss{
    background-image:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url('../assets/img/banner/banner4.jpg');
    background-repeat: no-repeat;
}

.aboutuss ul li{
    list-style-type: none;
    background-color: var(--secondary-color);
    margin: 20px 0;
}

/* End About Us section */

/* Start Faculty */
.faculties{
    background-color: var(--secondary-color);
}

.flip-cards{
    width: 300px;
    height: 300px;

    perspective: 1000px;

}

.flip-card-inners{
    width: 100%;
    height: 100%;
    text-align: center;
    box-shadow: 10px 0 10px rgba(0,0,0,0.5);

    transform-style: preserve-3d;
    transform: rotateY(-45deg) scale(0.7);

    transition: transform .5s;
}

.flip-cards:hover .flip-card-inners{
    transform: rotateY(180deg);
}

.flip-card-fronts,.flip-card-backs{
    width: 100%;
    height: 100%;
    position: absolute;

    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.flip-card-backs{
    background-color: steelblue;
    transform: rotateY(180deg);
}

.socialicons a{
    color: #fff;
    border: 1px solid #f4f4f4;
    padding: 5px;
    margin: 0 5px;
}

.socialicons a:hover{
    background-color: blue;
}
/* End Faculty */

/* Start pricing section */
.pricingboxes{
    background-color: #eee;
    text-align: center;
    transition: all .5s;

}

.pricingboxes:hover{
    transform: translateY(-20px);
}

.price-headers{
    background-color: var(--secondary-color);
    color: #fff;
    padding: 10px 0;

}

.prices{
    font-size: 3rem;
    font-weight: bold;
    background: url('./../assets/img/icon/pricebg.png');
    background-position: center;
    background-repeat: no-repeat;
    line-height: 160px;
}

.price-items li{
    margin: 10px 0;
}
/* End pricing section */

/* Start location area section */
.libcards{
    perspective: 1000px;
    position: relative;
    overflow: hidden;
}

.libcontents{
    width: 0%;
    height: 100%;
    background-color: #444;
    color: #fff;

    position: absolute;
    left: 0;
    top: 0;

    transform: rotateY(-90deg);
    transform-origin: left center;

    transition: all .3s;

}

.libcards:hover .libcontents{
    width: 70%;
    transform: rotateY(0deg);
}

.btn-infos{
    width: 50%;
    background-color: steelblue;
    color: #fff;
    text-align: center;
    text-decoration: none;

    position: absolute;
    left: 10px;
    bottom: 10px;


}

.btn-infos:hover{
    background-color: var(--secondary-color);
    color: #fff;
}


/* End location area section */

/* Start Features Section */
.features{
    background-color: var(--secondary-color);
}

.feas img{
    transform:rotateY(0) scale(0.5);
    transition: transform .5s;
}

.feas:hover img{
    transform: rotateY(1turn) scale(1);
}

.feas p {
    font-size: 12px;
    text-align: center;
}


/* End Features Section */

/* Start Rating Section */

.headings {
    font-size: 25px;
    margin-right: 25px;
  }
  
  .fa-star {
    font-size: 25px;
  }
  
  .fills {
    color: orange;
  }
  
  .rows {
    display: flex;
    flex-wrap: wrap;
  }
  
  .lefts {
    width: 20%;
    margin-bottom: 10px;

    z-index: 1;
  }
  
  .middles {
    width: 60%;
  }
  
  .rights {
    width: 20%;
    margin-bottom: 10px;
    text-align: right;
  }
  
  .bars-container {
    width: 100%;
    background-color: #f1f1f1;
  }
  
  .bars-1 {
    width: 60%;
    height: 18px;
    background-color: green;
  }
  
  .bars-2 {
    width: 30%;
    height: 18px;
    background-color: blue;
  }
  
  .bars-3 {
    width: 10%;
    height: 18px;
    background-color: skyblue;
  }
  
  .bars-4 {
    width: 5%;
    height: 18px;
    background-color: orange;
  }
  
  .bars-5 {
    width: 15%;
    height: 18px;
    background-color: red;
  }

/* End Rating Section */

/* Start Subscribe Section */
.subscribes{
    background-image: linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.2)),url('./../assets/img/etc/student1.png');
    background-repeat: no-repeat;
    background-position: 90%;
}


@media(max-width:992px){
    .subscribes{
        background-image: linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.2));
    }
}

.input-group-text{
    background-color: royalblue;
    color: #fff;
}

.squareareas{
    position: relative;
    overflow: hidden;
}

.sqboxes{
    width: 100%;
    height: 100%;
}

.square{
    width: 70px;
    height: 70px;
    background-color: #f2f2f2;

    position: absolute;
    left: 0;
    bottom: -100px;

    animation: sqani 3s infinite ease-in-out;
}

@keyframes sqani{
    0%{
        bottom:-100px;
    }

    100%{
        bottom: 100%;
        transform: rotate(180deg);
        opacity: 0;
    }
}


.square:nth-child(1){
    width: 70px;
    height: 70px;
    left: 7%;

    animation-delay: 1s;
}
.square:nth-child(2){
    width: 62px;
    height: 62px;
    left: 15%;
    
    animation-delay: 4s;

}
.square:nth-child(3){
    width: 82px;
    height: 82px;
    left: 45%;

    animation-delay: 7s;

}
.square:nth-child(4){
    width: 70px;
    height: 70px;
    left: 31%;

    animation-delay: 5s;

}
.square:nth-child(5){
    width: 70px;
    height: 70px;
    left: 55%;

    animation-delay: 15s;

}
.square:nth-child(6){
    width: 60px;
    height: 60px;
    left: 67%;

    animation-delay: 5s;

}
.square:nth-child(7){
    width: 90px;
    height: 90px;
    left: 85%;
    animation-delay: 8s;

}
.square:nth-child(8){
    width: 70px;
    height: 70px;
    left: 55%;
    animation-delay: 3s;
}
.square:nth-child(9){
    width: 70px;
    height: 70px;
    left: 10%;

    animation-delay: 6s;

}
.square:nth-child(10){
    width: 55px;
    height: 55px;
    left: 77%;
    animation-delay: 3s;

}

/* End Subscribe Section */

/* Start Footer Section */
.footerlinks{
    color: #eee;
    font-size: 13px;
    text-decoration: none;
}

.footericons{
    margin: 15px 3px;
    width: 25px;
    height: 25px;
    border: 1px solid #eee;
    border-radius: 50%;
    text-align: center;
    line-height: 25px;
}

.footericons:hover{
    border: 1px solid var(--bs-blue);
}

.backtotopbtn{
    background-color: #333;
    color: #fff;
    padding: 10px;
}


.backtotopbtn:hover{
    background-color: #555;
}
/* End Footer Section */

/* Start Login Box */
.open-btn{
    width:30px;
    height:30px;
    border-radius:50%;
    border:none;
    background-color:#555;
    color:#fff;

    position:fixed;
    bottom:20px;
    right:20px;
    z-index:10;

    opacity:0.8;

}

.open-btn:hover{
    opacity: 1;
}

.form-popup{
    border:3px solid #f1f1f1;
    background:#fff;
    border-radius:4px;   
    position:fixed;
    bottom:70px;
    right:20px;
    z-index:100;
    display:none;

    transition: all .3s;
}

.form-container{
    width: 300px;
    padding: 10px;
   
}

.form-group input[type=email], .form-group input[type=password]{
    width: 100%;
    background-color: #f1f1f1;
    border: none;

    padding: 15px;
    margin: 10px 0;
}

.form-group input[type=email]:focus,.form-group input[type=password]:focus{
    background-color: #ddd;

}

.sticknotes a{
    width: 100px;
    background-color: steelblue;
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    border-radius: 0 5px 0 5px;
    padding: 15px;

    position: fixed;
    left: -80px;

    z-index: 100;

    transition: all .3s;
}

.sticknotes a:hover{
    left: 0;
}

.sticknotes .aboutus{
    top: 200px;
    background-color: green;
}

.sticknotes .pages{
    top:260px;
    background-color: skyblue;
}

.sticknotes .news{
    top: 320px;
    background-color: tomato;
}

.sticknotes .contact{
    top: 380px;
    background-color: darkred;
}


/* End Login Box */