@import url(https://fonts.googleapis.com/css?family=Barlow:300,300i,400,400i,500,500i,600,600i,700,700i&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap);

/* General Section Styles */
.mbr-section {
  padding: 4rem 1rem;
  background-color: #f9f9f9; /* Shared background for uniformity */
}

.comparison-wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 100%; /* Allow the wrapper to stretch to the full viewport */
  padding: 0 5%; /* Add fluid padding for better aesthetics */
}

/* Individual Columns */
.comparison-column {
  background-color: rgba(235, 235, 235, 0.8); /* White background */
  border-radius: 12px; /* Rounded corners */
  padding: 30px; /* Internal spacing */
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  text-align: left; /* Left-align content */
  flex: 1 1 48%; /* Flexible width for equal-sized columns */
  display: flex; /* Use flexbox inside columns */
  flex-direction: column; /* Stack content vertically */
  justify-content: space-between; /* Distribute content evenly */
  position: relative;
  margin-bottom: 0; /* Prevent unnecessary spacing between elements */
  min-height: 425px;
}
.comparison-column:hover {
  transform: scale(1.03); /* Subtle hover effect */
}

/* Headers */
.header {
  text-align: center;
  margin-bottom: 1rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 1rem;
}

/* General Section Styles */
.header1 {
  position: relative;
  padding: 5rem 1rem;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Background Image */
.header1 .back {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Ensure it stays behind all content */
  background-size: cover;
  background-position: center;
}

/* Header Styling */
.custom-header {
  background-color: #d9d9d9; /* Light gray */
  border-radius: 12px; /* Rounded corners */
  padding: 15px 25px; /* Internal spacing */
  text-align: center; /* Center-align text */
  display: inline-block; /* Shrink to fit content */
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15); /* Subtle shadow */
  margin-bottom: 15px; /* Space below header */
  min-height: 10px;
}

/* Header Text */
.header-title {
  font-size: 20px; /* Larger font for title */
  font-weight: bold; /* Bold text */
  color: #333333; /* Dark text */
  display: block;
}

.header-subtitle {
  font-size: 16px; /* Subtitle font size */
  font-weight: normal;
  color: #333333; /* Consistent color */
  display: block;
}

/* Arrow Styling */
.comparison-arrow {
  position: absolute; /* Positioning relative to the wrapper */
  top: 50%; /* Vertically center the arrow between columns */
  left: 50%; /* Center horizontally relative to the wrapper */
  transform: translate(-50%, -50%); /* Adjust position */
  z-index: 2; /* Ensure it overlays columns */
  width: 200px; /* Default size for the arrow */
  height: auto;
  pointer-events: none; /* Prevent arrow from interfering with interactions */
}

/* Arrow Image */
.comparison-arrow img {
  width: 100%; /* Stretch arrow between columns */
  height: auto;
  max-width: 500px; /* Cap maximum width */
}

/* Effective Date Section */
.effective-date h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #333333;
  margin-bottom: 0.5rem;
}

.effective-date p {
  font-size: 1rem;
  color: #666666;
}

/* List Styling */
.details {
  list-style: none; /* Remove bullets */
  padding: 0;
  margin: 0;
  font-size: 14px; /* Font size for details */
  color: #555555; /* Gray text */
  line-height: 1.6; /* Line spacing */
  width: 100%;
}

.details li {
  margin-bottom: 10px; /* Space between items */
}

.details li strong {
  color: #9ad387; /* Highlight key points */
}

/* Responsive Design */
@media (max-width: 992px) {
  .comparison-wrapper {
    flex-direction: column; /* Stack columns vertically */
    padding: 0 10px; /* Adjust padding for smaller screens */
  }

  .comparison-arrow {
    display: none; /* Hide arrow on smaller screens */
  }

  .comparison-column {
    margin-bottom: 2rem; /* Add spacing between stacked columns */
    max-width: 100%; /* Allow full width for smaller screens */
  }
}

@media (max-width: 768px) {
  .comparison-arrow img {
    width: 80%; /* Adjust size for smaller screens */
  }
}

/* Responsive Design for Larger Screens */
@media (min-width: 1200px) {
  .comparison-wrapper {
    padding: 0 40px; /* Add some padding on larger screens for better appearance */
  }
}

/* Section Container */
.full-service-section {
  padding: 60px 20px;
  background: linear-gradient(
    180deg,
    #f9f9f9 0%,
    #ffffff 100%
  ); /* Light gradient */
  border-top: 1px solid #e0e0e0; /* Subtle top border for separation */
  border-bottom: 1px solid #e0e0e0; /* Subtle bottom border for separation */
}

/* Text Column */
.text-column {
  padding: 20px;
  text-align: left;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

.service-details h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 20px;
  color: #444;
}

.service-details p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Button Group */
.custom-button-group {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
}

/* General Button Style */
.custom-btn {
  padding: 8px 20px; /* Smaller size */
  font-size: 0.875rem; /* Smaller font size */
  font-weight: bold;
  color: #333333;
  text-decoration: none;
  border: none;
  border-radius: 20px; /* Smaller, rounded corners */
  background: linear-gradient(
    90deg,
    #ffed95,
    #fbc02d
  ); /* Gradient background */
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.1); /* Slight shadow */
  text-align: center;
  display: inline-block;
  width: 200px; /* Fixed width for consistent button size */
  text-transform: uppercase; /* Optional: Makes text uppercase */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect */
.custom-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.15);
}

/* Secondary Button */
.custom-btn-secondary {
  background: linear-gradient(
    90deg,
    #ffed95,
    #ffd54f
  ); /* Slightly lighter gradient */
  color: #000;
}

.custom-btn-secondary:hover {
  text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .custom-button-group {
    flex-direction: column; /* Stack buttons vertically on smaller screens */
    gap: 10px;
  }

  .custom-btn {
    width: 100%; /* Full width on smaller screens */
  }
}

/* Logo Section */
.logo-section {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.logo {
  max-width: 60px;
  margin-right: 1rem;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
  line-height: 1.2;
}

/* General Section Styles */
.header1 {
  position: relative;
  padding: 5rem 1rem;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Main Title Styling */
.main-title {
  font-weight: 500;
  text-align: left; /* Aligns the title to the left */
  margin: 0; /* Remove unnecessary margins */
  padding: 0; /* Reset padding for the title */
}

/* Diminished Style for "Drug and Alcohol" */
.main-title .diminished {
  font-size: 1.7rem; /* Smaller font size */
  font-weight: 300; /* Lighter weight */
  color: #000; /* White text color */
  opacity: 0.8; /* Slight transparency for a subtle effect */
  text-transform: capitalize; /* Ensure proper casing */
  letter-spacing: 0.5px; /* Slightly spaced out for readability */
  line-height: 1;
}

/* Highlighted Style for "Clearinghouse" */
.main-title .highlighted {
  line-height: 0.5; /* Adjust spacing between lines */
  font-size: 4rem; /* Larger font for emphasis */
  font-weight: 650; /* Bold for stronger emphasis */
  color: #000; /* White color for clarity */
  text-transform: capitalize; /* Ensure proper casing */
  letter-spacing: 1px; /* Slightly wider spacing */
  line-height: 1.2; /* Adjust line spacing */
}

/* Button Group Styling */
.button-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.btn-custom {
  padding: 0.6rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: all 0.3s ease;
  align-content: center;
}

/* Yellow Button */
.yellow-btn {
  background: #9ad387;
  color: #333333;
}

.yellow-btn:hover {
  background: linear-gradient(90deg, #ffd54f, #ffcc00);
  color: #000000;
}

/* Orange Button */
.orange-btn {
  background: #9ad387;
  color: #000000;
}

.orange-btn:hover {
  background: linear-gradient(90deg, #ffd54f, #ffcc00);
  color: #000000;
}

/* Subtext Styling */
.subtext {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 1rem;
  color: #000000;
}

/* Base Responsive Design for Tablets and Phones */
@media (max-width: 992px) {
  .main-title {
    font-size: 2rem; /* Larger size for medium devices */
    line-height: 1.3;
    text-align: center;
  }

  .button-group {
    flex-direction: column; /* Stack buttons */
    gap: 15px; /* Add spacing between buttons */
    align-items: center; /* Center-align buttons */
  }

  .subtext {
    font-size: 1rem; /* Reduce size slightly */
    text-align: center; /* Center-align for readability */
  }

  .container {
    padding: 15px; /* General padding for smaller screens */
  }
}

/* Responsive Design for Smaller Tablets and Larger Phones */
@media (max-width: 768px) {
  .main-title {
    font-size: 1.8rem; /* Slightly smaller font for compact devices */
    line-height: 1.2;
    text-align: center;
  }

  .highlighted {
    font-size: 1.4rem; /* Adjust highlighted text size */
    text-align: center;
    white-space: normal; /* Allow wrapping */
  }

  .button-group {
    flex-direction: column; /* Stack buttons */
    gap: 12px;
    align-items: center;
  }

  .subtext {
    font-size: 0.9rem; /* Reduce size */
    text-align: center;
  }
}

/* Responsive Design for Small Phones (< 576px) */
@media (max-width: 576px) {
  .main-title {
    font-size: 1.5rem; /* Further reduced font size */
    line-height: 1.1; /* Tighten spacing */
    text-align: center;
  }

  .highlighted {
    font-size: 1.2rem; /* Further reduce highlighted text */
    text-align: center;
    word-break: break-word; /* Prevent overflow */
  }

  .button-group {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .subtext {
    font-size: 0.8rem; /* Smaller font size */
    text-align: center;
  }

  .container {
    padding: 10px; /* Adjust padding */
  }
}

/* Responsive Design for Very Small Screens (< 439px) */
@media (max-width: 439px) {
  .main-title {
    font-size: 1.2rem; /* Further reduced for tiny screens */
    line-height: 1.2;
    text-align: center;
  }

  .highlighted {
    font-size: 1rem; /* Compact highlighted text */
    text-align: center;
    word-break: break-word;
  }

  .button-group {
    flex-direction: column;
    gap: 8px; /* Tight spacing */
    align-items: center;
  }

  .subtext {
    font-size: 0.7rem; /* Smallest font size */
    text-align: center;
  }

  .container {
    padding: 8px; /* Compact padding */
  }

  .comparison-column {
    padding: 10px; /* Compact column padding */
  }
}

/* Section Styles */
.steps-section {
  padding: 60px 20px;
  background-color: #f9f9f9; /* Light neutral background */
  font-family: "Barlow", sans-serif; /* Consistent typography */
}

/* Title Styles */
.steps-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 10px;
}

.steps-subtitle {
  font-size: 1rem;
  color: #666666;
  margin-bottom: 40px;
}

/* Wrapper for Steps */
.steps-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* Step Box */
.step-box {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  flex: 1 1 30%; /* Adjust size to fit three steps in one row */
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Step Number */
.step-number {
  width: 40px;
  height: 40px;
  background-color: #ffcc00;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 20px;
}

/* Step Content */
.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333333;
}

.step-box p {
  font-size: 1rem;
  color: #555555;
  line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .steps-wrapper {
    flex-direction: column; /* Stack steps vertically on smaller screens */
    align-items: center;
  }

  .step-box {
    width: 100%; /* Full width for smaller screens */
  }
}

/* Footer Section */
.footer-section {
  background-color: #f9f9f9;
  padding: 40px 20px;
  color: #333;
  font-family: "Barlow", sans-serif;
}

.footer-title {
  font-size: 2rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 10px;
}

.footer-text {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.linkedin-link {
  display: inline-block;
  margin-top: 10px;
  color: #0077b5;
  font-weight: bold;
  text-decoration: none;
}

.linkedin-icon {
  width: 20px;
  height: auto;
  margin-right: 5px;
  vertical-align: middle;
}

/* Contact Details */
.footer-contact {
  font-size: 1rem;
  color: #555;
  margin-bottom: 10px;
}

.footer-contact a {
  color: #000;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

/* Placeholder Styling */
.map-placeholder,
.logo-placeholder,
.bbb-placeholder,
.chamber-placeholder {
  background-color: #e0e0e0;
  text-align: center;
  padding: 30px;
  border: 1px dashed #ccc;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Footer Rows */
.footer-details {
  margin-top: 40px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.footer-logos div {
  margin-bottom: 15px;
}

/* Footer Map Image */
.footer-map-img {
  width: 100%; /* Full width of the column */
  height: auto; /* Maintain aspect ratio */
  border-radius: 8px; /* Optional: rounded corners */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Optional: subtle shadow */
}

.one-third-paragraph {
  max-width: 66.33%; /* Restrict the width to 1/3 of the container */
  text-align: left; /* Optional: Center text within the paragraph */
}

.logo-class {
  width: 300px; /* Adjust the width */
  height: auto; /* Maintain aspect ratio */
  display: block; /* Ensure it aligns as a block element */
}
/*header logo*/
.hoff_logo {
  font-size: 14px;
  color: #1b8fddbf;
  font-weight: lighter;
  text-shadow: 1px 1px 1px black;
  letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .footer-details {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .footer-company-info,
  .footer-map {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .footer-company-info,
  .footer-map,
  .footer-details {
    text-align: center;
  }

  .map-placeholder,
  .logo-placeholder,
  .bbb-placeholder,
  .chamber-placeholder {
    margin: 10px auto;
  }
}

/* Custom Header Section */
.header-custom-simple {
  background-color: #9ad387; /* Set your desired background color */
  padding: 130px 20px; /* Add some padding for spacing */
  text-align: center; /* Center-align the text */
  padding-bottom: -50px;
}

.header-custom-simple .custom-container {
  max-width: 1200px;
  margin: 0 auto; /* Center the container horizontally */
}

.header-custom-simple .page-title {
  font-size: 3rem; /* Main title size */
  font-weight: 700; /* Bold text */
  color: #333333; /* Dark text for contrast */
  margin-bottom: 10px; /* Space between title and subtitle */
  line-height: 1.2;
}

.header-custom-simple .subtitle {
  font-size: 1.3rem; /* Smaller subtitle */
  font-weight: 400; /* Normal weight */
  color: #555555; /* Slightly muted text color */
}

/* Responsive Adjustments for Smaller Screens */
@media (max-width: 768px) {
  .header-custom-simple .page-title {
    font-size: 1.5rem; /* Reduce font size for tablets */
    line-height: 1.3; /* Adjust spacing */
    padding: 0 10px; /* Adjust padding */
  }
}

@media (max-width: 576px) {
  .header-custom-simple .page-title {
    font-size: 1.2rem; /* Smaller font for mobile devices */
    line-height: 1.4; /* Increase line spacing for legibility */
    padding: 0 5px; /* Minimal padding */
  }
}

/* Responsive Adjustments for Subtitle */
@media (max-width: 992px) {
  .header-custom-simple .subtitle {
    font-size: 1rem; /* Adjust font size for tablets */
    line-height: 1.5; /* Slightly increase line spacing for readability */
    padding: 0 8px; /* Adjust padding */
  }
}

@media (max-width: 768px) {
  .header-custom-simple .subtitle {
    font-size: 0.9rem; /* Smaller font for mobile devices */
    line-height: 1.6; /* Improve spacing for readability on smaller screens */
    padding: 0 6px; /* Reduce padding */
  }
}

@media (max-width: 576px) {
  .header-custom-simple .subtitle {
    font-size: 0.8rem; /* Further reduce font size for smaller mobile screens */
    line-height: 1.7; /* Add more spacing for clarity */
    padding: 0 4px; /* Minimize padding for small screens */
  }
}

/* Section Styling */
.cid-clearinghouse-guide {
  background-color: #fff;
  padding: 50px 0;
}

/* Flow Boxes */
.flow-box {
  background-color: #000;
  color: #fff;
  border-radius: 20px;
  padding: 5px 10px; /* Compact padding */
  font-size: 0.8rem;
  font-weight: 400;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 10px;
  min-height: 90px;
  align-content: space-evenly;
}

.flow-box.light-gray {
  background-color: #f5f7f9; /* Light gray background */
  color: #333;
}

/* Step Number */
.step-number {
  background-color: #88c799;
  color: #fff;
  font-size: 0.8rem;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  line-height: 30px;
  margin: 0 auto 5px;
}

/* Arrows */
.arrow-right,
.arrow-left,
.arrow-down {
  position: relative;
  width: 50px;
  height: 3px;
  background-color: #000;
  margin: auto 0;
}

.arrow-right::after,
.arrow-left::after,
.arrow-down::after {
  content: "";
  position: absolute;
  width: -5px;
  height: -5px;
  border-style: solid;
}

.arrow-right::after {
  right: -5px;
  top: -5px;
  border-width: 5px 5px 5px 0px;
  border-color: transparent transparent transparent #000;
}

.arrow-left::after {
  left: -2px;
  top: -4px;
  border-width: 10px 10px 10px 0;
  border-color: transparent #000 transparent transparent;
}

.arrow-down::after {
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%);
  border-width: 5px 5px 0 5px;
  border-color: #000 transparent transparent transparent;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .flow-box {
    margin-bottom: 15px;
    font-size: 0.7rem;
    padding: 5px;
  }
}

@media (max-width: 480px) {
  .flow-box {
    font-size: 0.6rem;
    padding: 4px;
  }
  .step-number {
    width: 25px;
    height: 25px;
    line-height: 25px;
    font-size: 0.7rem;
  }
}

/*end custom css*/

body {
  font-family: Barlow;
}
.display-1 {
  font-family: "Barlow", sans-serif;
  font-size: 4.8rem;
  letter-spacing: -1px;
}
.display-1 > .mbr-iconfont {
  font-size: 7.68rem;
}
.display-2 {
  font-family: "Barlow", sans-serif;
  font-size: 2.6rem;
}
.display-2 > .mbr-iconfont {
  font-size: 4.16rem;
}
.display-4 {
  font-family: "Barlow", sans-serif;
  font-size: 0.9rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.44rem;
}
.display-5 {
  font-family: "Barlow", sans-serif;
  font-size: 1.4rem;
  letter-spacing: -1px;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.24rem;
}
.display-7 {
  font-family: "Barlow", sans-serif;
  font-size: 1.1rem;
  line-height: 1.4;
}
.display-7 > .mbr-iconfont {
  font-size: 1.76rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.84rem;
    font-size: calc(2.33rem + (4.8 - 2.33) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc(
      1.4 * (2.33rem + (4.8 - 2.33) * ((100vw - 20rem) / (48 - 20)))
    );
  }
  .display-2 {
    font-size: 2.08rem;
    font-size: calc(1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc(
      1.4 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)))
    );
  }
  .display-4 {
    font-size: 0.72rem;
    font-size: calc(0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc(
      1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)))
    );
  }
  .display-5 {
    font-size: 1.12rem;
    font-size: calc(1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc(
      1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)))
    );
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #149dcc !important;
}
.bg-success {
  background-color: #ffda00 !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #767676 !important;
}
.bg-danger {
  background-color: #b1a374 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #149dcc !important;
  border-color: #149dcc !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #40c0ec !important;
  border-color: #40c0ec !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #40c0ec !important;
  border-color: #40c0ec !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff3366 !important;
  border-color: #ff3366 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff809f !important;
  border-color: #ff809f !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff809f !important;
  border-color: #ff809f !important;
}
.btn-info,
.btn-info:active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #a69e96 !important;
  border-color: #a69e96 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #a69e96 !important;
  border-color: #a69e96 !important;
}
.btn-success,
.btn-success:active {
  background-color: #ffda00 !important;
  border-color: #ffda00 !important;
  color: #000000 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #000000 !important;
  background-color: #ffe54d !important;
  border-color: #ffe54d !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #000000 !important;
  background-color: #ffe54d !important;
  border-color: #ffe54d !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #767676 !important;
  border-color: #767676 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #9c9c9c !important;
  border-color: #9c9c9c !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #9c9c9c !important;
  border-color: #9c9c9c !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ccc3a5 !important;
  border-color: #ccc3a5 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ccc3a5 !important;
  border-color: #ccc3a5 !important;
}
.btn-white {
  color: #222222 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black,
.btn-black:active {
  background-color: #222222 !important;
  border-color: #222222 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #484848 !important;
  border-color: #484848 !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #484848 !important;
  border-color: #484848 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #0b566f;
  color: #0b566f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #149dcc;
  border-color: #149dcc;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #149dcc !important;
  border-color: #149dcc !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #cc0033;
  color: #cc0033;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #ff3366;
  border-color: #ff3366;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff3366 !important;
  border-color: #ff3366 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #4b453f;
  color: #4b453f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #998300;
  color: #998300;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #000000;
  background-color: #ffda00;
  border-color: #ffda00;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #000000 !important;
  background-color: #ffda00 !important;
  border-color: #ffda00 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #434343;
  color: #434343;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #767676;
  border-color: #767676;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #767676 !important;
  border-color: #767676 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #7a6e45;
  color: #7a6e45;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #b1a374;
  border-color: #b1a374;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #222222;
  border-color: #222222;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #222222 !important;
  border-color: #222222 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #149dcc !important;
}
.text-secondary {
  color: #ff3366 !important;
}
.text-success {
  color: #ffda00 !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #767676 !important;
}
.text-danger {
  color: #b1a374 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #57c8ef !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #ff99b3 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #ffe966 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #b2aba4 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #a9a9a9 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #d6ceb5 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #000000 !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #82786e;
}
.alert-warning {
  background-color: #767676;
}
.alert-danger {
  background-color: #b1a374;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #149dcc;
  border-color: #149dcc;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #149dcc;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b4e6f8;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #fff8cc;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #beb8b2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #b6b6b6;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dfd9c6;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: "Barlow", sans-serif;
  font-size: 1.1rem;
  line-height: 1.4;
}
.form-control > .mbr-iconfont {
  font-size: 1.76rem;
}
blockquote {
  border-color: #149dcc;
}
/* Forms */
.mbr-form .btn {
  margin: 0.4rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #149dcc;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #149dcc;
  border-bottom-color: #149dcc;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker
  .xdsoft_timepicker
  .xdsoft_time_box
  > div
  > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #149dcc !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #ff3366 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23149dcc' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5px;
}
.cid-rpRmAXo0RI {
  padding-top: 150px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/clearinghouseregistrations.webp");
  background-size: fixed;
  background-position: center;
  background-repeat: no-repeat;
}
.cid-rpRmAXo0RI .row {
  justify-content: flex-end;
}
.cid-rpRmAXo0RI .back {
  position: absolute;
  top: 0;
  right: 0;
  width: 63%;
  height: 10%;
  background-color: #efeeee;
}
.cid-rpRmAXo0RI .block {
  background-color: rgb(
    55,
    108,
    161,
    0.85
  ); /* rgba(79,102,140,.75); /*#ffda00; */
}
.cid-rpRmAXo0RI img {
  width: 100%;
}
.cid-rpRmAXo0RI .content-wrapper {
  margin: auto;
  position: relative;
  padding: 10rem 16rem;
}
.cid-rpRmAXo0RI .content {
  max-width: 600px;
}
.cid-rpRmAXo0RI h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 19rem;
  bottom: 35%;
}
@media (max-width: 1600px) {
  .cid-rpRmAXo0RI .content-wrapper {
    padding: 6rem 4rem;
  }
  .cid-rpRmAXo0RI h4 {
    right: 6rem;
  }
}
@media (max-width: 767px) {
  .cid-rpRmAXo0RI .content-wrapper {
    padding: 4rem 0rem;
  }
  .cid-rpRmAXo0RI h4 {
    right: 2rem;
    bottom: 30%;
  }
  .cid-rpRmAXo0RI .content-wrapper {
    padding: 4rem 3rem 4rem 0rem;
  }
}
.cid-rpSfjvEG19 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efeeee;
}
.cid-rpSfjvEG19 .card-wrapper {
  position: relative;
  margin: 0.5rem;
}
.cid-rpSfjvEG19 .card-wrapper:hover img {
  transform: scale(1.1);
}
@media (max-width: 1400px) {
  .cid-rpSfjvEG19 .card-wrapper {
    margin: 0rem;
  }
}
.cid-rpSfjvEG19 .card {
  height: fit-content;
}
@media (min-width: 767px) {
  .cid-rpSfjvEG19 .row {
    padding: 0 4rem;
  }
}
.cid-rpSfjvEG19 .icon {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 1.5rem;
  transition: 0.3s;
  background: #ffda00;
}
.cid-rpSfjvEG19 .icon:hover {
  padding-right: 1rem;
  padding-left: 2rem;
}
.cid-rpSfjvEG19 .card-box {
  padding: 3rem 3rem 4rem 3rem;
  width: 100%;
}
.cid-rpSfjvEG19 .card1 {
  background-color: #333333;
}
.cid-rpSfjvEG19 .card2 {
  background-color: #ffffff;
}
.cid-rpSfjvEG19 .card3 {
  background-color: #ffffff;
}
.cid-rpSfjvEG19 .card4 {
  background-color: #333333;
}
.cid-rpSfjvEG19 img {
  width: 100%;
  transition: 5s;
  object-fit: cover;
}
.cid-rpSfjvEG19 .img-wrap {
  max-height: 200px;
  overflow: hidden;
}
.cid-rpSfjvEG19 .container {
  max-width: 1500px;
}
.cid-rpSfjvEG19 .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rpSfjvEG19 .mbr-iconfont {
  font-size: 1.3rem;
  color: #333333;
  display: flex;
  justify-content: center;
}
.cid-rpSfjvEG19 P {
  color: #c1c1c1;
}
@media (max-width: 1200px) {
  .cid-rpSfjvEG19 .img-wrap {
    max-height: 180px;
  }
}
@media (max-width: 992px) {
  .cid-rpSfjvEG19 .card-box {
    margin: 0rem;
    padding: 2rem 2rem 6rem 2rem;
  }
  .cid-rpSfjvEG19 .col2,
  .cid-rpSfjvEG19 .col3,
  .cid-rpSfjvEG19 .col4 {
    margin-top: 0rem;
  }
  .cid-rpSfjvEG19 .img-wrap {
    max-height: 180px;
  }
}
@media (max-width: 767px) {
  .cid-rpSfjvEG19 .card-box {
    padding: 1rem 2rem 5rem 1rem;
  }
  .cid-rpSfjvEG19 .number {
    margin: auto;
  }
}
.cid-rpSfjvEG19 .mbr-text {
  color: #cccccc;
}
.cid-rpSfjvEG19 .text2 {
  color: #333333;
}
.cid-rpSfjvEG19 .text3 {
  color: #333333;
}
.cid-rpSfjvEG19 .title2 {
  color: #c1c1c1;
}
.cid-rpSfjvEG19 .title1 {
  color: #c1c1c1;
}
.cid-rpSfjvEG19 .title3 {
  color: #c1c1c1;
}
.cid-rpSfjvEG19 .title4 {
  color: #c1c1c1;
}
.cid-rpSfjvEG19 .text4 {
  color: #efeeee;
}
.cid-rpSfjvEG19 .text1 {
  color: #efeeee;
}
.cid-rpSfjvEG19 .title3 B {
  color: #c1c1c1;
}
.cid-rpSfjvEG19 H1 {
  color: #333333;
}
.cid-rpSfl755ta {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efeeee;
}
.cid-rpSfl755ta .container {
  max-width: 1500px;
}
.cid-rpSfl755ta img {
  width: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-rpSfl755ta img:hover {
  transform: scale(1.1);
}
.cid-rpSfl755ta .row {
  background: #ffffff;
}
.cid-rpSfl755ta .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
  max-height: 540px;
  margin-bottom: 4rem;
}
.cid-rpSfl755ta h2 {
  padding: 0;
  margin: 0;
}
.cid-rpSfl755ta .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-rpSfl755ta .text-col {
  max-width: 700px;
  margin: auto;
  padding: 0 4rem 4rem 4rem;
}
.cid-rpSfl755ta .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-rpSfl755ta .mbr-section-btn .btn {
  margin: 0rem !important;
  min-width: 400px;
}
.cid-rpSfl755ta .number {
  border-top: 2px solid currentColor;
  padding-top: 0.4rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 1200px) {
  .cid-rpSfl755ta .row {
    margin: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rpSfl755ta .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-rpSfl755ta .btn {
    min-width: 200px !important;
    padding: 0.6rem 0.8rem !important;
  }
  .cid-rpSfl755ta .row {
    margin: 0rem;
  }
  .cid-rpSfl755ta .text-col {
    padding: 2rem 1rem;
  }
  .cid-rpSfl755ta .number {
    margin-right: 2rem;
  }
  .cid-rpSfl755ta .img-col {
    margin-bottom: 3rem;
  }
}
.cid-rpSfl755ta H2 {
  color: #333333;
}
.cid-rpSfl755ta .mbr-text {
  color: #767676;
}
.cid-rpSfqF8N8V {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-rpSfqF8N8V img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-rpSfqF8N8V img:hover {
  transform: scale(1.1);
}
.cid-rpSfqF8N8V .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-rpSfqF8N8V h2 {
  padding: 0;
  margin: 0;
}
.cid-rpSfqF8N8V .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-rpSfqF8N8V .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-rpSfqF8N8V .mbr-section-btn {
  position: absolute;
  bottom: 300px;
  left: 0;
  transform: rotate(90deg);
  transform-origin: bottom left;
}
.cid-rpSfqF8N8V .mbr-section-btn .btn {
  margin: 0rem !important;
  min-width: 300px;
}
.cid-rpSfqF8N8V .mbr-section-btn .btn span {
  transform: rotate(-90deg);
}
.cid-rpSfqF8N8V .mbr-section-btn:hover span {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0 !important;
}
.cid-rpSfqF8N8V .mbr-iconfont {
  margin: 0 !important;
}
.cid-rpSfqF8N8V .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-rpSfqF8N8V .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-rpSfqF8N8V .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-rpSfqF8N8V .btn {
    padding: 0.6rem 0.8rem !important;
    min-width: 200px !important;
  }
  .cid-rpSfqF8N8V .text-col {
    padding: 2rem 1rem;
  }
}
.cid-rpSfqF8N8V H2 {
  color: #333333;
}
.cid-rpSfqF8N8V .mbr-text {
  color: #767676;
}
.cid-rpSfqvjGS3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-rpSfqvjGS3 img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-rpSfqvjGS3 img:hover {
  transform: scale(1.1);
}
.cid-rpSfqvjGS3 .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-rpSfqvjGS3 h2 {
  padding: 0;
  margin: 0;
}
.cid-rpSfqvjGS3 .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-rpSfqvjGS3 .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-rpSfqvjGS3 .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-rpSfqvjGS3 .mbr-section-btn .btn {
  margin: 0rem !important;
  min-width: 400px;
}
.cid-rpSfqvjGS3 .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-rpSfqvjGS3 .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-rpSfqvjGS3 .btn {
    min-width: 200px !important;
    padding: 0.6rem 0.8rem !important;
  }
  .cid-rpSfqvjGS3 .text-col {
    padding: 2rem 1rem;
  }
}
.cid-rpSfqvjGS3 H2 {
  color: #333333;
}
.cid-rpSfqvjGS3 .mbr-text {
  color: #767676;
}
.cid-rpSfxBmryu {
  padding-top: 120px;
  padding-bottom: 75px;
  background-color: #efeeee;
}
.cid-rpSfxBmryu .container {
  max-width: 1500px;
}
.cid-rpSfxBmryu img {
  width: 100%;
}
.cid-rpSfxBmryu h2 {
  padding: 0;
  margin: 0;
}
.cid-rpSfxBmryu .text-wrap {
  max-width: 500px;
  margin: auto;
}
.cid-rpSfxBmryu .number {
  border-top: 2px solid currentColor;
  padding-top: 0.4rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
  width: fit-content;
}
.cid-rpSfxBmryu .img-col {
  position: relative;
}
.cid-rpSfxBmryu .img2 {
  position: absolute;
  right: 6rem;
  top: -6rem;
  width: 320px;
}
@media (max-width: 1200px) {
  .cid-rpSfxBmryu .img2 {
    right: 3rem;
  }
}
@media (max-width: 992px) {
  .cid-rpSfxBmryu .title-col {
    margin-bottom: 4rem !important;
  }
  .cid-rpSfxBmryu .img2 {
    top: -2rem;
  }
  .cid-rpSfxBmryu .text-wrap {
    max-width: 550px;
  }
}
@media (max-width: 767px) {
  .cid-rpSfxBmryu .img2 {
    width: 50%;
  }
  .cid-rpSfxBmryu .number {
    margin: auto;
  }
}
.cid-rpSfLZlmw9 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efeeee;
}
.cid-rpSfLZlmw9 .container {
  max-width: 1500px;
}
.cid-rpSfLZlmw9 img {
  width: 100%;
}
.cid-rpSfLZlmw9 h2 {
  padding: 0;
  margin: 0;
}
.cid-rpSfLZlmw9 .text-wrap {
  max-width: 500px;
  margin: auto;
}
.cid-rpSfLZlmw9 .number {
  border-top: 2px solid currentColor;
  padding-top: 0.4rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
  width: fit-content;
}
.cid-rpSfLZlmw9 .img-col {
  position: relative;
}
.cid-rpSfLZlmw9 .img2 {
  position: absolute;
  left: -6rem;
  top: 4rem;
  width: 280px;
}
@media (max-width: 1200px) {
  .cid-rpSfLZlmw9 .img2 {
    left: 1rem;
  }
}
@media (max-width: 992px) {
  .cid-rpSfLZlmw9 .img-col {
    margin-bottom: 3rem;
  }
  .cid-rpSfLZlmw9 .text-wrap {
    max-width: 550px;
  }
}
@media (max-width: 767px) {
  .cid-rpSfLZlmw9 .img2 {
    width: 50%;
    top: 2rem;
  }
  .cid-rpSfLZlmw9 .number {
    margin: auto;
  }
}
.cid-rpSfOyO5kY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #333333;
}
.cid-rpSfOyO5kY .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-rpSfOyO5kY input,
.cid-rpSfOyO5kY textarea {
  border-left: none;
  border-top: none;
  border-right: none;
  border-radius: 0;
  min-height: 3rem;
  padding: 0rem !important;
  font-size: 1rem;
}
.cid-rpSfOyO5kY input:focus,
.cid-rpSfOyO5kY textarea:focus {
  border-left: none;
  border-top: none;
  border-right: none;
}
.cid-rpSfOyO5kY .form-control,
.cid-rpSfOyO5kY .field-input {
  padding: 0.5rem;
  background-color: #333333;
  border-color: #cccccc;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-rpSfOyO5kY .form-control:hover,
.cid-rpSfOyO5kY .field-input:hover,
.cid-rpSfOyO5kY .form-control:focus,
.cid-rpSfOyO5kY .field-input:focus {
  background-color: #333333;
  border-color: #cccccc;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-rpSfOyO5kY input::-webkit-input-placeholder,
.cid-rpSfOyO5kY textarea::-webkit-input-placeholder {
  color: #cccccc;
}
.cid-rpSfOyO5kY input:-moz-placeholder,
.cid-rpSfOyO5kY textarea:-moz-placeholder {
  color: #cccccc;
}
.cid-rpSfOyO5kY .jq-selectbox li,
.cid-rpSfOyO5kY .jq-selectbox li {
  background-color: #333333;
  color: #ffffff;
}
.cid-rpSfOyO5kY .jq-selectbox li:hover,
.cid-rpSfOyO5kY .jq-selectbox li.selected {
  background-color: #333333;
  color: #ffffff;
}
.cid-rpSfOyO5kY .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #333333;
}
.cid-rpSfOyO5kY .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #333333;
}
.cid-rpSfOyO5kY img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-rpSfOyO5kY .mbr-form {
  max-width: 450px;
}
.cid-rpSfOyO5kY textarea {
  min-height: 150px;
}
.cid-rpSfOyO5kY .mbr-text {
  color: #cccccc;
}
.cid-rpSfOyO5kY .mbr-form .btn {
  width: 100%;
}
.cid-rpSfOyO5kY .mbr-form .btn .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-rpSfRe8AXs {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rpSfRe8AXs img {
  width: 40px;
  margin-right: 1rem;
}
.cid-rpSfRe8AXs .navbar-brand {
  display: flex;
  align-items: center;
}
@media (max-width: 1200px) {
  .cid-rpSfRe8AXs .row {
    margin: 0 2rem;
  }
}
.cid-rpSfRe8AXs .container {
  max-width: 1500px;
}
.cid-rpSfRe8AXs .form-control,
.cid-rpSfRe8AXs .field-input {
  padding: 0.5rem;
  background-color: #efeeee;
  border-color: #efeeee;
  color: #333333;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-rpSfRe8AXs .form-control:hover,
.cid-rpSfRe8AXs .field-input:hover,
.cid-rpSfRe8AXs .form-control:focus,
.cid-rpSfRe8AXs .field-input:focus {
  background-color: #efeeee;
  border-color: #efeeee;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-rpSfRe8AXs input::-webkit-input-placeholder,
.cid-rpSfRe8AXs textarea::-webkit-input-placeholder {
  color: #767676;
}
.cid-rpSfRe8AXs input:-moz-placeholder,
.cid-rpSfRe8AXs textarea:-moz-placeholder {
  color: #767676;
}
.cid-rpSfRe8AXs .jq-selectbox li,
.cid-rpSfRe8AXs .jq-selectbox li {
  background-color: #efeeee;
  color: #000000;
}
.cid-rpSfRe8AXs .jq-selectbox li:hover,
.cid-rpSfRe8AXs .jq-selectbox li.selected {
  background-color: #efeeee;
  color: #000000;
}
.cid-rpSfRe8AXs .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #efeeee;
}
.cid-rpSfRe8AXs .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #efeeee;
}
.cid-rpSfRe8AXs .btn {
  width: 80px !important;
  justify-content: center;
  padding: 1rem 1rem !important;
  margin: 0 !important;
  height: 100%;
}
.cid-rpSfRe8AXs .btn .mbr-iconfont {
  font-size: 1.2rem;
}
.cid-rpSfRe8AXs input {
  border-radius: 0;
  padding: 1rem !important;
  font-size: 1rem;
  height: 100%;
}
.cid-rpSfRe8AXs .col,
.cid-rpSfRe8AXs .col-auto {
  padding: 0;
}
.cid-rpSfRe8AXs .form-group {
  margin-bottom: 0rem;
}
.cid-rpSfRe8AXs .items {
  color: #333333;
}
.cid-rpSfRe8AXs .form-title {
  color: #333333;
}
@media (max-width: 992px) {
  .cid-rpSfRe8AXs .col-md-6,
  .cid-rpSfRe8AXs .navbar-brand {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rpSfRe8AXs .navbar-brand {
    justify-content: center;
  }
  .cid-rpSfRe8AXs .row {
    margin: 0;
  }
}
.cid-rpSfRqtWyh {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efeeee;
}
.cid-rpSfRqtWyh .media-container-row .mbr-text {
  color: #333333;
}
.cid-rwG46vRkNS .navbar {
  background: #efeeee;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
}
.cid-rwG46vRkNS .navbar-dropdown.bg-color.transparent.opened {
  background: #efeeee;
}
.cid-rwG46vRkNS a {
  font-style: normal;
}
.cid-rwG46vRkNS .show {
  overflow: visible;
}
.cid-rwG46vRkNS .dropdown-menu {
  max-height: 400px;
}
.cid-rwG46vRkNS .dropdown-item:active {
  background-color: transparent;
}
.cid-rwG46vRkNS .nav-link {
  font-weight: 600 !important;
}
.cid-rwG46vRkNS .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-rwG46vRkNS .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 2rem !important;
  -webkit-align-items: center;
}
.cid-rwG46vRkNS .nav-item:focus,
.cid-rwG46vRkNS .nav-link:focus {
  outline: none;
}
.cid-rwG46vRkNS .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rwG46vRkNS .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rwG46vRkNS .menu-logo {
  margin-right: auto;
}
.cid-rwG46vRkNS .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rwG46vRkNS .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-rwG46vRkNS .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  font-weight: 600 !important;
  padding-right: 2rem;
}
.cid-rwG46vRkNS .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rwG46vRkNS .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rwG46vRkNS .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rwG46vRkNS .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-rwG46vRkNS .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-rwG46vRkNS .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rwG46vRkNS .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rwG46vRkNS .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rwG46vRkNS .dropdown .dropdown-menu {
  background: #efeeee;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rwG46vRkNS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  color: #333333 !important;
  padding: 0.2em 1em 0.2em 1em !important;
}
.cid-rwG46vRkNS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rwG46vRkNS .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rwG46vRkNS .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rwG46vRkNS .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-rwG46vRkNS .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-rwG46vRkNS .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rwG46vRkNS .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rwG46vRkNS .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rwG46vRkNS .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rwG46vRkNS .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rwG46vRkNS button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rwG46vRkNS button.navbar-toggler:focus {
  outline: none;
}
.cid-rwG46vRkNS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-rwG46vRkNS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-rwG46vRkNS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-rwG46vRkNS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-rwG46vRkNS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-rwG46vRkNS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-rwG46vRkNS nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-rwG46vRkNS nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-rwG46vRkNS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-rwG46vRkNS .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rwG46vRkNS .collapsed .btn {
  display: -webkit-flex;
}
.cid-rwG46vRkNS .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rwG46vRkNS .collapsed .navbar-collapse.collapsing,
.cid-rwG46vRkNS .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-rwG46vRkNS .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rwG46vRkNS .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rwG46vRkNS .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rwG46vRkNS .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rwG46vRkNS
  .collapsed
  .navbar-collapse.collapsing
  .navbar-nav
  .nav-item:last-child,
.cid-rwG46vRkNS
  .collapsed
  .navbar-collapse.show
  .navbar-nav
  .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-rwG46vRkNS .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rwG46vRkNS .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rwG46vRkNS
  .collapsed
  .navbar-collapse.collapsing
  .navbar-buttons:last-child,
.cid-rwG46vRkNS .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-rwG46vRkNS .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 94.375vh;
  }
}
.cid-rwG46vRkNS .collapsed button.navbar-toggler {
  display: block;
}
.cid-rwG46vRkNS .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rwG46vRkNS .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rwG46vRkNS .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-rwG46vRkNS .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rwG46vRkNS .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rwG46vRkNS
  .collapsed
  .dropdown
  .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
@media (max-width: 991px) {
  .cid-rwG46vRkNS.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rwG46vRkNS img {
    height: 3.8rem !important;
  }
  .cid-rwG46vRkNS .btn {
    display: -webkit-flex;
  }
  .cid-rwG46vRkNS button.navbar-toggler {
    display: block;
  }
  .cid-rwG46vRkNS .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-rwG46vRkNS .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rwG46vRkNS .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rwG46vRkNS .navbar-collapse.collapsing,
  .cid-rwG46vRkNS .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-rwG46vRkNS .navbar-collapse.collapsing .navbar-nav,
  .cid-rwG46vRkNS .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rwG46vRkNS .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rwG46vRkNS .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rwG46vRkNS .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-rwG46vRkNS .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-rwG46vRkNS .navbar-collapse.collapsing .navbar-buttons,
  .cid-rwG46vRkNS .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rwG46vRkNS .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rwG46vRkNS .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rwG46vRkNS .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-rwG46vRkNS .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rwG46vRkNS .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rwG46vRkNS
    .dropdown
    .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
}
@media (max-width: 767px) {
  .cid-rwG46vRkNS .nav-link {
    justify-content: start !important;
  }
  .cid-rwG46vRkNS .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-rwG46vRkNS .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-rwG46vRkNS .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-rwG46vRkNS .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-rwG46vRkNS .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-rwG46vRkNS .nav-link:hover,
.cid-rwG46vRkNS .dropdown-item:hover {
  color: #333333 !important;
}
@media (min-width: 1500px) {
  .cid-rwG46vRkNS .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-rwG46vRkNS .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}

/* Container fallback if not using Bootstrap */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.container-fluid {
  max-width: 1240px;
}

.clh-section {
  padding: 1rem 0;
  background: none;
  color: #536a4b;
  font-family: "Lato", sans-serif;
  text-shadow: none !important;
}

.clh-card {
  background: #eef6ed;
  border: 1px solid #536a4b;
  border-radius: 8px;
  padding: 1.5rem;
}

.clh-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  font-weight: 900;
  font-size: 1.35rem;
  color: #536a4b;
  text-align: center;
  letter-spacing: 0.2px;
}

.clh-title {
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 900;
  font-size: 1.35rem;
  text-align: center;
  color: #536a4b;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.clh-kicker {
  margin-bottom: 1.25rem;
  font-weight: 900;
  text-align: center;
  color: #536a4b;
  font-size: 1.125rem;
}

/* Feature list */
.clh-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.clh-list li {
  position: relative;
  padding-block: 0.5rem;
  color: #536a4b;
  font-size: 1.125rem;
}
.clh-list li strong {
  font-weight: 900;
}
.clh-list li + li {
  border-top: 1px solid #536a4b1a;
}

/* Responsive tweaks */
@media (min-width: 992px) {
  .clh-card {
    padding: 2rem;
  }
}
