*{
    margin: 0;
    font-family: "Poppins",sans-serif;
    scroll-behavior: smooth;
   justify-content: space-evenly;
  }
  
body{
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    animation: fly-in 1s ease-in-out;
    animation-delay: 1s; /* Adjust the delay time as needed */
    animation-fill-mode: both;
  }
  header{
    background-color: #f2f2f2;
    height: 110px;
    padding: 10px 0;
    z-index: 2;
  }
  
  .logo{
    width: 100px;
  }
  
  .logo img{
    width: 100px;
  }
  
  nav{
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }
  .selected_lang{
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    width: 100px;
    font-size: x-large;   
    height: fit-content;
    width: fit-content;
  }
  .selected_lang a{
    text-decoration:none ;
    color: #000000;
  }

  .side-bar{
    background: #857b7b;
    width: 300px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: -100%;
    overflow-y: auto;
    transition: 0.6s ease;
    transition-property:left ;
    z-index: 10;
  }
  .side-bar.active{
    left: 0;
  }
  
  .side-bar .menu {
    width: 100%;  
    margin-top: 60px;
  }
  
  .side-bar .menu .item{  
    position: relative;
    cursor: pointer;
  }
  .side-bar .menu .item a{
     color: #000000;
     font-size: 20 px;
     text-decoration: none;
     display:block ;
     padding:5px 30px;
     line-height: 60px;
  }
  .side-bar .menu .item a:hover{
    
    background:#dcec95 ;
    transition: 0.3s ease;
  }
  .side-bar .menu .item i{
    margin-right: 15px;
  }
  .side-bar .menu .item a .dropdown{
    position: absolute;
    right: 0;
    margin: 20px;
    transition: 0.3s ease;
  }
  .side-bar .menu .item .sub-menu{
    background: rgba(255, 255,255,0.1);
    display: none;
  }
  .side-bar .menu .item .sub-menu a{
    padding-left: 20%;
  }
  .rotate{
    transform: rotate(90deg);
  }
  .close-btn{
    position:absolute;
    color: #000000;
    font-size: 20px;
    right:0;
    margin: 25px;
    cursor: pointer
  }
  .menu-btn{
    position: absolute;
    color: #000000;
    font-size: 35px;
    margin: 25px;
    left:0;
    top: 0;
    cursor: pointer;
  }
  .parent {
    position: absolute;
    top: 0;
    left: 120px;
  }
  .section_top{
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  @keyframes fly-in {
    0% {
      opacity: 0;
      transform: translateY(-50px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
.container{
    position :relative;
    background: #aad5f6;
    margin-top: 5%;
    z-index: 9;
  }
  .slide-1{
    background: url(https://drive.google.com/file/d/1RHAda0usxR8PxqWdFRt03y0zdPmEN5In/view?usp=drive_link);
  }
  
  .slide-2{
    background: url(https://drive.google.com/uc?id=1_mfZwzhdCKgby6pFklQ12Y04_1Z5Zqa-);
  }
  
  .slide-3{
    background: url(https://drive.google.com/uc?id=15M8F8rmK4i2tAv_xhFtpl2MGYnR1q-wE);
  }
  .slide-4{
    background: url(https://drive.google.com/uc?id=1OLp4vVUdXS4kvf8c8VDwkdCSV5Cqi3gU);
  }
  .slide-5{
    background: url(https://drive.google.com/uc?id=1t-mbH5izcNEpNiDqLnuJWJdqdnzqQP2A);
  }
  .slide-6{
    background: url(https://drive.google.com/uc?id=1CFNiCmmtmA4YmH4cMlIriYOF5vDuU_3w);
  }
  .slide-7{
    background: url(https://drive.google.com/uc?id=1sOJAOUpDa63Ris4rc5JR7dZlhsa9Y-0Z);
  }
  .slide-8{
    background: url(https://drive.google.com/uc?id=1gzgHY23D4-Ck69S9Bk-1mty3b-Ssm_DT);
  }
  .slide-9{
    background: url(https://drive.google.com/uc?id=1E7ZsX7vAyi77aH073JaZ226g7IDkAPlU);
  }
  .slide {
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow-x: hidden;
  }
  .caption {
    background: rgba(0, 0, 0, 0.03);
    width: 100%;
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    padding: 40px 0px;
  }
  .caption h1 {
    color: #fff;
    text-align: center;
    font-size: 60px;
    padding: 18px;
  }
  .caption p {
    max-width: 600px;
    width: 90%;
    margin: 0px auto;
    color: #ccc;
    text-align: center;
    font-size: 18px;
    line-height: 1.5em;
  }
  .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 100;
    background: rgba(0, 0, 0, .1);
    border-radius: 50%;
    transform: background 500ms;
  }
  .arrow img {
    width: 50px;
  }
  .arrow:hover {
    background: rgba(0, 0, 0, .4);
  }
  .l {
    left: 0;
  }
  .r {
    right: 0;
  }
  .line0{
    height: 1px;
    width: 100%;
    margin-top: 5%;
    background-color: #000000;
  }
  .category_0 h1{
    font-family: Arial;
    text-align: center;
    margin-top: 5%;
    color: black;
  }
  .cat0_image0{
    margin-top: 5%;
  }
  .line1{
    height: 1px;
    width: 100%;
    margin-top: 5%;
    background-color: #000000;
  }
  .category_1 h1{
    font-family: Arial;
    text-align: center;
    margin-top: 5%;
    color: black;
    
  }
  .cat1_image0{
    margin-top: 5%;
  }
  .line2{
    height: 1px;
    width: 100%;
    margin-top: 5%;
    background-color: #000000;
  }
  .category_2 h1{
    font-family: Arial;
    text-align: center;
    margin-top: 5%;
    color: black;
    
  }
  .cat2_image0{
    margin-top: 5%;
  }
  
  .line3{
    height: 1px;
    width: 100%;
    margin-top: 65%;
    background-color: #000000;
  }
  .category_3 h1{
    font-family: Arial;
    text-align: center;
    margin-top: 5%;
    color: black;
    
  }
  .cat3_image0{
    margin-top: 5%;
  }
  
  .links1_0{
    position: absolute;
    left: 55%;
  }
  .links1_1{
    position: absolute;
    left: 75%;
  }
  .links1_0 a{
    text-decoration: none;
    padding: 10px;
    color: black;
  }
  
  .links1_1 a{
    text-decoration: none;
    padding: 10px;
    color: black;
  }
  .links2{
    position: absolute;
    left: 70%;
  }
  .links2 a{
    text-decoration: none;
    padding: 10px;
    color: black;
  }
  .footer{
    position: absolute;
    background-color: #292323;
    color: #fff;
    width: 95%;
    padding-bottom: 1%;
    padding-top: 1%;
    padding-left: 5%;
  }
  /*mobile*/
  @media (max-width: 767px) {
    .head1 h1{
      font-size: 30px ;
  }
    h1{
        font-size: x-large;
    }
    
    header{
      height: 56px;
    }
    nav{
      width: 100%;
      justify-content: space-around;
      
    }
    .logo{
      width: 80px;
    }
    
    .logo img{
      width: 80px;
    }
    .lang_menu{
      margin-top: 30px;
    }
    .selected_lang{
      margin-top: 20px;
      font-size: small;
    }
    .menu-btn{
        font-size: 20px;
    }
    .container{
        height: 50vh;
    }
    .slide{
        height: 50vh;
    }
    .side-bar .menu .item{
        font-size: 17px;
    }
    .side-bar{
        width: 70%;
        height: 100vh;
    }
    .side-bar .menu .item a{
        padding: 0px 30px;
     }
     .caption h1 {
       font-size: 30px;
      }
     .caption p {
        font-size: 12px;
      }  
     .arrow img {
       width: 30px;
     }
    .category_0 h1{
      font-size: 30px;
    }
    .cat0_image0{
      width: 80%;
      padding-left: 10%;
      height: 50vh;
    }
    .category_1 h1{
      font-size: 30px;
    }
    .cat1_image0{
      width: 80%;
      padding-left: 10%;
      height: 50vh;
    }
    
    .category_2 h1{
      font-size: 30px;
    }
    
    .cat2_image0{
      width: 80%;
      padding-left: 10%;
      height: 50vh;
    }
    .category_3 h1{
      font-size: 30px;
    }
    .cat3_image0{
      width: 80%;
      padding-left: 10%;
      height: 50vh;
    }
    .links1_0{
      position: absolute;
      left: 4%;
      font-size: 15px;
      margin-top: 2%;
    }
    .links1_1{
      position: absolute;
      left: 50%;
      font-size: 15px;
      margin-top: 2%;
    }
    .links2{
      left: 10%;
      font-size: 15px;
      margin-top: 2%;
    }
    .line3{
      margin-top: 100%;
    }
    .links1_0 a{
      padding: 1px;
    }
    
    .links1_1 a{
      padding: 1px;
    }
    .links2 a{
      padding: 1px;
    }
    .links1_0 li{
      margin: 8px;
    }
    
    .links1_1 li{
      margin: 8px;
    }
    .links2 li{
      margin: 8px;
    }
    .footer{
      margin-top: 80%;  
    }
  .footer h2{
    font-size: 20px;
  }
  .footer h3{
    font-size: 15px;
  }
  }
  
  /*small screen */
  @media (min-width: 768px) and (max-width: 991px) {
    .head1 h1{
      font-size: 40px;
  }
    h1{
        font-size: x-large;
    }
    header{
      height: 60px;
    }
    nav{
      width: 100%;
      justify-content: space-around;
      
    }
    .logo{
      width: 80px;
    }
    
    .logo img{
      width: 80px;
    }
    .lang_menu{
      margin-top: 25px;
    }
    .selected_lang{
      margin-top: 20px;
      font-size: medium;
    }
    .menu-btn{
        font-size: 30px;
    }
    .container{
        height: 70vh;
    }
    .slide{
        height: 70vh;
    }
    .side-bar .menu .item{
        font-size: 20px;
    }
    .side-bar{
        width: 50%;
        height: 100vh;
    }
    .side-bar .menu .item a{
        padding: 0px 30px;
     }
   .caption h1 {
      font-size: 50px;
   }
    .caption p {
      font-size: 16px;
   }
    .arrow img {
     width: 40px;
    }
    .category_0 h1{
      font-size: 40px;
    }
    .cat0_image0{
      width: 80%;
      padding-left: 10%;
      height :80vh;
    }
    .category_1 h1{
      font-size: 40px;
    }
    .cat1_image0{
      width: 80%;
      padding-left: 10%;
      height :80vh;
    }
    .category_2 h1{
      font-size: 40px;
    }
    .cat2_image0{
      width: 80%;
      padding-left: 10%;
      height :80vh;
    }
    .category_3 h1{
      font-size: 40px;
    }
    .cat3_image0{
      width: 80%;
      padding-left: 10%;
      height :80vh;
    }
    .line3{
      margin-top: 60%;
    }
    
  .links1_0{
    position: absolute;
    left: 10%;
    font-size: 20px;
  }
  .links1_1{
    position: absolute;
    left: 60%;
    font-size: 20px;
  } 
  .links2{
    position: absolute;
    left: 10%;
    font-size: 20px;
  }
  .links1_0 li{
    margin: 10px;
  }
  
  .links1_1 li{
    margin: 10px;
  }
  .links2 li{
    margin: 10px;
  }
  .footer{
    margin-top: 50%;  
  }
  .footer h2{
    font-size: 25px;
  }
  .footer h3{
    font-size: 20px;
  }
  }
  
  /*medium screens */
  @media (min-width: 992px) {
    h1{
      font-size: 50px;
  }
    header{
      height: 115px;
    }
    nav{
      width: 100%;
      justify-content: space-around;
      
    }
    .logo{
      width: 150px;
    }
    
    .logo img{
      width: 150px;
  
    }
    .lang_menu{
      margin-top: 50px;
    }
    .selected_lang{
      margin-top: 40px;
        font-size: x-large;
    }
    .menu-btn{
        font-size: 35px;
        margin: 45px;
    }
    .container{
      height: 100vh;
    }
    .slide{
      
      height: 100vh;
    }
    .side-bar .menu .item{
        font-size: 20px;
    }
    .side-bar{
        width: 30%;
    }
    .category_0 h1{
      font-size: 50px;
    }
    .cat0_image0{
      width: 80%;
      padding-left: 10%;
      height: 90vh;
    }
    .category_1 h1{
      font-size: 50px;
    }
    .cat1_image0{
      width: 80%;
      padding-left: 10%;
      height: 90vh;
    }
    .category_2 h1{
      font-size: 50px;
    }
    .cat2_image0{
      width: 50%;
      padding-left: 5%;
      height: 90vh;
    }
    .category_3 h1{
      font-size: 50px;
    }
    .cat3_image0{
      width: 50%;
      padding-left: 5%;
      height: 90vh;
    }
    .links1_0{
      margin-top: 4%;
      display: inline;
    }
    .links1_1{
      margin-top: 4%;
      display: inline;
    }
    .links2{
      margin-top: 4%;
      display: inline;
    }
    .line3{
      margin-top: 8%;
    }
  .links1_0 li{
    font-size: 18px;
    margin: 20px;
  }
  
  .links1_1 li{
    font-size: 18px;
    margin: 20px;
  }
  .links2 li{
    font-size: 18px;
    margin: 20px;
  }
     .footer h2{
       font-size: 25px;
     }
      .footer h3{
       font-size: 20px;
      }
  }
  
  