/* =========================================================
   CLOUDIES365 HOMEPAGE
   Scoped only to .cloudies-page
   Header/footer styles intentionally excluded
========================================================= */

.cloudies-page {
  --navy: #101B28;
  --orange: #FF6000;
  --blue: #007AE2;
  --text: #414147;
  --light: #F6F8FC;
  --white: #FFFFFF;
  --radius: 16px;
  --container: 1274px;

  color: var(--text);
}

.cloudies-page .container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.cloudies-page section h2,
.cloudies-page section h3 {
  color: #35353A;
}

.cloudies-page img {
  max-width: 100%;
  height: auto;
}

/* =========================================================
   BUTTONS
========================================================= */

.cloudies-page .btn {
  min-height: 56px;
  padding: 0 34px;
  border: 1px solid transparent;
  border-radius: 11px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;

  transition:
    transform .18s ease,
    background-color .18s ease,
    color .18s ease,
    border-color .18s ease;
}

.cloudies-page .btn:hover {
  transform: translateY(-1px);
}

.cloudies-page .btn-orange {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.cloudies-page .btn-orange:hover {
  background: #fff;
  color: var(--orange);
}

.cloudies-page .btn-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, .9);
  color: #fff;
}

.cloudies-page .btn-outline-light:hover {
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.cloudies-page .button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cloudies-page .button-center {
  justify-content: center;
}

/* =========================================================
   HERO
========================================================= */

.cloudies-page .hero {
  background: var(--navy);
  color: #fff;
}

.cloudies-page .hero-main {
  min-height: 661px;
  padding-top: 0;
  padding-bottom: 54px;

  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  gap: 60px;
}

.cloudies-page .hero-copy {
  max-width: 680px;
}

.cloudies-page .hero h1 {
  margin: 0 0 22px;

  color: #fff;
  font-size: clamp(48px, 4.25vw, 62px);
  line-height: 1.16;
  letter-spacing: -.025em;
  font-weight: 800;
}

.cloudies-page .hero-copy > p {
  max-width: 680px;
  margin: 0 0 16px;

  color: #fff;
  font-size: 19px;
  line-height: 1.58;
}

.cloudies-page .hero-pills {
  margin: 0 0 28px;

  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cloudies-page .hero-pills span {
  padding: 7px 15px;

  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 100px;

  font-size: 13px;
  line-height: 1;
  font-weight: 600;
}

.cloudies-page .hero-art {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.cloudies-page .hero-art img {
  width: 100%;
  max-width: 520px;
}

.cloudies-page .hero-stats {
  min-height: 223px;

  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;

  border-top: 1px solid rgba(255, 255, 255, .24);
}

.cloudies-page .hero-stat {
  padding: 28px 18px 34px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  border-right: 1px solid rgba(255, 255, 255, .25);
  text-align: center;
}

.cloudies-page .hero-stat:last-child {
  border-right: 0;
}

.cloudies-page .hero-stat strong {
  font-size: clamp(31px, 3vw, 40px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -.025em;
}

.cloudies-page .hero-stat span {
  margin-top: 8px;

  color: #9C9C9C;
  font-size: 16px;
}

/* =========================================================
   COMMON SECTIONS
========================================================= */

.cloudies-page .section {
  padding: 84px 0;
}

.cloudies-page .section-light {
  background: var(--light);
}

.cloudies-page #why {
  padding-top: 50px;
  padding-bottom: 51px;
}

.cloudies-page #data-centers {
  padding-top: 44px;
  padding-bottom: 44px;
}

.cloudies-page #process {
  padding-top: 67px;
  padding-bottom: 67px;
}

.cloudies-page .industries {
  padding-top: 62px;
  padding-bottom: 67px;
}

.cloudies-page .testimonials {
  padding-top: 65px;
  padding-bottom: 58px;
  background: var(--light);
}

.cloudies-page .section-heading {
  margin-bottom: 55px;
}

.cloudies-page .eyebrow {
  min-height: 34px;
  padding: 6px 16px;

  display: inline-flex;
  align-items: center;

  border-radius: 999px;
  background: #EDF6FD;
  color: var(--blue);

  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .01em;
}

.cloudies-page .section-heading h2 {
  margin: 18px 0 6px;

  font-size: clamp(39px, 4vw, 52px);
  line-height: 1.14;
  letter-spacing: -.025em;
  font-weight: 800;
}

.cloudies-page .section-heading p {
  max-width: 900px;
  margin: 0;

  color: var(--text);
  font-size: 19px;
  line-height: 1.55;
}

/* =========================================================
   WHY CLOUDIES365
========================================================= */

.cloudies-page .feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cloudies-page .info-card,
.cloudies-page .industry-card,
.cloudies-page .testimonial-card,
.cloudies-page .solution-card,
.cloudies-page .metric {
  border: 1px solid #E3E8F0;
  background: #fff;
}

.cloudies-page .info-card {
  min-height: 217px;
  padding: 31px 28px 26px;

  border-radius: var(--radius);
}

.cloudies-page .icon-box {
  width: 52px;
  height: 52px;
  margin-bottom: 15px;
  flex: 0 0 auto;

  display: grid;
  place-items: center;

  border-radius: 11px;
  background: #EDF6FD;
  color: var(--blue);
}

.cloudies-page .icon-box img,
.cloudies-page .icon-box svg {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.cloudies-page .icon-box svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cloudies-page .info-card h3,
.cloudies-page .solution-card h3,
.cloudies-page .industry-card h3,
.cloudies-page .step h3 {
  margin: 0;

  font-size: 20px;
  line-height: 1.35;
  font-weight: 700;
}

.cloudies-page .info-card p,
.cloudies-page .industry-card p,
.cloudies-page .step p {
  margin: 7px 0 0;

  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
}

/* =========================================================
   HOSTING SOLUTIONS
========================================================= */

.cloudies-page .solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cloudies-page .solution-card {
  min-height: 370px;
  padding: 34px 24px 30px;

  border-radius: 17px;
}

.cloudies-page .solution-card.featured {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.cloudies-page .solution-card.featured h3 {
  color: #fff;
}

.cloudies-page .solution-title {
  margin-bottom: 18px;

  display: flex;
  align-items: center;
  gap: 20px;
}

.cloudies-page .solution-title .icon-box {
  margin: 0;
  background: #FFF0E7;
  color: var(--orange);
}

.cloudies-page .solution-title .icon-orange-dark {
  background: rgba(255, 96, 0, .12);
  color: var(--orange);
}

.cloudies-page .check-list {
  margin: 0;
  padding: 0;

  list-style: none;
}

.cloudies-page .check-list li {
  position: relative;

  margin: 0 0 15px;
  padding-left: 34px;

  color: var(--text);
  font-size: 17px;
  line-height: 1.45;
}

.cloudies-page .solution-card.featured .check-list li {
  color: #D3D3D3;
}

.cloudies-page .check-list li::before {
  content: "✓";

  position: absolute;
  top: -1px;
  left: 4px;

  color: var(--blue);
  font-size: 20px;
  font-weight: 600;
}

.cloudies-page .solution-card.featured .check-list li::before {
  color: var(--orange);
}

/* =========================================================
   DATA CENTERS
========================================================= */

.cloudies-page .data-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 70px;
}

.cloudies-page .map-card img {
  width: 100%;
}

.cloudies-page .data-copy > p {
  margin: 0 0 28px;

  color: var(--text);
  font-size: 19px;
  line-height: 1.55;
}

.cloudies-page .metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.cloudies-page .metric {
  min-height: 112px;
  padding: 25px 38px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  border-radius: 14px;
}

.cloudies-page .metric strong {
  color: #000;
  font-size: 31px;
  line-height: 1.15;
}

.cloudies-page .metric span {
  margin-top: 8px;

  color: #4A4D55;
  font-size: 15px;
}

/* =========================================================
   HOW IT WORKS
========================================================= */

.cloudies-page .steps-grid {
  position: relative;

  margin-top: 34px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 54px;
}

.cloudies-page .steps-grid::before {
  content: "";

  position: absolute;
  top: 34px;
  left: 33px;
  right: 33px;

  height: 1px;
  background: rgba(255, 96, 0, .45);
}

.cloudies-page .step {
  position: relative;
  z-index: 1;
}

.cloudies-page .step-number {
  width: 70px;
  height: 70px;
  margin-bottom: 27px;

  display: grid;
  place-items: center;

  border: 1.5px solid var(--orange);
  border-radius: 50%;
  background: #fff;
  color: var(--orange);

  font-size: 31px;
  font-weight: 700;
}

.cloudies-page .step h3 {
  min-height: 54px;
  font-weight: 600;
}

.cloudies-page .center-action {
  margin-top: 49px;

  display: flex;
  justify-content: center;
}

.cloudies-page .btn-wide {
  min-width: 308px;
}

.cloudies-page .btn-extra-wide {
  min-width: 518px;
}

/* =========================================================
   INDUSTRIES
========================================================= */

.cloudies-page .industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cloudies-page .industry-card {
  min-height: 271px;
  padding: 22px 20px;

  border-radius: 16px;
}

.cloudies-page .industry-card .icon-box {
  width: 50px;
  height: 50px;
  margin-bottom: 12px;
}

.cloudies-page .industry-card h3 {
  font-size: 20px;
}

.cloudies-page .industry-card p {
  font-size: 15px;
}

/* =========================================================
   TESTIMONIALS - SMOOTH INFINITE SLIDER
========================================================= */

.cloudies-page .testimonial-grid {
  position: relative;

  width: 100%;
  overflow: hidden;
}

.cloudies-page .testimonial-track {
  width: 100%;

  display: flex;
  align-items: stretch;
  gap: 20px;

  will-change: transform;
  transition: transform .65s cubic-bezier(.22, .61, .36, 1);
}

.cloudies-page .testimonial-track.no-transition {
  transition: none;
}

.cloudies-page .testimonial-card {
  min-width: 0;
  min-height: 296px;
  padding: 35px 22px 24px;
  flex: 0 0 calc((100% - 40px) / 3);

  display: flex;
  flex-direction: column;

  border-radius: 14px;
}

.cloudies-page .stars {
  color: #FFB400;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 2px;
}

.cloudies-page .testimonial-card blockquote {
  margin: 17px 0 24px;

  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
}

.cloudies-page .person {
  margin-top: auto;

  display: flex;
  align-items: center;
  gap: 12px;
}

.cloudies-page .avatar {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;

  display: grid;
  place-items: center;

  border-radius: 50%;
  background: #EDF6FD;
  color: var(--blue);

  font-size: 13px;
  font-weight: 700;
}

.cloudies-page .person strong {
  display: block;

  color: var(--blue);
  font-size: 16px;
}

.cloudies-page .person small {
  margin-top: 3px;

  display: block;

  color: #616671;
  font-size: 12px;
}

.cloudies-page .slider-controls {
  margin-top: 31px;

  display: flex;
  justify-content: center;
  gap: 12px;
}

.cloudies-page .slider-btn {
  width: 48px;
  height: 48px;

  display: grid;
  place-items: center;

  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #15171B;

  font-size: 24px;
  line-height: 1;
  cursor: pointer;

  transition:
    transform .25s ease,
    background-color .25s ease,
    color .25s ease;
}

.cloudies-page .slider-btn.next {
  background: var(--orange);
  color: #fff;
}

.cloudies-page .slider-btn:hover {
  transform: translateY(-2px);
}

.cloudies-page .slider-btn:active {
  transform: scale(.96);
}

/* =========================================================
   FAQ - FIGMA MATCH + SMOOTH ACCORDION
========================================================= */

.cloudies-page .faq-section {
  padding-top: 48px;
  padding-bottom: 54px;
}

.cloudies-page .accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cloudies-page .faq-item {
  width: 100%;

  overflow: hidden;

  border: 1px solid #DFE5EC;
  border-radius: 9px;
  background: #fff;

  transition:
    background-color .3s ease,
    border-color .3s ease;
}

.cloudies-page .faq-question {
  width: 100%;
  min-height: 64px;
  margin: 0;
  padding: 17px 16px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  border: 0;
  outline: 0;
  background: transparent;
  color: #333339;

  text-align: left;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;

  cursor: pointer;

  transition:
    color .3s ease,
    padding .3s ease,
    min-height .3s ease;
}

.cloudies-page .faq-question span {
  flex: 1;
}

.cloudies-page .faq-question b {
  width: 20px;
  min-width: 20px;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #111;
  font-size: 22px;
  line-height: 1;
  font-weight: 400;

  transition:
    color .3s ease,
    transform .3s ease;
}

.cloudies-page .faq-answer {
  height: 0;
  padding: 0;

  overflow: hidden;
  opacity: 0;

  transition:
    height .4s cubic-bezier(.4, 0, .2, 1),
    opacity .25s ease;
}

.cloudies-page .faq-answer p {
  margin: 0;
  padding: 0 16px 17px;

  color: #fff;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 400;
}

.cloudies-page .faq-item.open {
  border-color: var(--blue);
  background: var(--blue);
}

.cloudies-page .faq-item.open .faq-question {
  min-height: 48px;
  padding: 16px 16px 4px;

  color: #fff;
}

.cloudies-page .faq-item.open .faq-question b {
  color: #fff;
  transform: rotate(180deg);
}

.cloudies-page .faq-item.open .faq-answer {
  opacity: 1;
}

/* =========================================================
   CTA
========================================================= */

.cloudies-page .cta-section {
  padding: 62px 0 67px;

  background: var(--navy);
  color: #fff;
}

.cloudies-page .cta-inner {
  text-align: center;
}

.cloudies-page .eyebrow-dark {
  background: rgba(255, 96, 0, .13);
  color: var(--orange);
}

.cloudies-page .cta-inner h2 {
  margin: 14px 0 9px;

  color: #fff;
  font-size: 48px;
  line-height: 1.18;
  letter-spacing: -.025em;
  font-weight: 800;
}

.cloudies-page .cta-inner p {
  margin: 0 0 30px;

  color: rgba(255, 255, 255, .9);
  font-size: 19px;
  line-height: 1.55;
}
.page .cloudies-page article.faq-item {
    padding: 0;
}
.home.page-template-template-homepage #header {
    background: none !important;
}





/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 1180px) {
  .cloudies-page .hero-main {
    grid-template-columns: 1.1fr .9fr;
  }

  .cloudies-page .data-grid {
    gap: 45px;
  }
}

@media (max-width: 991px) {
    .cloudies-page .button-row {
        flex-wrap: nowrap;
    }
  .cloudies-page .hero-main {
    min-height: auto;
    padding-top: 74px;
    padding-bottom: 55px;

    grid-template-columns: 1fr;
  }

  .cloudies-page .hero-copy {
    max-width: 760px;
  }

  .cloudies-page .hero-art {
    justify-content: center;
  }

  .cloudies-page .hero-art img {
    max-width: 500px;
  }

  .cloudies-page .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .cloudies-page .hero-stat:nth-child(3) {
    border-right: 0;
  }

  .cloudies-page .hero-stat:nth-child(n + 4) {
    border-top: 1px solid rgba(255, 255, 255, .25);
  }

  .cloudies-page .feature-grid,
  .cloudies-page .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cloudies-page .solution-card.featured {
    order: -1;
    grid-column: 1 / -1;
  }

  .cloudies-page .data-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .cloudies-page .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 42px 60px;
  }

  .cloudies-page .steps-grid::before {
    display: none;
  }

  .cloudies-page .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cloudies-page .testimonial-track .testimonial-card {
    flex-basis: calc((100% - 20px) / 2);
  }
}

/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 890px) {
    .cloudies-page .industry-card {
        min-height: 240px;
    }
}

@media (max-width: 767px) {
  .cloudies-page .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .cloudies-page .hero-main {
    padding-top: 54px;
    padding-bottom: 48px;
  }

  .cloudies-page .hero h1 {
    font-size: 40px;
  }

  .cloudies-page .hero-copy > p {
    font-size: 17px;
  }

  .cloudies-page .hero-pills {
    gap: 8px;
  }

  .cloudies-page .hero-pills span {
    font-size: 11px;
  }

  .cloudies-page .button-row .btn {
    width: 100%;
  }

  .cloudies-page .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .cloudies-page .hero-stat {
    border-right: 1px solid rgba(255, 255, 255, .25);
  }

  .cloudies-page .hero-stat:nth-child(2n) {
    border-right: 0;
  }

  .cloudies-page .hero-stat:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, .25);
  }

  .cloudies-page .hero-stat:last-child {
    grid-column: 1 / -1;
    border-right: 0;
  }

  .cloudies-page .section {
    padding: 68px 0;
  }

  .cloudies-page #why,
  .cloudies-page #data-centers,
  .cloudies-page #process,
  .cloudies-page .industries,
  .cloudies-page .testimonials,
  .cloudies-page .faq-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .cloudies-page .section-heading {
    margin-bottom: 38px;
  }

  .cloudies-page .section-heading h2 {
    font-size: 34px;
  }

  .cloudies-page .section-heading h2 br,
  .cloudies-page .cta-inner h2 br,
  .cloudies-page .cta-inner p br {
    display: none;
  }

  .cloudies-page .section-heading p {
    font-size: 16px;
  }

  /*.cloudies-page .feature-grid,*/
  /*.cloudies-page .solution-grid,*/
  /*.cloudies-page .metric-grid,*/
  /*.cloudies-page .steps-grid,*/
  /*.cloudies-page .industry-grid {*/
  /*  grid-template-columns: 1fr;*/
  /*}*/

  .cloudies-page .solution-card.featured {
    grid-column: auto;
  }

  .cloudies-page .info-card,
  .cloudies-page .solution-card,
  .cloudies-page .industry-card,
  .cloudies-page .testimonial-card {
    min-height: 0;
  }

  .cloudies-page .metric {
    min-height: 96px;
    padding: 20px 24px;
  }

  .cloudies-page .steps-grid {
    gap: 38px;
  }

  .cloudies-page .step h3 {
    min-height: 0;
  }

  .cloudies-page .btn-extra-wide,
  .cloudies-page .btn-wide {
    width: 100%;
    min-width: 0;
  }

  .cloudies-page .testimonial-track {
    gap: 16px;
  }

  .cloudies-page .testimonial-track .testimonial-card {
    flex-basis: 100%;
  }

  .cloudies-page .accordion {
    gap: 10px;
  }

  .cloudies-page .faq-question {
    min-height: 60px;
    padding: 15px 14px;

    font-size: 15px;
  }

  .cloudies-page .faq-item.open .faq-question {
    padding: 15px 14px 4px;
  }

  .cloudies-page .faq-answer p {
    padding: 0 14px 15px;

    font-size: 14px;
  }

  .cloudies-page .cta-section {
    padding: 56px 0;
  }

  .cloudies-page .cta-inner h2 {
    font-size: 38px;
  }

  .cloudies-page .cta-inner p {
    font-size: 16px;
  }
}

@media (max-width: 667px) {
    .cloudies-page .feature-grid, .cloudies-page .solution-grid {
        grid-template-columns: 1fr;
    }
    .cloudies-page .metric {
       text-align: center;
    }
}

@media (max-width: 480px) {
    .cloudies-page .btn-extra-wide, .cloudies-page .btn-wide {
        margin: 0 auto;
        text-align: center;
        line-height: 24px;
    }
    .cloudies-page .step-number {
        width: 50px;
        height: 50px;
        margin-bottom: 14px;
        font-size: 22px;
    }
    .cloudies-page .industry-grid {
        grid-template-columns: 1fr;
    }
    .cloudies-page .steps-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .cloudies-page .button-row {
        flex-wrap: wrap;
    }
    .cloudies-page .hero h1 {
        font-size: 31px;
    }
    .cloudies-page .hero h1 br {
        display: none;
    }

  /*.cloudies-page .hero-stats {*/
  /*  grid-template-columns: 1fr;*/
  /*}*/

    .cloudies-page .hero-stat strong {
        font-size: clamp(20px, 3vw, 40px);
    }
    .cloudies-page .hero-stat span {
        font-size: 14px;
    }
    .cloudies-page .metric strong {
        font-size: 20px;
    }
    .cloudies-page .metric span {
        font-size: 14px;
    } 
  .cloudies-page .hero-stat,
  .cloudies-page .hero-stat:nth-child(n) {
    grid-column: auto;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, .25);
  }

  .cloudies-page .section-heading h2 {
    font-size: 28px;
  }

  .cloudies-page .cta-inner h2 {
    font-size: 34px;
  }
}


@media (max-width: 375px) {
    .cloudies-page .hero h1 {
        font-size: 27px;
    }
}

@media (max-width: 330px) {
    .cloudies-page .metric-grid {
        gap: 6px;
    }
}














/* ==========================================================
   CLOUDIES365 FOOTER FIX
   ========================================================== */
   a.skip-link.show-on-focus {
    display: none;
}
   .tollfree {
    width: 300px;
    box-sizing: border-box;
    /* background: #101a27; */
    /* box-shadow: 0 0 5px #7dd3e7; */
    /* padding: 10px 10px 5px; */
    position: fixed;
    bottom: 0;
    left: 0;
    border: 1px solid #ddd;
    background-color: #ff5f22;
    /* color: #101a27 !important; */
}
#footer.ct-footer [data-row*="middle"] {
    background-color: #101B28 !important;
}
#footer.ct-footer [data-row*="middle"] h2, #footer.ct-footer [data-row*="middle"] a {
    color: #fff !important;
}
#footer,
.ct-footer {
	background: #f3f6f9 !important;
	color: #17324d !important;
}

/* Main footer width */
.ct-footer .ct-container {
	width: 100% !important;
	max-width: 1280px !important;
	margin-left: auto !important;
	margin-right: auto !important;
	padding-left: 24px !important;
	padding-right: 24px !important;
	box-sizing: border-box !important;
}


/* ----------------------------------------------------------
   DISCLAIMER / TOP FOOTER ROW
   ---------------------------------------------------------- */

.ct-footer [data-row="top"] .ct-container {
	display: block !important;
	padding-top: 32px !important;
	padding-bottom: 32px !important;
}

.ct-footer [data-row="top"] p {
	max-width: 1280px !important;
	margin: 0 !important;
	font-size: 16px !important;
	line-height: 1.7 !important;
	color: #17324d !important;
}


/* ----------------------------------------------------------
   MAIN FOOTER COLUMNS
   Supports old + new Blocksy markup
   ---------------------------------------------------------- */

.ct-footer [data-row="middle"] .ct-container,
.ct-footer [data-row="middle"] [data-columns],
.ct-footer [data-row="middle"] [data-column-set] {
	display: grid !important;
	grid-template-columns:
		minmax(250px, 1.3fr)
		minmax(180px, 1fr)
		minmax(180px, 1fr)
		minmax(180px, 1fr) !important;

	column-gap: 55px !important;
	row-gap: 35px !important;

	align-items: start !important;

	padding-top: 50px !important;
	padding-bottom: 50px !important;

	width: 100% !important;
}


/* Individual footer columns */
.ct-footer [data-column] {
	width: auto !important;
	min-width: 0 !important;
	max-width: none !important;

	display: block !important;

	margin: 0 !important;
	padding: 0 !important;
}


/* Prevent widgets from forcing widths */
.ct-footer [data-column] > *,
.ct-footer .ct-widget,
.ct-footer .widget {
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0 !important;

	margin-left: 0 !important;
	margin-right: 0 !important;
}


/* ----------------------------------------------------------
   LOGO COLUMN
   ---------------------------------------------------------- */

.ct-footer .site-logo-container,
.ct-footer .site-branding {
	margin-bottom: 24px !important;
}

.ct-footer .site-logo-container img,
.ct-footer .site-branding img,
.ct-footer .custom-logo {
	width: auto !important;
	max-width: 190px !important;
	height: auto !important;
	display: block !important;
}

 


/* ----------------------------------------------------------
   FOOTER TITLES
   ---------------------------------------------------------- */

.ct-footer .widget-title,
.ct-footer h2,
.ct-footer h3,
.ct-footer h4 {
	color: #102a43 !important;

	font-size: 24px !important;
	line-height: 1.25 !important;
	font-weight: 700 !important;

	margin-top: 0 !important;
	margin-bottom: 24px !important;

	padding: 0 !important;
}


/* ----------------------------------------------------------
   FOOTER MENUS
   ---------------------------------------------------------- */

.ct-footer ul,
.ct-footer .menu,
.ct-footer .widget-menu {
	display: flex !important;
	flex-direction: column !important;
	align-items: flex-start !important;

	gap: 11px !important;

	margin: 0 !important;
	padding: 0 !important;

	list-style: none !important;
}


/* Critical fix:
   prevents Sage / Tax / CRM links from running horizontally
*/
.ct-footer li,
.ct-footer .menu-item {
	display: block !important;

	width: 100% !important;
	max-width: 100% !important;

	margin: 0 !important;
	padding: 0 !important;

	float: none !important;
}


/* Footer links */
.ct-footer li a,
.ct-footer .menu-item a,
.ct-footer .widget a {
	display: inline-block !important;

	width: auto !important;

	padding: 0 !important;
	margin: 0 !important;

	font-size: 16px !important;
	line-height: 1.5 !important;
	font-weight: 400 !important;

	color: #17324d !important;

	text-decoration: none !important;

	white-space: normal !important;
	word-break: normal !important;
	overflow-wrap: anywhere !important;
}

.ct-footer li a:hover,
.ct-footer .menu-item a:hover,
.ct-footer .widget a:hover {
	color: #2678df !important;
}


/* Remove old horizontal/flex menu rules */
.ct-footer nav,
.ct-footer nav ul {
	width: 100% !important;
}

.ct-footer nav ul {
	display: flex !important;
	flex-direction: column !important;
	align-items: flex-start !important;
}


/* ----------------------------------------------------------
   BOTTOM COPYRIGHT ROW
   ---------------------------------------------------------- */

.ct-footer [data-row="bottom"] .ct-container {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;

	padding-top: 22px !important;
	padding-bottom: 22px !important;
}

.ct-footer [data-row="bottom"],
.ct-footer [data-row="bottom"] p {
	color: #17324d !important;
	font-size: 15px !important;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 1024px) {

	.ct-footer [data-row="middle"] .ct-container,
	.ct-footer [data-row="middle"] [data-columns],
	.ct-footer [data-row="middle"] [data-column-set] {
		grid-template-columns:
			repeat(2, minmax(0, 1fr)) !important;

		column-gap: 40px !important;
		row-gap: 45px !important;
	}

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 767px) {

	.ct-footer .ct-container {
		padding-left: 20px !important;
		padding-right: 20px !important;
	}

	.ct-footer [data-row="middle"] .ct-container,
	.ct-footer [data-row="middle"] [data-columns],
	.ct-footer [data-row="middle"] [data-column-set] {
		display: grid !important;

		grid-template-columns: 1fr !important;

		gap: 35px !important;

		padding-top: 40px !important;
		padding-bottom: 40px !important;
	}

	.ct-footer [data-column] p {
		max-width: 100% !important;
	}

	.ct-footer .widget-title,
	.ct-footer h2,
	.ct-footer h3,
	.ct-footer h4 {
		font-size: 22px !important;
		margin-bottom: 18px !important;
	}

	.ct-footer [data-row="bottom"] .ct-container {
		display: block !important;
		text-align: left !important;
	}

}