  /* main head */
  .upper{
    background: rgb(216,197,229);
    background: linear-gradient(172deg, rgba(216,197,229,0.1471463585434174) 49%, rgba(50,42,103,0.2591911764705882) 96%, rgba(9,62,89,0.25639005602240894) 98%, rgba(49,44,112,0.0799194677871149) 100%);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  }
  .main-head{
      padding: 1rem 0;
      display: flex;
      justify-content: center;
  }
  .main-head h2{
      padding: 10px 20px;
      background: rgb(216,197,229);
      background: linear-gradient(172deg, rgba(216,197,229,0.1471463585434174) 49%, rgba(50,42,103,0.2591911764705882) 96%, rgba(9,62,89,0.25639005602240894) 98%, rgba(49,44,112,0.0799194677871149) 100%);
      text-align: center;
      font-size: 2rem;
      font-weight: 800;
      color: rgb(79, 40, 116);
      border-radius: 10px;
      box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px inset;
  }
  
  /* button */

  .multi-button {
    filter: drop-shadow(3px 10px 15px rgba(0, 0, 0, 0.45));
    width: 100%;
    padding: 2rem 0;
    display: -moz-boxs;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  .multi-button a{
    width: 100%;
  }
  .multi-button a:hover {
    text-decoration: none;
  }
  .multi-button a button{
    height: 90px;
    width: 99.9%;
    /* background: rgb(90,105,147);
    background: linear-gradient(351deg, rgba(90,105,147,1) 0%, rgba(116,163,226,1) 11%, rgba(218,229,235,1) 37%); */
    font-weight: bold;
    color: white;
    font-size: 1.2rem;
    border: none;
    margin: auto; 
    padding: 0;
    stroke: black;
    outline: none;
    text-align: center;
  }
  .multi-button .left{
    border-radius: 20px 0 0 20px;
  }
  .multi-button .right{
    border-radius: 0 20px 20px 0;
  }
  button.right{
      display: flex;
      align-items: center;
      justify-content: space-around;
      background-image: linear-gradient(to top, #a18cd1 0%, #fbc2eb 100%);
  }
  button.left{
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-image: linear-gradient(to top, #a18cd1 0%, #fbc2eb 100%);
}
button img{
    width: 15%;
}
button h3{
    color: rgb(79, 40, 116);
    font-weight: 800;
}
  button:hover{
    cursor: pointer;
    filter: drop-shadow(3px 5px 5px rgba(0, 0, 0, 0.45));
  }
  button:active{
    filter: none;
    transform: scale(.95);
  }

  /* main body */
  .head-middle .section-heading{
    display: flex;
    justify-content: center;
  }
  .head-middle .section-heading h3{
    text-align: center;
    color: #232B38;
    font-size: 2rem;
    font-weight: 800;
    position: relative;
    border: 4px double black;
    padding:5px 15px; 
    margin-bottom: 2rem;
  }
  section.reproduction-section .reproduction-wrap .reproduction-content{
      display: flex;
  }
  .reproduction-content .serv-1{
      flex: 1.6;
  }
  .reproduction-content .serv-2{
      flex: 1;
  }
  .reproduction-content .same{
      margin-bottom: 35px;
  }
  .reproduction-content .same p{
      margin-bottom: 20px;
      color: #232B38;
  }
  .reproduction-content .same h3{
      font-size: 1.5rem;
      font-weight: 800;
      color: #232B38;
  }

  /* ======================== */

  @media screen and (max-width:767px) {
    .multi-button a{
      width: 97%;
      margin: auto;
    }
    .multi-button :nth-child(1){
      border-radius: 20px;
      margin-bottom: 5px;
    }
    .multi-button :nth-child(2){
      border-radius: 20px;
    }
    .serv-2{
      display: none;
    }
  } 