.hero {
    height:300px;
    background: #e60000;
    text-align:center;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
}

.hero.hero-2 {
    height:200px;
}

.content {
    font-size:18px;
}

.content image{
    width:100%;
}

.custom-h {
    height:300px;
    overflow:hidden;
    margin-bottom:10px;
}

@media only screen and (max-width: 675px) {
.custom-h {
    height:auto;
}
}


.share-button {
    padding:10px;
    width: 100%;
    background:green;
    text-align:center;
    margin-top:5px;
    border-radius:10px;
}

.share-button.whatsapp {
    background: #25D366;
}

.share-button.facebook {
    background: #1877F2;
}

.share-button.insta {
    background: linear-gradient(45deg, #833AB4, #FD1D1D, #FDCB58);
}

.share-button.x {
    background: #000;
}

.share-button a {
    text-decoration:none;
    color:white;
    font-size:20px;
    font-weight:500;
}




.create-form {
    background: #fff;
    border-radius: 6px;
    padding:20px 40px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
      rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  }
  
  .create-form .form-content {
    display: flex;
    justify-content: space-between;
  }
  
  
  .create-form .form-content .left-side {
    width: 50%;
    margin-top: 15px;
    position: relative;
  }
  
  .form-content .left-side::before {
    content: "";
    position: absolute;
    height: 70%;
    width: 2px;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    background: #afafb6;
  }
  
  
  
  
  .create-form .form-content .right-side {
    width: 50%;
    margin-left: 75px;
  }
  
  .form-content .right-side .topic-text {
    font-size: 23px;
    font-weight: 600;
    color: #3e2093;
  }
  
  .form-content .input-box {
    margin: 12px 0;
  }
  
  .form-content .input-box input,
  .form-content .input-box textarea,
  .form-content .input-box select {
    width: 100%;
    border: none;
    outline: none;
    background: #f0f1f8;
    border-radius: 6px;
    padding: 15px;
    resize: none;
  }
  
  
  .form-content .input-box input:focus,
  .form-content .input-box textarea:focus,
  .form-content .input-box select:focus {
       border: 2px solid  #373864;
  }
  
  .form-content .input-box label {
    font-size: 15px;
    font-weight: 600;
    color: #3e2093;
  }
  
  .form-content .form-content-box , .discription-box{
    min-height: 90px;
  }
  
  
  .form-content .button {
    display: inline-block;
    margin-top: 12px;
  }
  
  .form-content .button{
    color: #fff;
    font-size: 18px;
    outline: none;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    background: #3e2093;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .button {
    background: #5029bc;
  }
  
  @media (max-width: 950px) {
    .create-form {
      width: 100%;
      padding: 20px;
    }
  
    .create-form .form-content .right-side {
      width: 75%;
      margin-left: 55px;
    }
  }
  
  @media (max-width: 820px) {
    .create-form .form-content {
      flex-direction: column-reverse;
    }
  
    .create-form .form-content .left-side {
      width: 100%;
      flex-direction: row;
      margin-top: 40px;
      justify-content: center;
      flex-wrap: wrap;
    }
  
    .create-form .form-content .left-side::before {
      display: none;
    }
  
    .create-form .form-content .right-side {
      width: 100%;
      margin-left: 0;
    }
  }
  
  @media (max-width: 950px) {
   
    .create-form.image .form-content {
      flex-direction: column-reverse;
    }
  
    .create-form.image .form-content .left-side {
      width: 100%;
      flex-direction: row;
      margin-top: 40px;
      justify-content: center;
      flex-wrap: wrap;
    }
  
    .create-form.image .form-content .left-side::before {
      display: none;
    }
  
    .create-form.image .form-content .right-side {
      width: 100%;
      margin-left: 0;
    }
  }
  
  