
  
  
  
  #loadingSpinner {
      border: 4px solid rgba(0, 0, 0, 0.3);
      border-top: 4px solid goldenrod;
      border-radius: 50%;
      /* width: 40px; */
      /* height: 40px; */
      width: 60px;
      height: 60px;
      animation: spin 2s linear infinite;
      margin: 20px auto;
    }
  
    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }
  
  .main{
      color: white;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.5rem;
      text-align: center;
      margin:11rem 0rem;
      line-height: 2.7rem;
      
  
  }
  
  .contact{
      margin: 90px;
     
  }
  
  
  .services-info{
      line-height: 3.4rem;
      padding: 3.9rem;
      text-align: left;
  }
  
  
  .services-image{
    width: 400px;
    margin-bottom: 50px;

     /* height: 200px; */
  }
  
  
   /* Extra small devices (phones, 600px and down) */
  @media only screen and (max-width: 600px) {
  
      .main{
          text-align: start;
          font-size: 1.1rem;
          display: block;
          margin: 2rem 2rem;
         
      }
  
      iframe{
         width: 100%;
      }
  
  
  .contact{
      margin: 90px 10px;
     
  }
  
  .services-info{
      padding: 0;
      margin-top: 1.5rem;
      line-height: 2.2rem;
      text-align: left;
     
  }
  .services-image{
    /* width: 400px; */
    align-items: center !important;
    margin-bottom: 50px;

     /* height: 200px; */
  }
  
  
  }
  
  /* Medium devices (landscape tablets, 768px and up) */
  @media only screen and (min-width: 768px) {
      .main{
          display: block;
      }
      iframe{
          width: 90%;
       }
  }