.welcome{
  position: relative;
  overflow: hidden;
}

.slider{
  width: 100vw;
  height: 100vh;
  border-radius: 10px;
  position: relative;
}

.slides{
  width: 100vw;
  height: 100vh;
  display: flex;
  overflow: hidden;
}

.slides input{
  display: none;
}

.slide{
  width: 100%;
  transition: 1s;
}

.slide .img,
.slide .img1,
.slide .img2{
  width: 100vw;
  height: 100vh;
  position: relative;
}

.img .background1,
.img .background2,
.img .background3{
  width: 100vw;
  height: 100vh;
  position: relative;
}
/*================================================ 
                 background images
  ==================================================*/
  .img .background1{
    background: url("../src/assets/slider_background1.jpg") no-repeat center center/cover;
  }
  .img .background2 {
    background: url("../src/assets/2.jpg") no-repeat center center/cover;
  }
  .img .background3{
    background: url("../src/assets/slider_background3.jpg") no-repeat center center/cover;
  }
  
/*css for manual*/
.navigation-manual{
position: absolute;
width: 350px;
bottom: 40px;
display: flex;
justify-content: center;
z-index: 55;
}

.manual-btn{
  outline: transparent;
  border: transparent;
  height: 4px;
  width: 2.4rem;
  cursor: pointer;
  transition: 1s;
}

.manual-btn:not(:last-child){
  margin-right: 10px;
}

#radio1:checked ~ .first{
  margin-left: 0px;
}
#radio2:checked ~ .first{
  margin-left: -100%;
}
#radio3:checked ~ .first{
  margin-left: -200%;
}


/*css for auto scroll*/
.navigation-auto{
  position: absolute;
  display: flex;
  width: 350px;
  justify-content: center;
  bottom: 40px;
  z-index: 50;
}


.navigation-auto div{
  outline: transparent;
  border: transparent;
  background: #fff;
  height: 4px;
  width: 2.4rem;
  transition: 1s;
}

.navigation-auto div:not(:last-child){
  margin-right: 10px;
}

#radio1:checked ~ .navigation-auto .auto-btn1{
  background: linear-gradient(90deg, #12dd1c,#008000);
}

#radio2:checked ~ .navigation-auto .auto-btn2{
  background: linear-gradient(90deg, #12dd1c,#008000);
}
#radio3:checked ~ .navigation-auto .auto-btn3{
    background: linear-gradient(90deg, #12dd1c,#008000);
}


  /* ================================================= 
                      slide content
  ==================================================*/
  .content1 {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    background: #063957;
    top: 0%;
    left: 0px;
    padding: 0rem 6%;
    width: 40%;
    line-height: 1.5;
    font-size: 1.2em;
    opacity: 1;
    color: #fff;
    transition: all 0.7s ease-in-out;
    animation: trans 0.3s ease;
    z-index: 40;

  }
  
  .content1 h1{
    font-size: 3rem;
    line-height: 1.2;
    font-weight: normal;
    margin-block-end: 1rem;
  }

  .content1 h2{
    line-height: 1.2;
    font-weight: normal;
    margin-block-end: 1rem;
  }

  .content1 p{
    font-weight: normal;
    margin-block-end: 0.5rem;
  }

  .ourpartner{
    margin-top: 2rem;
  }

  .ourpartner image{
    height: 3rem;
  }
  /* ================================================= 
                      responsive 
  ==================================================*/
  @media screen and (max-width:1206px) {
    .welcome .content1 {
      width: 50%;
    }
  }
  @media screen and (max-width: 777px) {
    
    .welcome{
      padding-top: 5rem;
      position: relative;
      overflow: hidden;
    }
    .slider{
      width: 100vw;
      height: auto;
      border-radius: 10px;
      position: relative;
    }
    
    .slides{
      width: 100vw;
      height: auto;
      display: flex;
      overflow: hidden;
    }
    
    .slides input{
      display: none;
    }
    
    .slide{
      width: 100%;
      transition: 1s;
    }
    
    .slide .img,
    .slide .img1,
    .slide .img2{
      width: 100vw;
      height: auto;
      position: relative;
      display: flex;
      flex: 1 auto;
      flex-direction: column-reverse;
    }
    
    .img .background1,
    .img .background2,
    .img .background3{
      width: 100vw;
      height: 40vh;
      position: relative;
    }

    .navigation-manual{
      position: absolute;
      width: 100%;
      bottom: 40px;
      display: flex;
      justify-content: center;
      z-index: 55;
      }
      .navigation-auto{
        position: absolute;
        display: flex;
        width: 100%;
        justify-content: center;
        bottom: 40px;
        z-index: 50;
      }
    
    .welcome .content1 {
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: 50vh;
      margin-top: 0rem;
      top: 0%;
      left: 0px;
      padding: 3rem 3% 3rem;
      width: 100%;
      line-height: 1.5;
      font-size: 1em;
      opacity: 1;
      color: #fff;
      background:  #063957;;
      z-index: 40;
      text-align: center;
    }

    .content1 h1{
      font-size: 2.3rem;
      font-weight: normal;
    }

    /*================================================ 
                 background images
  ==================================================*/
  .img .background1{
    background: url("../src/assets/slider_backgroundwhite1mobile.webp") no-repeat center center/cover;
  }
  .img .background2 {
    background: url("../src/assets/2.jpg") no-repeat center center/cover;
  }
  .img .background3{
    background: url("../src/assets/slider_background3mobile.jpg") no-repeat center center/cover;
  }
  
  }
  

  @media screen and (max-width:425px) {
    .navigation-auto div,
    .manual-btn{
      transition: 0.5s;
    }
  }