@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");

@font-face {
    font-family: 'Quantify-Bold';
    src:url('../fonts/Quantify-Bold.ttf.woff') format('woff'),
        url('../fonts/Quantify-Bold.ttf.svg#Quantify-Bold') format('svg'),
        url('../fonts/Quantify-Bold.ttf.eot'),
        url('../fonts/Quantify-Bold.ttf.eot?#iefix') format('embedded-opentype');
    font-weight: normal;
    font-style: normal;
}

body {
  font-family: "Poppins", sans-serif;
  color: #0c0c0c;
  background-color: #ffffff;
  overflow-x: hidden;
}

.layout_padding {
  padding: 90px 0;
}

.layout_margin {
  margin: 90px 0;
}

.layout_padding2 {
  padding: 75px 0;
}

.layout_padding2-top {
  padding-top: 75px;
}

.layout_padding2-bottom {
  padding-bottom: 75px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.heading_container h2 {
  position: relative;
  font-weight: bold;
}

.heading_container h2 span {
  color: #7335b7;
}

.heading_container.heading_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/*header section*/
.hero_area {
  position: relative;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #F3F2E8;
  border-radius: 0 0 350px 0;
}

.sub_page .hero_area {
  min-height: auto;
  border-radius: 0 0 45px 0;
}

.header_section {
  padding: 15px 0;
}

.header_section .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}

.navbar-brand {
  position: relative;
  margin-left: 8px;
  color: #DF6616;
  font-family: 'Quantify-Bold';
  font-size: 28px;
  letter-spacing: 0.2px;
}

.navbar-brand:hover {
  color: #DF6616;
}

.navbar-brand::before {
  content: "";
  position: absolute;
  bottom: 16%;
  left: -7%;
  width: 10%;
  height: 23%;
  border-bottom: 1px solid #DF6616;
  border-left: 1px solid #DF6616;
  box-sizing: border-box;
}

.navbar-brand::after {
  content: "";
  position: absolute;
  top: 11%;
  right: -7.5%;
  width: 10%;
  height: 23%;
  border-top: 1px solid #DF6616;
  border-right: 1px solid #DF6616;
  box-sizing: border-box;
}

.custom_nav-container {
  padding: 0;
}

.custom_nav-container .navbar-nav {
  margin: auto;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 5px 25px;
  color: #222545;
  text-align: center;
  text-transform: uppercase;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link, .custom_nav-container .navbar-nav .nav-item.active .nav-link {
  color: #000000;
  background-color: #ffffff;
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px;
  height: 4px;
  background-color: #222545;
  margin: 7px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  border-radius: 5px;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::before, .custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #222545;
  top: -10px;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before, .custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  top: 0;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-1 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin: 0;
  margin-bottom: -4px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-2 {
  display: none;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-3 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin: 0;
  margin-top: -4px;
}

.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-1,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-2,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-3 {
  -webkit-transform: none;
          transform: none;
}

.quote_btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.quote_btn-container a {
  color: #000000;
  text-transform: uppercase;
}

.quote_btn-container a span {
  margin-left: 5px;
}

.quote_btn-container a:hover {
  color: #f8842b;
}

.quote_btn-container .quote_btn {
  display: inline-block;
  padding: 5px 25px;
  background-color: #f8842b;
  color: #ffffff;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #f8842b;
}

.quote_btn-container .quote_btn:hover {
  color: #ffffff;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

/*end header section*/
/* slider section */
.slider_section {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 45px 0;
}

.slider_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section #heroCarousel {
  width: 100%;
  position: unset;
}

.slider_section .detail-box {
  text-align: center;
  color: #ffffff;
}

.slider_section .detail-box h1 {
  font-weight: bold;
  margin-bottom: 20px;
}

.slider_section .detail-box .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -5px;
  margin-top: 45px;
}

.slider_section .detail-box .btn-box a {
  margin: 5px;
  text-align: center;
  width: 185px;
}

.slider_section .detail-box .btn-box .btn1 {
  display: inline-block;
  padding: 12px 15px;
  background-color: #DF6616;
  color: #ffffff;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #5a2a8f;
}

.slider_section .detail-box .btn-box .btn1:hover {
  color: #ffffff;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.slider_section .img-box img {
  width: 100%;
}

.slider_section .carousel-indicators {
  position: unset;
  margin: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 45px;
}

.slider_section .carousel-indicators li {
  background-color: #ffffff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  opacity: 1;
}

.slider_section .carousel-indicators li.active {
  width: 23px;
  height: 23px;
  background-color: #f8842b;
}

.service_section {
  text-align: center;
}

.service_section .heading_container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.service_section .box {
  margin-top: 25px;
  padding: 15px;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.service_section .box::before {
  content: "";
  width: 275px;
  height: 275px;
  position: absolute;
  right: -137.5px;
  bottom: -137.5px;
  background-color: #faf8fd;
  z-index: -1;
  border-radius: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.service_section .box .img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 125px;
  border-radius: 15px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.service_section .box .img-box img {
  width: 75px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.service_section .box .detail-box {
  margin-top: 15px;
}

.service_section .box .detail-box h5 {
  font-weight: bold;
  position: relative;
}

.service_section .box .detail-box a {
  color: inherit;
}

.service_section .box:hover {
  color: #ffffff;
}

.service_section .box:hover::before {
  -webkit-transform: scale(5);
          transform: scale(5);
  background-color: #7335b7;
}

.service_section .box:hover img {
  -webkit-filter: invert(1);
          filter: invert(1);
}

.service_section .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 45px;
}

.service_section .btn-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #DF6616;
  color: #ffffff;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #DF6616;
}

.service_section .btn-box a:hover {
  color: #ffffff;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.about_section {
  background-color: #7335b7;
  color: #ffffff;
  border-radius: 250px 0 250px 0;
}

.about_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about_section .img-box {
  position: relative;
}

.about_section .img-box img {
  width: 100%;
}

.about_section .detail-box p {
  margin-top: 15px;
}

.about_section .detail-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #f8842b;
  color: #ffffff;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #f8842b;
  margin-top: 15px;
}

.about_section .detail-box a:hover {
  color: #ffffff;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.case_section .heading_container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.case_section .heading_container h2::before {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.case_section .box {
  margin-top: 45px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  text-align: center;
}

.case_section .box .img-box {
  position: relative;
}

.case_section .box .img-box img {
  width: 100%;
}

.case_section .box .detail-box {
  padding: 25px;
}

.case_section .box .detail-box h5 {
  font-weight: bold;
}

.case_section .box .detail-box p {
  font-size: 15px;
}

.case_section .box .detail-box a {
  color: #7335b7;
}

.client_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 45px 0;
  text-align: center;
}

.client_section .box .img-box {
  width: 125px;
  height: 125px;
  min-width: 125px;
  position: relative;
  margin-bottom: -62.5px;
}

.client_section .box .img-box img {
  width: 100%;
  border-radius: 100%;
}

.client_section .box .client_info .client_name h5 {
  font-weight: bold;
  margin-bottom: 0;
  text-transform: uppercase;
}

.client_section .box .client_info .client_name h6 {
  margin-bottom: 0;
  color: #7335b7;
  font-weight: normal;
  font-size: 15px;
  text-transform: uppercase;
}

.client_section .box .client_info i {
  font-size: 24px;
}

.client_section .box p {
  margin-top: 15px;
}

.client_section .box .detail-box {
  background-color: #ffffff;
  background-color: #7335b7;
  color: #ffffff;
  border-radius: 15px;
  padding: 85px 45px 15px 45px;
}

.client_section .carousel-indicators {
  position: unset;
  margin: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.client_section .carousel-indicators li {
  background-color: #7335b7;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  opacity: 1;
}

.client_section .carousel-indicators li.active {
  width: 20px;
  height: 20px;
  background-color: #f8842b;
}

.contact_section {
  position: relative;
}

.contact_section form {
  margin-top: 45px;
}

.contact_section input {
  width: 100%;
  border: none;
  height: 50px;
  margin-bottom: 25px;
  padding-left: 15px;
  background-color: transparent;
  outline: none;
  color: #000000;
  border: 1px solid #a5a5a5;
}

.contact_section input::-webkit-input-placeholder {
  color: #1c1b1b;
}

.contact_section input:-ms-input-placeholder {
  color: #1c1b1b;
}

.contact_section input::-ms-input-placeholder {
  color: #1c1b1b;
}

.contact_section input::placeholder {
  color: #1c1b1b;
}

.contact_section input.message-box {
  height: 120px;
}

.contact_section button {
  font-family: "Poppins", sans-serif;
  display: inline-block;
  padding: 10px 65px;
  background-color: #7335b7;
  color: #ffffff;
  border-radius: 3px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #7335b7;
  color: #fff;
  margin-top: 10px;
}

.contact_section button:hover {
  color: #ffffff;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.contact_section .map_container {
  height: 100%;
  min-height: 325px;
  overflow: hidden;
  margin-left: 45px;
}

.contact_section .map_container .map {
  height: 100%;
}

.contact_section .map_container .map #googleMap {
  height: 100%;
}

.footer_container {
  background-image: radial-gradient(circle at left top, rgba(255, 255, 255, 0.35) 0%, transparent 40%), radial-gradient(circle at right top, rgba(249, 132, 25, 0.35) 0%, transparent 50%), radial-gradient(circle at left 60%, rgba(255, 211, 99, 0.35) 0%, transparent 38%);
  background-color: #F3F2E8;
  color: #222545;
  border-radius: 350px 0 0 0;
  padding-top: 145px;
}

/* info section */
.info_section h4 {
  font-weight: 600;
  margin-bottom: 20px;
}

.info_section .info_contact .contact_link_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.info_section .info_contact .contact_link_box a {
  margin: 5px 0;
  color: #ffffff;
}

.info_section .info_contact .contact_link_box a i {
  margin-right: 5px;
}

.info_section .info_contact .contact_link_box a:hover {
  color: #f8842b;
}

.info_section .info_social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}

.info_section .info_social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  border-radius: 100%;
  margin-right: 10px;
  font-size: 24px;
}

.info_section .info_social a:hover {
  color: #f8842b;
}

.info_section .info_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.info_section .info_links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
  color: #ffffff;
}

.info_section .info_links a:hover {
  color: #f8842b;
}

.info_section form input {
  border: none;
  border-bottom: 1px solid #ffffff;
  background-color: transparent;
  width: 100%;
  height: 45px;
  color: #ffffff;
  outline: none;
}

.info_section form input::-webkit-input-placeholder {
  color: #ffffff;
}

.info_section form input:-ms-input-placeholder {
  color: #ffffff;
}

.info_section form input::-ms-input-placeholder {
  color: #ffffff;
}

.info_section form input::placeholder {
  color: #ffffff;
}

.info_section form button {
  width: 100%;
  text-align: center;
  display: inline-block;
  padding: 10px 55px;
  background-color: #f8842b;
  color: #ffffff;
  border-radius: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #f8842b;
  margin-top: 15px;
}

.info_section form button:hover {
  color: #ffffff;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

/* end info section */
/* footer section*/
.footer_section {
  position: relative;
  text-align: center;
}

.footer_section p {
  padding: 25px 0;
  margin: 0;
}

.footer_section p a {
  color: inherit;
}
/*# sourceMappingURL=style.css.map */

/* Custom styling for Alonzee utility classes */
.u-color-alonzee-dark-orange {
  color: #cc4700;
}

.u-color-alonzee-orange {
  color: #ff5900;
}

.u-color-alonzee-light-orange {
  color: #ffba96;
}

.u-color-alonzee-deep {
  color: #3c1b12;
}

.u-color-alonzee-dim {
  color: #897975;
}

.u-color-alonzee-brown {
  color: #a33900;
}

.u-color-alonzee-brown--hover:hover {
  color: #a33900;
}

.u-color-alonzee-light-brown {
  color: #DFA290;
}

.u-light-orange-bg {
  background-color: #ffdec0;
}

.u-light-off-white-bg {
  background-color: #fff5ec;
}

.u-light-off-white-bg--hover:hover {
  background-color: #fff5ec;
}

.u-light-orange-gradient-up-bg {
  background: linear-gradient(to top, #ffdec0, #ffffff);
}

.u-light-orange-gradient-down-bg {
  background: linear-gradient(to bottom, #ffdec0 30%, #ffffff);
}

.u-fill-background {
  width: 100vw;
  height: 100%;
  position: absolute;
  z-index: -100;
  top: 0;
  transform: translateX(-50%);
  left: 50%;
}

.u-orange-drop-shadow {
  box-shadow: -2px 4px 9px 0px #e8a85e36, -6px 16px 17px 0px #e8a85e2e, -14px 36px 23px 0px #e8a85e1c, -25px 64px 27px 0px #e8a85e08, -39px 99px 30px 0px #e8a85e00;
}

.z-1 {
  z-index: 1;
}

.columns-2 {
  columns: 2;
}

@media (min-width: 992px) {
  .columns-2-wide-only {
    columns: 2;
  }
}

/* Base state: everything behaves normally, even without JS */
[data-animate="fade-up"] {
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

/* Hidden/ready-to-animate state; JS will add this */
[data-animate="fade-up"].fade-init {
  opacity: 0;
  transform: translateY(20px);
}

/* Visible/animated state; JS will add this when in view */
[data-animate="fade-up"].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 992px) {
  [data-animate="fade-up"][data-animate-delay="1"] {
    transition-delay: 0.25s;
  }

  [data-animate="fade-up"][data-animate-delay="2"] {
    transition-delay: 0.5s;
  }

  [data-animate="fade-up"][data-animate-delay="3"] {
    transition-delay: 0.75s;
  }
}

/* Custom styling for Alonzee non-page-specifc components */
.alonzee-orange-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding-inline: 40px;
  height: 44px;
  white-space: nowrap;
  color: #ffffff;
  background-color: #ff5900;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s;
}

.alonzee-orange-btn:hover {
  color: #ffffff;
  background-color: #cc4700;
}

.alonzee-white-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding-inline: 40px;
  height: 44px;
  white-space: nowrap;
  color: #cc4700;
  background-color: #ffffff;
  border-radius: 4px;
  font-weight: 600;
  border-color: #ff5900;
  border-width: 1px;
  border-style: solid;
  transition: all 0.3s;
}

.alonzee-white-btn:hover {
  color: #cc4700;
  background-color: #fff5ec;
}

.alonzee-quote-section {
  display: flex;
  position: relative;
  width: 100vw;
  justify-content: center;
  transform: translateX(-50%);
  left: 50%;
}

.alonzee-quote-card {
  margin-left: 16px;
  width: calc(100vw - 16px);
  padding: 24px 16px 24px 24px;
  border-top-left-radius: 32px;
  border-bottom-left-radius: 32px;
  background-color: #ffffff;
}

.alonzee-quote-card-emphasis {
  margin-bottom: 8px;
  font-size: 20px;
}

.alonzee-quote-card-text {
  margin-bottom: 24px;
  font-size: 16px;
}

.alonzee-quote-card-attribution {
  font-size: 18px;
}

@media (min-width: 768px) {

  .alonzee-quote-card {
    margin-left: 224px;
    width: calc(100vw - 224px);
    padding: 32px 48px 32px 32px;
    border-top-left-radius: 32px;
    border-bottom-left-radius: 32px;
  }

  .alonzee-quote-card::before {
    position: absolute;
    left: 32px;
    content: "”";
    font-size: 450px;
    line-height: 280px;
    color: #FFA07D;
    pointer-events: none;
  }

  .alonzee-quote-card-emphasis {
    font-size: 32px;
  }

  .alonzee-quote-card-text {
    margin-bottom: 24px;
    font-size: 20px;
  }

  .alonzee-quote-card-attribution {
    font-size: 24px;
  }
}

.alonzee-white-card {
  padding: 24px;
  border-radius: 24px;
  background-color: #ffffff;
  overflow: hidden;
}

.alonzee-section-title-with-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.alonzee-section-title {
  font-size: 24px;
}

@media (min-width: 768px) {
  .alonzee-section-title {
    font-size: 36px;
  }
}

@media (min-width: 992px) {
  .alonzee-section-title {
    font-size: 40px;
  }
}

.alonzee-list {
  padding-left: 0;
}

.alonzee-list-item {
  font-size: 16px;
  position: relative;
  padding: 12px 0 12px 48px;
}

.alonzee-list-item::before {
  content: "";
  position: absolute;
  left: 0;
  width: 36px;
  height: 36px;
  background-image: url("../images/alonzee-tick.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.alonzee-footer {
  position: relative;
  width: 100vw;
  padding: 64px 0 48px;
}

.alonzee-footer-title {
  margin-bottom: 24px;
  font-size: 24px;
}

.alonzee-footer-copyright-text {
  font-size: 16px;
}

@media (min-width: 768px) {
  .alonzee-footer-copyright-text {
    font-size: 18px;
  }
}

@media (min-width: 992px) {
  .alonzee-footer-copyright-text {
    font-size: 20px;
  }
}

.alonzee-footer-link {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

/* Custom styling for Alonzee home page */
.alonzee-hero_area {
  background-color: #ffdec0;
  background-image: none;
}

.alonzee-nav_section {
  position: fixed;
  width: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.5) 100%);
  backdrop-filter: blur(10px);
  z-index: 50;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-color: #ff5900;
}

@media (min-width: 992px) {
    .alonzee-nav_section {
        margin-right: 0;
    }
}

.alonzee-nav-container {
  padding: 0;
}

.alonzee-nav-container .alonzee-navbar-nav {
  margin: 0 0 0 auto;
  gap: 16px;
}

.alonzee-nav_section .nav-link {
  padding: 0 24px;
  color: #93442c;
  font-weight: 600;
  font-size: 14px;
  line-height: 46px;
  text-align: center;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media (min-width: 576px) {
  .alonzee-nav_section .nav-link {
    font-size: 16px;
  }
}

.alonzee-nav-container .nav-link:hover, .alonzee-nav-container .nav-item.active .nav-link {
    background-color: #fff5ec;
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
}

.alonzee-nav-container .nav-link--primary {
  margin-left: 16px;
  border-color: #ff5900;
  border-width: 1px;
  border-style: solid;
}

.alonzee-hero_section {
  min-height: 100vh;
}

@media (min-width: 768px) {
  .alonzee-hero_section {
    min-height: auto;
    height: 100vh;
  }
}

.alonzee-hero_background-box {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
}

.alonzee-hero_background-img {
  object-fit: cover;
  opacity: 0.5;
}


@media (max-width: 767px) {
  .alonzee-hero-detail-box {
    margin-top: 144px;
  }
}

.alonzee-hero-headline {
  font-size: 40px;
}

@media (min-width: 768px) {
  .alonzee-hero-headline {
    font-size: 32px;
  }
}

@media (min-width: 992px) {
  .alonzee-hero-headline {
    font-size: 44px;
  }
}

@media (min-width: 1200px) {
  .alonzee-hero-headline {
    font-size: 54px;
  }
}

.alonzee-hero-subheadline {
  margin-top: 24px;
  margin-bottom: 64px;
  max-width: 395px;
  font-size: 18px;
}

@media (min-width: 1200px) {
  .alonzee-hero-subheadline {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .alonzee-hero-img-container {
    height: 55vh;
  }
}

.alonzee-hero-img {
  position: absolute;
  width: 90vw;
  bottom: 0;
  right: 0;
}

@media (min-width: 576px) {
  .alonzee-hero-img {
    right: calc((100vw - 540px) / 2 * -1);
    width: 70vw;
  }
}

@media (min-width: 768px) {
  .alonzee-hero-img {
    right: calc((100vw - 720px) / 2 * -1);
    width: 580px;
  }
}

@media (min-width: 992px) {
    .alonzee-hero-img {
      right: calc((100vw - 960px) / 2 * -1);
      width: 750px;
    }
}

@media (min-width: 1200px) {
  .alonzee-hero-img {
    right: calc((100vw - 1170px) / 2 * -1);
    width: 900px;
  }
}

.scrolling-text-section {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  padding: 48px 0 150px;

  color: #f9fafb;
  overflow: hidden;
}

/* Lines */
.scrolling-text-line {
  overflow: hidden;
  white-space: nowrap;
  font-size: 32px;
  line-height: 1.5;
}

/* Inner flex that actually moves */
.scrolling-text-inner {
  display: flex;
  width: 200%;                      /* two copies side by side */
  animation: scrolling-text-left 125s linear infinite;
}

/* Text blocks (each is half the width) */
.scrolling-text-text {
  flex: 0 0 50%;
  padding: 0 1rem;
}

/* Left-scrolling animation */
@keyframes scrolling-text-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Middle line: reverse direction */
.scrolling-text-line--right .scrolling-text-inner {
  animation-direction: reverse;
}

/* Make top & bottom same speed simply by sharing duration */
.scrolling-text-line--left .scrolling-text-inner {
  animation-duration: 125s; /* same for both left lines */
}

@media (min-width: 768px) {
  .scrolling-text-line {
    font-size: 40px;
  }
}

@media (min-width: 992px) {
  .scrolling-text-line {
    font-size: 96px;
  }
}

@media (min-width: 1200px) {
  .scrolling-text-line {
    font-size: 128px;
  }
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .scrolling-text-inner {
    animation: none;
    transform: translateX(0);
  }
}

.how-alonzee-works-step-title {
  font-size: 20px;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .how-alonzee-works-step-title {
    font-size: 24px;
  }
}

@media (min-width: 992px) {
  .how-alonzee-works-step-title {
    font-size: 28px;
  }
}

.how-alonzee-works-icon {
  width: 100px;
  margin: 48px 0;
}

@media (min-width: 768px) {
  .how-alonzee-works-icon {
    width: 120px;
  }
}

.who-is-alonzee-for-section {
  display: flex;
  position: relative;
  margin-top: 120px;
}

.who-is-alonzee-for-list-intro {
  margin: 72px 0 24px;
  font-size: 18px;
}

@media (min-width: 768px) {
  .who-is-alonzee-for-list-intro {
    font-size: 20px;
  }
}

.who-is-alonzee-for-text {
  font-size: 16px;
}

.who-is-alonzee-for-icon {
  height: 60px;
  margin-right: 16px;
}

.who-is-alonzee-for-big-img {
  width: 125%;
  margin-top: 48px;
}

.alonzee-faq-section {
  display: flex;
  position: relative;
  width: 100vw;
  padding-top: 80px;
}

.alonzee-faq-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  margin-bottom: 24px;
  border-radius: 12px;
}

.alonzee-faq-card-header {
  padding: 12px 6px;
  border-radius: 12px;
}

.alonzee-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 18px;
  text-align: left;
}

.alonzee-faq-question:not(.collapsed) .faqArrow {
    transform: scale(-1);
}

@media (min-width: 768px) {
  .alonzee-faq-question {
    font-size: 24px;
  }
}

@media (min-width: 992px) {
  .alonzee-faq-question {
    font-size: 28px;
  }
}

.alonzee-faq-answer {
  padding: 0 20px 20px;
  font-size: 16px;
}

@media (min-width: 768px) {
  .alonzee-faq-answer {
    font-size: 18px;
  }
}

@media (min-width: 992px) {
  .alonzee-faq-answer {
    font-size: 20px;
  }
}

/* Custom styling for Alonzee Business Page */
.alonzee-shrink-hero-img {
  transform-origin: bottom right;
}

@media (min-width: 435px) {
  .alonzee-shrink-hero-img {
    transform: scale(0.9);
  }
}

@media (min-width: 500px) {
  .alonzee-shrink-hero-img {
    transform: scale(0.85);
  }
}

@media (min-width: 576px) {
  .alonzee-shrink-hero-img {
    transform: scale(0.9);
  }
}

.why-companies-choose-alonzee-section {
  display: flex;
  position: relative;
  padding-top: 48px;
}

@media (min-width: 768px) {
  .why-companies-choose-alonzee-section {
    padding-top: 120px;
  }
}

.alonzee-value-prop-card {
  padding: 24px;
  border-radius: 12px;
  background-color: #ffffff;
  transition: all 0.3s ease;
  transform: translateY(0);
}

.alonzee-value-prop-card:hover {
  transform: translateY(-8px);
}

.alonzee-value-prop-icon {
  width: 96px;
}

@media (max-width: 767px) {
  .alonzee-value-prop-title {
    font-size: 20px;
  }
}

.alonzee-pricing-section {
  display: flex;
  position: relative;
  padding-top: 80px;
}

.alonzee-pricing-title {
  font-size: 24px;
}

.alonzee-pricing-section-bg-img {
  position: absolute;
  height: calc(100% + 48px);
  bottom: -24px;
  right: -24px;
  mask-image: linear-gradient(to bottom, transparent -3%, black 10%); /* blur top of hard edged image */
}

@media (min-width: 768px) {
  .alonzee-pricing-section-bg-img {
    height: 175px;
  }
}

@media (min-width: 992px) {
  .alonzee-pricing-section-bg-img {
    height: 90%;
  }
}

@media (min-width: 1200px) {
  .alonzee-pricing-section-bg-img {
    height: calc(100% + 48px);
  }
}

/* Custom styling for Alonzee Scheduling page */

.how-alonzee-works-scheduling-section {
  display: flex;
  position: relative;
  padding-top: 80px;
}

@media (max-width: 991px) {
  .how-alonzee-works-scheduling-section .how-alonzee-works-icon {
    margin: 20px 0;
  }

  .how-alonzee-works-scheduling-section .how-alonzee-works-step-title {
    font-size: 18px;
  }
}

/* Custom styling for EchoSteps */

.font-weight-600 {
  font-weight: 600;
}

.hero_area {
  background-image: radial-gradient(circle at left top, rgba(255, 255, 255, 0.35) 0%, transparent 40%), radial-gradient(circle at right top, rgba(249, 132, 25, 0.35) 0%, transparent 50%), radial-gradient(circle at left 60%, rgba(255, 211, 99, 0.35) 0%, transparent 38%);
}

.hero_area .slider_section {
  padding: 45px 0 0;
}

#navbarSupportedContent .quote_btn {
  z-index: 1;
  background-color: rgba(80,80,80,0.6);
  border: 0px solid #fff;
}

#heroCarousel .carousel-inner {
  overflow: visible;
}

#heroCarousel .hero-detail-box {
  margin-right: 30px;
  text-align: right;
}

#heroCarousel .hero-detail-box h1 {
  font-weight: 500;
  white-space: nowrap;
  color: #222545;
}

#heroCarousel .hero-emphasis-headline {
  line-height: 60px;
}

#heroCarousel .hero-detail-box p {
  line-height: 30px;
  color: #222545;
}

#heroCarousel .hero-detail-box .btn-box {
  justify-content: flex-end;
  margin-bottom: 40px;
}

#heroCarousel .hero-detail-box .btn1 {
  background-color: #DF6616;
  border: 1px solid #ffffff;
  text-transform: uppercase;
}

#heroCarousel .img-box {
  background-image: url("../images/hero-photo1.webp");
  background-size: cover;
  background-position: center;
  height: 100vh;
  width: 50vw;
  margin-top: -127px;
  border-radius: 0 0 350px 0;
  overflow: hidden;
  position: relative;
}

#heroCarousel .img-box img {
  height: 100%;
  width: 100%;
  opacity: 0;
  position: absolute;
}

/* heroCarousel styles for smaller screens */
@media screen and (max-width: 1199px) {
  #heroCarousel .hero-detail-box {
    margin-right: auto;
  }
}

@media screen and (max-width: 991px) {
  .hero_area .slider_section {
    padding: 15px 0 0;
  }

  #heroCarousel .hero-detail-box h1 {
    font-size: 30px;
  }

  #heroCarousel .img-box {
    margin-top: -98px;
  }
}

@media screen and (max-width: 767px) {
  #heroCarousel .hero-detail-box {
    text-align: left;
  }

  #heroCarousel .img-box {
    width: 100vw;
    border-radius: 0 0 250px 0;
    margin-top: 0;
    margin-left: calc((100vw - 540px) * -0.5 - 15px);
    height: auto;
    padding-top: 155%;
  }

  #heroCarousel .img-box img {
    right: auto;
    width: 100vw;
    height: auto;
    bottom: 0;
  }

  #heroCarousel .hero-detail-box .btn-box {
    margin-top: 24px;
    margin-bottom: 80px;
    padding-top: 24px;
    justify-content: flex-start;
  }
}

@media screen and (max-width: 575px) {
  #heroCarousel .hero-detail-box h1 {
    font-size: 9vw;
  }

  #heroCarousel .hero-detail-box {
    padding: 0 10px;
    margin-top: 24px;
  }

  #heroCarousel .hero-detail-box h1 {
    margin-bottom: 24px;
    padding-top: 24px;
  }

  #heroCarousel p {
    margin-top: 48px;
    height: 96px;
  }

  #heroCarousel .img-box {
    margin-left: -15px;
  }
}

/* Some weird specific hero image styling for  wide & short screens*/

@media only screen and (min-width: 768px) and (max-height: 442px) {
  #heroCarousel .img-box {
    min-height: 442px;
  }
}

@media only screen and (min-width: 992px) and (max-height: 454px) {
  #heroCarousel .img-box {
    min-height: 454px;
  }
}

/* Hero quote section */

.hero-quote-section {
  padding-bottom: 15px;
  margin-top: 60px;
}

.hero-quote-text::before {
  content: "”";
  font-family: cursive;
  font-size: 500px;
  line-height: 350px;
  position: absolute;
  color: #DF6616;
  opacity: 0.1;
  pointer-events: none;
  overflow: visible;
  width: 90vw;
}

.hero-quote-text{
  font-size: 24px;
  line-height: 44px;
}

.hero-quote-emphasis {
  font-weight: 600;
  color: #DF6616;
}

.hero-quote-attribution {
  margin-top: 12px;
  text-align: center;
  font-size: 20px;
  font-style: italic;
}

.hero-quote-attribution::before {
  content: "\2014\2014\00A0";
}

@media screen and (max-width: 767px) {
  .hero-quote-section {
    margin-top: 0;
  }

  .hero-quote-text::before {
    margin-top: -30px;
    margin-left: -40px;
    line-height: 370px;
  }

  .hero-quote-text{
    padding-left: 10px;
    line-height: 36px;
    font-size: 18px;
  }

  .hero-quote-attribution {
    padding-left: 10px;
    font-size: 16px;
    text-align: left;
  }
}

/* How the system works section */

.how-to-heading p {
  margin-top: 16px;
}

.how-to-step {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.how-to-icon {
  height: 100px;
  margin: 60px 30px 30px;
}

.how-to-step-title {
  text-transform: uppercase;
  margin-bottom: 20px;
}

.how-to-step-number-prefix {
  display: inline-block;
  background: #7335b7;
  color: white;
  border-radius: 50%;
  padding: 0 9px;
  transform: scale(0.9);
  margin-right: 4px;
}

.howToArrow {
  min-width: 18px;
  margin-left: 4px;
  margin-bottom: 3px;
}

.how-to-step-title:not(.collapsed) .howToArrow {
  transform: scale(-1);
}

@media screen and (max-width: 991px) {
  .how-to-step-number {
    margin: 30px;
  }
}

/* Who for & benefits */
#benefitsSection {
  background-image: radial-gradient(circle at left top, rgba(255, 255, 255, 0.35) 0%, transparent 40%), radial-gradient(circle at right top, rgba(249, 132, 25, 0.35) 0%, transparent 50%), radial-gradient(circle at left 60%, rgba(255, 211, 99, 0.35) 0%, transparent 38%);
  background-color: #F3F2E8;
  color: #222545;
}

#benefitsSection .heading_container {
  align-items: center;
}

#benefitsSection h2 span {
  color: #222545;
}

.who-for-item {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.who-for-icon {
  height: 60px;
  margin-right: 16px;
  filter: brightness(0.1);
}

.benefits-list-item {
  background-color: transparent;
  border: 0;
}

.benefits-list-badge {
  background-color: #f07422;
  margin-right: 12px;
  color: #ffffff;
}

#benefitsSection .benefits-btn {
  margin-top: 48px;
  background-color: #f07422;
  border-color: #f07422;
}

#benefitsSection .benefits-img-box {
  text-align: right;
}

#benefitsSection .benefits-img {
  width: 85%;
}

@media screen and (min-width: 1050px) {
  #benefitsSection .heading_container {
    align-items: flex-start;
  }
}

@media screen and (max-width: 991px) {
  #benefitsSection .benefits-img-box {
    margin-top: 48px;
    text-align: center;
  }

  #benefitsSection .benefits-img {
    width: 30vw;
  }
}

@media screen and (max-width: 767px) {
  #benefitsSection .benefits-img {
    width: 40vw;
  }
}

@media screen and (max-width: 575px) {
  #benefitsSection .heading_container {
    margin-top: -48px;
  }

  #benefitsSection h2 {
    font-size: 28px;
    text-align: center;
  }

  #benefitsSection .benefits-img {
    width: 60vw;
  }
}

.faqSection .heading_container {
  align-items: center;
  text-align: center;
}

#faqAccordian {
  margin-top: 24px;
}

#faqAccordian .faqCard {
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.faqQuestionCardHeader {
  background: transparent;
  border-bottom: 0;
  padding: 12px 6px;
}

#faqAccordian .faqCard:last-child {
  border-bottom: 0;
}

.faqQuestion.btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 24px;
  text-align: left;
}

.faqAnswerBody {
  padding: 0 20px 20px;
}

.faqArrow {
  min-width: 24px;
  margin-left: 16px;
}

@media (min-width: 768px) {
  .faqArrow {
    margin-left: 24px;
  }
}

.faqQuestion:not(.collapsed) .faqArrow {
  transform: scale(-1);
}

.faqSection .faq-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 45px;
}

.faqSection .faq-btn a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #DF6616;
  color: #ffffff;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #DF6616;
}

@media screen and (max-width: 767px) {
  .faqSection h1 {
    margin-bottom: 16px;
  }

  .faqQuestion.btn {
    font-size: 20px;
  }
}

div.footer_container {
  padding-top: 0;
}

/* Custom styling for Schedule page */

.hero_area.hero_area-subPage {
  min-height: auto;
  border-radius: 0;
}

.hero_area-subPage #navbarSupportedContent .quote_btn {
  background-color: transparent;
  color: #222545;
}

.scheduling-intro-section {
  padding-top: 60px;
}

/*@media screen and (max-width: 999px) {
  .calendly-inline-widget {
    min-height: 1619px;
  }
}*/

@media screen and (max-width: 767px) {
  .scheduling-intro-section {
    padding-top: 20px;
  }

  .scheduling-intro-section h1{
    font-size: 28px;
  }
}

/*@media screen and (max-width: 576px) {
  .calendly-inline-widget {
    min-height: 1541px;
  }
}*/

/*@media screen and (max-width: 394px) {
  .calendly-inline-widget {
    min-height: 1531px;
  }
}*/

/* Custom styling for Confirmation page */

#heroCarousel.confirmation-section .hero-detail-box {
  text-align: left;
}

#heroCarousel.confirmation-section p {
  height: auto;
}

.hero-email {
  text-decoration: underline;
  color: #ffffff;
}

.hero-email:hover {
  text-decoration: underline;
  color: #ffffff;
}

#heroCarousel.confirmation-section .hero-detail-box .btn-box {
  justify-content: flex-start;
}
#heroCarousel .img-box.confirmed-img-box {
  background-image: url("../images/hero-photo2.webp");
}

/* Custom styling for Terms of Service page */
.terms-heading {
  padding-top: 24px;
}

.footerLink {
  color: #222545;
}

.footerLink:hover {
  color: #222545;
}

/* Custome styling for the Businesses pages */
.for-teams-label {
  font-size: 22px;
}

.for-teams-page .hero_area {
  min-height: auto;
  border-radius: 0;
  background-image: none;
}

.for-teams-page #heroCarousel .hero-detail-box {
  text-align: left;
}

.for-teams-page #heroCarousel .hero-detail-box h1 {
  white-space: normal;
}

@media screen and (max-width: 575px) {
  .for-teams-page #heroCarousel .hero-detail-box p {
    height: auto;
  }
}

.for-teams-page #heroCarousel .hero-detail-box .btn-box {
  justify-content: flex-start;
  margin-bottom: 100px;
}

.for-teams-page #heroCarousel .img-box {
  margin-top: -110px;
  width: auto;
  height: 400px;
  border-radius: 48px;
  background-image: url("../images/hero-photo1.webp");
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}

@media screen and (max-width: 767px) {
  .for-teams-page #heroCarousel .img-box {
    margin: -32px auto 64px;
    padding-top: 100%;
    width: 90%;
  }
}

.for-teams-page .slider_section .detail-box .btn-box a {
  width: auto;
}

.grey-section {
  background-color: #F9FAFB;
}

.why-companies-choose-section .heading_container {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    margin-bottom: 24px;
}

.value-prop-card {
  padding: 32px;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  text-align: left;

  transition: all 0.3s ease;
  transform: translateY(0);
}

.value-prop-card:hover {
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(-8px);
}

.value-prop-icon {
  width: 64px;
  margin-bottom: 24px;
}

.value-prop-card h5 {
  font-weight: 600;
  font-size: 18px;
}

.value-prop-card p {
  margin-bottom: 0;
  font-size: 14px;
}

/* Prevent tall wrapping behavior */
.row.equalize {
  align-content: flex-start;   /* <-- key line */
  /* align-items: stretch is already applied via the class above */
}

/* Make each column a flex container so the card can fill it */
.row.equalize > [class*="col-"] {
  display: flex;
}

/* Ensure the card fills the column’s height */
.row.equalize .value-prop-card {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.white-card {
  padding: 32px;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  transform: translateY(0);
}

.white-card:hover {
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(-8px);
}

.pricing-card {
  margin-top: 48px;
}

.pricing-card .price-total {
  font-weight: 600;
  color: #DF6616;
}

.benefits-list-item-bold {
  font-weight: 600;
  color: #DF6616;
}

.orange-section {
  background-color: #DF6616;
  color: #FFFFFF;
}

.primary-bottom-cta {
  display: inline-block;
  padding: 10px 45px;
  color: #DF6616;
  background-color: #ffffff;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #DF6616;
}

.primary-bottom-cta:hover {
  color: #DF6616;
  transform: translateY(-3px);
}
