/* my css */
.block.service .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  background-color: rgba(69, 7, 241, 0.6); /* Optional: for a dark overlay effect */
}

.block.service:hover .content {
  opacity: 1;
}

.block.service {
  position: relative;
  display: inline-block;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(4, 0, 255, 0.7); /* Dark overlay */
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: last baseline;
  justify-content: left;
  padding: 20px;
  box-sizing: border-box;
  text-align: left;
}

.text {
  font-size: 14px;
  line-height: 1.6;
}

.person-image-wrapper:hover .overlay {
  opacity: 1;
}

.announcement-section {
  display: flex;
  align-items: center;
}

.announcement-icon {
  font-size: 24px;
  margin-right: 10px;
  animation: blink 5s infinite;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}

.large-number {
  font-size: 24px;
}

.regular-l {
  font-size: 16px;
}

.image-container {
  position: relative;
  width: 100%;
  height: auto;
}

.description {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(4, 0, 255, 0.7); /* Dark overlay */
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: last baseline;
  justify-content: left;
  padding: 20px;
  box-sizing: border-box;
  text-align: left;
  
}

.image-container:hover .description {
  opacity: 1;
}



.step {
  display: none;
}
.step.active {
  display: block;
}

.margin-bottom-48 {
  margin-bottom: 48px;
}


.radio-group input[type="radio"],
.radio-group label {
    display: inline-block;
    margin-right: 10px; /* Adjust the spacing between radio buttons */
    vertical-align: middle; /* Aligns the radio button with the label */
}


/* Ensure the sibling fields are displayed in a row */
.sibling-fields {
  display: flex;
  align-items: center;
  gap: 10px; /* Adjust the space between fields */
}

.sibling-entry {
  display: flex;
  align-items: center;
  gap: 5px; /* Adjust the space between fields and buttons */
  margin-bottom: 5px; /* Adjust the spacing between sibling entries */
}

.button.primary.small2 {
  letter-spacing: -.08px;
  padding: 16px 24px;
  font-size: 24px;
  line-height: 144%;
}


.icon-size-small {
  width: 150px;
  height: 150px;
  align-items: center;
  justify-content: center;
    display: block; /* Makes the image a block element */
    margin: 0 auto; /* Centers the image within its container */
}


.wrapper2 {
    display: flex;
    flex-direction: column; /* Arranges the elements in a column */
    align-items: center; /* Centers elements horizontally */
    justify-content: center; /* Centers elements vertically */
}

.max-width-4202 {
  max-width: 420px;
    margin: 0 auto; /* Centers the container if needed */
    text-align: center; /* Centers text and inline elements */
}



