/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 24 2025 | 14:56:42 */
.et_pb_row.et_pb_row_1.hero-cta .et_pb_column.et_pb_column_4_4.et_pb_column_1.et_pb_css_mix_blend_mode_passthrough.et-last-child {
    display: flex;
    gap: 20px;
}

@media screen and (max-width: 1350px) {
	.et_pb_row.our-services .et_pb_column.et_pb_column_1_3 .et_pb_module.et_hover_enabled.et_pb_promo.et_pb_text_align_center {
    	min-height: 320px;
		position: relative;
		padding-bottom: 66px !important;
	}
	
	.et_pb_row.our-services .et_pb_column.et_pb_column_1_3 .et_pb_module.et_hover_enabled.et_pb_promo.et_pb_text_align_center .et_pb_button_wrapper {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		bottom: 30px;
	}
}

@media screen and (max-width: 1199px) {
	.et_pb_row.our-services .et_pb_column.et_pb_column_1_3 .et_pb_module.et_hover_enabled.et_pb_promo.et_pb_text_align_center {
		min-height: 380px;
	}
	
	body #page-container .et_pb_row.our-services .et_pb_promo_button.et_pb_button {
		font-size: 13px !important;
	}
}

@media screen and (max-width: 980px) {
	.et_pb_row.our-services .et_pb_column.et_pb_column_1_3 .et_pb_module.et_hover_enabled.et_pb_promo.et_pb_text_align_center {
		min-height: initial;
	}
}


@media screen and (max-width: 768px) {
	.et_pb_module.et_pb_image.et_pb_image_6.carrier-logo {
		margin-bottom: 50px;
	}
}

/* Service Card Styling */
.service-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 500px;
  gap: 0;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3); /* Lighter overlay by default */
  z-index: 1;
  transition: background 1s ease;  /* Transition for smooth hover and unhover */
}

.service-card:hover::before {
  background: linear-gradient(to top, #0071bc 0%, rgba(0, 113, 188, 0) 100%); /* Gradient on hover */
}

.service-card .et_pb_module_header {
  position: relative;
  z-index: 2;
  padding: 0 15px; /* Optional: Add padding for styling */
  transform: translateY(0);
  transition: transform 1s ease; /* Smooth transition for title movement */
}

.service-card .et_pb_promo_description div {
  height: 0; /* Initially hide the description */
  opacity: 0; /* Make description invisible */
  visibility: hidden; /* Hide description */
  transform: translateY(20px); /* Start slightly off-screen */
  transition: height 1s ease, opacity 1s ease, transform 1s ease, visibility 1s ease; /* Smooth transition */
  padding: 0 10px; /* Optional padding for styling */
}

.service-card:hover .et_pb_promo_description div {
  height: auto; /* Expand description on hover */
  opacity: 1; /* Make description visible */
  visibility: visible; /* Make the description visible */
  transform: translateY(0); /* Move the description into place */
}

.service-card .et_pb_promo_description {
  position: relative;
  z-index: 2; /* Ensure it stays above the overlay */
  flex-grow: 1; /* This will make the content push to the bottom */
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* Align the content at the bottom of the card */
  padding: 0; /* Optional padding for styling */
}

.service-card:hover .et_pb_module_header {
  transform: translateY(-20px); /* Move the title upwards on hover */
}

.oval-container {
  width: 100%;
  background-color: #f0f0f0;  /* Background color for the container */
  border-top-left-radius: 50% 20%;  /* Default radius for larger screens */
  border-top-right-radius: 50% 20%;  /* Default radius for larger screens */
  margin-top: -120px;
  z-index: 1;
  overflow: hidden;  /* Prevent overflow from any child elements */
}

/* Mobile-specific styles */
@media (max-width: 768px) {
  .oval-container {
    border-top-left-radius: 50% 6%;  /* Smaller radius for mobile */
    border-top-right-radius: 50% 6%;  /* Smaller radius for mobile */
  }
}


