* {
  padding: 0;
  margin: 0;
}

body {
  font-family: 'Poppins', sans-serif !important;
}

a {
  text-decoration: none !important;
}

ul,
ol {
  list-style-type: none;
  margin: 0 !important;
}
header{
  background-color: #c0ddfb;
}
.head_top {
  text-align: right;
}

.head_tops ul li {
  display: inline;
  margin: 0 15px 0 0;
}

.head_top ul li {
  display: inline;
  margin: 0 5px 0 0;
}

.head_tops ul li i {
  margin: 0 10px 0 0;
}

.head_top ul li i {
  margin: 0 10px 0 0;
}

.head_top a {
  color: #000;
  font-size: 15px;
  background-color: #fff;
  padding: 5px 2px;
  border-radius: 5px;
}

.head_top a:hover {
  color: #fff;
  background-color: #ffc107;
  font-size: 15px;
}

.v-align {
  align-items: center;
}

.header_top {
  background-color: #000;
  color: #fff;
  padding: 10px 0;
}



.logo img {
  width: 40%;
}

.navbar {
  align-items: center;
  /* background: #000; */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: row;
  padding: 5px 0 !important;
}

.push-left {
  margin-left: auto;
}

/* Menu */
.hamburger {
  background: transparent;
  border: none;
  cursor: pointer;
  display: none;
  outline: none;
  height: 30px;
  position: relative;
  width: 30px;
  z-index: 1000;
}

@media screen and (max-width: 768px) {
  .hamburger {
    display: inline-block;
  }
}

.hamburger-line {
  background: #000;
  height: 3px;
  position: absolute;
  left: 0;
  transition: all 0.2s ease-out;
  width: 100%;
}

.hamburger:hover .hamburger-line {
  background: #000;
}

.hamburger-line-top {
  top: 3px;
}
.welcome img{
    width:100%;
    margin:0 0 15px 0;
}

.menu-active .hamburger-line-top {
  top: 50%;
  transform: rotate(45deg) translatey(-50%);
}

.hamburger-line-middle {
  top: 50%;
  transform: translatey(-50%);
}

.menu-active .hamburger-line-middle {
  left: 50%;
  opacity: 0;
  width: 0;
}

.hamburger-line-bottom {
  bottom: 3px;
}

.menu-active .hamburger-line-bottom {
  bottom: 50%;
  transform: rotate(-45deg) translatey(50%);
}

.nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: all 0.25s ease-in;
}

@media screen and (max-width: 768px) {
  .nav-menu {
    background: #fff;
    flex-direction: column;
    height: 235px;
    justify-content: center;
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9;
    transform: translatey(-100%);
    text-align: center;
  }

  .menu-active .nav-menu {
    transform: translatey(0%);
    opacity: 1;
  }
}

button:focus {

  outline: none !important;

}

.nav-menu .menu-item a {
  color: #000;
  display: block;
  font-size: 15px;
  font-weight: 500;
  /*  line-height: 30px;*/
  margin: 2px 15px;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-menu .menu-item a:hover {
  color: #ffc107;
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .nav-menu .menu-item a {
    font-size: 12px;
    margin: 8px;
  }
}

.sub-nav {
  border: 1px solid #ccc;
  display: none;
  position: absolute;
  background-color: #fff;
  padding: 5px 5px;
  list-style: none;
  width: 230px;
  z-index: 99;
}

@media screen and (max-width: 768px) {
  .sub-nav {
    position: relative;
    width: 100%;
    display: none;
    background-color: rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
  }
}

.nav__link:hover+.sub-nav {
  display: block;
}

.sub-nav:hover {
  display: block;
}

/*banner*/
  .banner{
    position:relative;
    width: 100%;
    float: left;
    height: 500px;
    margin: 0 0 50px 0;
  }
  .banner img{
    width: 100%;
  }
  .banner_in{
    background: url("../img/bnr2.jpg");
    width: 100%;
    float: left;
    height: 150px;
    text-align: center;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0 0 30px 0;
  }
  .banner_in h2 {
    font-size: 25px;
    color: #fff;
    padding: 60px 0;
  }
  .overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #00000052;
  width: 100%;
  height: 500px;
  color: #fff;
  overflow: hidden;
}

.slidertext {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: left;
}

.slidertext h1 {
  font-size: 45px;
  font-weight: 600;
  margin: 0 0 20px 0;
}

  .items {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 550px;
}

.item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  float: left;
  height: 500px;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.item.current {
  opacity: 1;
}

.item img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
/*end banner*/

.welcome{
    width: 100%;
    float: left;
    margin: 0 0 60px 0;
  }
.aboutus{
    width: 100%;
    float: left;
    margin: 0px 0 50px 0;
}
.partners{
    width: 100%;
    float: left;
    margin: 0px 0 50px 0;
}
.aboutus h3{
  font-size: 20px;
  color: #000;
  margin: 0 0 10px 0;
  padding: 10px;
  background-color: #c0ddfb;
}
.aboutus img{
  margin: 0 0 15px 0;
}
.partners img{
  width: 130px;
  height: 172px;
   margin: 0 0 15px 0;
}
.partnerbox h3{
  font-size: 17px;
  color: #000;
  margin: 0 0 10px 0;
  padding: 10px;
  background-color: #c0ddfb;
  font-weight:bold;
}
.partnerbox p{
  font-size: 13px;
  color: #2c2c2c;
  line-height: 20px;
}
.client h5{
  font-size: 17px;
  padding: 10px;
  background-color: #c0ddfb;
}
.clientbox h4{
   font-size: 16px;
   border-bottom: 1px #c0ddfb solid;
   padding: 10px;
/*   background-color: #c0ddfb;*/
}
.service{
    width: 100%;
    float: left;
    margin: 0px 0 30px 0;
}
.servicebox{
  padding: 15px;
  border: 1px #000 solid;
  margin: 0 0 15px 0;
}

.servicebox h4{
  font-size: 18px;
  color: #000;
  text-align: center;
  margin: 0 0 10px 0;
  padding: 10px;
  background-color: #c0ddfb;
}
.servicebox ul{
  padding-left: 16px;
}
.servicebox ul li{
  list-style-type: disc;
}
.middle{
  width: 100%;
  float: left;
  margin: 0 0 50px 0;
}

.middle ul{
  padding-left: 18px;
}
.middle ul li{
  list-style-type: disc;
  margin: 0 0 10px 0;
}

.middle h3{
  font-size: 25px;
  color:#043762;
  padding: 10px;
  background-color: #c0ddfb;
}

.footer {
  background: url("../img/footer.jpg");
  width: 100%;
  float: left;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 25px 0 0 0;
  color: #000;
  background-color: #c0ddfb;
  border-top: 1px #000 solid;
}

.logo {
  width: 47%;
}

.ftitle {
  color: #000;
  font-size: 25px;
  font-weight: 700;
  margin: 0 0 15px 0;
}

.footercontact {
  margin: 0 0 15px 0;
}

.footercontact p {
  margin: 0 0 15px 0 !important;
}

.socialicons p {
  display: inline;
  font-weight: 700;
}

.socialicons a {
  color: #000;
  font-size: 15px;
  /*background-color: #000;*/
  padding: 10px;
  border-radius: 5px;
}

.socialicons a:hover {
  color: #fff;
  background-color: #ffc107;
  font-size: 15px;
}

.links ul {
  padding-left: 0px;
  list-style-type: none;
}

.links ul li a {
  color: #000;
  transition: .5s;
}

.links ul li {
  margin: 0 0 10px 0;
}

.links ul li a:hover {
  color: #ffc107;
  transition: .5s;
  margin: 0 0 0 5px;
}

.foot {
  border-top: 1px #000 solid;
  padding: 15px 0 0 0;
  text-align: center;
  margin-top: 10px;
  font-weight: 700;
}

/*inner page*/
.client{
    width: 100%;
    float: left;
    margin: 0px 0 50px 0;
}
.clientbox{
   border-radius: 20px;
   padding: 25px 10px 10px 10px;
   box-shadow: 1px 1px 5px #0000004f;
   text-align: center;
   margin: 0 0 25px 0;
}
.clientbox h4{
  font-size: 20px;
}




@media screen and (max-width: 768px) {
  .logo img {
    width: 85%;
  }
.banner {
    width: 100%;
    float: left;
    height: 250px;
    margin: 0 0 50px 0;
}
  .hamburger {
    /*background: #000;*/
    height: 26px;
  }
.welcome {
    margin: 0 0 30px 0;
}
.aboutus img{
    width:100%;
}
  .slidertext h1 {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 20px 0;
  }

  .slidertext {
    position: absolute;
    width:70%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: left;
  }

  .head_tops ul li {
    display: block;
    margin: 0 0 10px 0;
  }

  .head_top,
  .head_tops {
    text-align: center;
    margin: 5px 0;
  }

  .items {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 250px;
  }

  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: #00000052;
    width: 100%;
    height: 250px;
    color: #fff;
    overflow: hidden;
  }
.item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
  .slidertext h6 {
    font-size: 11px;
    color: #ffc107;
    font-weight: 400;
    margin: 0 0 20px 0;
  }

  .about h1 span {
    font-size: 20px;
    font-weight: 600;
    color: #000;
  }

  .about h1 {
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin: 20px 0;
  }

  .about {
    width: 100%;
    text-align: center;
    float: left;
    overflow: hidden;
    margin: 10px 0 10px 0;
  }

  .about img {
    display: block;
    width: 100%;
    margin: 0 0 15px 0;
    height: 220px;
    border-radius: 15px;
  }

  .events h1 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
  }

  .admission {
    padding: 7px 18px;
    color: #fff;
    background-color: #000;
    font-size: 9px;
    font-weight: 600;
    border: 2px #000 solid;
    border-radius: 4px;
    transition: .5s;
  }

  .count {
    margin: 0px 0 15px 0;
  }

  .foot {
    font-size: 14px;
  }

  .tesimonial-slider {
    padding: 0px 0 0 0;
  }
}