*{
  padding:0;
  margin:0;
  box-sizing: border-box;
}


/* navigation bar css design--adk--*/
header{
  background-color: #1B4F72;
  width:100%;
}

li {
  list-style:none;
}

a{
  color:white;
  text-decoration: none;
}

.navbar{
  min-height:70px;
  display: flex;
  flex-direction:center;
  justify-content: space-between;
  align-items: center;
  padding:0 24px;
  color:#1B4F72;
}

.nav-menu{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  color:#1B4F72;
}

.nav-branding{
  font-size:2rem;
}

.nav-link{
  transition:0.7s ease; 
}

.nav-link:hover{
  color:rgb(240, 211, 49);
}

.hamburger{
  display:none;
  cursor:pointer;
}

.bar{
  display:block;
  width: 25px;
  height:3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color:white;
}

@media(max-width:768px) {
  .hamburger{
    display:block;
  }

  .hamburger.active .bar:nth-child(2){
    opacity:0;
  }

  .hamburger.active .bar:nth-child(1){
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3){
    transform: translateY(-8px) rotate(-45deg);
  }


  .navbar a{
    align-self:center;
    justify-self: center;
    justify-items: center;
  }

  .nav-menu{
    position:absolute;
    background-color:#1B4F72;
    left:-100%;
    top:70px;
    gap:0;
    flex-direction: column;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    z-index: 100;
  }

  .nav-item{
    margin:16px 10px;
    z-index:100;
  }

  .nav-menu.active{
    left:0;
    background-color:#1B4F72;
  }
}

/* navigation bar end */






/* text and image display segment end ;*/


.aloecontainer {
  width:100%;
  height:100%;
  display:flex;
  flex-direction: column;
  background-color:#1010115d;
  align-content:center;
}







.dailyaloeimg {
  width:100%;
}

.actext {
  width:auto;
  background:url(images/difb12.jpg);
  background-color:#ecece77c;
  color: #101011;
  padding: 10px;
  text-align: center; /* Center align all the text within .actext */
}

.actext h2 {
  margin: 0;
  font-size: 20px;
  text-align: center;
  background-color: #1B4F72;
  color: #ffffff;
  padding:5px;
  border-radius:10px;
  margin-bottom:10px;
}

.actext p {
  margin-top:15px;
  margin-bottom: 30px;
  font-size: 16px;
  text-align: center;
}
/*
.buybutton{  
  width: 50%; 
  max-width: 200px; 
  padding:15px 0;
  border-radius: 25px;
  font-weight: bold;
  border: 2px solid #e4e286;
  background: #101011;
  color:#ffffff;
  cursor:pointer;
  transition: background 0.5s;
  display: inline-block; 
  margin-top: 20px; 
}
*/ 
@media (min-width: 770px){
  .aloecontainer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content:center;
    height:auto;
    padding:10px;
  }

  .dailyaloeimg {
    width:50%;
    max-height:auto;
  }
  


  .actext {
    background:url(images/difb12.jpg);
    background-color: #f4f6e7;
    color: rgb(0, 0, 0);
    padding: 25px;
    font-weight:bold;
    max-height:auto;
  }

  .actext h2 {
    margin: 15px;
    font-size: 34px;
    text-align: center;
    background-color:0B5345;
    color:   rgb(255, 255, 255);
  }

  .actext p {
    font-size: 18px;
    text-align: center;
    margin-bottom:30px;
    margin-top:15px;
  }
  
  .buybutton{  
    width: 30%; /* Set the width to 30% for larger screens */
    max-width: 200px;
    max-height: auto;
    margin-top: 10px; /* Add more top margin for larger screens */
  }

} 

/* text and image display segment end ;*/





















/*responsive video display */
.videodemo{
  width:100%;
  height: 100%;
  background-color:#F9FBE7;
  display:flex;
  flex-direction:column;
  padding:20px;
  justify-content:space-evenly;
  align-items:center;
  align-content:center;
}

.videodemo h1{
  font-size:30px;
  margin:10px;
  text-align:center;
}

.videopad{
  width:100%;
  height:auto;
  margin:5px;
  position:relative;
  display:block;
  overflow: hidden;

  &::before {
    padding-top : 56.25%;
    display:block;
    content: "";
    box-sizing: border-box;
  }  
}

iframe {
  position:absolute;
  top: 0;
  bottom:0;
  left:0;
  width:100%;
  height:100%;
  border:0;
} 

























/*sign-up page css start*/
/*order form*/

.orderform{
  width:100%;
  height:100%;
  background:#D6EAF8;
  display: flex;
  flex-direction:column;
  align-items:center;
  align-content:center;
  justify-content: center;
  text-align:center;
}

form{
  background:white;
  display:flex;
  flex-direction:column;
  padding: 2vw 4vw;
  margin:5vw;
  width: 90%;
  max-width:600px;
  max-height:90%;
  border-radius:15px;
  justify-content:space-around;
}

form h3{
  color:#D4AC0D;
  font-size:30px;
  font-weight:bold;
  margin-bottom:20px;
}

form input, form textarea{
  border:0;
  margin: 10px 0;
  padding: 20px;
  background:#D6EAF8;
  border-radius:10px;
}

form button{
  padding:15px;
  background:#D4AC0D;
  border-radius:30px;
  font-size:20px;
  color:#49494d;
  font-weight:bold;
  border:0;
  outline:none;
  Cursor:pointer;
  width:150px;
  margin:20px auto 0;
}


form button:hover,
form button:active{
  color: white;
  background-color:#101011;
} 
/*form page design end*/















/*footer css design */

.footerContainer {
  width:100%;
  height:auto;
  background:url(images/WPFB.jpg);
  background-size:cover;
  background-repeat:no-repeat;
  background-color:#101011ad;
  margin:none;
  padding:5px;
  text-align:center;
}

.footerContainer p{
  margin-top:10px;
  color:white;
}

.smflex{
  width:100%;
  height:auto;
  display:flex;
  flex-direction:row;
  justify-content:center;
  justify-content:space-evenly;
  align-items: center;
  align-content: center;
  text-align: center;
}

.logoim{
  width:8vw;
}

.logoflex{
  display:flex;
  flex-direction:column;
  justify-content:center;
  justify-content:space-evenly;
  align-items: center;
  align-content: center;
  text-align: center;
  margin:10px;
  border-radius:15px;
}

.logoflex img{
  margin-top:10px;
}

.logoflex h3{
  font-size:35px;
  font-weight:bold;
  padding:5px;
  margin:5px;
  color:white;
}

.logoflex p{
  font-size:38px;
  padding: 8px;
  margin:5px;
  color:#E3F2FD;
  font-style:roboto;
}


.socialflex {
  display:flex;
  flex-direction:row;
  justify-content:center;
  justify-content:space-evenly;
  align-items: center;
  align-content: center;
  text-align: center;
  padding:5px;
  margin:10px;
  background-color:#AED6F1;
  border-radius:20px;
}

.socialflex a{
  color:#101011;
}

.fbfle{
  display:flex;
  flex-direction:column;
  justify-content:center;
  justify-content:space-evenly;
  align-items: center;
  align-content: center;
  text-align: center;
  padding:5px;
  margin:5px;
}


.tubefle{
  display:flex;
  flex-direction:column;
  justify-content:center;
  justify-content:space-evenly;
  align-items: center;
  align-content: center;
  text-align: center;
  padding:5px;
  margin:5px;
}

.facebooklink{
  display:flex;
  flex-direction:row;
  justify-content: center;
  align-items:center;
  align-content:center;
  text-align:center;
  justify-content:space-evenly;
  margin:5px;
}
.Whatsapp{
  display:flex;
  flex-direction:row;
  justify-content: center;
  align-items:center;
  align-content:center;
  text-align:center;
  justify-content:space-evenly;
  margin:5px;
}

.instagram{
  display:flex;
  flex-direction:row;
  justify-content: center;
  align-items:center;
  align-content:center;
  text-align:center;
  justify-content:space-evenly;
  margin:5px;
}

.youtub{
  display:flex;
  flex-direction:row;
  justify-content: center;
  align-items:center;
  align-content:center;
  text-align:center;
  justify-content:space-evenly;
  margin:5px;
}

.rwah, .gram{
  width:8vw;
  height:auto;
  margin:5px;
}






.socialflex a:hover,
.socialflex a:active{
  color: white;
  background-color:#101011;
} 

.socialflex a{
  background-color:#ffffff;
  padding:10px;
  border-radius:20px;
}



@media (max-width: 770px){

  .footerContainer{
    background:url(images/WPFBp.jpg);
    background-size:cover;
    background-repeat:no-repeat;
  }

  .smflex{
    width:100%;
    height:auto;
    display:flex;
    flex-direction:column;
    justify-content:center;
    justify-content:space-evenly;
    align-items: center;
    align-content: center;
    text-align: center;
  }


  .socialflex{
    display:flex;
    flex-direction:column;
    justify-content:center;
    justify-content:space-evenly;
    align-items: center;
    align-content: center;
    text-align: center;
    padding:0px;
    margin:0px;
    background-color:#AED6F1;
    border-radius:30px;
  }

  .logoflex h3{
    font-size:25px;
    font-weight:bold;
    padding:3px;
    margin:5px;
    color:white;
  }
  
  .logoflex p{
    font-size:18px;
    padding: 4px;
    margin:5px;
    color:#E3F2FD;
  }

  .tubefle{
    margin-top:0px;
    padding-top:0px;
  }

  .fbfle{
    margin-bottom:0px;
    padding-bottom:0px;
  }


}


.scrollicon{
  display:none;
}


@media (max-width: 770px){
  .scrollicon{
    width:15vw;
    height:auto;
    border-radius:10px;
    margin:5px;
    display:block;
    align-self:center;
    margin-left:35%;
  }
}


/*Footer end */