.absd-custom-grid {
  column-count: 3;
  column-gap: 24px;
}

.absd-overlay {
  position: relative;
  bottom: 66px;
  width: 90%;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
}

.absd-shadow-box {
  border-radius: 8px;
  background: #FFF;
  box-shadow: 0 3px 24px 0 rgba(0, 0, 0, 0.08) !important;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px;
}

.absd-call-btn a {
  display: flex !important;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.absd-man-img img {
  width: auto !important;
  height: auto !important;
}

.absd-cf-form {
  max-width: 100%;
}

.absd-cf-form label {
  display: block;
  font-weight: 500;
  font-family: "Montserrat";
  font-size: 15px;
  letter-spacing: 1.5%;
  color: #1c2023;
}

.absd-cf-form input,
.absd-cf-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 16px 25px;
  border-radius: 27px;
  border: none;
  background: #ffffff;
  margin-top: 15px;
  font-size: 16px;
  font-weight: 500;
  color: #949494;
  font-family: "Montserrat";
  letter-spacing: 1.5%;
}

.absd-cf-form textarea {
  border-radius: 15px;
  height: 120px;
  font-family: "Montserrat";
  font-size: 16px;
  font-weight: 500;
  color: #949494;
}

.absd-cf-form input[type="submit"] {
  background: #008257;
  color: white;
  border-radius: 27px;
  padding: 12px;
  cursor: pointer;
  border: none;
  width: 100%;
  font-weight: 600;
  font-size: 18px;
  font-family: "Montserrat";
  letter-spacing: 1.5%;
}

.absd-cf-form-row {
  display: flex;
  column-gap: 15px;
}

.absd-cf-form-col {
  width: 50%;
}

.absd-site-logo img {
  border: none !important;
}

.absd-grid-cover {
  position: relative;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.reviews-section {
  max-width: 480px;
  margin: auto;
  margin-right: 0;
}

.reviews-viewport {
  overflow: hidden;
  width: 100%;
}

.reviews-track {
  display: flex;
  transition: transform 0.4s ease;
  gap: 20px;
}

.review-card {
  position: relative;
  flex: 0 0 100%;
  max-width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.review-content {
  padding: 15px;
  border-radius: 16px;
  background: #fff;
  color: #000;
}

.stars {
  color: #F6B100;
  font-size: 24px;
  margin-bottom: 5px;
}

.rating-text {
 	color: #1C2023;
    margin-bottom: 10px;
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: 600;
    font-family: 'Montserrat';
    line-height: 1.4;
}

.review-content p {
  	font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.5;
    margin-bottom: 10px;
    font-weight: 600;
    color: #1C2023;
    font-family: 'Montserrat';
}

.review-nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: -50px;
  transform: translate(-21px, -22px);
}

.absd-reviews-prev-btn,
.absd-reviews-next-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1C2023;
  border: 1px solid #1C2023;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  color: #fff;
}

.absd-reviews-prev-btn:hover,
  .absd-reviews-next-btn:hover {
  background: #fff;
  color: #1C2023;
  outline: none;
}

.absd-reviews-prev-btn:disabled,
  .absd-reviews-next-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.absd-reviews-prev-btn svg,
.absd-reviews-next-btn svg {
  width: 14px;
  height: 14px;
}

.cs-card-container {
  position: relative;
  padding: 20px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  width: 100%;
}

.cs-card-container::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  pointer-events: none;
  background: linear-gradient(
  180deg,
  rgba(0, 0, 0, 0) 55%,
  rgba(0, 0, 0, 0.20) 85%,
  rgba(0, 0, 0, 0.95) 100%
  );
  z-index: 1;
}

.cs-cards-content-container {
  position: absolute;
  bottom: 20px;
  padding: 0 20px;
  z-index: 2;
	width: 100%;
    left: 0;
}

.cs-cards-redirect-to-icon-container {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
}

.cs-cards-p-text {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    margin: 0;

    transition:
        max-height 0.4s ease,
        opacity 0.3s ease,
        transform 0.3s ease,
        visibility 0s linear 0.4s;
}

.cs-card-container:hover .cs-cards-p-text {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);

    transition:
        max-height 0.4s ease,
        opacity 0.3s ease,
        transform 0.3s ease,
        visibility 0s;
}

.cs-card-redirect-to-svg,
.cs-cards-p-text {
  opacity: 0;
  transition: all 0.3s ease;
}

.cs-card-container:hover .cs-card-redirect-to-svg,
  .cs-card-container:hover .cs-cards-p-text {
  opacity: 1;
}

.cs-card-href-container {
  display: none;
}

/* Mobile CSS */
@media (max-width: 767px) {

  .cs-card-container {
    padding: 15px;
    max-height: 190px !important;
	min-height: 190px !important;
	background-position: center center;
  }

  .cs-cards-redirect-to-icon-container {
    top: auto;
    bottom: 19px;
    right: 15px;
  }

  .cs-card-redirect-to-svg {
    transform: rotate(45deg);
  }

  .cs-cards-p-text {
    display: none;
  }
	
	.cs-cards-content-container h2{
		margin-bottom: 0 !important;
	}

	.absd-custom-grid.wp-container-core-group-is-layout-7b1779f5 > * + * {
	  margin-block-start: 24px !important;
	}
	
}
@media (max-width: 767px) { 
.review-card {
    border-radius: 10px;
}
}