@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;1,600&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}
.contener{
    width: 100%;
    height: 100vh;
    background-position: center;
    background-size: cover;
}
.home{
  
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)), url(images/unnamed.jpg);
}
.logo{
    width: 235px;  
    cursor: pointer;
    margin-top: -10px;
}
.logo img{
    width: 100%;
}

.navbar{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin: auto;
    padding: 40px;
    display: flex;
    margin-top: 20px;
}
.active{
  color: yellow;
}
.nav-links{
  display: flex;
  align-items: center;
  margin-left: 20%;
}
.nav-links li{
  list-style: none;
  display: inline-block;
  margin: 0 35px;
  position: relative;
  cursor: pointer;
}
.nav-links li a{
  text-decoration: none;
  color: #fff;
  font-size: 20px;
}
.nav-links li a.active{
  color: #ffff00;
}
.nav-links li::after{
  content: '';
  height: 3px;
  width: 0;
  background: #009688;
  position: absolute;
  left: 0;
  bottom: -10px;
  transition: 0.5s;
}
.nav-links li:hover:after{
  width: 100%;
}
.news-contener{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 4px 8px -4px rgba(0,0,0,0.3);
}
.news-contener .title{
  position: absolute;
  background: #df2020;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 24px;
  color: #fff;
  font-weight: bold;
  z-index: 200;
}
.news-contener ul{
  display: flex;
  list-style: none;
  margin: 0;
  animation: scroll 80s infinite linear;
}
.news-contener ul li{
  white-space: nowrap;
  padding: 10px 24px;
  color: #fff;
  position: relative;
}
.news-contener ul li::after{
  content: " ";
  width: 1px;
  height: 100%;
  background: #b8b8b8;
  position: absolute;
  top: 0;
  right: 0;
}
.news-contener ul li:last-child::after{
  display: none;
}
@keyframes scroll{
  from {
    transform: translateX(100%);
  }
  to{
    transform: translateX(-6500px);
  }
}
.content h1{
    font-weight: 600;
    text-align: center;
    justify-content: center;
    font-size: 40px;
    background: linear-gradient(90deg, #ff0000, #ffff00, #ff00f3, #0033ff, #ff00c4,#ff0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animate 1.5s linear infinite;
}
@keyframes animate {
    100%{
        filter: hue-rotate(360deg);
    }
}
.content{
  width: 100%;
  position: absolute;
  margin-top: 28%;
  transform: translateY(-50%);
  text-align: center;
  color: #fff;
}
.btn_area{
  display: flex;
  padding: 50px;
}
.content p{
  padding: 10px 40px;
}
.btn{
  margin-left: 250px;
}
.content a:link, a:visited {
  background-color: white;
  color: black;
  border: 2px solid green;
  border-radius: 25px;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}
.content a:hover {
  background-color: green;
  color: white;
}
.menu-bar{
  position: absolute;
  top: 55px;
  right: 40px;
  width: 40px;
  cursor: pointer;
  display: none;
}
.about_1{
  margin-top: 0px;
}
@media only screen and (max-width: 900px){
  .logo{
    position: absolute;
    top: 40px;
    left: -15px;
    width: 140px;
    margin-left: 30px;
  }
  .navbar{
    padding: 0;
    margin-top: 10px;
  }
  .nav-links{
    margin-top: 22px;
  }
  .nav-links li{
    margin: 35px 20px;
  }
  .news-contener .title{
    padding: 0 15px;
  }
  .news-contener ul li{
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 600;
  }
  .content h1{
    font-size: 23px;
    margin-top: -3pxpx;
  }
  .content{
    top: 50px;
  }
  .content p{
    font-size: 10px;
    margin: 0 auto;
    padding: 1px 20px;
  }
  .content a{
  font-size: 12px;
  }
  .btn{
    margin-left: 90px;
  }
}
@media only screen and (max-width: 480px){
.navbar{
  padding: 0;
}
.nav-links{
  flex-direction: column;
  width: 100%;
  height: 100vh;
  justify-content: center;
  background: rgb(128, 118, 119);
  margin-top: -900px;
  transition: all 0.5s ease;
  z-index: 9;
  margin-left: 0%;
}
.logo{
  width: 100px;
  margin-top: 5px;
}
.news-contener .title{
  padding: 0 15px;
}
.news-contener ul li{
  padding: 5px 15px;
}
.mobile-menu{
  margin-top: -10px;
  margin-left: 0;
  border-bottom-right-radius: 30%;
}
.nav-links li{
  margin: 20px 10px;
}
.menu-bar{
  display: block;
  z-index: 10;
  right: 20px;
}
.content h1{
  font-size: 22px;
  padding: 0 10px;
}
.content{
  top: 45%;
}
.content p{
  font-size: 10px;
  margin: -15px auto;
  padding: 20px;
}
.content a{
font-size: 14px;

}
.btn{
  margin-top: 15px;
  margin-left: 0px;
  text-align: center;
  
}
.btn a{
  padding: 0px;
}
.btn_area{
  display: block;
  padding: 0px;
}
}
/*------------about us-----------*/
.batch-photo{
  margin-top: 210px;
  margin-left: 15px;
}
.top_conten{
  width: 100%;
}
.batch-photo img{
  width: 99%;
}
.about{
    background-color: #3a4452;
    flex-flow: column; 
}
.up{
  position: fixed;
  width: 70px;
  height: 70px;
  background: #ccc;
  border: 2px solid #0033ff;
  border-radius: 50%;
  bottom: 20px;
  right: 20px;
  text-align: center;
  z-index: 3;
}
.a1{
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
}
.imga{
  margin-top: 10px;
}
.fexcontener{
    display: flex;
    flex-direction: column;
    margin: 0px 0px;
}
.content-a{
    margin: 0;
    padding-bottom: 20px;
    justify-content: space-between;
}
.p2{
  margin-top: -25px;
}
.content-a h2{
    color: #ff00f3;
    margin-left: 30px;
    margin-top: 30px;
}
.poto{
    margin: 60px 25px;
    padding: 0;
    width: 250px;
    height: 250px;
    text-align: center;
    float: left;
    position: relative;
}
.top_img{
  position: absolute;
  left: 15px;
  top: 0;
  opacity: 0;
  transition: all 2.5s ease;
}
.top_img:hover{
  opacity: 1;
}
.poto1{
  margin: 60px 25px;
  padding: 0;
  width: 250px;
  height: 250px;
  text-align: center;
  float: left;
}
.poto2{
  margin: 60px 25px;
  padding: 0;
  width: 250px;
  height: 250px;
  text-align: center;
  float: left;
}
.hh{
  box-shadow: inset 6px 6px 13px rgba(255,255,255,0.1), 6px 6px 13px rgba(0, 0, 0, 0.2);
  background: transparent;
  background-color: #3a4452;
  height: 70px;
  border-radius: 45px;
  padding: 1px;
  margin-top: 50px;
}
.aa{
  width: 437px;
  margin-left: 32%;
}
.bb{
  width: 495px;
  margin-left: 31%;
}
.cc{
  width: 770px;
  margin-left: 20%;
}
.dd{
  width: 520px;
  margin-left: 30%;
}
.ee{
  width: 470px;
  margin-left: 32%;
}
.ff{
  width: 460px;
  margin-left: 30%;
}
.gg{
  width: 500px;
  margin-left: 30%;
}
.hg{
  width: 335px;
  margin-left: 36%;
}
.ii{
  width: 320px;
  margin-left: 35%;
}
.hh h2{
  margin: 20px 45px;

}
.pic{
  box-shadow: inset 6px 6px 13px rgba(255,255,255,0.1), 6px 6px 13px rgba(0, 0, 0, 0.2);
  background: transparent;
  background-color: #3a4452;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  margin-left: 20px;
  transform: translateX(0%);
}
.doc1{
  width: 130px;
  margin-top: 16px;
  font-size: 17px;
  padding: 5px;
  border-radius: 25px;
  cursor: pointer;
}
.plat{
  box-shadow: inset 6px 6px 13px rgba(255,255,255,0.1), 6px 6px 13px rgba(0, 0, 0, 0.2);
  background: transparent;
  background-color: #3a4452;
  width: 250px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 45px;
  padding: 2px 20px;
  margin-top: 50px;
  margin-left: 20px;
  transform: translateX(-8%);
  position: relative;
  color: #ffff00;
  font-size: 18px;
  line-height: 30px;
}
.plat:hover{
  font-size: 0;
}
.plat:hover::after{
  content: attr(data-hover);
  position: absolute;
  color: rgb(248, 164, 54);
  top: 0;
  left: 0;
  margin-top: 8px;
  line-height: 25px;
  font-size: 18px;
  padding-left: 10px;
  padding-right: 10px;
}
.plat1{
  box-shadow: inset 6px 6px 13px rgba(255,255,255,0.1), 6px 6px 13px rgba(0, 0, 0, 0.2);
  background: transparent;
  background-color: #3a4452;
  width: 250px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 45px;
  padding: 2px 20px;
  margin-top: 50px;
  margin-left: 20px;
  transform: translateX(-8%);
  position: relative;
  color: #ffff00;
  font-size: 18px;
  line-height: 30px;
}
.plat1:hover{
  font-size: 0;
}
.plat1:hover::after{
  content: attr(data-hover);
  position: absolute;
  color: rgb(5, 248, 18) ;
  top: 0;
  left: 0;
  margin-top: 8px;
  line-height: 25px;
  font-size: 18px;
  padding-left: 10px;
  padding-right: 10px;
}
.plat2{
  box-shadow: inset 6px 6px 13px rgba(255,255,255,0.1), 6px 6px 13px rgba(0, 0, 0, 0.2);
  background: transparent;
  background-color: #3a4452;
  width: 250px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 45px;
  padding: 2px 20px;
  margin-top: 50px;
  margin-left: 20px;
  transform: translateX(-8%);
  position: relative;
  color: #ffff00;
  font-size: 18px;
  line-height: 30px;
}
.plat2:hover{
  font-size: 0;
}
.plat2:hover::after{
  content: attr(data-hover);
  position: absolute;
  color: rgb(11, 227, 255) ;
  top: 0;
  left: 0;
  margin-top: 8px;
  line-height: 25px;
  font-size: 18px;
  padding-left: 10px;
  padding-right: 10px;
}
.platd{
  box-shadow: inset 6px 6px 13px rgba(255,255,255,0.1), 6px 6px 13px rgba(0, 0, 0, 0.2);
  background: transparent;
  background-color: #3a4452;
  width: 250px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 45px;
  padding: 2px 20px;
  margin-top: 50px;
  margin-left: 20px;
  transform: translateX(-8%);
  position: relative;
  color: #ff3b76;
  font-size: 18px;
  line-height: 30px;
}
.platd:hover{
  font-size: 0;
}
.platd:hover::after{
  content: attr(data-hover);
  position: absolute;
  color: rgb(236, 48, 253) ;
  top: 0;
  left: 0;
  margin-top: 8px;
  line-height: 25px;
  font-size: 18px;
  padding-left: 10px;
  padding-right: 10px;
}
.botem{
  opacity: 1;
}
.botem:hover{
  opacity: 0;
}
.poto img{
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin-top: 15px;
}
.poto img:hover{
    border: 3px solid rgb(248, 164, 54) ;
}
.poto1 img{
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin-top: 15px;
}
.poto1 img:hover{
  border: 3px solid rgb(5, 248, 18) ;
}
.poto2 img{
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin-top: 15px;
}
.poto2 img:hover{
  border: 3px solid rgb(11, 227, 255) ;
}
.dropbtn {
    background-color: #4CAF50;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    width: 110px;
    margin-left: 15px;
  }
  .dropdown {
    position: relative;
    display: inline-block;
    margin-top:  10px;
  }
  .dropdown-content ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }
  .dropdown-content ul li{
    float: left;
    min-width: 9%;
    text-align: center;
    
  }
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    width: 91%;
    height: 54px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    margin-right: 15px;
  }
  .dropdown-content a {
    color: black;
    padding: 15px 5px;
    text-decoration: none;
    display: block;
  }
  .dropdown-content a:hover {
    background-color: #f1f1f1;
    color: #0033ff;

  }
  .dropdown:hover .dropdown-content {
    display: inline;
  }
  .dropdown:hover .dropbtn {
    background-color: #3e8e41;
  }
  .deth img:hover{
    border: 5px solid red;
    opacity: 0.3;
  }
  .pppd{
    display: none;
    color: #ff0000;
  }
  .deth:hover .pppd{
    display: block;
  }
  .ded{
    color: #ff1b1b;
  }
  .d1{
    display: none;
    position: absolute;
    z-index: 1;
  }
  .d1 h6{
    font-size: 18px;
    margin-top: 5px;
    margin-left: 25px;
    color: rgb(245, 7, 7);
  }
  .deth:hover .d1{
    display: block;
  }
  @media only screen and (max-width: 800px){
    .batch-photo{
      margin-top: 110px;
      margin-left: 10px;
    }
    .up{
      width: 50px;
      height: 50px;
    }
    .imga{
      margin-top: 3px;
      width: 15px;
      height: 15px;
    }
    .a1{
      font-size: 15px;
    }
    .dropdown{
      margin-left: -5px;
      margin-top: 10px;
    }
    .dropdown-content ul li{
      font-size: 12px;
      min-width: 20px;
    }
    .dropbtn{
      font-size: 12px;
      padding: 15px 5px;
      width: 60px;
    }
    .dropdown-content{
      width: 600px;
      height: 46px;
    }
    .dropdown-content a {
      padding: 14px 10px;
    }
    .aa{
      margin-left: 22%;
    }
    .bb{
      margin-left: 22%;
    }
    .cc{
      margin-left: 5%;
      width: 720px;
    }
    .cc h2{
      font-size: 22px;
    }
    .dd{
      margin-left: 18%;
    }
    .ee{
      margin-left: 22%;
    }
    .ff{
      margin-left: 22%;
    }
    .gg{
      margin-left: 19%;
    }
    .hg{
      margin-left: 27%;
    }
    .ii{
      margin-left: 28%;
    }
  }
  @media only screen and (max-width: 480px){
    .batch-photo{
      margin-left: 5px;
    }
    .top_conten{
      padding: 10px;
    }
    .about{
      padding: 1px 0px 10px 0px;
    }
    .batch-photo img{
      max-width: 95%;
    }
    .content-a{
      margin-left: 12%;
    }
    .content-a h2{
      margin-left: -12%;
    }
    .hh{
      margin-left: -14%;
      height: 32px;
      margin-top: 40px;
      text-align:center
    }
    .hh h2{
      margin-left: 12%;
      font-size: 14px;
      margin-top: -2px;
      padding-top: 7px;
    }
    .aa{
      width: 100%;
 
    }
    .bb{
      width: 100%;
     
    }
    .bb h2{
       font-size: 13px;
       padding-top: 7px;
       margin-left: 6%;
    }
    .cc{
      
      height: 50px;
      width: 99%;
      margin-left: -10%;
      text-align:center;
    }
    .cc h2{
      font-size: 13px;
      padding: 7px 5px;
      margin-left: 6%;
    }
    .dd{
      width: 100%;
    }
    .dd h2{
      font-size: 13px;
      padding-top: 9px;
      margin-left: 3%;
    }
    .ee{
      width: 99%;
    }
    .ee h2{
      font-size: 13px;
      padding-top: 7px;
      margin-left: 6%;
    }
    .ff{
      width: 99%;
    }
    .ff h2{
      font-size: 13px;
      margin-left: 12%;
      padding-top: 6px;
    }
    .gg{
      width: 100%;
    }
    .gg h2{
      font-size: 13px;
      padding-top: 8px;
      margin-left: 4%;
    }
    .hg{
      width: 95%;
    }
    .ii{
      width: 95%;
    }
    .poto{
      margin-left: -2%;
      margin-top: 70px;
    }
    .poto1{
      margin-left: -2%;
      margin-top: 70px;
    }
    .poto2{
      margin-left: -2%;
      margin-top: 70px;
    }
    .p1{
      margin-top: 30px;
    }
    .dropdown-content ul li{
      font-size: 11px;
      min-width: 20px;
    }
    .dropbtn{
      font-size: 12px;
      padding: 19px 5px;
      width: 40px;
      margin-left: 1px;
   }
    .dropdown-content{
      width: 84%;
      height: 55px;
      
    }
    .dropdown{
      margin-top: 10px;
      margin-left: 5px;
    }
    .dropdown-content a {
      padding: 4px 4px;
      
    }
    .up{
      width: 50px;
      height: 50px;
    }
    .imga{
      margin-top: 3px;
      width: 15px;
      height: 15px;
    }
    .a1{
      font-size: 15px;
    }
    .plat{
      font-size: 15px;
    }
    .plat1{
      font-size: 15px;
    }
    .plat2{
      font-size: 15px;
    }
  }
/*------------------news----------------------------------*/

.news{
  background-color: #3a4452;
  margin-top: 100px;
}
.disc{
  margin:0 auto;
  padding: 0 20px;
}
.text1{
  margin:5px auto;
  font-size: 18px;
  font-weight: 600;
  text-indent: 450px;
  color: #fff;
}
.content-news{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 30px;
  box-shadow: inset 6px 6px 13px rgba(255,255,255,0.1), 6px 6px 13px rgba(0, 0, 0, 0.2);
  background: transparent;
  background-color: #3a4452;
  padding: 10px;
  border-radius: 45px;
  margin-left: 20px;
  margin-right: 30px;
  padding: 20px;
  margin-bottom: 30px;
}
.diss_1{
  width: 800px;
  float: left;
  position: relative;
  margin-top: 30px;
  margin-left: 40px;
  text-align: center;
  float: left;
}

.diss_1 img{
    width: 100%;
    padding: 20px;
    height: 400px;
}
.diss_2{
  width: 700px;
  margin-top: 30px;
  margin-left: 40px;
  text-align: center;
  float: left;
  position: relative;
  padding: 0;
}
.pic2{
  box-shadow: inset 6px 6px 13px rgba(255,255,255,0.1), 6px 6px 13px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  background: transparent;
  background-color: #3a4452;
}
.pic2 img{
    width: 100%;
    padding: 20px;
    height: 500px;
    border-radius: 20px;
}
.eent_1{
  margin-left: 70px;
  float: left;
  position: relative;
  margin-top: 30px;
  margin-left: 40px;
}
.nnn{
  margin-top: 200px;
  box-shadow: inset 6px 6px 13px rgba(255,255,255,0.1), 6px 6px 13px rgba(0, 0, 0, 0.2);
  background: transparent;
  background-color: #3a4452;
  padding: 10px;
  border-radius: 45px;
  margin-left: 20px;
  margin-right: 30px;
}
.nn{
  width: 660px;
  margin-left: 450px;
}
.nn h2{
  color:  #ffff00;
}
.nmn{
  color: #ffff00;
  box-shadow: inset 6px 6px 13px rgba(255,255,255,0.1), 6px 6px 13px rgba(0, 0, 0, 0.2);
  background: transparent;
  background-color: #3a4452;
  width: 250px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 45px;
  padding: 2px 20px;
  margin-top: 20px;
  margin-left: 20px;
  transform: translateX(-8%);
  position: relative;
  font-size: 18px;
  line-height: 30px;
}
.nmn:hover{
  font-size: 0;
}
.nmn:hover::after{
  color: rgb(11, 227, 255);
  content: attr(data-hover);
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 8px;
  line-height: 25px;
  font-size: 18px;
  padding-left: 10px;
  padding-right: 10px;
}
.ndeth img:hover{
  border: 5px solid red;
}  
.nn2{
  width: 440px;
  margin-left: 550px;
}
.nn2 h2{
  color:  #ffff00;
}
@media only screen and (max-width: 900px){
  .content-news{
    margin-top: 130px;
  }
  .diss_1{
    width: 700px;
    height: 300px;
  }
  .diss_1 img{
    height: 300px;
  }
  .eent_1{
    margin: 20px 0 20px 0;
  }
  .navbar{
    margin-top: -10px;
  }
  .nn{
    margin-left: 50px;
  }
  .nn2{
    margin-left: 170px;
  }
  .eent_1{
  margin-left:40px ;
  }
}

@media only screen and (max-width: 480px){
  
  .diss_1{
    width: 93%;
    height: 200px;
    margin-left: 3.5%;
    margin-top: 10px;
  }
  .diss_1 img{
    height: 200px;
  }
  .content-news{
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 20px;
    padding: 0;
  }
  .diss_2{
    width: 93%;
    margin-left: 3.5%;
    margin-top: 10px;
    margin-bottom: 5px;
     padding: 0px;
  }
  .diss_2 img{
    height: 100%;
    width: 99%;
   
  }
  .eent_1{
    margin-left:3.5% ;
    width:93% ;
    }
  .nn{
    margin-left: -7%;
    width: 99%;
    height: 60px;
    padding-top: 13px;
    padding-left: 0px;
    
  }
  .nn h2{
    margin-left: 4%;
    text-align: center;
    padding: 0px;
    transform: translateX(9%);
    
  }
  .nnn{
    margin-top: 120px;
    margin-right: 10px;
    margin-left: 10px;
  }
  .ndeth{
    margin-top: 30px;
    transform: translateX(-4%);
  }
  .nn2{
    margin-left: -3%;
    max-width: 62%;
    height: 35px;
    padding-top: 5px;
    margin-top: 50px;
    padding: 0px;
  }
  .nn2 h2{
    margin-left: 12%;
    transform: translateX(3%);
  }  
  .pic2 img{
    padding: 5px;
    margin-top: 5px;
  }
  
}

/*-----------------------------gallery------------------------*/
.gallery{
    margin: 0;
    background-color: #3a4452;
}
input{
  display: none;
}
.content-gallery{
  display: flex;
  flex-wrap: wrap;
  margin: 220px 30px;
  padding: 0 4px;
}
.top-content{
  background-color: #f1eeeee5;
  width: 95%;
  margin: 0 auto 10px auto;
  height: 50px;
  display: flex;
  align-items: center;
  border-radius: 5px;
  box-shadow: 3px 3px 5px lightgray;
}
.top-content h3{
  height: 100%;
  background-color: #b8b8b8de;
  line-height: 50px;
  padding: 0 50px;
}
label{
  display: inline-block;
  height: 100%;
  margin: 0 30px;
  line-height: 50px;
  font-size: 18px;
  cursor: pointer;
  transition: color .5s;
}    
label:hover{
  color: #0033ff;
}
.dropdown_b {
  position: relative;
  z-index: 1;
  margin-top: 6px;
  min-width: 60px;
  transition: 5s; 
}
.dropdown-content_b {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 60px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
.dropdown-content_b .lab_1 {
  color: black;
  padding: 0px 10px;
  text-decoration: none;
  display: block;
  
}
.dropdown-content_b .lab_1:hover {
  background-color: #f1f1f1;
  color: #0033ff;
}
.dropdown_b:hover .dropdown-content_b {
  display: block;
} 
.lab_1 {
  display: inline-block;
  height: 100%;
  margin: 5px 8px;
  line-height: 30px;
  font-size: 18px;
  cursor: pointer;
  transition: color .5s;  
}
.dropdown_c {
  position: relative;
  z-index: 1;
  margin-top: 6px;
  min-width: 60px;
}
.dropdown-content_c {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 145px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
.dropdown-content_c .lab_2 {
  color: black;
  padding: 0px 5px;
  text-decoration: none;
  display: block;
}
.dropdown-content_c .lab_2:hover {
  background-color: #f1f1f1;
  color: #0033ff;
}
.dropdown_c:hover .dropdown-content_c {
  display: block;
}
.lab_2 {
  display: inline-block;
  height: 100%;
  margin: 2px 5px;
  line-height: 30px;
  font-size: 15px;
  cursor: pointer;
  transition: color .5s;
}  
.picy{
  width: 100%;
  transition: 0.5s;
}
#check1:checked~ .content-gallery .res-gal .picy{
  opacity: 1;
  transform: scale(1);
  position: relative;
  transition: 0.5s;
}
#check2:checked~ .content-gallery .res-gal .p2026{
  opacity: 1;
  transform: scale(1);
  position: relative;
}
#check2:checked~ .content-gallery .res-gal .pget,
#check2:checked~ .content-gallery .res-gal .p2025,
#check2:checked~ .content-gallery .res-gal .p2024,
#check2:checked~ .content-gallery .res-gal .p2023,
#check2:checked~ .content-gallery .res-gal .p2018,
#check2:checked~ .content-gallery .res-gal .perly,
#check2:checked~ .content-gallery .res-gal .campus,
#check2:checked~ .content-gallery .res-gal .after,
#check2:checked~ .content-gallery .res-gal .thrawo,
#check2:checked~ .content-gallery .res-gal .oversees{
  opacity: 0;
  transform: scale(0);
  position: absolute;
  transition: 0.0s;
}
#check3_1:checked~ .content-gallery .res-gal .pget{
  opacity: 1;
  transform: scale(1);
  position: relative;
}
#check3_1:checked~ .content-gallery .res-gal .p2026,
#check3_1:checked~ .content-gallery .res-gal .campus,
#check3_1:checked~ .content-gallery .res-gal .after,
#check3_1:checked~ .content-gallery .res-gal .thrawo,
#check3_1:checked~ .content-gallery .res-gal .oversees{
  opacity: 0;
  transform: scale(0);
  position: absolute;
  transition: 0.0s;
}
#check3_2:checked~ .content-gallery .res-gal .p2025{
  opacity: 1;
  transform: scale(1);
  position: relative;
}
#check3_2:checked~ .content-gallery .res-gal .p2026,
#check3_2:checked~ .content-gallery .res-gal .p2024,
#check3_2:checked~ .content-gallery .res-gal .p2023,
#check3_2:checked~ .content-gallery .res-gal .p2018,
#check3_2:checked~ .content-gallery .res-gal .perly,
#check3_2:checked~ .content-gallery .res-gal .campus,
#check3_2:checked~ .content-gallery .res-gal .after,
#check3_2:checked~ .content-gallery .res-gal .thrawo,
#check3_2:checked~ .content-gallery .res-gal .oversees{
  opacity: 0;
  transform: scale(0);
  position: absolute;
  transition: 0.0s;
}
#check3_3:checked~ .content-gallery .res-gal .p2024{
  opacity: 1;
  transform: scale(1);
  position: relative;
}
#check3_3:checked~ .content-gallery .res-gal .p2026,
#check3_3:checked~ .content-gallery .res-gal .p2025,
#check3_3:checked~ .content-gallery .res-gal .p2023,
#check3_3:checked~ .content-gallery .res-gal .p2018,
#check3_3:checked~ .content-gallery .res-gal .perly,
#check3_3:checked~ .content-gallery .res-gal .campus,
#check3_3:checked~ .content-gallery .res-gal .after,
#check3_3:checked~ .content-gallery .res-gal .thrawo,
#check3_3:checked~ .content-gallery .res-gal .oversees{
  opacity: 0;
  transform: scale(0);
  position: absolute;
  transition: 0.0s;
}
#check3_4:checked~ .content-gallery .res-gal .p2023{
  opacity: 1;
  transform: scale(1);
  position: relative;
}
#check3_4:checked~ .content-gallery .res-gal .p2026,
#check3_4:checked~ .content-gallery .res-gal .p2025,
#check3_4:checked~ .content-gallery .res-gal .p2024,
#check3_4:checked~ .content-gallery .res-gal .p2018,
#check3_4:checked~ .content-gallery .res-gal .perly,
#check3_4:checked~ .content-gallery .res-gal .campus,
#check3_4:checked~ .content-gallery .res-gal .after,
#check3_4:checked~ .content-gallery .res-gal .thrawo,
#check3_4:checked~ .content-gallery .res-gal .oversees{
  opacity: 0;
  transform: scale(0);
  position: absolute;
  transition: 0.0s;
}
#check3_5:checked~ .content-gallery .res-gal .p2018{
  opacity: 1;
  transform: scale(1);
  position: relative;
}
#check3_5:checked~ .content-gallery .res-gal .p2026,
#check3_5:checked~ .content-gallery .res-gal .p2025,
#check3_5:checked~ .content-gallery .res-gal .p2024,
#check3_5:checked~ .content-gallery .res-gal .p2023,
#check3_5:checked~ .content-gallery .res-gal .perly,
#check3_5:checked~ .content-gallery .res-gal .campus,
#check3_5:checked~ .content-gallery .res-gal .after,
#check3_5:checked~ .content-gallery .res-gal .thrawo,
#check3_5:checked~ .content-gallery .res-gal .oversees{
  opacity: 0;
  transform: scale(0);
  position: absolute;
  transition: 0.0s;
}
#check3_6:checked~ .content-gallery .res-gal .perly{
  opacity: 1;
  transform: scale(1);
  position: relative;
}
#check3_6:checked~ .content-gallery .res-gal .p2026,
#check3_6:checked~ .content-gallery .res-gal .p2025,
#check3_6:checked~ .content-gallery .res-gal .p2024,
#check3_6:checked~ .content-gallery .res-gal .p2023,
#check3_6:checked~ .content-gallery .res-gal .p2018,
#check3_6:checked~ .content-gallery .res-gal .campus,
#check3_6:checked~ .content-gallery .res-gal .after,
#check3_6:checked~ .content-gallery .res-gal .thrawo,
#check3_6:checked~ .content-gallery .res-gal .oversees{
  opacity: 0;
  transform: scale(0);
  position: absolute;
  transition: 0.0s;
}
#check4:checked~ .content-gallery .res-gal .campus{
  opacity: 1;
  transform: scale(1);
  position: relative;
}
#check4:checked~ .content-gallery .res-gal .p2026,
#check4:checked~ .content-gallery .res-gal .p2025,
#check4:checked~ .content-gallery .res-gal .p2024,
#check4:checked~ .content-gallery .res-gal .p2023,
#check4:checked~ .content-gallery .res-gal .p2018,
#check4:checked~ .content-gallery .res-gal .perly,
#check4:checked~ .content-gallery .res-gal .after,
#check4:checked~ .content-gallery .res-gal .thrawo,
#check4:checked~ .content-gallery .res-gal .oversees{
  opacity: 0;
  transform: scale(0);
  position: absolute;
  transition: 0.0s;
}
#check5:checked~ .content-gallery .res-gal .after{
  opacity: 1;
  transform: scale(1);
  position: relative;
}
#check5:checked~ .content-gallery .res-gal .p2026,
#check5:checked~ .content-gallery .res-gal .p2025,
#check5:checked~ .content-gallery .res-gal .p2024,
#check5:checked~ .content-gallery .res-gal .p2023,
#check5:checked~ .content-gallery .res-gal .p2018,
#check5:checked~ .content-gallery .res-gal .perly,
#check5:checked~ .content-gallery .res-gal .campus,
#check5:checked~ .content-gallery .res-gal .thrawo,
#check5:checked~ .content-gallery .res-gal .oversees{
  opacity: 0;
  transform: scale(0);
  position: absolute;
  transition: 0.0s;
}
#check6_1:checked~ .content-gallery .res-gal .event{
  opacity: 1;
  transform: scale(1);
  position: relative;
}
#check6_1:checked~ .content-gallery .res-gal .p2026,
#check6_1:checked~ .content-gallery .res-gal .p2025,
#check6_1:checked~ .content-gallery .res-gal .p2024,
#check6_1:checked~ .content-gallery .res-gal .p2023,
#check6_1:checked~ .content-gallery .res-gal .p2018,
#check6_1:checked~ .content-gallery .res-gal .perly,
#check6_1:checked~ .content-gallery .res-gal .campus,
#check6_1:checked~ .content-gallery .res-gal .after{
  opacity: 0;
  transform: scale(0);
  position: absolute;
  transition: 0.0s;
}
#check6_2:checked~ .content-gallery .res-gal .thrawo{
  opacity: 1;
  transform: scale(1);
  position: relative;
}
#check6_2:checked~ .content-gallery .res-gal .p2026,
#check6_2:checked~ .content-gallery .res-gal .p2025,
#check6_2:checked~ .content-gallery .res-gal .p2024,
#check6_2:checked~ .content-gallery .res-gal .p2023,
#check6_2:checked~ .content-gallery .res-gal .p2018,
#check6_2:checked~ .content-gallery .res-gal .perly,
#check6_2:checked~ .content-gallery .res-gal .campus,
#check6_2:checked~ .content-gallery .res-gal .after,
#check6_2:checked~ .content-gallery .res-gal .oversees{
  opacity: 0;
  transform: scale(0);
  position: absolute;
  transition: 0.0s;
}
#check6_3:checked~ .content-gallery .res-gal .oversees{
  opacity: 1;
  transform: scale(1);
  position: relative;
}
#check6_3:checked~ .content-gallery .res-gal .p2026,
#check6_3:checked~ .content-gallery .res-gal .p2025,
#check6_3:checked~ .content-gallery .res-gal .p2024,
#check6_3:checked~ .content-gallery .res-gal .p2023,
#check6_3:checked~ .content-gallery .res-gal .p2018,
#check6_3:checked~ .content-gallery .res-gal .perly,
#check6_3:checked~ .content-gallery .res-gal .campus,
#check6_3:checked~ .content-gallery .res-gal .after,
#check6_3:checked~ .content-gallery .res-gal .thrawo{
  opacity: 0;
  transform: scale(0);
  position: absolute;
  transition: 0.0s;
}
img{
  width: 100%;
}
.res-gal{
  flex: 33%;
  max-width: 33%;
  padding: 0 4px;
}
.res-gal img{
  margin-top: 8px;
  vertical-align: middle;
  border: 2px solid #ccc;
}
.res-gal img:hover{
  border: 5px solid #15ec68;
}
@media only screen and (max-width: 800px) {
  .res-gal {
    flex: 50%;
    max-width: 50%;
  }
  .content-gallery{
    margin: 120px 5px;
  }
  .top-content{
    height: 55px;
    
  }
  .top-content h3{
    font-size: 15px;
    line-height: 20px;
    padding: 10px 5px;

  }
  label{
    font-size: 15px;
    line-height: 20px;
    margin: 0 15px;
    padding: 10px 15px;
  }
  .text1{
    text-indent: 50px;
}
}
@media only screen and (max-width: 480px) {
  .res-gal {
    flex: 100%;
    max-width: 100%;
  }
  .top-content{
    height: 35px;
    margin: 0 auto 2px auto;
  }
  .top-content h3{
    font-size: 10px;
    line-height: 12px;
    padding: 5px 5px;
    padding-left: 5px;
    
  }
  label{
    font-size: 10px;
    line-height: 12px;
    margin: 0 0px;
    padding: 5px 5px;
  }
  .text1{
    font-size: 8px;
    margin-top: -25px;
    
  }
  .lab_1{
    font-size: 10px;
    line-height: 10px;
  }
  .dropdown_b{
    min-width: 20px;
    margin: 1px;
    z-index: 1;
  }
  .dropdown-content_b{
    min-width: 20px;
    margin: 5px -7px;
  }
  .dropdown-content_b .lab_1{
    padding: 1px 1px;
  }
  .lab_2{
    font-size: 10px;
    line-height: 10px;
  }
  .dropdown_c{
    min-width: 20px;
    margin: 1px 5px;
    z-index: 1;
  }
  .dropdown-content_c{
    min-width: 20px;
    margin: 5px -15px;
    text-align: center;
  }
  .dropdown-content_c .lab_2{
    padding: 3px 3px;
  }
}
/*-------------------------committee-------------------*/
.content-committee{
  padding: 20px 0;
  margin-top: 150px;
}
.plat_c{
  box-shadow: inset 6px 6px 13px rgba(255,255,255,0.1), 6px 6px 13px rgba(0, 0, 0, 0.2);
  background: transparent;
  background-color: #3a4452;
  width: 250px;
  height: 90px;
  align-items: center;
  justify-content: center;
  border-radius: 45px;
  padding: 2px 20px;
  margin-top: 50px;
  margin-left: 20px;
  transform: translateX(-8%);
  position: relative;
  color: #ffff00;
  font-size: 18px;
  line-height: 30px;
}
.title-c{
  max-width: 320px;
  width: 100%;
  margin:10px auto;
  box-shadow: inset 6px 6px 13px rgba(255,255,255,0.1), 6px 6px 13px rgba(0, 0, 0, 0.2);
  border-radius: 23px;
  padding: 10px;
}
.title-c h2{
  text-align: center;
    padding: 5px;
    color: #48ff00;
}
.ttee{
 width: 350px;
 height: 350px;
 margin: 10px 10px;

}
.commi{
  padding: 15px 10px;
  margin-top: 10px;
  height: 120px;
  width: 300px;
  transform: translateX(-50%);
  transform: translateX(5%);

}
.commi h3{
  color: hsl(22, 100%, 50%);
}
.ppp{
 transform: translateX(-50%);
 transform: translateX(25%);
}
@media only screen and (max-width: 800px){
  .ttee{
    width: 300px;
    height: 300px;
    margin: 40px 20px
  } 
  .content-committee{
    margin-top: 100px;
  }
}
@media only screen and (max-width: 480px){
  .content-committee{
    padding: 10px 0;
    margin-top: 110px;
  }
  .title-c{
    margin:7px auto;
  }
  .ttee{
    margin: 45px 5px;
  }
}
/*--------------------------login-----------------------------------*/
.cont_log{
  max-width: 700px;
  width: 100%;
  margin: 20px auto;
  box-shadow: inset 6px 6px 13px rgba(255,255,255,0.1), 6px 6px 13px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  padding: 20px;
}
/*---------------------pramotion-------------------------------*/
.fexcontener_1{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 230px;
}
.item_1{
  max-width: 450px;
  width: 100%;
  margin:20px 20px;
  box-shadow: inset 6px 6px 13px rgba(255,255,255,0.1), 6px 6px 13px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  padding: 10px;
}
.person_1{
  margin: 10px 10px;
  padding: 0;
  width: 300px;
  height: 100px;
  text-align: center;
  float: left;

}
.pict_1{
  box-shadow: inset 6px 6px 13px rgba(255,255,255,0.1), 6px 6px 13px rgba(0, 0, 0, 0.2);
  background: transparent;
  background-color: #3a4452;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin-left: 47px;
  transform: translateX(70%);
}
.person_1 img{
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin-top: 10px;
}
.plate_1{
  box-shadow: inset 6px 6px 13px rgba(255,255,255,0.1), 6px 6px 13px rgba(0, 0, 0, 0.2);
  background: transparent;
  background-color: #3a4452;
  width: 420px;
  height: 70px;
  border-radius: 45px;
  padding: 2px 20px;
  margin-top: 10px;
  margin-left: 32px;
  transform: translateX(-8%);
}
.video_1{
  max-width: 400px;
}

.item_2{
  max-width: 420px;
  width: 100%;
  margin-top: 230px;
  margin-left: 7px;
  box-shadow: inset 6px 6px 13px rgba(255,255,255,0.1), 6px 6px 13px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  padding: 10px;
}
.item_2 h2{
  text-align: center;
  color: #fff;
  margin-top: 5px;
  margin-bottom: 5px;
}
.plate_1 h5{
  text-align: center;
    padding: 2px;
    color: #48ff00;
}
.plate_1 p{
  color: #ffff00;

}
.phot_1{
  max-width: 380px;
  margin-left: 10px;
  margin-top: 10px;
}
.item_2 p{
  color: #fff;
  margin-left: 10px;
}
.item_2 a{
  text-decoration: none;
  color: hsla(194, 100%, 50%, 0.993);
}
.ppdf{
  width: 100%;
  height: 39vh;
  padding: 10px;
}
@media only screen and (max-width: 800px){
  .item_1{
    max-width: 340px;
  }
  .person_1{
    width: 250px;
  }
  .pict_1{
    margin-left: 15px;
    transform: translateX(55%);
  }
  .plate_1{
    width: 310px;
    margin-left: 18px;
  }
  .item_2{
    max-width: 310px;
    margin-left: 5px;
  }
  .phot_1{
    max-width: 280px;
    margin-left: 5px;
    margin-top: 5px;
  }
  .text1{
    text-indent: 50px;
  }
  .fexcontener_1{
    margin-top: 130px;
  }
  .video_1{
    width: 290px;
  }
}
@media only screen and (max-width: 480px){
  .item_1{
    margin:20px 15px;
    max-width: 295px;
    padding: 8px;
  }
  
  .person_1{
    margin: 5px 5px;
    width: 280px;
  }
  .pict_1{
    margin-left: 30px;
    transform: translateX(35%);
  }
  .plate_1{
    margin-left: 20px;
    margin-right: 0px;
    width: 270px
  }
  .video_1{
    width: 259px;
  }
  .item_2{
    max-width: 290px;
    margin-left: 0px;
    margin-right: 0px;
  }
  .phot_1{
    max-width: 250px;
    margin-left: 5px;
    margin-top: 5px;
    
  }
}