.contactPage{
    background: #EEFAFF;
    padding-top: 17px;
  } 
  .innerBreadcum{
      background: #EEFAFF;
  } 
  .contact-form{
    width: 100%;
    max-width: 768px;
    margin: auto;
    padding: 31px 77px;
    border-radius: 30px;
    background: #FFF;
    box-shadow: 0px 10px 27.8px 0px rgba(0, 0, 0, 0.14);  
  } 
  .contact-form .btn-primary{
    height: 60px;
    width: 100%;
    font-size: 20px;
  } 
  .contact-form textarea{
    resize: none;
  }
  /* width */
  .contact-form select{
    scrollbar-width: thin;
  }
  .contact-form select::-webkit-scrollbar {
    width: 6px;
  }
  
  /* Track */
  .contact-form select::-webkit-scrollbar-track {
    background: #f1f1f1; 
  }
   
  /* Handle */
  .contact-form select::-webkit-scrollbar-thumb {
    background: #D9D9D9; 
  }
  
  /* Handle on hover */
  .contact-form select::-webkit-scrollbar-thumb:hover {
    background: #D9D9D9; 
  }
  
  .contact_list{
    background: linear-gradient(180deg, #EFFCFF 24.5%, rgba(241, 253, 255, 0.00) 94.17%);
  }
  .listCont_ul {
      border-radius: 30px;
      background: linear-gradient(312deg, rgba(4, 241, 154, 0.23) 0%, rgba(0, 180, 245, 0.15) 97.88%);
      height: 100%;
      padding: 30px 60px;
  }
  .listCont_ul ul{
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .listCont_ul ul .link-menu{
    display: flex;
    gap: 15px;
    color: #110047;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 90.909% */
    align-items: center;
  }
  .listCont_ul ul .link-menu img{
    width: 30px;
    height: 30px;
    object-fit: contain;
  }
  
  .service-section{
    background: linear-gradient(0deg, #EFFCFF 24.5%, rgba(241, 253, 255, 0.00) 94.17%);
  }
  
  
  /**==================mobile responsive code================**/
  @media only screen and (max-width: 1200px){
   .contact-form{
     filter: drop-shadow(0px 8px 20px rgba(0, 0, 0, 0.14));
     padding: 20px;
   } 
  .contact-form .btn-primary{
    height: 42px;
    font-size: 16px;
  } 
  .listCont_ul{
    padding: 30px;
    border-radius: 20px;
    background: linear-gradient(0deg, #C3FBE9 5.22%, #CCF2FD 100%);
  }
  .listCont_ul ul .link-menu img {
      width: 22px;
      height: 22px;
  }
  .listCont_ul ul .link-menu{
    font-size: 16px;
  }
  .contact_list .row{
    gap: 20px;
  }
  }