:root {
  --bg: #0d1123;
  --bg-2: #111936;
  --panel: #ffffff;
  --panel-soft: #f4f7fb;
  --text: #1d2335;
  --muted: #68728a;
  --muted-light: rgba(255, 255, 255, .76);
  --theme-color: #c91549;
  --theme-bright: #ff6f94;
  --cyan: #19c2d1;
  --blue: #00b7be;
  --line: rgba(255, 255, 255, .14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
textarea,
select {
  font-family: Arial, Helvetica, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-top: 0;
}

p {
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus,
button:focus {
  outline: 2px solid rgba(201, 21, 73, .62);
  outline-offset: 4px;
}

button {
  border: 0;
  cursor: pointer;
}

img,
svg {
  display: block;
}

img {
  height: auto;
  max-width: 100%;
}

main,
section,
footer {
  display: block;
  position: relative;
  width: 100%;
}

.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 73.125rem;
  padding-left: 1rem;
  padding-right: 1rem;
  width: 100%;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1rem;
  margin-right: -1rem;
}

.row > [class*="col-"] {
  padding-left: 1rem;
  padding-right: 1rem;
  width: 100%;
}

.col-sm-3,
.col-sm-6,
.col-sm-8,
.col-sm-12,
.col-md-3,
.col-md-4,
.col-md-6,
.col-md-8,
.col-md-12,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7 {
  min-height: 1px;
}

.w-100 { width: 100%; }
.mb-0 { margin-bottom: 0; }
.mb-55 { margin-bottom: 3.4375rem; }
.mb-56 { margin-bottom: 3.5rem; }
.mt-30 { margin-top: 1.875rem; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-white { color: #fff; }
.d-block { display: block; }
.d-inline-block { display: inline-block; }
.d-inline-flex { display: inline-flex; }
.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.justify-content-between { justify-content: space-between; }
.align-items-center { align-items: center; }
.position-relative { position: relative; }
.position-absolute { position: absolute; }
.position-fixed { position: fixed; }
.rounded-circle { border-radius: 50%; }
.list-unstyled {
  list-style: none;
  margin: 0;
  padding: 0;
}
.img-fluid { height: auto; max-width: 100%; }

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.pt-90 { padding-top: 5.625rem; }
.pb-40 { padding-bottom: 2.5rem; }
.pb-70 { padding-bottom: 4.375rem; }
.pb-90 { padding-bottom: 5.625rem; }
.pt-100 { padding-top: 6.25rem; }
.pb-100 { padding-bottom: 6.25rem; }
.pt-120 { padding-top: 7.5rem; }
.pb-120 { padding-bottom: 7.5rem; }
.pb-130 { padding-bottom: 8.125rem; }
.pt-210 { padding-top: 12rem; }
.pb-155 { padding-bottom: 8.5rem; }

.bg-color15 { background: #fff2ef; }
.bg-color25 { background: var(--blue); }
.bg-color34 { background: var(--bg); }
.gray-bg { background: var(--panel-soft); }
.drk-bg4 { background: #080e15; }
.thm-clr { color: var(--theme-bright); }

.skip-link {
  background: #fff;
  border-radius: 3px;
  color: var(--bg);
  font-weight: 700;
  left: -999px;
  padding: .75rem 1rem;
  position: absolute;
  top: 1rem;
  z-index: 100000;
}

.skip-link:focus {
  left: 1rem;
}

.fixed-bg {
  height: 100%;
  inset: 0;
  margin: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
  z-index: -2;
}

.blue-layer::before {
  background: linear-gradient(135deg, rgba(13, 17, 35, .72), rgba(0, 183, 190, .76));
  content: "";
  inset: 0;
  position: absolute;
  z-index: -1;
}

.blue-layer {
  isolation: isolate;
  overflow: hidden;
}

.thm-btn {
  align-items: center;
  background: var(--theme-color);
  border-radius: 3px;
  color: #fff;
  display: inline-flex;
  font-size: .92rem;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0;
  line-height: 1;
  min-height: 3.2rem;
  padding: 1rem 1.6rem;
  text-transform: uppercase;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.thm-btn:hover,
.thm-btn:focus {
  background: #a90f3a;
  box-shadow: 0 16px 34px rgba(201, 21, 73, .25);
  color: #fff;
  transform: translateY(-2px);
}

header.stick {
  color: #fff;
  gap: 1.5rem;
  left: 0;
  padding: 1.25rem 3rem;
  position: absolute;
  top: 0;
  z-index: 1000;
}

.logo img {
  width: 11.125rem;
}

.menu-wrap2 > ul {
  align-items: center;
  display: flex;
  gap: 2rem;
}

.menu-wrap2 a {
  color: #fff;
  display: inline-block;
  font-size: .93rem;
  font-weight: 800;
  line-height: 1.2;
  position: relative;
  text-transform: uppercase;
}

.menu-wrap2 a::after {
  background: var(--theme-color);
  bottom: -.5rem;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
  width: 100%;
}

.menu-wrap2 a:hover::after,
.menu-wrap2 a:focus::after {
  transform: scaleX(1);
}

.cnt-inf {
  color: #fff;
  font-size: .9rem;
  line-height: 1.45;
  text-align: right;
}

.cnt-inf a + a {
  color: var(--muted-light);
}

.menu-btns {
  display: none;
}

.menu-btn {
  align-items: center;
  background: var(--theme-color);
  color: #fff;
  display: inline-flex;
  height: 3rem;
  justify-content: center;
  width: 3rem;
}

.menu-icon-lines,
.menu-icon-lines::before,
.menu-icon-lines::after {
  background: currentColor;
  border-radius: 2px;
  display: block;
  height: 2px;
  width: 1.35rem;
}

.menu-icon-lines {
  position: relative;
}

.menu-icon-lines::before,
.menu-icon-lines::after {
  content: "";
  left: 0;
  position: absolute;
}

.menu-icon-lines::before { top: -.45rem; }
.menu-icon-lines::after { top: .45rem; }

.menu-wrap {
  background: rgba(8, 14, 21, .98);
  height: 100vh;
  max-width: 21rem;
  padding: 5.5rem 2rem 2rem;
  position: fixed;
  right: -22rem;
  top: 0;
  transition: right .25s ease;
  width: 86vw;
  z-index: 2000;
}

.menu-wrap.active {
  right: 0;
}

.menu-wrap a {
  color: #fff;
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  padding: .85rem 0;
}

.menu-cls-btn {
  align-items: center;
  background: var(--theme-color);
  color: #fff;
  display: flex;
  height: 2.75rem;
  justify-content: center;
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  width: 2.75rem;
}

.menu-cls-btn span {
  font-size: 2rem;
  line-height: 1;
}

.sticky-header {
  align-items: center;
  background: rgba(8, 14, 21, .96);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .18);
  display: flex;
  justify-content: space-between;
  left: 0;
  opacity: 0;
  padding: .8rem 3rem;
  pointer-events: none;
  top: 0;
  transform: translateY(-100%);
  transition: transform .22s ease, opacity .22s ease;
  z-index: 1500;
}

.sticky-header.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

#topo > .w-100 {
  isolation: isolate;
  min-height: 45rem;
  overflow: hidden;
}

#topo > .w-100::after {
  background: linear-gradient(90deg, rgba(13, 17, 35, .95), rgba(13, 17, 35, .72) 46%, rgba(13, 17, 35, .24));
  content: "";
  inset: 0;
  position: absolute;
  z-index: -1;
}

.about-wrap4.style2 .about-inner {
  position: relative;
  z-index: 2;
}

.about-wrap4.style2 .about-cap {
  max-width: 39rem;
}

.about-wrap4.style2 .about-cap > h1 {
  color: #fff;
  font-size: 4.25rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.08;
  margin-bottom: 0;
}

.about-wrap4.style2 .about-cap > span {
  color: var(--muted-light);
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 1.25rem;
}

.about-wrap4.style2 .about-cap > span + a {
  margin-top: 3rem;
}

.about-mckp4 {
  margin-left: auto;
  max-width: 34rem;
}

.about-mckp4 img,
.about-mckp img {
  margin-left: auto;
  margin-right: auto;
}

.srv-box3 {
  background: rgba(255, 255, 255, .045);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #fff;
  height: 100%;
  padding: 2rem 1rem;
}

.srv-box3 > span {
  align-items: center;
  background: rgba(255, 255, 255, .08);
  color: var(--cyan);
  display: inline-flex !important;
  height: 4.25rem;
  justify-content: center;
  margin-bottom: 1.25rem;
  width: 4.25rem;
}

.srv-box3 h3 {
  color: #fff;
  font-size: 1.15rem;
  line-height: 1.35;
}

.index-line-icon {
  fill: none;
  height: 2rem;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 2rem;
}

.about-wrap {
  position: relative;
}

.about-info h2 {
  color: var(--text);
  font-size: 3.25rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.1;
}

.bg-color34 .about-info h2 {
  color: #fff;
}

.about-info p {
  margin-top: 1.25rem;
}

.bg-color34 .about-info p {
  color: var(--muted-light);
}

.about-info .thm-btn,
.about-info ul + .thm-btn {
  margin-top: 2.6rem;
}

.testi-item {
  align-items: center;
  display: flex;
  gap: 2rem;
}

.testi-thumb {
  flex: 0 0 11.25rem;
}

.testi-thumb img {
  border: .45rem solid rgba(255, 255, 255, .2);
}

.testi-item-inner {
  max-width: 48rem;
}

.testi-item-inner p {
  color: #fff;
  font-size: 1.35rem;
  line-height: 1.65;
}

.testi-info-inner {
  margin-top: 1.5rem;
}

.testi-author {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.35;
}

.testi-info-inner span {
  color: rgba(255, 255, 255, .86);
}

.sec-title {
  margin-bottom: 3.4375rem;
}

.sec-title-inner h2 {
  color: #fff;
  font-size: 3.25rem;
  font-weight: 900;
  line-height: 1.1;
}

.sec-title-inner h2 i {
  color: rgba(255, 255, 255, .74);
  display: block;
  font-size: 1rem;
  font-style: normal;
  letter-spacing: 0;
  margin-bottom: .6rem;
  text-transform: uppercase;
}

.sec-title-inner span {
  color: var(--theme-bright);
  font-weight: 800;
  margin-top: .75rem;
  text-transform: uppercase;
}

.price-wrap {
  border-radius: 8px;
  overflow: hidden;
  padding: 1rem;
}

.price-item + .price-item {
  margin-top: 2rem;
}

.index-services-carousel {
  position: relative;
}

.index-services-carousel.is-carousel-ready .price-caro {
  position: relative;
}

.index-services-carousel.is-carousel-ready .price-item {
  display: none;
  margin-top: 0;
}

.index-services-carousel.is-carousel-ready .price-item.is-active {
  animation: services-carousel-in .28s ease;
  display: block;
}

.services-carousel-controls {
  align-items: center;
  display: none;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.index-services-carousel.is-carousel-ready .services-carousel-controls {
  display: flex;
}

.services-carousel-btn {
  align-items: center;
  background: var(--bg);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  height: 3rem;
  justify-content: center;
  transition: background .2s ease, transform .2s ease;
  width: 3rem;
}

.services-carousel-btn svg {
  fill: none;
  height: 1.45rem;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
  width: 1.45rem;
}

.services-carousel-btn:hover,
.services-carousel-btn:focus {
  background: var(--theme-color);
  transform: translateY(-2px);
}

.services-carousel-dots {
  align-items: center;
  display: inline-flex;
  gap: .55rem;
}

.services-carousel-dot {
  background: rgba(13, 17, 35, .25);
  border-radius: 999px;
  height: .65rem;
  padding: 0;
  transition: background .2s ease, width .2s ease;
  width: .65rem;
}

.services-carousel-dot.is-active {
  background: var(--theme-color);
  width: 1.8rem;
}

@keyframes services-carousel-in {
  from {
    opacity: 0;
    transform: translateX(1rem);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.price-post {
  border-radius: 8px;
  overflow: hidden;
}

.price-post img {
  min-height: 20rem;
  object-fit: cover;
}

.price-post::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(8, 14, 21, .72));
  content: "";
  inset: 0;
  position: absolute;
}

.price-post-info {
  bottom: 1.5rem;
  color: #fff;
  left: 1.5rem;
  z-index: 1;
}

.price-post-info h3 {
  color: #fff;
  font-size: 1.8rem;
}

.price-post-info span {
  color: #fff;
}

.price-table {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(13, 17, 35, .13);
  height: 100%;
  padding: 2.2rem;
}

.price-head h3 {
  color: var(--text);
  font-size: 2rem;
  font-weight: 900;
}

.price-head span {
  color: var(--theme-color);
  display: inline-block;
  font-weight: 800;
  margin-top: .4rem;
  text-transform: uppercase;
}

.price-body {
  margin-top: 1.5rem;
}

.price-body li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.price-body + .thm-btn,
.price-table .thm-btn {
  margin-top: 2rem;
}

.list-style1 {
  margin-top: 2rem;
}

.list-style1 li {
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.6;
  margin-top: .8rem;
  padding-left: 1.8rem;
  position: relative;
}

.list-style1 li::before {
  background: var(--theme-color);
  border-radius: 50%;
  content: "";
  height: .6rem;
  left: 0;
  position: absolute;
  top: .55rem;
  width: .6rem;
}

.facts-list {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.proof-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 1rem;
  min-height: 16rem;
  padding: 1.65rem;
}

.proof-card > span {
  color: var(--theme-bright);
  display: block;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .08em;
  margin-bottom: 1rem;
}

.proof-card > h3 {
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.25;
  margin-bottom: .9rem;
}

.proof-card > p {
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  margin-bottom: 0;
}

.segment-strip {
  background: rgba(0,86,179,.13);
  border: 1px solid rgba(0,195,255,.16);
  border-radius: 1rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.4rem;
  padding: 1.4rem;
}

.segment-strip strong,
.segment-strip span {
  display: block;
}

.segment-strip strong {
  color: #fff;
  margin-bottom: .35rem;
}

.segment-strip span {
  color: rgba(255,255,255,.72);
  line-height: 1.55;
}

.fact-box {
  background: rgba(255, 255, 255, .045);
  border: 1px solid var(--line);
  border-radius: 8px;
  height: 100%;
  padding: 1.75rem 1rem;
}

.fact-box > .index-fact-icon {
  align-items: center;
  background: rgba(255, 255, 255, .08);
  color: var(--cyan);
  display: inline-flex;
  height: 4rem;
  justify-content: center;
  margin-bottom: 1rem;
  width: 4rem;
}

.fact-value {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}

.fact-label {
  color: var(--muted-light);
  font-size: .95rem;
  font-weight: 800;
  line-height: 1.35;
  margin-top: .7rem;
}

#plataformas {
  background: #fff;
}

.sponsor-item {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 7rem;
}

.platform-logo {
  display: inline-block;
}

.platform-logo img {
  max-height: 4.2rem;
  max-width: 11rem;
  object-fit: contain;
}

.index-contact-cta {
  margin: 0 auto;
  max-width: 52rem;
}

.index-contact-cta > span {
  font-size: .875rem;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.index-contact-cta > h2 {
  color: #fff;
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.18;
}

.index-contact-cta > p {
  color: var(--muted-light);
  font-size: 1.15rem;
  margin: 1.25rem auto 0;
  max-width: 43rem;
}

.index-contact-cta .thm-btn {
  margin-top: 2.2rem;
}

footer {
  color: #fff;
}

.widget h3 {
  color: #fff;
  font-size: 1.35rem;
  margin-bottom: 1.4rem;
}

.widget p,
.cont-info-list li,
.cont-info-list a {
  color: rgba(255, 255, 255, .68);
}

.cont-info-list li + li {
  margin-top: .75rem;
}

.cont-info-list span {
  color: #fff;
  font-weight: 800;
}

.footer-inner2 {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding-bottom: 1.2rem;
}

.bootom-bar2 {
  padding-top: 2rem;
}

.bootom-bar2 p {
  color: rgba(255, 255, 255, .62);
  font-size: .95rem;
}

.bootom-bar2 a {
  color: #fff;
}

.footer-legal {
  margin-top: .65rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, .78);
  font-size: .9rem;
}

.widget img[src*="PartnerBadgeClickable"] {
  max-width: 12rem;
}

.whatsapp-float {
  align-items: center;
  background: #25d366;
  border-radius: 50%;
  bottom: 1.35rem;
  box-shadow: 0 16px 34px rgba(37, 211, 102, .35);
  color: #fff;
  display: flex;
  height: 3.75rem;
  justify-content: center;
  position: fixed;
  right: 1.35rem;
  transition: transform .2s ease;
  width: 3.75rem;
  z-index: 9999;
}

.whatsapp-svg {
  fill: none;
  height: 1.85rem;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 1.85rem;
}

.whatsapp-float:hover,
.whatsapp-float:focus {
  color: #fff;
  transform: translateY(-3px);
}

.legal-page {
  background: #0d1123;
  color: #fff;
}

.legal-hero {
  background: linear-gradient(135deg, #0d1123, #111936);
  padding: 4rem 0 3rem;
}

.legal-logo {
  display: inline-block;
  margin-bottom: 3rem;
}

.legal-eyebrow {
  color: var(--theme-bright);
  font-size: .875rem;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.legal-hero h1 {
  color: #fff;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 1rem;
}

.legal-hero p {
  color: rgba(255, 255, 255, .78);
  max-width: 48rem;
}

.legal-content {
  background: #fff;
  padding: 4rem 0;
}

.legal-container {
  max-width: 52rem;
}

.legal-container h2 {
  color: var(--text);
  font-size: 1.45rem;
  line-height: 1.25;
  margin-bottom: .75rem;
  margin-top: 2rem;
}

.legal-container p,
.legal-container li {
  color: #4f596d;
}

.legal-container a:not(.thm-btn) {
  color: #b11141;
  font-weight: 800;
}

.legal-container ul {
  margin-bottom: 0;
  padding-left: 1.25rem;
}

.legal-container li + li {
  margin-top: .45rem;
}

.legal-container .thm-btn {
  margin-top: 2.5rem;
}

@media (min-width: 576px) {
  .col-sm-3 { flex: 0 0 25%; max-width: 25%; }
  .col-sm-6 { flex: 0 0 50%; max-width: 50%; }
  .col-sm-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-sm-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 768px) {
  .col-md-3 { flex: 0 0 25%; max-width: 25%; }
  .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-md-6 { flex: 0 0 50%; max-width: 50%; }
  .col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-md-12 { flex: 0 0 100%; max-width: 100%; }
  .order-md-1 { order: 1; }
}

@media (min-width: 992px) {
  .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
  .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-lg-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
  .col-lg-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
}

@media (max-width: 1210px) {
  .cnt-inf {
    display: none;
  }

  .about-wrap4.style2 .about-cap > h1 {
    font-size: 3.7rem;
  }
}

@media (max-width: 991px) {
  header.stick {
    padding: 1rem;
  }

  header.stick > .menu-wrap2,
  .sticky-header {
    display: none;
  }

  .menu-btns {
    display: inline-flex;
  }

  #topo > .w-100 {
    min-height: auto;
  }

  #topo > .w-100::after {
    background: linear-gradient(180deg, rgba(13, 17, 35, .94), rgba(13, 17, 35, .82));
  }

  .pt-210 { padding-top: 7rem; }
  .pb-155 { padding-bottom: 5rem; }
  .pt-120 { padding-top: 5.5rem; }
  .pb-120 { padding-bottom: 5.5rem; }
  .pt-100 { padding-top: 5rem; }
  .pb-100 { padding-bottom: 5rem; }
  .pb-130 { padding-bottom: 5.5rem; }

  .about-wrap4.style2 .about-cap {
    margin-top: 2rem;
    max-width: 100%;
    text-align: center;
  }

  .about-wrap4.style2 .about-cap > h1 {
    font-size: 3rem;
  }

  .about-mckp4 {
    margin: 0 auto;
    max-width: 25rem;
    text-align: center;
  }

  .about-info {
    margin-top: 2rem;
  }

  .facts-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .segment-strip {
    grid-template-columns: 1fr;
  }

  .testi-item {
    align-items: flex-start;
  }

  .price-post img {
    min-height: 16rem;
  }
}

@media (max-width: 767px) {
  .row {
    margin-left: -.75rem;
    margin-right: -.75rem;
  }

  .row > [class*="col-"] {
    padding-left: .75rem;
    padding-right: .75rem;
  }

  .about-wrap4.style2 .about-cap > h1,
  .about-info h2,
  .sec-title-inner h2,
  .index-contact-cta > h2 {
    font-size: 2.35rem;
  }

  .about-wrap4.style2 .about-cap > span {
    font-size: 1.05rem;
  }

  .srv-box3 {
    margin-top: 1rem;
  }

  .testi-item {
    display: block;
    text-align: center;
  }

  .testi-thumb {
    margin: 0 auto 1.5rem;
    max-width: 11.25rem;
  }

  .testi-item-inner p {
    font-size: 1.08rem;
  }

  .facts-list {
    grid-template-columns: 1fr;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .price-table {
    margin-top: 1rem;
  }

  .sponsor-item {
    min-height: 5.5rem;
  }

  footer .widget {
    margin-bottom: 2.2rem;
  }
}

@media (max-width: 575px) {
  .container {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .pt-90 { padding-top: 4rem; }
  .pb-90 { padding-bottom: 4rem; }
  .pt-100 { padding-top: 4rem; }
  .pb-100 { padding-bottom: 4rem; }
  .pt-120 { padding-top: 4rem; }
  .pb-120 { padding-bottom: 4rem; }
  .pb-130 { padding-bottom: 4rem; }

  .about-wrap4.style2 .about-cap > h1,
  .about-info h2,
  .sec-title-inner h2,
  .index-contact-cta > h2 {
    font-size: 2rem;
  }

  .thm-btn {
    width: 100%;
  }

  .whatsapp-float {
    bottom: 1rem;
    height: 3.2rem;
    right: 1rem;
    width: 3.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
