* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
  }
  
  
  body {
    margin: 0;
    padding: 0;
    font-size: 15px;
    background: #fff;
    line-height: 1.5;
    color: #6a7382;
    font-weight: 400;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin-bottom: 15px;
    color: #000001;
    margin-top: 0;
    line-height: 1.5;
  }
  

  #price {
    background: transparent;
    border: none;
    color: white;
    outline: none;
    width: auto;
    padding: 0;
  }
  
  #finalPrice {
    background: transparent;
    border: none;
    color: white;
    outline: none;
    max-width: 100px;
    font-size: 26px;
    padding: 0;
  }
  
  #discount {
    background: transparent;
    border: none;
    outline: none;
    text-decoration: line-through;
    color: #777787;
    font-weight: 600;
    max-width: 100px;
    font-size: 21px;
    padding: 0;
  }
  
  .price-perpage{
    display: flex;
    gap: 5px;
    align-items: center;
  }
  
  #discount::placeholder {
    color: #777787;
  }
  
  .total-price {
    display: flex;
    align-items: center;
  }
  
  .total-price>.pound1 {
    font-size: 30px;
    color: white;
  }
  
  .total-price>.pound2 {
    font-size: 21px;
    color: #777787;
  }
  
  ::placeholder {
    color: white;
  }
  
  /* Works for Chrome, Safari, Edge, Opera */
  input::-webkit-outer-spin-button,
  input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  
  .form-control {
    resize: none;
    display: block;
    width: 100%;
    padding: 16px 15px;
    font-size: 1rem;
    border-radius: 8px;
    font-weight: 400;
    line-height: 1.5;
    border: 1px solid #1e1e1e42;
    color: #1e1e1e !important;
    background-color: transparent;
  }
  
  .form-control:focus {
    background-color: transparent;
    border-color: var(--secondary);
    box-shadow: none !important;
    outline: none !important;
  }
  
  /* end */
  
  /* Button */
  
  .btn-theme {
    border: 2px solid #FFD117;
    padding: 10px 35px;
    display: inline-block;
    max-width: 180px;
    font-weight: 500;
    background: #FFD117;
    color: #212121;
    transition: all ease-in-out 0.3s;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .btn-theme:hover {
    border: 2px solid #ffffff;
    background: transparent;
    color: #ffffff;
  }
  
  .btn-check:focus+.btn,
  .btn:focus {
    outline: 0;
    box-shadow: none;
  }
  
  /* end */
  
  .hero-form-main {
    background: #0f305d;
    padding: 25px 30px;
    /*position: absolute;*/
    /*right: 0;*/
    /*top: 0;*/
    max-width: 530px;
    width: 100%;
  }
  
  .hero-form-main:after {
    content: "";
    position: absolute;
    background: #222222;
    height: 100%;
    width: 100%;
    top: 0;
    left: 100%;
  }
  
  .hero-input select,
  .hero-input input {
    border: 0;
    color: white !important;
    border-bottom: 1px solid #656570;
    border-radius: 0;
    padding: 13px 24px 13px 0;
    height: auto;
    background: transparent;
  }
  
  .hero-input select:focus, .hero-input input:focus {
    border: 0;
    border-bottom: 1px solid #656570 !important;
   }
  
  .hero-input select option {
    color: black;
  }
  
  form.hero-form h4 {
    font-size: 21px;
    color: white;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0 10px 0 0;
  }
  
  .hero-input label {
    color: #ffffff;
  }
  
  .hero-input select option {
    background: #081424;
    color: white;
  }
  
  .hero-form {
    flex-direction: column;
    display: flex;
    gap: 20px;
  }
  
  section.hero .row {
    align-items: center;
  }
  
  .paper-price p {
    margin: 0;
  }
  
  .paper-price p span {
    color: white;
  }
  
  .total-primary {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .total-primary>span {
    text-decoration: line-through;
    color: #777787;
    font-weight: 600;
    font-size: 21px;
  }
  
  form.hero-form h4 span {
    font-size: 30px;
    font-weight: 600;
  }
  
  .hero-form-main .btn-theme:hover {
    color: white;
  }
  
