* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  scroll-behavior: smooth;
  
}
html{
  cursor: url(../image/png/injection.png), auto;
  
}

::-webkit-scrollbar{
  background-color: #034172;
  width: 7px;
}
::-webkit-scrollbar-thumb{
  background-color: #fcd24f;
  border-radius: 8px;
  border: 1px solid black;
}


body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

/* navbar */
header {    
  position: fixed;
  width: 100%;
  top: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: transparent;
  padding: 22px 15%; 
  border-bottom: 1px solid transparent;
  transition: all 0.45s ease;
}

.navlist {
  display: flex;
}

.navlist a {
  color:  white;
  font-size: 17px;
  font-weight: 500;
  margin: 0 25px;
  transition: all 0.45s ease;
  border-bottom: 2px solid transparent;
  cursor: url(../image/png/injection.png), auto;
}

.navlist a:hover{
  border-bottom-color: #336699;
  transform: scale(1.1);
}
  
.navlist a:active{
  color: #336699;
  border-bottom-color: #336699;
}
#menu-icon {
  font-size: 35px;
  color: white;
  z-index: 10001;
  /* cursor: pointer; */
  cursor: url(../image/png/injection.png), auto;
  float: right;
  /* margin-left: 25px; */
  display: none;
}

@media (max-width: 840px) {
  #menu-icon {
    display: block;
  }
  .navlist {
    position: absolute;
    top: -1000px;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    background: #034172;
    text-align: center;
    filter: opacity(85%);
    transition: all 0.45s ease;
  }
  .navlist a {
    display: block;
    margin: 17px;
    font-size: 20px;
    transition: all 0.45s ease;
    color: white;
  }
  .navlist a:hover {
    color: white;
  }
  .navlist a:active {
    color: white;
  }
  .navlist.open {
    top: 100%;
  }
}

/* home page  */

.landing-page {
  min-height: 100vh;
  display: flex;
  /* flex-direction: column; */
  align-items: center;
  background-color: #58b0d1;
  justify-content: center;
  text-align: center;
  /* padding-top: 100px; */
}

.title {
  font-size: 85px;
  color: white;
  margin-bottom: 20px;
  /* text-decoration: none; */
}


.tagline {
  font-size: 48px;
  color: white;
  /* margin-bottom: 40px; */
}

.image-container {
  width: 70%;
  max-width: 800px;
  text-align: center;
  /* margin-top: 40px; */
}

.image-container img {
  max-width: 75%;
  height: auto;
}



@media only screen and (max-width: 768px) {
  .landing-page{
      flex-direction: column;
  }

  .image-container{
      width: 100%;
  }

  .image-container img{
      width: 90%;
  }
  .title {
      font-size: 36px;
  }
  
  .tagline {
      font-size: 20px;
  }
}



/* section 2 */
header.sticky{
  background: #034172;
  border-bottom: 2px solid #fcd24f;
  padding: 17px 15%;
}

.predict-section {
  background-color: #52dea0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
}

.predict-section .sec2text{
  max-width: 800px;
  
}

.predict-section h1 {
  font-size: 35px;
  color: #034172;
  margin-bottom: 20px;
}

.predict-section p {
  font-size: 19px;
  color: #666;
  margin-bottom: 40px;
}

.predict-section .image-container {
  display: flex;
  justify-content: flex-end;
  
}

.predict-section img {
  max-width: 80%;
  height: auto;
}

.predictbtn{
  display: flex;
  justify-content: center;
  padding: 15px;
  background-color: #58b0d1;
}

.predict-btn .btn-predict{
  background-color: #3d9aba   ;
  border: 1.5px solid black;
  padding: 1rem;
  font-size: 1rem;
  width: 10em;
  border-radius: 1rem;
  color: white;
  box-shadow: 0 0.4rem black;
  cursor: url(../image/png/injection.png), auto;
  /* cursor: pointer; */
}


.predict-btn .btn-predict:hover{
  background: #fcd24f;
  color: black;
}

@media only screen and (max-width: 768px) {
  .predict-section {
      height: auto;
      padding: 20px 40px;
      flex-direction: column;
  }

  .predict-section .image-container{
      justify-content: center;
  }
  
  .predict-section h1 {
      font-size: 28px;
  }
  
  .predict-section p {
      font-size: 14px;
  }
}

/* section -3 */

.about-section {
  display: flex;
  background-color: #58b0d1;
  align-items: center;
  justify-content: space-between;
  color: white;

}

.about-section .about-image{
  max-width: 700px;
}

.about-section .about-image img{
  width: 100%;
}

.about-section .about-text{
  max-width: 800px;
}

.about-section .about-text h1{
  font-size: 35px;
}


.about-section .about-text p{
  font-size: 19px;
}

@media only screen and (max-width: 768px) {
  .about-section {
      height: auto;
      padding: 20px 40px;
      flex-direction: column;
  }

  .about-section .about-image{
      justify-content: center;
  }
  
  .about-section .about-text h1 {
      font-size: 28px;
  }
  
  .about-section .about-text p {
      font-size: 14px;
  }
}

/* section 4 */

.con-section {
  display: flex;
  justify-content: space-evenly;
  padding-top: 25px;
  color: #034172;
  align-items: center;
  background-color: #52dea0;
}

.con-section .conimage{
  max-width: 600px;
  text-align: center;
}

.con-section .conimage img{
  width: 70%;
}

.con-section form{
 display: flex;
 flex-direction: column;
 width: 400px;
 padding-top: 15px;

}

.con-section .form input,
.con-section .form textarea{
  width: 100%;
  padding: 10px;
  height: 35px;
  margin-bottom: 10px;
  border: 1px solid gray;
  border-radius: 4px;
}

.con-section .form textarea{
  resize: none;
  height: 90px;
}

input[type=submit]{
  background-color: #3d9aba;
  border: 1.5px solid black;
  padding: 1rem;
  font-size: 1rem;
  /* width: 10em; */
  border-radius: 15px;
  color: white;
  box-shadow: 0 0.4rem black;
  /* cursor: pointer; */
  cursor: url(../image/png/injection.png), auto;
}

input[type=submit]:hover{
  background: #fcd24f;
  color: black;
}

@media only screen and (max-width: 768px) {
  .con-section {
      height: auto;
      padding: 20px 40px;
      flex-direction: column;
  }

  .con-section .conimage{
      justify-content: center;
  }
  
  .con-section .context h1 {
      font-size: 28px;
  }
}

@media (max-width:425px) {
  .con-section form{
      width: 300px;
  }
}

@media (max-width:312px) {
  .con-section form{
      width: 250px;
  }
}

/* footer */

.footer {
  background-color: #58b0d1;
  color: white;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  font-size: 20px;
  font-weight: 200;
  height: 70px;
}

.footer a {
  color: white;
  text-decoration: none;
}

@media (max-width:681px) {
  .footer{
      font-size: 16px;
  }
}
@media (max-width:404px) {
  .footer{
      font-size: 12px;
  }
}


/* sidebar css */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #52dea0;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  scroll-behavior: smooth;
  overflow-y: scroll;
}

.sidebar.active {
  transform: translateX(0);
  scroll-behavior: smooth;
  /* width: 50%; */
}

.content {
  padding: 10px;
  /* margin-top: 150px; */

}

.form-container {
  padding: 20px;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.form-container label {
  display: block;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  cursor: url(../image/png/injection.png), auto;
}

.form-container input[type="text"],
.form-container input[type="email"],
.form-container input[type="number"],
.form-container textarea {
  width: 100%;
  padding: 5px;
  border: none;
  background-color: white;
  margin-bottom: 10px;
  border-bottom: 1px solid black;
  cursor: url(../image/png/injection.png), auto;
}

.form-container input[type="radio"] {
    margin-right: 5px;
    cursor: url(../image/png/injection.png), auto;

}

.form-container input[type="submit"],
.form-container button {
  background-color: #034172;
  border-radius: 8px;
  color: white;
  border: none;
  cursor: url(../image/png/injection.png), auto;
  padding: 10px 20px;
  /* cursor: pointer; */
}

/* .form-container input[type="submit"], */
.form-container button :hover{
  background-color: #3b9ae2;
}

.form-container button.cancel-btn {
  background-color: #921b1b;
  margin-right: 10px;
}

.form-container button.cancel-btn:hover{
  background-color: #d72828;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  background-color: white;
  padding: 15px;
  padding-top: 40px;
  margin-top: 50px;
  text-align: center;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}

.form-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}

.form-buttons button {
  flex: 1;
  margin-right: 10px;
}

@media (min-width: 768px) {
  .sidebar {
    width: 400px;
    transform: translateX(-100%);
    width: 50%;
    font-size: 16px;
  }
  
  .sidebar.active {
    transform: translateX(0);
    width: 50%;
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .sidebar {
    width: 100%;
    font-size: 16px;
  }
  
  .form-container {
    max-width: 100%;
    font-size: 14px;
  }
}

/* question form */

.option{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 25px;
}

