#progress {
  background-color: white;
  position: fixed;
  bottom: 20px;
  right: 10px;
  height: 70px;
  width: 70px;
  display: none;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  cursor: pointer;

}
#progress-value {
  display: block;
  height: calc(100% - 15px);
  width: calc(100% - 15px);
  background-color: black;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 35px;
  color: #D8FF02;
}

body {
    padding: 0;
    margin: 0;
    height: 100%;
    width: 100%;
}

.logo {
    cursor: pointer;
    display: flex;
    height: 50px;
    width: 150px;
    justify-content: flex-start;
    align-items: center;
    margin-left: 30px;
}

header {
  background-image:linear-gradient(to top,#000000, #464A4E );
  padding: 20px;
}


.navbarcontainer {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  list-style-type: none;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  margin-top: -35px;
}

.navbarcontainer a {
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.dropdown1 {
  float: left;
  overflow: hidden;
}

.dropdown1 .dropbtn {
  font-size: 16px;    
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
}

.navbarcontainer a:hover, .dropdown1:hover .dropbtn {
  color: #D8FF02;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #000000;
  color: #D8FF02;
}

.dropdown1:hover .dropdown-content {
  display: block;
}




.dropdown2 {
  float: left;
  overflow: hidden;
}

.dropdown2 .dropbtn {
  font-size: 16px;    
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
}

.navbarcontainer a:hover, .dropdown2:hover .dropbtn {
  color: #D8FF02;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #000000;
  color: #D8FF02;
}

.dropdown2:hover .dropdown-content {
  display: block;
}



.cta {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    margin-top: -40px;
    margin-right: 30px;

}

.cta img:hover{
  opacity:1 !important;
  transition: 0.6s;
  transform: scale(1.25) translateY(-2px);
}

.banner {
 background-image: url(../StriveHive-Aischeduling/Images/header\ background.png);
 height: 300px;
 background-repeat: no-repeat;
 padding: 20px;
 width: auto;
}

.shape {
 padding: 15px;
 background-color: #D8FF02;
}

.schedular {
  display: block;
  color: #D8FF02;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 45px;
  text-decoration: none;
  margin-top: 70px;
  text-align: center;
}

  .text{
    display: block;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    text-decoration: none;
    word-wrap: normal;
    text-align: center;
    margin-right: 22%;
    margin-left: 22%;
    margin-top: -20px;

  }

  .type-button {
    display: block;
    font-weight: 700px;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    color: white;
    background-color: black;
    border: none;
    border-radius: 0px;
    padding: 1em 3em;
    margin: 0px;
    text-align: center;
    background-size: 300% 150%; 
    font-size: 18px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    margin-bottom: 15px;
  
}

#button {
  margin-left: 40%;
  margin-right: 40%;
}

  
.type-button:hover{
    color: black;
    background-color: #D8FF02;
    background-position: -100% 100%;
    text-shadow: black;
    box-shadow: 0 8px 16px 0 black(0,0,0,1);
  }
 
footer {
  background-color: black;
  padding: 30px;
  
}

.footerbar {
  list-style-type: none;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-left: -60px;
}

.nav-link {
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  color: white;
  padding: 10px 0px;
  margin: 0px 10px;
  position: relative;
}

.nav-link:hover {
  opacity: 1;
  color: white;
}

.nav-link::before {
  transition: 300ms;
  height: 4px;
  content: "";
  position: absolute;
  background-color: #D8FF02;
}

.nav-link-ltr::before {
  width: 0%;
  bottom: 5px;
  
}

.nav-link-ltr:hover::before {
  width: 100%;
  
}

li {
  text-indent: 30px;
}

.downloadIcons{
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 15px;
  padding: 10px 0px;
  margin: 0px 10px;
}

.apple{
  margin-left: 10px;
  opacity: 0.7;
}
.apple:hover{
  opacity: 1.0;
}
.google{
  margin-left: 10px;
  opacity: 0.7;
}
.google:hover{
  opacity: 1.0;
}

.footerIcons {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 0px;
    margin-right: 90px;
    gap: 35px;
    margin-bottom: 30px;
    margin-top: -100px;
}

.footerIcons img:hover{
  opacity:1 !important;
  transition: 0.6s;
  transform: scale(1.25) translateY(-2px);

}

.copyRights {
  text-align: right;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  letter-spacing: 1px;
  margin-top: -10px;
  margin-bottom: 5px;
  margin-right: 90px;
}