:root{
--fs-xxxl: 48px;
--fs-xxl: 50px;
--fs-xl: 40px;
--fs-lg: 22px;
--fs-md: 20px;
--fs-sm: 16px;
--sp-xxl: 48px;
--sp-xl: 32px;
--sp-lg: 24px;
--sp-md: 16px;
--sp-sm: 8px;
/* Spacing */
--sp-xxl: 120px;
--sp-xl: 60px;
--sp-lg: 24px;
--sp-md: 16px;
--sp-sm: 8px;
--pd-lg: 32px;
--pd-md: 20px;
--pd-sm: 16px;
/* Gap Spacing */
--gap-xxl: 64px;
--gap-xl: 47px;
--gap-llg: 29px;
--gap-lg: 20px;
--gap-md: 16px;
--gap-sm: 8px;
--xxxl-gutter-x: 70px;
--xxxl-gutter-y: 70px;
--xxl-gutter-x: 40px;
--xxl-gutter-y: 40px;
--xl-gutter-x: 30px;
--xl-gutter-y: 30px;
--lg-gutter-x: 12px;
--lg-gutter-y: 12px;
--llg-gutter-x: 24px;
--llg-gutter-y: 24px;
--md-gutter-x: 6px;
--md-gutter-y: 6px;
--sm-gutter-x: 4px;
--sm-gutter-y: 4px;
--max-width-xl: 1200px;
--border-radius-xl: 32px;
--border-radius-lg: 24px;
--border-radius-md: 20px;
--border-color-light: #F0F3F6;
--bg-white: #FFF;
--shadow-light: 0 0 25px 0 rgba(17, 44, 125, 0.10);
--primary-blue: #112C7D;
--muted: #6c757d;
--surface: #ffffff;
--bg: #f8f9fa;
--White: #fff;
--Black: #333;
--cornflower-blue: #799BF0;
--ghost-white: #F5F8FF;
--alice-blue: #F5F8FF;
--dark-blue: #0D2F80;
--purple: #7345D7;
--gradient-white-to-blue: linear-gradient(0deg, #FFF 0%, #CBD9FA 100%);
}
.bg-ghost-white {
	background: var(--ghost-white);
}
.bg-purple {
	background: var(--purple);
}
.pt-xxl {
  padding-top: var(--sp-xxl);
}
.pb-xxl {
  padding-bottom: var(--sp-xxl);
}
.pt-xl {
  padding-top: var(--sp-xl);
}
.pb-xl {
  padding-bottom: var(--sp-xl);
}
.py-xxl {
  padding-top: var(--sp-xxl);
  padding-bottom: var(--sp-xxl);
}
.py-xl {
  padding-top: var(--sp-xl);
  padding-bottom: var(--sp-xl);
}
.pd-lg {
  padding: var(--pd-lg);
}
.pd-md {
  padding: var(--pd-md);
}
.pd-sm {
  padding: var(--pd-sm);
}
.py-lg {
  padding-top: var(--pd-lg);
  padding-bottom: var(--pd-lg);
}
.py-md {
  padding-top: var(--pd-md);
  padding-bottom: var(--pd-md);
}
.py-sm {
  padding-top: var(--pd-sm);
  padding-bottom: var(--pd-sm);
}
.px-lg {
  padding-left: var(--pd-lg);
  padding-right: var(--pd-lg);
}
.px-md {
  padding-left: var(--pd-md);
  padding-right: var(--pd-md);
}
.px-sm {
  padding-left: var(--pd-sm);
  padding-right: var(--pd-sm);
}
.gap-xxl {
  gap: var(--gap-xxl);
}
.gap-xl {
  gap: var(--gap-xl) !important;
}
.gap-llg {
	gap: var(--gap-llg);
}
.gap-lg {
  gap: var(--gap-lg);
}
.gap-md {
  gap: var(--gap-md);
}
.gap-sm {
  gap: var(--gap-sm);
}
.gutter-sm {
  margin-top: calc(-1 * var(--sm-gutter-y));
  margin-right: calc(-0.5 * var(--sm-gutter-x));
  margin-left: calc(-0.5 * var(--sm-gutter-x));
}
.gutter-sm > * {
    padding-right: calc(var(--sm-gutter-x) * 0.5);
    padding-left: calc(var(--sm-gutter-x) * 0.5);
    margin-top: var(--sm-gutter-y);
}
.gutter-md {
  margin-top: calc(-1 * var(--md-gutter-y));
  margin-right: calc(-0.5 * var(--md-gutter-x));
  margin-left: calc(-0.5 * var(--md-gutter-x));
}
.gutter-md > * {
    padding-right: calc(var(--md-gutter-x) * 0.5);
    padding-left: calc(var(--md-gutter-x) * 0.5);
    margin-top: var(--md-gutter-y);
}
.gutter-lg {
  margin-top: calc(-1 * var(--lg-gutter-y));
  margin-right: calc(-0.5 * var(--lg-gutter-x));
  margin-left: calc(-0.5 * var(--lg-gutter-x));
}
.gutter-lg > * {
    padding-right: calc(var(--lg-gutter-x) * 0.5);
    padding-left: calc(var(--lg-gutter-x) * 0.5);
    margin-top: var(--lg-gutter-y);
}
.gutter-llg {
	margin-top: calc(-1 * var(--llg-gutter-y));
	margin-right: calc(-0.5 * var(--llg-gutter-x));
	margin-left: calc(-0.5 * var(--llg-gutter-x));
	}
.gutter-llg > * {
	padding-right: calc(var(--llg-gutter-x) * 0.5);
	padding-left: calc(var(--llg-gutter-x) * 0.5);
	margin-top: var(--llg-gutter-y);
}
.gutter-xl {
  margin-top: calc(-1 * var(--xl-gutter-y));
  margin-right: calc(-0.5 * var(--xl-gutter-x));
  margin-left: calc(-0.5 * var(--xl-gutter-x));
}
.gutter-xl > * {
    padding-right: calc(var(--xl-gutter-x) * 0.5);
    padding-left: calc(var(--xl-gutter-x) * 0.5);
    margin-top: var(--xl-gutter-y);
}
.bg-gradient-white-to-blue {
  background: var(--gradient-white-to-blue);
}
.text-primary { 
	color: var(--primary-blue); 
}
.adis-hero-section {
	background: linear-gradient(135deg, #FFF 41.35%, #799BF0 100%);
    max-height: 586px;
}
.adis-hero-title {
    color: #000;
    font-size: var(--fs-xxxl);
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    margin: 0;
}
.adis-hero-subtitle {
    color: #000;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin: 0;
}
.bg-alice-blue {
	background-color: var(--alice-blue);
}
.bg-dark-blue {
	background-color: var(--dark-blue);
}
.text-cornflower-blue-color {
    color: var(--cornflower-blue);
}
.adis-btn {
    display: flex;
    padding: 20px 26px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 12px;
    border: 1px solid var(--purple, #7345D7);
    background: var(--purple, #7345D7);
    color: var(--White, #fff);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    height: 44px;
    flex-shrink: 0;
    transition: all .5s;
}
.adis-btn:hover {
    transform: translateY(-0.25em);
    -webkit-box-shadow: 0px 0px 0px 5px rgba(134, 161, 197, 0.28);
    box-shadow: 0px 0px 0px 5px rgba(134, 161, 197, 0.28);
    -webkit-transition: all 0.3s 
	cubic-bezier(0.2, 0, 0.3, 1);
		transition: all 0.3s 
	cubic-bezier(0.2, 0, 0.3, 1);
}
.adis-submit-btn {
    display: flex;
    padding: 20px 26px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 12px;
    border: 1px solid #000;
    background: var(--White, #fff);
    color: var(--Black, #333);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    height: 44px;
    flex-shrink: 0;
    transition: all .5s;
	margin-top: -18px;
}
.adis-submit-btn:hover {
	color: var(--purple, #7345D7);
    transform: translateY(-0.25em);
    -webkit-box-shadow: 0px 0px 0px 5px rgba(134, 161, 197, 0.28);
    box-shadow: 0px 0px 0px 5px rgba(134, 161, 197, 0.28);
    -webkit-transition: all 0.3s 
	cubic-bezier(0.2, 0, 0.3, 1);
		transition: all 0.3s 
	cubic-bezier(0.2, 0, 0.3, 1);
}
.adis-btn-outline-secondary {
    background: transparent;
    color: var(--black, #000);
}
.adis-btn-outline-secondary:hover {
    background: var(--purple, #7345D7);
    color: var(--white, #fff);
}
.adis-btn-primary:hover {
    color: var(--white, #fff);
}
.adis-card {
  gap: var(--gap-md);
}
.adis-card .h2 {
    color: var(--purple, #7345D7);
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    margin: 0;
    letter-spacing: -1px;
}
.adis-card p {
    color: var(--Black, #333);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    margin: 0;
}
.adis-card .adis-stat-content-column p {
    font-weight: 600;
}
.adis-card span {
    color: var(--Black, #333);
    font-size: var(--fs-sm);
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin: 0;
}
.section-main-column .h2 {
    color: var(--Black, #333);
    font-size: var(--fs-xxl);
    font-style: normal;
    font-weight: 600;
    line-height: 128%;
    margin: 0;
    letter-spacing: -2px;
}
.section-main-column .h4 {
    color: var(--Black, #333);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    margin: 0;
}
.section-main-column p {
    color: var(--Black, #333);
    font-size: var(--fs-md);
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    margin: 0;
}
.adis-card-wr {
	border: 2px solid #EEE;
	background: #FFF;
	height: 377px;
    border-radius: 15px;
    overflow: hidden;
	cursor: pointer;
    transition: transform 0.3s ease;
}
.adis-card-body-wr {
    border-radius: 15px;
    background: #7345D7;
    padding: 26px 32px;
    border: 2px solid #EEE;
    transition: all .5s;
}
.adis-card-wr:hover .adis-card-body-wr {
    display: flex !important;
    transition: all .5s;
}
.adis-card-wr-heading {
    color: #333;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 133.333%;
    padding: 30px;
    height: 100px;
    display: flex;
    align-items: center;
}
.adis-card-wr .h2 {
    color: var(--White, #fff);
    font-size: 72px;
    font-style: normal;
    font-weight: 600;
    line-height: 111.111%;
    margin: 0;
    letter-spacing: -3px;
}
.adis-card-wr .h3 {
    color: var(--White, #fff);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 133.333%;
    margin-bottom: 10px;
}
.adis-card-wr p {
    color: var(--White, #fff);
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 145.455%;
    margin: 0;
}
.adis-card-wr img {
	border-radius: 15px;
    height: 276px;
}
.video-wr {
    border-radius: 8px;
    overflow: hidden;
}
.video-wr-element {
    width: 100%;
	height: 319px;
    object-fit: cover;
}
.adis-play-button {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    padding: 18px 20px 18px 28px;
}
.adis-play-button:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 90px;
    height: 90px;
    background: #ffffffb8;
    border-radius: 50%;
    animation: pulse-border 1100ms ease-out infinite;
}
.adis-play-button:after {
    content: '';
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 90px;
    height: 90px;
    background: transparent;
    border-radius: 50%;
    transition: all 200ms;
    border: 2px solid #fff;
}
.adis-play-button span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 22px solid #fff;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
}
.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.85);
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s ease;
}

.video-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.video-container {
    width: 90%;
    max-width: 900px;
    aspect-ratio: 16 / 9;

    transform: scale(.9);
    transition: transform .35s ease;
}

.video-modal.is-open .video-container {
    transform: scale(1);
}

.video-container video {
    width: 100%;
    height: 100%;
}

.video-close {
    position: fixed;
    top: 20px;
    right: 30px;
    font-size: 34px;
    color: #fff;
    cursor: pointer;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.core-levers-card {
    border-radius: 15px;
    background: var(--White);
    padding: 30px;
	gap: 30px;
}
.core-levers-card .h3 {
    color: var(--Black, #333);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 133.333%;
    margin: 0;
}
.core-levers-card p {
    color: var(--Black, #333);
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 145.455%;
    margin: 0;
}
.testimonial-content-column .h4 {
    color: var(--Black, #1F2327);
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 115%;
    margin: 0;
}
.testimonial-content-column {
    gap: 32px;
}
.testimonial-content-column .h6 {
    color: var(--Black, #1F2327);
    text-align: center;
    font-size: var(--fs-sm);
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    margin: 0;
}
.testimonial-content-column p {
    color: var(--Black, #1F2327);
    text-align: center;
    font-size: var(--fs-sm);
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin: 0;
}
.adis-resources-card {
    flex: 1 0 0;
    border-radius: 15px;
    border: 2px solid #EEE;
    background: #FFF;
}
.adis-resources-card-title {
    color: var(--Black, #1F2327);
    font-size: var(--fs-md);
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    margin: 0;
}
.adis-resources-card-body p {
    color: var(--Black, #1F2327);
    font-size: var(--fs-sm);
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin: 0;
	min-height: 74px;
}
.adis-read-more-btn {
    display: flex;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    border-radius: 28px;
    border: 1px solid #D4E3FC;
    margin-left: auto;
}
.adis-read-more-btn img {
    transform: rotate(-90deg);
}
.adis-resources-card-image {
    width: 100%;
    overflow: hidden;
    height: 226px;
    border-radius: 15px 15px 0 0;
}
.adis-resources-card-image img {
    transition: all 0.5s;
    height: 226px;
}
.adis-resources-card:hover .adis-resources-card-image img {
    transform: scale(1.1);
}
.adis-resources-card-body {
	padding: 20px;
}
.adis-form-group {
	position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    flex: 1 0 0;
}
.adis-form-label {
    color: var(--White, #FFF);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}
.adis-form-control {
    display: flex;
    padding: 12px 16px;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.20);
    border: none;
    outline: none;
    box-shadow: none;
    color: rgba(255, 255, 255, 0.70) !important;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}
.adis-form-control::placeholder {
    color: rgba(255, 255, 255, 0.70) !important;
}
.adis-form-group.form-check .form-check-input[type="checkbox"] {
    border-radius: 2px;
    border: 1px solid var(--White, #FFF);
    background-color: transparent;
    width: 18px;
    height: 18px;
    margin: 0;
    padding: 0;
}
.adis-form-group.form-check {
    flex-direction: row;
	align-items: center;
    gap: 8px;
    padding: 0;
    margin-bottom: 18px;
}
.adis-form-group.form-check .adis-form-label {
    margin-top: 4px;
}
.service-accordion-button {
    display: flex;
    width: 100%;
    height: 96px;
    padding: 24px;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    border-radius: 12px;
    border: 1px solid #7345D7;
    background: #fff;
    color: #000;
    text-align: left;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 200%;
}
.service-accordion-button.active, .service-accordion-button:hover {
    background: linear-gradient(90deg, #7345D7 0%, #E4EBFC 100%);
    color: #fff;
}
.service-accordion-button span {
    display: flex;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    border-radius: 28px;
    background: #FFF;
	border: 1px solid #D4E3FC;
}
.service-accordion-button span img {
    transform: rotate(-90deg);
	transition: all .3s;
}
.service-accordion-button.active span img, .service-accordion-button:hover span img {
    transform: rotate(0deg);
}
.service-accordion-button.active span, .service-accordion-button:hover span {
    border-color: #fff;
}
.adis-accordion-card {
    display: flex;
	flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 12px;
    border: 1px solid #7345D7;
    background: linear-gradient(180deg, #FFF 16.44%, #D4E3FC 104.05%);
    padding: 30px;
	height: 100%;
}
.adis-accordion-body ul {
    padding-left: 30px;
    margin: 0;
}
.adis-accordion-body ul li {
    color: #212121;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 222.222%;
}
.adis-accordion-head {
    display: flex;
    gap: 16px;
    align-items: center;
    color: #000;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 222.222%;
}
.adis-accordion-head span {
    display: inline-flex;
    background-color: #000;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}
.service-accordion-collapse {
    width: 100%;
    display: none;
}
.service-accordion-item + .service-accordion-item {
    margin-top: 14px;
}
.service-accordion-collapse.show {
    display: block;
}
@media (max-width: 991px) {
}
@media (max-width: 575px) {
    :root {
        --fs-xxl: 32px;
        --fs-xl: 22px;
    }
}
@media (max-width: 767px) {
:root {
        --sp-xxl: 48px;
		--sp-xl: 24px;
		--fs-xxxl: 30px;
		--fs-xxl: 26px;
		--fs-xl: 24px;
		--fs-lg: 18px;
		--fs-md: 16px;
		--pd-lg: 25px;
		--gap-lg: 20px;
		--gap-xl: 32px;
		--xl-gutter-x: 20px;
		--xl-gutter-y: 20px;
    }
	.adis-hero-section {
		padding: 40px 0;
	}
	.core-levers-card .h3 {
		font-size: 22px;
	}
	.adis-card p {
		font-size: 16px;
	}
	.video-wr-element {
		height: 190px;
	}
	.adis-card {
		gap: var(--gap-sm) !important;
	}
	.testimonial-content-column .h4 {
		font-size: 20px;
		line-height: 140%;
	}
	.adis-card-wr .h2 {
		font-size: 58px;
	}
	.adis-card-wr .h3 {
		font-size: 20px;
	}
	.adis-card-wr p {
		font-size: 16px;
	}
	.adis-hero-section .gap-llg {
		width: 100%;
        gap: var(--gap-lg);
    }
	.adis-hero-subtitle {
		font-size: 16px;
	}
	.adis-card .h2 {
		font-size: 38px;
	}
	.adis-card-wr-heading {
		font-size: 18px;
	}
	.core-levers-card p {
		font-size: 16px;
	}
	.adis-btn {
		font-size: 16px;
	}
	.adis-stat-column {
		text-align: center;
	}
	.adis-stats-section .gutter-md {
		margin-top: calc(-1 * var(--lg-gutter-y));
	}
	.adis-stats-section .gutter-md>* {
		margin-top: var(--lg-gutter-y);
	}
	.adis-accordion-body ul li {
		font-size: 16px;
		line-height: 180%;
	}
	.adis-accordion-card {
		padding: 20px;
		height: auto;
    	margin-top: 4px;
	}
	.service-accordion-button {
		height: 70px;
		padding: 20px;
		font-size: 16px;
		line-height: 140%;
	}
	.service-accordion-button span {
		width: 38px;
		height: 38px;
	}
	.adis-submit-btn {
    padding: 18px 20px;
    font-size: 16px;
}
}
@media (min-width: 768px) and (max-width: 992px) {
:root {
        --sp-xxl: 80px;
		--sp-xl: 40px;
		--fs-xxxl: 30px;
		--fs-xxl: 32px;
		--fs-xl: 38px;
		--fs-lg: 18px;
		--fs-md: 16px;
		--pd-lg: 20px;
    }
	.core-levers-card .h3 {
		font-size: 20px;
	}
	.core-levers-card p {
		font-size: 16px;
	}
	.adis-card-wr .h2 {
		font-size: 58px;
	}
	.adis-card-wr .h3 {
		font-size: 20px;
	}
	.adis-card-wr p {
		font-size: 18px;
	}
	.adis-hero-subtitle {
		font-size: 16px;
	}
	.adis-hero-section .gap-llg {
        gap: var(--gap-lg);
    }
	.adis-card .h2 {
		font-size: 38px;
	}
	.adis-card p {
		font-size: 16px;
	}
	.adis-card-wr-heading {
		font-size: 20px;
	}
	.service-accordion-button {
		font-size: 18px;
	}
}
@media (min-width: 992px) and (max-width: 1024px) {
:root {
		--sp-xxl: 48px;
        --sp-xl: 24px;
		--fs-xxxl: 36px;
		--fs-xxl: 32px;
		--fs-xl: 26px;
		--fs-lg: 18px;
		--fs-md: 16px;
		--pd-lg: 25px;
		--gap-xl: 30px;
    }
	.core-levers-card .h3 {
		font-size: 22px;
	}
	.adis-btn {
		padding: 18px 15px;
	}
	.adis-card-wr .h2 {
		font-size: 58px;
	}
	.adis-card-wr .h3 {
		font-size: 20px;
	}
	.adis-card-wr p {
		font-size: 18px;
	}
	.adis-hero-subtitle {
		font-size: 18px;
	}
	.adis-hero-section .gap-llg {
		gap: var(--gap-lg);
	}
	.adis-card-wr-heading {
		font-size: 20px;
	}
	.core-levers-card p {
		font-size: 18px;
	}
	.service-accordion-button {
		font-size: 18px;
	}
}

@media (min-width: 1024px) and (max-width: 1200px) {
:root {
        --sp-xxl: 80px;
		--sp-xl: 40px;
		--fs-xxxl: 36px;
		--fs-xxl: 32px;
		--fs-xl: 38px;
		--fs-lg: 20px;
		--fs-md: 18px;
    }
	.core-levers-card .h3 {
		font-size: 22px;
	}
	.adis-btn {
		padding: 18px 20px;
	}
	.core-levers-card p {
		font-size: 18px;
	}
	.adis-card-wr-heading {
		font-size: 22px;
	}
	.adis-card-wr .h2 {
		font-size: 58px;
	}
	.adis-card-wr .h3 {
		font-size: 20px;
	}
	.adis-card-wr p {
		font-size: 18px;
	}
	.service-accordion-button {
    font-size: 18px;
}
} 
@media (min-width: 1200px) and (max-width: 1400px) {
        :root {    
        --fs-xxxl: 42px;
		--fs-xxl: 42px;
    }
}
@media (min-width: 1200px) {
	.ps-xxxl {
		padding-left: 4rem !important;
	}
}
@media (min-width: 1024px) {
  
	.xl-container {
	max-width: var(--max-width-xl);
	}
	.adis-card-wr .h3 {
		max-width: 70%;
	}
	
}
@media (min-width: 768px) {
    .md-w-50 {
        width: 50% !important;
    }
	.gutter-xxl {
	margin-top: calc(-1 * var(--xxl-gutter-y));
	margin-right: calc(-0.5 * var(--xxl-gutter-x));
	margin-left: calc(-0.5 * var(--xxl-gutter-x));
	}
	.gutter-xxl > * {
		padding-right: calc(var(--xxl-gutter-x) * 0.5);
		padding-left: calc(var(--xxl-gutter-x) * 0.5);
		margin-top: var(--xxl-gutter-y);
	}
	.gutter-xxxl {
	margin-top: calc(-1 * var(--xxxl-gutter-y));
	margin-right: calc(-0.5 * var(--xxxl-gutter-x));
	margin-left: calc(-0.5 * var(--xxxl-gutter-x));
	}
	.gutter-xxxl > * {
		padding-right: calc(var(--xxxl-gutter-x) * 0.5);
		padding-left: calc(var(--xxxl-gutter-x) * 0.5);
		margin-top: var(--xxxl-gutter-y);
	}
}