        .people {
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .cid-tObWytVLKX {
            height: 100%;
            display: flex;
            flex-direction: column;
            background: none;
        }
		.cid-tObWytVLKX .card-wrap .content-wrap {
			padding: 1rem 0;
		}
		.cid-tObWytVLKX .servi {
			padding: 0 1rem;
		}
		.cid-tObWytVLKX .qr img {
			padding: 0px !important;
		}
		.cid-tObWytVLKX .servi h5 {
			min-height: 160px;
		}

    #splash {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      z-index: 9999;
      opacity: 1;
      transition: opacity 2s ease-in-out;
    }

    #splash.hidden {
      opacity: 0;
      pointer-events: none;
    }

    .loader-container {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
    }

    .loader {
      width: 60px;
      height: 60px;
      border: 8px solid #f3f3f3;
      border-top: 8px solid #3498db;
      border-radius: 50%;
      animation: spin 2s linear infinite;
      margin-top: 20px;
    }

    @keyframes spin {
      0% {
        transform: rotate(0deg);
      }
      100% {
        transform: rotate(360deg);
      }
    }

    .anima {
      width: 53px;
      height: 53px;
      position: relative;
      overflow: hidden;
    }
    .anima img {
      width: 100%;
      height: 100%;
      position: absolute;
      animation: zoom 3s infinite alternate;
    }

    @keyframes zoom {
      0% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.2);
      }
      100% {
        transform: scale(1);
      }
    }

		@media (max-width: 767px) {
		  .cid-tObWytVLKX .card-wrap {
			width: 94%;
		  }