/* Base styles layers. Used to load the base styles in the correct order. */
@layer base, base-overrides, modules, custom-styles;


/* Theme base styles */
@layer base {
    /* Generic: This is where reset, normalize & box-sizing styles go. */
    *,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
	display: block;
}

body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #212529;
	text-align: left;
	background-color: #fff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

[tabindex='-1']:focus:not(:focus-visible) {
	outline: 0 !important;
}

hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0;
	margin-bottom: 0.5rem;
}

p {
	margin-top: 0;
	margin-bottom: 1.25rem;
  letter-spacing:1.15px;
}

abbr[title],
abbr[data-original-title] {
	text-decoration: underline;
	-webkit-text-decoration: underline dotted;
	text-decoration: underline dotted;
	cursor: help;
	border-bottom: 0;
	-webkit-text-decoration-skip-ink: none;
	text-decoration-skip-ink: none;
}

address {
	margin-bottom: 1rem;
	font-style: normal;
	line-height: inherit;
}

ol,
ul,
dl {
	margin-top: 0;
	margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
	margin-bottom: 0;
}

dt {
	font-weight: 700;
}

dd {
	margin-bottom: 0.5rem;
	margin-left: 0;
}

blockquote {
	margin: 0 0 1rem;
}

b,
strong {
	font-weight: bold;
}

small {
	font-size: 80%;
}

sub,
sup {
	position: relative;
	font-size: 75%;
	line-height: 0;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

a {
	color: #007bff;
	text-decoration: none;
	background-color: transparent;
}

a:hover {
	color: #0056b3;
	text-decoration: underline;
}

a:not([href]):not([class]) {
	color: inherit;
	text-decoration: none;
}

a:not([href]):not([class]):hover {
	color: inherit;
	text-decoration: none;
}

pre,
code,
kbd,
samp {
	font-family: SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
	font-size: 1em;
}

pre {
	margin-top: 0;
	margin-bottom: 1rem;
	overflow: auto;
	-ms-overflow-style: scrollbar;
}

figure {
	margin: 0 0 1rem;
}

img {
	vertical-align: middle;
	border-style: none;
}

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

svg {
	overflow: hidden;
	vertical-align: middle;
}

table {
	border-collapse: collapse;
}

caption {
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
	color: #6c757d;
	text-align: left;
	caption-side: bottom;
}

th {
	text-align: inherit;
	text-align: -webkit-match-parent;
}

label {
	display: inline-block;
	margin-bottom: 0.5rem;
}

button {
	border-radius: 0;
}

button:focus:not(:focus-visible) {
	outline: 0;
}

input,
button,
select,
optgroup,
textarea {
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}

button,
input {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

[role='button'] {
	cursor: pointer;
}

select {
	word-wrap: normal;
}

button,
[type='button'],
[type='reset'],
[type='submit'] {
	-webkit-appearance: none;
}

button:not(:disabled),
[type='button']:not(:disabled),
[type='reset']:not(:disabled),
[type='submit']:not(:disabled) {
	cursor: pointer;
}

button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
	padding: 0;
	border-style: none;
}

input[type='radio'],
input[type='checkbox'] {
	box-sizing: border-box;
	padding: 0;
}

textarea {
	overflow: auto;
	resize: vertical;
}

fieldset {
	min-width: 0;
	padding: 0;
	margin: 0;
	border: 0;
}

legend {
	display: block;
	width: 100%;
	max-width: 100%;
	padding: 0;
	margin-bottom: 0.5rem;
	font-size: 1.5rem;
	line-height: inherit;
	color: inherit;
	white-space: normal;
}

progress {
	vertical-align: baseline;
}

[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
	height: auto;
}

[type='search'] {
	outline-offset: -2px;
	-webkit-appearance: none;
}

[type='search']::-webkit-search-decoration {
	-webkit-appearance: none;
}

::-webkit-file-upload-button {
	font: inherit;
	-webkit-appearance: button;
}

output {
	display: inline-block;
}

summary {
	display: list-item;
	cursor: pointer;
}

template {
	display: none;
}

[hidden] {
	display: none !important;
}

    /* Objects: Non-cosmetic design patterns including grid and layout classes) */
    .show-for-sr {
	border: 0 !important;
	height: 1px !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: absolute !important;
	white-space: nowrap !important;
	width: 1px !important;
}

@media (max-width: 767px) {
	.show-for-sr--mobile {
		border: 0 !important;
		height: 1px !important;
		overflow: hidden !important;
		padding: 0 !important;
		position: absolute !important;
		white-space: nowrap !important;
		width: 1px !important;
	}
}



/* CSS variables */

:root {
	--column-gap: 2.13%;
	--column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}


.row-fluid .span1,
.row-fluid .span2,
.row-fluid .span3,
.row-fluid .span4,
.row-fluid .span5,
.row-fluid .span6,
.row-fluid .span7,
.row-fluid .span8,
.row-fluid .span9,
.row-fluid .span10,
.row-fluid .span11,
.row-fluid .span12{
	width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
	.row-fluid {
		flex-wrap: nowrap;
		justify-content: space-between;
	}

	
	.row-fluid .span1 {
		width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
	}
	
	.row-fluid .span2 {
		width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
	}
	
	.row-fluid .span3 {
		width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
	}
	
	.row-fluid .span4 {
		width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
	}
	
	.row-fluid .span5 {
		width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
	}
	
	.row-fluid .span6 {
		width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
	}
	
	.row-fluid .span7 {
		width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
	}
	
	.row-fluid .span8 {
		width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
	}
	
	.row-fluid .span9 {
		width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
	}
	
	.row-fluid .span10 {
		width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
	}
	
	.row-fluid .span11 {
		width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
	}
	
}
:not(.hs-inline-edit) .hs-video-placeholder {
	display: none;
}

.hs-placeholder {
    padding: 7px 12px;
    position: relative;
    z-index: 99;
    background-color: #eaf0f6;
    border: 1px solid #cbd6e2;
    border-radius: 3px;
    color: #506e91;
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    text-align: center;
}

.hs-placeholder * {
	margin: 0
}

.hs-video-placeholder__title {
	color: #7c98b6 !important;
	font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif !important;
	font-size: 14px !important;
	font-style: italic !important;
	font-weight: 700 !important;
	line-height: initial !important;
	margin-bottom: 10px !important;
	margin-top: 0 !important;
	padding: 0 !important;
	text-shadow: 0 -1px 0 hsla(0, 0%, 100%, 0.5) !important;
}

.hs-video-placeholder__description {
	color: #7c98b6 !important;
	font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif !important;
	font-style: italic !important;
	font-weight: 400 !important;
	line-height: 1.6 !important;
	margin: 0 !important;
	text-shadow: 0 -1px 0 hsla(0, 0%, 100%, 0.5) !important;
}

.hs-inline-edit .hs-video-placeholder {
	background-color: #f5f8fa !important;
	border: 1px dashed #516f90 !important;
	display: block !important;
	font-size: 14px !important;
	margin: 2px 1px !important;
	outline: 1px dashed #fff !important;
	text-align: center !important;
}

.hs-video-placeholder > * {
	box-sizing: border-box !important;
	display: block !important;
	margin: 1px !important;
	padding: 12px !important;
	width: calc(100% - 2px) !important;
}

/* Overlay Background Styles */
.hs-overlay-background {
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
	background: rgba(0, 0, 0, 0.2);
	inset: 0;
	opacity: 0;
	position: fixed;
	transition: opacity 500ms ease 0s,
		visibility 500ms ease 0s;
	visibility: hidden;
	/* One less than the overlay z-index value */
	z-index: 999999;
}

.hs-overlay-background.open {
	opacity: 1;
	visibility: visible;
}
html.hs-payments--overlay-open {
	overflow: hidden;
	position: relative;
	height: 100%;
}

.hs-overlay {
	background-color: #fff;
	bottom: 0;
	height: calc(100% - 50px);
	left: 0;
	position: fixed;
	right: 0;
	top: 100%;
	transform: translateY(0);
	transition: transform 500ms ease 0s, visibility 500ms ease 0s;
	visibility: hidden;
	width: 100vw;
	/* Well below the maximum value, but high enough to cover most cases */
	z-index: 1000000;
}

.hs-overlay.open {
	transform: translateY(-100%);
	transition: transform 500ms ease 0s, visibility 500ms ease 0s;
	visibility: visible;
}

.hs-overlay .payments-iframe-container {
	height: 100%;
	width: 100%;
}

.hs-overlay .payments-iframe-container iframe {
	height: 100% !important;
}

button.hs-overlay__close--top {
	align-items: center;
	background: #fff;
	border-radius: 50%;
	border: none;
	display: flex;
	height: 30px;
	outline-color: #33475b;
	padding: 5px;
	position: absolute;
	right: 16px;
	top: -40px;
	width: 30px;
}

button.hs-overlay__close--top svg,
button.hs-overlay__close--top svg path {
	fill: #7c98b6;
}

button.hs-overlay__close--top:hover svg,
button.hs-overlay__close--top:focus svg,
button.hs-overlay__close--top:hover svg path,
button.hs-overlay__close--top:focus svg path {
	fill: #33475b;
}

@media screen and (min-width: 768px) {
	button.hs-overlay__close--top {
		background: transparent;
		right: 16px;
		top: 16px;
	}
}

button.hs-overlay__close--bottom {
	background: none;
	border: none;
	bottom: 16px;
	color: #33475b;
	font-family: Avenir Next W02, Helvetica, Arial, sans-serif;
	font-size: 14px;
	font-weight: normal;
	opacity: 0;
	outline-color: #33475b;
	padding: 5px;
	position: absolute;
	right: 16px;
	top: initial;
}

button.hs-overlay__close--bottom:focus {
	opacity: 1;
}

.oembed_container {
	display: inline-block;
	height: 100%;
	position: relative;
	width: 100%;
}

.iframe_wrapper {
	height: 0;
    padding-bottom: 56.25%;
    padding-top: 25px;
    position: relative;
}

.iframe_wrapper.size-auto iframe,
.iframe_wrapper.size-auto_full_width iframe {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: var(--aspect);
}

.oembed_custom-thumbnail,
.oembed_custom-thumbnail:hover,
.oembed_custom-thumbnail:focus,
.oembed_custom-thumbnail:active {
	align-items: center;
	appearance: none;
	background-color: transparent;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 0;
	border: none;
	display: flex;
	height: 100%;
	justify-content: center;
	left: 0;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1;
}

.oembed_custom-thumbnail_icon {
	align-items: center;
	cursor: pointer;
	display: flex;
	justify-content: center;
	width: 100%;
}

.oembed_custom-thumbnail_icon svg {
	display: block;
	height: auto;
	width: 12%;
}

/* SVGs in IE11 require the max-width to be set to non in order to display scaling properly */
_:-ms-fullscreen, :root .oembed_custom-thumbnail_icon svg {
	max-width: none;
}

.oembed_custom-thumbnail--hide {
	display: none;
}

.embed_container {
	display: inline-block;
	height: 100%;
	position: relative;
	width: 100%;
}

.embed_container iframe {
	left: 0;
	max-height: 100%;
	max-width: 100%;
	position: absolute;
	right: 0;
	top: 0;
}

.oembed-info {
	height:1px;
	left:-10000px;
	overflow:hidden;
	position:absolute;
	top:auto;
	width:1px;
}

.sr-bg-video,
.sr-bg-video-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	background-size: cover;
	overflow: hidden;
	object-fit: cover;
}
    .container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-small,
.container-large {
	width: 100%;
	padding-right: 8px;
	padding-left: 8px;
	margin-right: auto;
	margin-left: auto;
}

@media (min-width: 576px) {

	.container-sm,
	.container {
		max-width: 540px;
	}
}

@media (min-width: 768px) {

	.container-md,
	.container-sm,
	.container {
		max-width: 720px;
	}
}

@media (min-width: 992px) {

	.container-lg,
	.container-md,
	.container-sm,
	.container {
		max-width: 960px;
	}
}

@media (min-width: 1200px) {

	.container-xl,
	.container-lg,
	.container-md,
	.container-sm,
	.container {
		max-width: 1140px;
	}
}

@media (max-width: 767px) {
  
.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-small,
.container-large {
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
}

}


body>.container-fluid,
[data-global-resource-path]>.container-fluid,
.container-fluid.body_dnd_area {
	padding: 0;
}

.row {
	display: flex;
	flex-wrap: wrap;
	margin-right: -8px;
	margin-left: -8px;
}

.row-gap {
	row-gap: 30px
}

.no-gutters {
	margin-right: 0;
	margin-left: 0;
}

.no-gutters>.col,
.no-gutters>[class*='col-'] {
	padding-right: 0;
	padding-left: 0;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
	position: relative;
	width: 100%;
	padding-right: 8px;
	padding-left: 8px;
}

.col {
	flex-basis: 0;
	flex-grow: 1;
	max-width: 100%;
}

.row-cols-1>* {
	flex: 0 0 100%;
	max-width: 100%;
}

.row-cols-2>* {
	flex: 0 0 50%;
	max-width: 50%;
}

.row-cols-3>* {
	flex: 0 0 33.333333%;
	max-width: 33.333333%;
}

.row-cols-4>* {
	flex: 0 0 25%;
	max-width: 25%;
}

.row-cols-5>* {
	flex: 0 0 20%;
	max-width: 20%;
}

.row-cols-6>* {
	flex: 0 0 16.666667%;
	max-width: 16.666667%;
}

.col-auto {
	flex: 0 0 auto;
	width: auto;
	max-width: 100%;
}

.col-1 {
	flex: 0 0 8.333333%;
	max-width: 8.333333%;
}

.col-2 {
	flex: 0 0 16.666667%;
	max-width: 16.666667%;
}

.col-3 {
	flex: 0 0 25%;
	max-width: 25%;
}

.col-4 {
	flex: 0 0 33.333333%;
	max-width: 33.333333%;
}

.col-5 {
	flex: 0 0 41.666667%;
	max-width: 41.666667%;
}

.col-6 {
	flex: 0 0 50%;
	max-width: 50%;
}

.col-7 {
	flex: 0 0 58.333333%;
	max-width: 58.333333%;
}

.col-8 {
	flex: 0 0 66.666667%;
	max-width: 66.666667%;
}

.col-9 {
	flex: 0 0 75%;
	max-width: 75%;
}

.col-10 {
	flex: 0 0 83.333333%;
	max-width: 83.333333%;
}

.col-11 {
	flex: 0 0 91.666667%;
	max-width: 91.666667%;
}

.col-12 {
	flex: 0 0 100%;
	max-width: 100%;
}

.order-first {
	order: -1;
}

.order-last {
	order: 13;
}

.order-0 {
	order: 0;
}

.order-1 {
	order: 1;
}

.order-2 {
	order: 2;
}

.order-3 {
	order: 3;
}

.order-4 {
	order: 4;
}

.order-5 {
	order: 5;
}

.order-6 {
	order: 6;
}

.order-7 {
	order: 7;
}

.order-8 {
	order: 8;
}

.order-9 {
	order: 9;
}

.order-10 {
	order: 10;
}

.order-11 {
	order: 11;
}

.order-12 {
	order: 12;
}

.offset-1 {
	margin-left: 8.333333%;
}

.offset-2 {
	margin-left: 16.666667%;
}

.offset-3 {
	margin-left: 25%;
}

.offset-4 {
	margin-left: 33.333333%;
}

.offset-5 {
	margin-left: 41.666667%;
}

.offset-6 {
	margin-left: 50%;
}

.offset-7 {
	margin-left: 58.333333%;
}

.offset-8 {
	margin-left: 66.666667%;
}

.offset-9 {
	margin-left: 75%;
}

.offset-10 {
	margin-left: 83.333333%;
}

.offset-11 {
	margin-left: 91.666667%;
}

@media (min-width: 576px) {
	.col-sm {
		flex-basis: 0;
		flex-grow: 1;
		max-width: 100%;
	}

	.row-cols-sm-1>* {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.row-cols-sm-2>* {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.row-cols-sm-3>* {
		flex: 0 0 33.333333%;
		max-width: 33.333333%;
	}

	.row-cols-sm-4>* {
		flex: 0 0 25%;
		max-width: 25%;
	}

	.row-cols-sm-5>* {
		flex: 0 0 20%;
		max-width: 20%;
	}

	.row-cols-sm-6>* {
		flex: 0 0 16.666667%;
		max-width: 16.666667%;
	}

	.col-sm-auto {
		flex: 0 0 auto;
		width: auto;
		max-width: 100%;
	}

	.col-sm-1 {
		flex: 0 0 8.333333%;
		max-width: 8.333333%;
	}

	.col-sm-2 {
		flex: 0 0 16.666667%;
		max-width: 16.666667%;
	}

	.col-sm-3 {
		flex: 0 0 25%;
		max-width: 25%;
	}

	.col-sm-4 {
		flex: 0 0 33.333333%;
		max-width: 33.333333%;
	}

	.col-sm-5 {
		flex: 0 0 41.666667%;
		max-width: 41.666667%;
	}

	.col-sm-6 {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.col-sm-7 {
		flex: 0 0 58.333333%;
		max-width: 58.333333%;
	}

	.col-sm-8 {
		flex: 0 0 66.666667%;
		max-width: 66.666667%;
	}

	.col-sm-9 {
		flex: 0 0 75%;
		max-width: 75%;
	}

	.col-sm-10 {
		flex: 0 0 83.333333%;
		max-width: 83.333333%;
	}

	.col-sm-11 {
		flex: 0 0 91.666667%;
		max-width: 91.666667%;
	}

	.col-sm-12 {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.order-sm-first {
		order: -1;
	}

	.order-sm-last {
		order: 13;
	}

	.order-sm-0 {
		order: 0;
	}

	.order-sm-1 {
		order: 1;
	}

	.order-sm-2 {
		order: 2;
	}

	.order-sm-3 {
		order: 3;
	}

	.order-sm-4 {
		order: 4;
	}

	.order-sm-5 {
		order: 5;
	}

	.order-sm-6 {
		order: 6;
	}

	.order-sm-7 {
		order: 7;
	}

	.order-sm-8 {
		order: 8;
	}

	.order-sm-9 {
		order: 9;
	}

	.order-sm-10 {
		order: 10;
	}

	.order-sm-11 {
		order: 11;
	}

	.order-sm-12 {
		order: 12;
	}

	.offset-sm-0 {
		margin-left: 0;
	}

	.offset-sm-1 {
		margin-left: 8.333333%;
	}

	.offset-sm-2 {
		margin-left: 16.666667%;
	}

	.offset-sm-3 {
		margin-left: 25%;
	}

	.offset-sm-4 {
		margin-left: 33.333333%;
	}

	.offset-sm-5 {
		margin-left: 41.666667%;
	}

	.offset-sm-6 {
		margin-left: 50%;
	}

	.offset-sm-7 {
		margin-left: 58.333333%;
	}

	.offset-sm-8 {
		margin-left: 66.666667%;
	}

	.offset-sm-9 {
		margin-left: 75%;
	}

	.offset-sm-10 {
		margin-left: 83.333333%;
	}

	.offset-sm-11 {
		margin-left: 91.666667%;
	}
}

@media (min-width: 768px) {
	.col-md {
		flex-basis: 0;
		flex-grow: 1;
		max-width: 100%;
	}

	.row-cols-md-1>* {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.row-cols-md-2>* {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.row-cols-md-3>* {
		flex: 0 0 33.333333%;
		max-width: 33.333333%;
	}

	.row-cols-md-4>* {
		flex: 0 0 25%;
		max-width: 25%;
	}

	.row-cols-md-5>* {
		flex: 0 0 20%;
		max-width: 20%;
	}

	.row-cols-md-6>* {
		flex: 0 0 16.666667%;
		max-width: 16.666667%;
	}

	.col-md-auto {
		flex: 0 0 auto;
		width: auto;
		max-width: 100%;
	}

	.col-md-1 {
		flex: 0 0 8.333333%;
		max-width: 8.333333%;
	}

	.col-md-2 {
		flex: 0 0 16.666667%;
		max-width: 16.666667%;
	}

	.col-md-3 {
		flex: 0 0 25%;
		max-width: 25%;
	}

	.col-md-4 {
		flex: 0 0 33.333333%;
		max-width: 33.333333%;
	}

	.col-md-5 {
		flex: 0 0 41.666667%;
		max-width: 41.666667%;
	}

	.col-md-6 {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.col-md-7 {
		flex: 0 0 58.333333%;
		max-width: 58.333333%;
	}

	.col-md-8 {
		flex: 0 0 66.666667%;
		max-width: 66.666667%;
	}

	.col-md-9 {
		flex: 0 0 75%;
		max-width: 75%;
	}

	.col-md-10 {
		flex: 0 0 83.333333%;
		max-width: 83.333333%;
	}

	.col-md-11 {
		flex: 0 0 91.666667%;
		max-width: 91.666667%;
	}

	.col-md-12 {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.order-md-first {
		order: -1;
	}

	.order-md-last {
		order: 13;
	}

	.order-md-0 {
		order: 0;
	}

	.order-md-1 {
		order: 1;
	}

	.order-md-2 {
		order: 2;
	}

	.order-md-3 {
		order: 3;
	}

	.order-md-4 {
		order: 4;
	}

	.order-md-5 {
		order: 5;
	}

	.order-md-6 {
		order: 6;
	}

	.order-md-7 {
		order: 7;
	}

	.order-md-8 {
		order: 8;
	}

	.order-md-9 {
		order: 9;
	}

	.order-md-10 {
		order: 10;
	}

	.order-md-11 {
		order: 11;
	}

	.order-md-12 {
		order: 12;
	}

	.offset-md-0 {
		margin-left: 0;
	}

	.offset-md-1 {
		margin-left: 8.333333%;
	}

	.offset-md-2 {
		margin-left: 16.666667%;
	}

	.offset-md-3 {
		margin-left: 25%;
	}

	.offset-md-4 {
		margin-left: 33.333333%;
	}

	.offset-md-5 {
		margin-left: 41.666667%;
	}

	.offset-md-6 {
		margin-left: 50%;
	}

	.offset-md-7 {
		margin-left: 58.333333%;
	}

	.offset-md-8 {
		margin-left: 66.666667%;
	}

	.offset-md-9 {
		margin-left: 75%;
	}

	.offset-md-10 {
		margin-left: 83.333333%;
	}

	.offset-md-11 {
		margin-left: 91.666667%;
	}
}

@media (min-width: 992px) {
	.col-lg {
		flex-basis: 0;
		flex-grow: 1;
		max-width: 100%;
	}

	.row-cols-lg-1>* {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.row-cols-lg-2>* {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.row-cols-lg-3>* {
		flex: 0 0 33.333333%;
		max-width: 33.333333%;
	}

	.row-cols-lg-4>* {
		flex: 0 0 25%;
		max-width: 25%;
	}

	.row-cols-lg-5>* {
		flex: 0 0 20%;
		max-width: 20%;
	}

	.row-cols-lg-6>* {
		flex: 0 0 16.666667%;
		max-width: 16.666667%;
	}

	.col-lg-auto {
		flex: 0 0 auto;
		width: auto;
		max-width: 100%;
	}

	.col-lg-1 {
		flex: 0 0 8.333333%;
		max-width: 8.333333%;
	}

	.col-lg-2 {
		flex: 0 0 16.666667%;
		max-width: 16.666667%;
	}

	.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%;
	}

	.col-lg-8 {
		flex: 0 0 66.666667%;
		max-width: 66.666667%;
	}

	.col-lg-9 {
		flex: 0 0 75%;
		max-width: 75%;
	}

	.col-lg-10 {
		flex: 0 0 83.333333%;
		max-width: 83.333333%;
	}

	.col-lg-11 {
		flex: 0 0 91.666667%;
		max-width: 91.666667%;
	}

	.col-lg-12 {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.order-lg-first {
		order: -1;
	}

	.order-lg-last {
		order: 13;
	}

	.order-lg-0 {
		order: 0;
	}

	.order-lg-1 {
		order: 1;
	}

	.order-lg-2 {
		order: 2;
	}

	.order-lg-3 {
		order: 3;
	}

	.order-lg-4 {
		order: 4;
	}

	.order-lg-5 {
		order: 5;
	}

	.order-lg-6 {
		order: 6;
	}

	.order-lg-7 {
		order: 7;
	}

	.order-lg-8 {
		order: 8;
	}

	.order-lg-9 {
		order: 9;
	}

	.order-lg-10 {
		order: 10;
	}

	.order-lg-11 {
		order: 11;
	}

	.order-lg-12 {
		order: 12;
	}

	.offset-lg-0 {
		margin-left: 0;
	}

	.offset-lg-1 {
		margin-left: 8.333333%;
	}

	.offset-lg-2 {
		margin-left: 16.666667%;
	}

	.offset-lg-3 {
		margin-left: 25%;
	}

	.offset-lg-4 {
		margin-left: 33.333333%;
	}

	.offset-lg-5 {
		margin-left: 41.666667%;
	}

	.offset-lg-6 {
		margin-left: 50%;
	}

	.offset-lg-7 {
		margin-left: 58.333333%;
	}

	.offset-lg-8 {
		margin-left: 66.666667%;
	}

	.offset-lg-9 {
		margin-left: 75%;
	}

	.offset-lg-10 {
		margin-left: 83.333333%;
	}

	.offset-lg-11 {
		margin-left: 91.666667%;
	}
}

@media (min-width: 1200px) {
	.col-xl {
		flex-basis: 0;
		flex-grow: 1;
		max-width: 100%;
	}

	.row-cols-xl-1>* {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.row-cols-xl-2>* {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.row-cols-xl-3>* {
		flex: 0 0 33.333333%;
		max-width: 33.333333%;
	}

	.row-cols-xl-4>* {
		flex: 0 0 25%;
		max-width: 25%;
	}

	.row-cols-xl-5>* {
		flex: 0 0 20%;
		max-width: 20%;
	}

	.row-cols-xl-6>* {
		flex: 0 0 16.666667%;
		max-width: 16.666667%;
	}

	.col-xl-auto {
		flex: 0 0 auto;
		width: auto;
		max-width: 100%;
	}

	.col-xl-1 {
		flex: 0 0 8.333333%;
		max-width: 8.333333%;
	}

	.col-xl-2 {
		flex: 0 0 16.666667%;
		max-width: 16.666667%;
	}

	.col-xl-3 {
		flex: 0 0 25%;
		max-width: 25%;
	}

	.col-xl-4 {
		flex: 0 0 33.333333%;
		max-width: 33.333333%;
	}

	.col-xl-5 {
		flex: 0 0 41.666667%;
		max-width: 41.666667%;
	}

	.col-xl-6 {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.col-xl-7 {
		flex: 0 0 58.333333%;
		max-width: 58.333333%;
	}

	.col-xl-8 {
		flex: 0 0 66.666667%;
		max-width: 66.666667%;
	}

	.col-xl-9 {
		flex: 0 0 75%;
		max-width: 75%;
	}

	.col-xl-10 {
		flex: 0 0 83.333333%;
		max-width: 83.333333%;
	}

	.col-xl-11 {
		flex: 0 0 91.666667%;
		max-width: 91.666667%;
	}

	.col-xl-12 {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.order-xl-first {
		order: -1;
	}

	.order-xl-last {
		order: 13;
	}

	.order-xl-0 {
		order: 0;
	}

	.order-xl-1 {
		order: 1;
	}

	.order-xl-2 {
		order: 2;
	}

	.order-xl-3 {
		order: 3;
	}

	.order-xl-4 {
		order: 4;
	}

	.order-xl-5 {
		order: 5;
	}

	.order-xl-6 {
		order: 6;
	}

	.order-xl-7 {
		order: 7;
	}

	.order-xl-8 {
		order: 8;
	}

	.order-xl-9 {
		order: 9;
	}

	.order-xl-10 {
		order: 10;
	}

	.order-xl-11 {
		order: 11;
	}

	.order-xl-12 {
		order: 12;
	}

	.offset-xl-0 {
		margin-left: 0;
	}

	.offset-xl-1 {
		margin-left: 8.333333%;
	}

	.offset-xl-2 {
		margin-left: 16.666667%;
	}

	.offset-xl-3 {
		margin-left: 25%;
	}

	.offset-xl-4 {
		margin-left: 33.333333%;
	}

	.offset-xl-5 {
		margin-left: 41.666667%;
	}

	.offset-xl-6 {
		margin-left: 50%;
	}

	.offset-xl-7 {
		margin-left: 58.333333%;
	}

	.offset-xl-8 {
		margin-left: 66.666667%;
	}

	.offset-xl-9 {
		margin-left: 75%;
	}

	.offset-xl-10 {
		margin-left: 83.333333%;
	}

	.offset-xl-11 {
		margin-left: 91.666667%;
	}
}

    /* Elements: Base HTML elements are styled in this section (<body<, <h1>, <a>, <p>, <button> etc.) */
    body{
font-weight:500;
}


h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	margin-bottom: 0.5rem;
	font-weight: 500;
	line-height: 1.2;
}

h1,
.h1 {
	font-size: 2.5rem;
}

h2,
.h2 {
	font-size: 2rem;
}

h3,
.h3 {
	font-size: 1.75rem;
}

h4,
.h4 {
	font-size: 1.5rem;
}

h5,
.h5 {
	font-size: 1.25rem;
}

h6,
.h6 {
	font-size: 1rem;
}

.lead {
	font-size: 1.25rem;
	font-weight: 300;
}

.display-1 {
	font-size: 6rem;
	font-weight: 300;
	line-height: 1.2;
}

.display-2 {
	font-size: 5.5rem;
	font-weight: 300;
	line-height: 1.2;
}

.display-3 {
	font-size: 4.5rem;
	font-weight: 300;
	line-height: 1.2;
}

.display-4 {
	font-size: 3.5rem;
	font-weight: 300;
	line-height: 1.2;
}

ul,
ol {
	padding-left: 2rem;
}

.description ul li:not(:last-child),
.col-content ul li:not(:last-child) {
	margin-bottom: 1rem;
}

.description p:last-child,
.col-content p:last-child,
.description ul:last-child,
.col-content ul:last-child ,
.legal-consent-container p:last-child {
	margin-bottom: 0;
}

p a {
	-webkit-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

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

hr {
	margin-top: 1rem;
	margin-bottom: 1rem;
	border: 0;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

small,
.small {
	font-size: 0.875em;
	font-weight: 400;
}

mark,
.mark {
	padding: 0.2em;
	background-color: #fcf8e3;
}

.list-unstyled {
	padding-left: 0;
	list-style: none;
}

.list-inline {
	padding-left: 0;
	list-style: none;
}

.list-inline-item {
	display: inline-block;
}

.list-inline-item:not(:last-child) {
	margin-right: 0.5rem;
}

.initialism {
	font-size: 90%;
	text-transform: uppercase;
}

.blockquote {
	margin-bottom: 1rem;
	font-size: 1.25rem;
}

.blockquote-footer {
	display: block;
	font-size: 0.875em;
	color: #6c757d;
}

.blockquote-footer::before {
	content: '\2014\00A0';
}

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

.figure {
	display: inline-block;
}

.figure-img {
	margin-bottom: 0.5rem;
	line-height: 1;
}

.figure-caption {
	font-size: 90%;
	color: #6c757d;
}

code {
	font-size: 87.5%;
	color: #e83e8c;
	word-wrap: break-word;
}

a > code {
	color: inherit;
}

kbd {
	padding: 0.2rem 0.4rem;
	font-size: 87.5%;
	color: #fff;
	background-color: #212529;
	border-radius: 0.2rem;
}

kbd kbd {
	padding: 0;
	font-size: 100%;
	font-weight: 700;
}

pre {
	display: block;
	font-size: 87.5%;
	color: #212529;
}

pre code {
	font-size: inherit;
	color: inherit;
	word-break: normal;
}
    :is(.btn, .btn-wrapper .cta_button, .btn-wrapper .cta-button, .btn-wrapper [data-hubspot-cta-id], .btn-wrapper input[type='submit'], .btn-wrapper input[type='button'], input[type='submit'], input[type='button']) {
  transition: .15s ease-in-out;
  transition-property: filter, color, background-color, border-color, box-shadow;
  text-align: center;
  display: inline-flex;
  align-items: center;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: inherit;
  background-color: transparent;
  border: 1px solid transparent;
  font-weight:600;
  line-height:1.7;
    justify-content: center;
}

@media (prefers-reduced-motion: reduce) {
  :is(.btn, .btn-wrapper .cta_button, .btn-wrapper .cta-button, .btn-wrapper [data-hubspot-cta-id], .btn-wrapper input[type='submit'], .btn-wrapper input[type='button'], input[type='submit'], input[type='button']) {
    transition: none;
  }
}

:is(.btn, .btn-wrapper .cta_button, .btn-wrapper .cta-button, .btn-wrapper [data-hubspot-cta-id], .btn-wrapper input[type="submit"], .btn-wrapper input[type="button"], input[type="submit"], input[type="button"]):hover {
  text-decoration: none;
}

:is(.btn, .btn-wrapper .cta_button, .btn-wrapper .cta-button, .btn-wrapper [data-hubspot-cta-id], .btn-wrapper input[type="submit"], .btn-wrapper input[type="button"], input[type="submit"], input[type="button"]):is(:focus, .focus) {
  outline: 0;
}

:is(.btn, .btn-wrapper .cta_button, .btn-wrapper .cta-button, .btn-wrapper [data-hubspot-cta-id], .btn-wrapper input[type="submit"], .btn-wrapper input[type="button"], input[type="submit"], input[type="button"]):is(:disabled, .disabled) {
  opacity: 0.65;
}

/* .btn-wrapper.btn-primary-wrapper :is(.cta_button,.cta-button,[data-hubspot-cta-id],input[type=submit],input[type=button]) {
box-shadow: 4px 25px 63px 2px rgba(189,16,38,0.09);
} */

.btn:hover,
.btn-wrapper .cta_button:hover,
.btn-wrapper .cta-button:hover,
.btn-wrapper [data-hubspot-cta-id]:hover,
.btn-wrapper input[type="submit"]:hover,
.btn-wrapper input[type="button"]:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
  text-decoration: none;
}

.btn:focus,
.btn.focus,
.btn-wrapper .cta_button:focus,
.btn-wrapper .cta-button:focus,
.btn-wrapper [data-hubspot-cta-id]:focus,
.btn-wrapper input[type="submit"]:focus,
.btn-wrapper input[type="button"]:focus,
input[type="submit"]:focus,
input[type="button"]:focus {

}

.btn:disabled,
.btn.disabled,
.btn-wrapper .cta_button:disabled,
.btn-wrapper .cta-button:disabled,
.btn-wrapper [data-hubspot-cta-id]:disabled,
.btn-wrapper input[type="submit"]:disabled,
.btn-wrapper input[type="button"]:disabled,
input[type="submit"]:disabled,
input[type="button"]:disabled {
  opacity: 0.65;
}

.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-block+.btn-block {
  margin-top: 0.5rem;
}

input[type='submit'].btn-block,
input[type='reset'].btn-block,
input[type='button'].btn-block {
  width: 100%;
}

.cta-group {
  gap: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.cta-group .btn-wrapper {
  display: inline-block;
}

.cta-group.btn-wrap .btn-wrapper {
  width: 100%;
}

.cta-group.btn-block .btn-wrapper,
.btn-block-wrapper .btn-wrapper,
.btn-block-wrapper .hs_submit {
  width: 100%;
}

.cta-group.btn-block .btn-wrapper .cta_button,
.cta-group.btn-block .btn-wrapper .cta-button,
.btn-block-wrapper .btn-wrapper [data-hubspot-cta-id],
.cta-group.btn-block .btn-wrapper [data-hubspot-cta-id],
.btn-block input[type='submit'],
.btn-block input[type='button'],
.btn-block-wrapper .btn-wrapper .cta_button,
.btn-block-wrapper .btn-wrapper .cta-button,
.btn-block-wrapper input[type='submit'],
.btn-block-wrapper input[type='button'] {
  width: 100%;
  justify-content: center;
  box-sizing: border-box !important;
}

.btn-left .hs_submit {
  text-align: left;
}

.btn-center .hs_submit {
  text-align: center;
}

.btn-right .hs_submit {
  text-align: right;
}

.btn-left .hs_submit,
.btn-center .hs_submit,
.btn-right .hs_submit {
  width: 100%;
}

.button_icon svg {
  display: block;
  fill: currentColor !important;
  height: 1em;
}

.button_icon svg g,
.button_icon svg path {
  fill: currentColor !important;
}

.no-button {
  all: unset;
  text-align: left;
}

.tab-content .tab-pane {
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  display: none;
}

.tab-content .tab-pane.active {
  opacity: 1;
  display: block;
}

@media (max-width:767px){

  .btn,
  .btn-wrapper-sm :is(.cta_button, .cta-button, [data-hubspot-cta-id], input[type="submit"], input[type="button"]){
    font-size:14px !important;
  }

  .btn,
  .btn-wrapper :is(.cta_button, .cta-button, [data-hubspot-cta-id], input[type="submit"], input[type="button"]){
    font-size:16px!important;
  }


  .btn-wrapper.btn-wrapper-lg :is(.cta_button,.cta-button,[data-hubspot-cta-id],input[type=submit],input[type=button]){
    font-size:16px!important;
  }
}
    /* ----------------------------------------------------------------------------------- */
/*  HubSpot Forms */
/* ----------------------------------------------------------------------------------- */


form {
  display:block;
}

.hs-form-field~.hs-form-field,
.hs-form .hs_error_rollup {
  flex-basis: 100%;
}

fieldset .hs-form-field {
  flex-basis: auto;
}

.hs-form-field {
  display:block;
  flex-grow: 1;
  position: relative;
  text-align: left;
  min-width: min(200px, 100%);
  margin-bottom:16px; 
}

.hs-form-field>label{
  margin:0 !important;
  display:inline;
}


.hs-fieldtype-select.hs-form-field .input {
  display: flex;
}

form fieldset {
  width: 100%;
  font-size: 1rem;
  max-width: none !important;
}

form fieldset>div .input {
  margin: 0 !important;
}

form fieldset .hs-dependent-field {
  display: flex;
  gap: 13px;
  flex-direction: column;
}

form .hs-dependent-field {
  display: flex;
  gap: 12px;
  flex-direction: column;
  width: 100%;
}

form fieldset.form-columns-1 .hs-input:not([type='checkbox']):not([type='radio']):not(.hs-fieldtype-intl-phone.hs-input :is(select,input)),
form fieldset > div {
  width: 100% !important;
}

fieldset.form-columns-1 .hs-fieldtype-intl-phone.hs-input select.hs-input {
  float: left;
  width: 30%!important;
}

fieldset {
  display: flex;
  gap: 12px;
  flex-direction: column;
}

fieldset[class^=form-columns]:has(.field[style*="display: none"]):not(:has(.hs-fieldtype-intl-phone)) {
  display: none;
}

form div:has(.hs-richtext) {
  width: 100%
}

form .legal-consent-container .hs-richtext + div:not([class]){
  margin-top: 1rem;
}

ul.inputs-list{
  padding: 0 !important;
  list-style: none;
}


@media only screen and (min-width: 992px) {
  .form-columns-2 > .hs-form-field,
  .form-columns-2 > .hs-dependent-field {
    min-width: min(200px, calc(50% - 24px));
    max-width: calc(50% - 6px);
  }

  .form-columns-3 > .hs-form-field,
  .form-columns-3 > .hs-dependent-field {
    min-width: min(200px, calc(33.3333% - 24px));
    max-width: calc(33.3333% - 8px);
  }

  form fieldset {
    flex-direction: row;
    flex-wrap: wrap;
  }

  form fieldset div {
    flex: 1;
  }
}

@media (max-width: 400px),
  (min-device-width: 320px) and (max-device-width: 480px) {

    :not(.hs-video-form) .form-columns-2 .hs-form-field .hs-input,
    :not(.hs-video-form) .form-columns-3 .hs-form-field .hs-input {
      width: 100% !important;
    }
}

form#email-prefs-form input.email-edit.hs-input {
  width: 100% !important;
}

.hs-error-msg,
.hs-error-msgs li {
  font-size: 0.75rem;
  line-height: 1.2;
  margin-bottom: 0;
  color:var(--danger) !important;
}

ul.no-list.hs-error-msgs.inputs-list {
  margin-top: 8px;
}

.hs_error_rollup {
  margin-bottom: 15px;
}


.hs-form .hs_error_rollup {
  order: 99;
}

input#hs-pwd-widget-password {
  width: 100%;
  height: initial !important;
  padding: 0.6rem;
  margin-bottom: 1rem;
  margin-top: 1rem !important;
}

.hs-field-desc {
  font-size: 0.8em;
  margin: 0 0 0.5em;
  line-height: 1.4;
}

.sr-form input[type='radio'],
.sr-form input[type='checkbox'] {
  margin-right: 2px;
}

select {
  background-position: calc(100% - 12px) center;
  background-repeat: no-repeat;
  line-height: 1;
  height: auto;
}

.inputs-list {
  margin: 0;
  padding: 0;
}

.inputs-list li {
  list-style: none;
}

.hs-error-msgs {
  order: 1;
}

.no-list {
  list-style: none;
}

.no-list label {
  display: inline;
}

.field>label,
.form-group label,
.field span,
.form-group span {
  margin: 0 0 0.3rem;
}

::placeholder{
font-weight:500;
}


textarea,
select,
.form-control,
input:not([type='radio']):not([type='checkbox']):not([type='file']):not([type='submit']),
input[readonly]:not([type='radio']):not([type='checkbox']):not([type='file']):not([type='submit']) {
  padding: 11px 17px;
  max-width: 100%;
  width: 100%;
  -webkit-appearance: none;
  outline: none;
  transition: all 0.15s ease-in-out;
  animation-timing-function: ease-in-out;
}

.sr-form [type='radio']:checked,
.sr-form [type='radio']:not(:checked) {
  position: absolute;
  left: -9999px;
}

.sr-form [type='radio']:checked+span,
.sr-form [type='radio']:not(:checked)+span {
  position: relative;
  padding-left: 24px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
}

.sr-form [type='radio']:checked+span:before,
.sr-form [type='radio']:not(:checked)+span:before {
  content: '';
  position: absolute;
  left: 0;
  top: 1px;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  background: #fff;
}

.sr-form [type='radio']:checked+span:after,
.sr-form [type='radio']:not(:checked)+span:after {
  content: '';
  width: 8px;
  height: 8px;
  position: absolute;
  top: 5px;
  left: 4px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.sr-form [type='radio']:not(:checked)+span:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.sr-form [type='radio']:checked+span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.sr-form [type='checkbox']:checked,
.sr-form [type='checkbox']:not(:checked) {
  position: absolute;
  left: -9999px;
}

.sr-form [type='checkbox']:checked+span,
.sr-form [type='checkbox']:not(:checked)+span {
  position: relative;
  padding-left: 24px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
}

.sr-form [type='checkbox']:checked+span:before,
.sr-form [type='checkbox']:not(:checked)+span:before {
  content: '';
  position: absolute;
  left: 0;
  top: 4.5px;
  width: 16px;
  height: 16px;
  border-radius: 4px;
}

.sr-form [type='checkbox']:checked+span:after,
.sr-form [type='checkbox']:not(:checked)+span:after {
  content: url('data:image/svg+xml; utf8, <svg width="10" height="8" viewBox="0 0 10 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 5L3.5 7L9 1" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  width: 10px;
  height: 8px;
  position: absolute;
  top: -1.5px;
  left: 3px;
  transition: all 0.2s ease;
}

.sr-form [type='checkbox']:not(:checked)+span:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.sr-form [type='checkbox']:checked+span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
  top:-2.5px;
}

.sr-form [type='file']::file-selector-button,
.sr-form [type='file']::-webkit-file-upload-button {
  border: none;
  padding: 0.25rem 1rem;
  margin-right: 1rem;
  cursor: pointer;
}

.sr-form [type='file']::file-selector-button:hover,
.sr-form [type='file']::-webkit-file-upload-button:hover {
  filter: brightness(90%);
}

.sr-modal-form form ul[role='checkbox'] .hs-form-radio label input,
.sr-form form ul[role='checkbox'] .hs-form-radio label input {
  margin-right: 5px;
}

.sr-form form .hs-dependent-field {
  display: flex;
  gap: 12px;
  flex-direction: column;
  width: 100%;
}

.sr-form .fn-date-picker .pika-lendar {
  margin: 0;
  padding: 8px;
}

textarea {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  min-height: 75px;
}

.hs_submit, .hs-submit {
  z-index: 3;
}

.hs-dateinput {
  position: relative
}

.hs-dateinput:before {
  content: "📅";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}
    .table {
	width: 100%;
	margin-bottom: 1rem;
	color: #212529;
}

.table th,
.table td {
	padding: 0.75rem;
	vertical-align: top;
	border-top: 1px solid #dee2e6;
}

.table thead th {
	vertical-align: bottom;
	border-bottom: 2px solid #dee2e6;
}

.table tbody + tbody {
	border-top: 2px solid #dee2e6;
}

.table-sm th,
.table-sm td {
	padding: 0.3rem;
}

.table-bordered {
	border: 1px solid #dee2e6;
}

.table-bordered th,
.table-bordered td {
	border: 1px solid #dee2e6;
}

.table-bordered thead th,
.table-bordered thead td {
	border-bottom-width: 2px;
}

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
	border: 0;
}

.table-striped tbody tr:nth-of-type(odd) {
	background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
	color: #212529;
	background-color: rgba(0, 0, 0, 0.075);
}

.table-active,
.table-active > th,
.table-active > td {
	background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
	background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
	background-color: rgba(0, 0, 0, 0.075);
}

@media (max-width: 575.98px) {
	.table-responsive-sm {
		display: block;
		width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
	.table-responsive-sm > .table-bordered {
		border: 0;
	}
}

@media (max-width: 767.98px) {
	.table-responsive-md {
		display: block;
		width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
	.table-responsive-md > .table-bordered {
		border: 0;
	}
}

@media (max-width: 991.98px) {
	.table-responsive-lg {
		display: block;
		width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
	.table-responsive-lg > .table-bordered {
		border: 0;
	}
}

@media (max-width: 1199.98px) {
	.table-responsive-xl {
		display: block;
		width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
	.table-responsive-xl > .table-bordered {
		border: 0;
	}
}

.table-responsive {
	display: block;
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.table-responsive > .table-bordered {
	border: 0;
}
    .modal-open {
	overflow: hidden;
}

.modal-open .modal {
	overflow-x: hidden;
	overflow-y: auto;
}

.modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1050;
	display: none;
	width: 100%;
	height: 100%;
	overflow: hidden;
	outline: 0;
}

.modal.show {
	display: block;
}

.modal-dialog {
	position: relative;
	width: auto;
	margin: 0.5rem;
	pointer-events: none;
}

.modal.fade .modal-dialog {
	transition: transform 0.3s ease-out;
	transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
	.modal.fade .modal-dialog {
		transition: none;
	}
}

.modal.show .modal-dialog {
	transform: none;
}

.modal.modal-static .modal-dialog {
	transform: scale(1.02);
}

.modal-dialog-scrollable {
	display: flex;
	max-height: calc(100% - 1rem);
}

.modal-dialog-scrollable .modal-content {
	max-height: calc(100vh - 1rem);
	overflow: hidden;
}

.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
	flex-shrink: 0;
}

.modal-dialog-scrollable .modal-body {
	overflow-y: auto;
}

.modal-dialog-centered {
	display: flex;
	align-items: center;
	min-height: calc(100% - 1rem);
}

.modal-dialog-centered::before {
	display: block;
	height: calc(100vh - 1rem);
	height: min-content;
	content: '';
}

.modal-dialog-centered.modal-dialog-scrollable {
	flex-direction: column;
	justify-content: center;
	height: 100%;
}

.modal-dialog-centered.modal-dialog-scrollable .modal-content {
	max-height: none;
}

.modal-dialog-centered.modal-dialog-scrollable::before {
	content: none;
}

.modal-content {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	pointer-events: auto;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 0.3rem;
	outline: 0;
}

.modal-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1040;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.5);
	display: none;
}

.modal-backdrop.show {
	display: block;
}

.modal-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: 1rem 1rem;
	border-bottom: 1px solid #dee2e6;
	border-top-left-radius: calc(0.3rem - 1px);
	border-top-right-radius: calc(0.3rem - 1px);
}

.modal-header .close {
	background-color: transparent;
	border: 0;
	cursor: pointer;
}
.modal-title {
	margin-bottom: 0;
	line-height: 1.5;
}

.modal-body {
	position: relative;
	flex: 1 1 auto;
	padding: 1rem;
}

.modal-footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	padding: 0.75rem;
	border-top: 1px solid #dee2e6;
	border-bottom-right-radius: calc(0.3rem - 1px);
	border-bottom-left-radius: calc(0.3rem - 1px);
}

.modal-footer > * {
	margin: 0.25rem;
}

.modal-scrollbar-measure {
	position: absolute;
	top: -9999px;
	width: 50px;
	height: 50px;
	overflow: scroll;
}

@media (min-width: 576px) {
	.modal-dialog {
		max-width: 500px;
		margin: 1.75rem auto;
	}
	.modal-dialog-scrollable {
		max-height: calc(100% - 3.5rem);
	}
	.modal-dialog-scrollable .modal-content {
		max-height: calc(100vh - 3.5rem);
	}
	.modal-dialog-centered {
		min-height: calc(100% - 3.5rem);
	}
	.modal-dialog-centered::before {
		height: calc(100vh - 3.5rem);
		height: min-content;
	}
	.modal-sm {
		max-width: 300px;
	}
}

@media (min-width: 992px) {
	.modal-lg,
	.modal-xl {
		max-width: 800px;
	}
}

@media (min-width: 1200px) {
	.modal-xl {
		max-width: 1140px;
	}
}
    .card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	word-wrap: break-word;
	background-color: #fff;
	background-clip: border-box;
	border: 1px solid rgba(0, 0, 0, 0.125);
	border-radius: 0.25rem;
}

.card-body {
	flex: 1 1 auto;
	min-height: 1px;
	padding: 1.25rem;
}

.media {
	display: flex;
	align-items: flex-start;
}

.media-body {
	flex: 1;
}
    .sr-video {
	line-height: 1;
}

.sr-multicol-media iframe,
.sr-multicol-media video {
	width: 100%;
	height: 100%;
	aspect-ratio: 16/9;
}

.sr-multicol-media .section-heading {
	margin: 0 0 1.25rem;
	padding: 0;
}

.responsive-video-file {
	max-width: 100%;
	position: relative;
	z-index: 9;
}

video[controls] {
	cursor: pointer;
}

.sr-play-button {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    border: 0;
    width: 100%;
    height: 100%;
    z-index: 11;
    background: transparent;
    cursor: pointer;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
	opacity: 1;
	transition: opacity .3s;
}
.sr-play-button svg {
    width: 80px;
    height: 80px;
    fill: var(--c);
    stroke: var(--c);
    cursor: pointer;
    background-color: var(--b);
    border-radius: 50%;
    box-shadow: 0px 8px 20px rgba(0,0,0, 0.2);
}
.sr-play-button svg * {
    fill: var(--c);
    stroke: var(--c);
}

.sr-play-button:hover {
	opacity: .75;
}

.responsive-image img {
	max-width: 100%;
	height: auto;
	border-radius: var(--img-corner);
}

.sr-multicol-media .col-heading {
	padding: 0;
}

.sr-multicol-media.sr-bg-image .sr-col {
	padding: 6.25rem 4rem;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	border-right: solid 1px #e5e7ea;
	border-right: solid 1px var(--borders);
}

.sr-multicol-media.sr-bg-image .sr-col:last-of-type {
	border-right: none;
}

.sr-multicol-media.sr-bg-image .sr-col::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	background-color: var(--bg-overlay);
}

.sr-multicol-media.sr-bg-image .sr-col .content-wrapper,
.cta-group {
	position: relative;
	z-index: 2;
}

.content-wrapper {
	height: 100%;
	width: 100%;
}

.design-1 iframe,
.design-1 video {
	box-shadow: 10px 10px 50px var(--v-accent, var(--v-custom))
}

.design-2 {
	background-color: var(--v-accent, var(--v-custom));
	padding: 10px
}

.design-2:before {
	height: calc(100% + 30px);
	left: -15px;
	top: -15px;
	width: calc(100% + 30px)
}

.design-2:after,
.design-2:before {
	border: 1px solid;
	border-color: var(--v-accent, var(--v-custom));
	content: "";
	display: block;
	position: absolute
}

.design-2:after {
	background-color: transparent;
	height: 85%;
	left: -40px;
	top: 7.5%;
	width: calc(100% + 80px)
}

.design-3 {
	position: relative
}

.design-3:before {
	background-color: var(--v-accent, var(--v-custom));
	content: " ";
	display: block;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	transform: rotate(-2deg);
	width: 100%
}


ul.slick-dots,
footer ul,
.sr-two-col-07 .sr-feature-check {
	list-style-image: none;
}

.lang_switcher_class,
lottie-player {
	display: block !important;
}

.lang_list_class {
	list-style: none;
}

/*  Module Preview */
[data-preview] {
	position: unset !important;
}

[data-preview] .modal {
	position: unset !important;
	display: block !important;
}

[data-preview] .modal-dialog {
	transform: none !important;
}

/*  *Legacy Nav */
.collapse:not(.show) {
	display: none
}

.collapsing {
	position: relative;
	height: 0;
	overflow: hidden;
	transition: height .35s ease
}

@media (prefers-reduced-motion:reduce) {
	.collapsing {
		transition: none
	}
}

.navbar-nav {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	padding-left: 0;
	margin-bottom: 0;
	list-style: none;
}

.nav-link {
	display: block;
}

.dropdown-menu {
	position: absolute;
	left: 0;
	z-index: 1000;
	display: none;
	text-align: left;
	list-style: none;
}

.dropdown-item {
	background-color: transparent;
	border: 0;
	clear: both;
	display: block;
	font-weight: 400;
	padding: 0.25rem 1.5rem;
	text-align: inherit;
	white-space: nowrap;
	width: 100%;
}

.navbar .container,
.navbar .container-fluid,
.navbar .container-lg,
.navbar .container-md,
.navbar .container-sm,
.navbar .container-xl {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: justify;
	justify-content: space-between
}

@media (min-width: 1200px) {

	.navbar-expand-xl>.container,
	.navbar-expand-xl>.container-fluid,
	.navbar-expand-xl>.container-lg,
	.navbar-expand-xl>.container-md,
	.navbar-expand-xl>.container-sm,
	.navbar-expand-xl>.container-xl {
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
	}

	.navbar-expand-xl .navbar-nav {
		-ms-flex-direction: row;
		flex-direction: row;
	}
}

.navbar {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: .5rem 1rem
}

.navbar .container,
.navbar .container-fluid,
.navbar .container-lg,
.navbar .container-md,
.navbar .container-sm,
.navbar .container-xl {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: justify;
	justify-content: space-between
}

.navbar-brand {
	display: inline-block;
	padding-top: .3125rem;
	padding-bottom: .3125rem;
	margin-right: 1rem;
	font-size: 1.25rem;
	line-height: inherit;
	white-space: nowrap
}

.navbar-brand:focus,
.navbar-brand:hover {
	text-decoration: none
}

.navbar-nav .nav-link {
	padding-right: 0;
	padding-left: 0
}

.navbar-nav .dropdown-menu {
	position: static;
	float: none
}

.navbar-text {
	display: inline-block;
	padding-top: .5rem;
	padding-bottom: .5rem
}

.navbar-collapse {
	-ms-flex-preferred-size: 100%;
	flex-basis: 100%;
	-ms-flex-positive: 1;
	flex-grow: 1;
	-ms-flex-align: center;
	align-items: center
}

.navbar-toggler {
	padding: .25rem .75rem;
	font-size: 1.25rem;
	line-height: 1;
	background-color: transparent;
	border: 1px solid transparent;
	border-radius: .25rem;
	position: relative;
	z-index: 2;
}

.navbar-toggler:focus,
.navbar-toggler:hover {
	text-decoration: none
}

.navbar-toggler-icon {
	display: inline-block;
	width: 1.5em;
	height: 1.5em;
	vertical-align: middle;
	content: "";
	background: 50%/100% 100% no-repeat
}

.navbar-nav-scroll {
	max-height: 75vh;
	overflow-y: auto
}

@media (max-width:575.98px) {

	.navbar-expand-sm>.container,
	.navbar-expand-sm>.container-fluid,
	.navbar-expand-sm>.container-lg,
	.navbar-expand-sm>.container-md,
	.navbar-expand-sm>.container-sm,
	.navbar-expand-sm>.container-xl {
		padding-right: 0;
		padding-left: 0
	}
}

@media (min-width:576px) {
	.navbar-expand-sm {
		-ms-flex-flow: row nowrap;
		flex-flow: row nowrap;
		-ms-flex-pack: start;
		justify-content: flex-start
	}

	.navbar-expand-sm .navbar-nav {
		-ms-flex-direction: row;
		flex-direction: row
	}

	.navbar-expand-sm .navbar-nav .dropdown-menu {
		position: absolute
	}

	.navbar-expand-sm .navbar-nav .nav-link {
		padding-right: .5rem;
		padding-left: .5rem
	}

	.navbar-expand-sm>.container,
	.navbar-expand-sm>.container-fluid,
	.navbar-expand-sm>.container-lg,
	.navbar-expand-sm>.container-md,
	.navbar-expand-sm>.container-sm,
	.navbar-expand-sm>.container-xl {
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap
	}

	.navbar-expand-sm .navbar-nav-scroll {
		overflow: visible
	}

	.navbar-expand-sm .navbar-collapse {
		display: -ms-flexbox !important;
		display: flex !important;
		-ms-flex-preferred-size: auto;
		flex-basis: auto
	}

	.navbar-expand-sm .navbar-toggler {
		display: none
	}
}

@media (max-width:767.98px) {

	.navbar-expand-md>.container,
	.navbar-expand-md>.container-fluid,
	.navbar-expand-md>.container-lg,
	.navbar-expand-md>.container-md,
	.navbar-expand-md>.container-sm,
	.navbar-expand-md>.container-xl {
		padding-right: 0;
		padding-left: 0
	}
}

@media (min-width:768px) {
	.navbar-expand-md {
		-ms-flex-flow: row nowrap;
		flex-flow: row nowrap;
		-ms-flex-pack: start;
		justify-content: flex-start
	}

	.navbar-expand-md .navbar-nav {
		-ms-flex-direction: row;
		flex-direction: row
	}

	.navbar-expand-md .navbar-nav .dropdown-menu {
		position: absolute
	}

	.navbar-expand-md .navbar-nav .nav-link {
		padding-right: .5rem;
		padding-left: .5rem
	}

	.navbar-expand-md>.container,
	.navbar-expand-md>.container-fluid,
	.navbar-expand-md>.container-lg,
	.navbar-expand-md>.container-md,
	.navbar-expand-md>.container-sm,
	.navbar-expand-md>.container-xl {
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap
	}

	.navbar-expand-md .navbar-nav-scroll {
		overflow: visible
	}

	.navbar-expand-md .navbar-collapse {
		display: -ms-flexbox !important;
		display: flex !important;
		-ms-flex-preferred-size: auto;
		flex-basis: auto
	}

	.navbar-expand-md .navbar-toggler {
		display: none
	}
}

@media (max-width:991.98px) {

	.navbar-expand-lg>.container,
	.navbar-expand-lg>.container-fluid,
	.navbar-expand-lg>.container-lg,
	.navbar-expand-lg>.container-md,
	.navbar-expand-lg>.container-sm,
	.navbar-expand-lg>.container-xl {
		padding-right: 0;
		padding-left: 0
	}
}

@media (min-width:992px) {
	.navbar-expand-lg {
		-ms-flex-flow: row nowrap;
		flex-flow: row nowrap;
		-ms-flex-pack: start;
		justify-content: flex-start
	}

	.navbar-expand-lg .navbar-nav {
		-ms-flex-direction: row;
		flex-direction: row
	}

	.navbar-expand-lg .navbar-nav .dropdown-menu {
		position: absolute
	}

	.navbar-expand-lg .navbar-nav .nav-link {
		padding-right: .5rem;
		padding-left: .5rem
	}

	.navbar-expand-lg>.container,
	.navbar-expand-lg>.container-fluid,
	.navbar-expand-lg>.container-lg,
	.navbar-expand-lg>.container-md,
	.navbar-expand-lg>.container-sm,
	.navbar-expand-lg>.container-xl {
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap
	}

	.navbar-expand-lg .navbar-nav-scroll {
		overflow: visible
	}

	.navbar-expand-lg .navbar-collapse {
		display: -ms-flexbox !important;
		display: flex !important;
		-ms-flex-preferred-size: auto;
		flex-basis: auto
	}

	.navbar-expand-lg .navbar-toggler {
		display: none
	}
}

@media (max-width:1199.98px) {

	.navbar-expand-xl>.container,
	.navbar-expand-xl>.container-fluid,
	.navbar-expand-xl>.container-lg,
	.navbar-expand-xl>.container-md,
	.navbar-expand-xl>.container-sm,
	.navbar-expand-xl>.container-xl {
		padding-right: 0;
		padding-left: 0
	}
}

@media (min-width:1200px) {
	.navbar-expand-xl {
		-ms-flex-flow: row nowrap;
		flex-flow: row nowrap;
		-ms-flex-pack: start;
		justify-content: flex-start
	}

	.navbar-expand-xl .navbar-nav {
		-ms-flex-direction: row;
		flex-direction: row
	}

	.navbar-expand-xl .navbar-nav .dropdown-menu {
		position: absolute
	}

	.navbar-expand-xl .navbar-nav .nav-link {
		padding-right: .5rem;
		padding-left: .5rem
	}

	.navbar-expand-xl>.container,
	.navbar-expand-xl>.container-fluid,
	.navbar-expand-xl>.container-lg,
	.navbar-expand-xl>.container-md,
	.navbar-expand-xl>.container-sm,
	.navbar-expand-xl>.container-xl {
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap
	}

	.navbar-expand-xl .navbar-nav-scroll {
		overflow: visible
	}

	.navbar-expand-xl .navbar-collapse {
		display: -ms-flexbox !important;
		display: flex !important;
		-ms-flex-preferred-size: auto;
		flex-basis: auto
	}

	.navbar-expand-xl .navbar-toggler {
		display: none
	}
}

.navbar-expand {
	-ms-flex-flow: row nowrap;
	flex-flow: row nowrap;
	-ms-flex-pack: start;
	justify-content: flex-start
}

.navbar-expand>.container,
.navbar-expand>.container-fluid,
.navbar-expand>.container-lg,
.navbar-expand>.container-md,
.navbar-expand>.container-sm,
.navbar-expand>.container-xl {
	padding-right: 0;
	padding-left: 0
}

.navbar-expand .navbar-nav {
	-ms-flex-direction: row;
	flex-direction: row
}

.navbar-expand .navbar-nav .dropdown-menu {
	position: absolute
}

.navbar-expand .navbar-nav .nav-link {
	padding-right: .5rem;
	padding-left: .5rem
}

.navbar-expand>.container,
.navbar-expand>.container-fluid,
.navbar-expand>.container-lg,
.navbar-expand>.container-md,
.navbar-expand>.container-sm,
.navbar-expand>.container-xl {
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap
}

.navbar-expand .navbar-nav-scroll {
	overflow: visible
}

.navbar-expand .navbar-collapse {
	display: -ms-flexbox !important;
	display: flex !important;
	-ms-flex-preferred-size: auto;
	flex-basis: auto
}

.navbar-expand .navbar-toggler {
	display: none
}

.mobile-nav {
	display: none !important;
}

@media (max-width: 1199.98px) {
	.mobile-nav {
		display: block !important;
	}
}

@media (max-width: 1199.98px) {

	.navbar-collapse .container,
	.navbar-collapse .container-fluid {
		display: block;
		padding: 0;
	}

	.desktop-nav {
		display: none;
	}
}

.chevron-left.slick-arrow,
.chevron-right.slick-arrow {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	font-size: 30px;
	z-index: 1;
	cursor: pointer;
}

.chevron-right.slick-arrow {
	right: 2rem
}

.chevron-left.slick-arrow {
	left: 2rem
}

.slick-dots {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding-left: 0;
	padding-right: 0;
	padding-top: 2rem;
	list-style-type: none;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	bottom: 0;
	margin: 0;

}

.slick-dots button {
	display: block;
	width: 8px;
	height: 8px;
	padding: 0;
	border: none;
	border-radius: 100%;
	text-indent: -9999px;
	-webkit-transition: all ease-in-out .2s;
	-o-transition: all ease-in-out .2s;
	transition: all ease-in-out .2s;
	margin: 4px;
	box-shadow: 0 0 0 4px transparent;
	background: #0C63FF;
	background: var(--primary);
}

.slick-dots li.slick-active button {
	background-color: transparent !important;
	box-shadow: 0 0 0 2px #0C63FF;
	box-shadow: 0 0 0 2px var(--primary);
}

.column_feature {
	display: flex;
	align-content: start;
	gap: 1rem;
}

.icon-icon {
	color: var(--icon-color);
	background: var(--icon-background);
	font-size: var(--icon-width);
	display: block;
	border-radius: 100%;
	display: flex;
	justify-content: center;
	padding: .625em;
	aspect-ratio: 1;
}

.icon-icon svg {
	width: var(--icon-width);
	fill: currentColor;
}

.icon-custom svg {
	width: var(--icon-width);
}

.icon-image {
	display: block;
	min-width: var(--icon-width);
}

.column_features {
	display: grid;
	gap: var(--gap);
	grid-template-columns: repeat(auto-fit, minmax(var(--grid), 1fr));
	align-items: self-start;
}

.column_feature .heading:last-child,
.column_feature .heading:last-of-type {
	margin-bottom: 0;
}

    /* Utilities: Helper classes with ability to override anything that comes before it*/
    .sr-row {
	row-gap: 3.125rem;
}

.sr-shadow {
	box-shadow: 15px 25px 60px 0px rgba(0, 0, 0, 0.10);
}

.sr-valign-top {
	align-items: flex-start;
}

.sr-valign-center {
	align-items: center;
}

.sr-valign-bottom {
	align-items: flex-end;
}

.sr-valign-stretch {
	align-items: stretch;
}

.sr-valign-stretch .content-wrapper {
	display: flex;
	flex-direction: column
}

.sr-valign-stretch .cta-group {
	width: 100%;
	align-self: flex-end;
	margin-top: auto;
}

.align-baseline {
	vertical-align: baseline !important;
}

.align-top {
	vertical-align: top !important;
}

.align-middle {
	vertical-align: middle !important;
}

.align-bottom {
	vertical-align: bottom !important;
}

.align-text-bottom {
	vertical-align: text-bottom !important;
}

.align-text-top {
	vertical-align: text-top !important;
}

.bg-transparent {
	background-color: transparent !important;
}

.bg-bottom {
	background-position: bottom !important;
}

.bg-center {
	background-position: center !important;
}

.bg-left {
	background-position: left !important;
}

.bg-left-bottom {
	background-position: left bottom !important;
}

.bg-left-top {
	background-position: left top !important;
}

.bg-right {
	background-position: right !important;
}

.bg-right-bottom {
	background-position: right bottom;
}

.bg-right-top {
	background-position: right top !important;
}

.bg-top {
	background-position: top !important;
}

.bg-repeat {
	background-repeat: repeat !important;
}

.bg-no-repeat {
	background-repeat: no-repeat !important;
}

.bg-repeat-x {
	background-repeat: repeat-x !important;
}

.bg-repeat-y {
	background-repeat: repeat-y !important;
}

.bg-auto {
	background-size: auto !important;
}

.bg-cover {
	background-size: cover !important;
}

.bg-contain {
	background-size: contain !important;
}

.border-0 {
	border: 0 !important;
}

.border-top-0 {
	border-top: 0 !important;
}

.border-right-0 {
	border-right: 0 !important;
}

.border-bottom-0 {
	border-bottom: 0 !important;
}

.border-left-0 {
	border-left: 0 !important;
}

.clearfix::after {
	display: block;
	clear: both;
	content: '';
}

.d-none {
	display: none !important;
}

.d-inline {
	display: inline !important;
}

.d-inline-block {
	display: inline-block !important;
}

.d-block {
	display: block !important;
}

.d-table {
	display: table !important;
}

.d-table-row {
	display: table-row !important;
}

.d-table-cell {
	display: table-cell !important;
}

.d-flex {
	display: flex !important;
}

.d-inline-flex {
	display: inline-flex !important;
}

@media (min-width: 576px) {
	.d-sm-none {
		display: none !important;
	}

	.d-sm-inline {
		display: inline !important;
	}

	.d-sm-inline-block {
		display: inline-block !important;
	}

	.d-sm-block {
		display: block !important;
	}

	.d-sm-table {
		display: table !important;
	}

	.d-sm-table-row {
		display: table-row !important;
	}

	.d-sm-table-cell {
		display: table-cell !important;
	}

	.d-sm-flex {
		display: flex !important;
	}

	.d-sm-inline-flex {
		display: inline-flex !important;
	}
}

@media (min-width: 768px) {
	.d-md-none {
		display: none !important;
	}

	.d-md-inline {
		display: inline !important;
	}

	.d-md-inline-block {
		display: inline-block !important;
	}

	.d-md-block {
		display: block !important;
	}

	.d-md-table {
		display: table !important;
	}

	.d-md-table-row {
		display: table-row !important;
	}

	.d-md-table-cell {
		display: table-cell !important;
	}

	.d-md-flex {
		display: flex !important;
	}

	.d-md-inline-flex {
		display: inline-flex !important;
	}
}

@media (min-width: 992px) {
	.d-lg-none {
		display: none !important;
	}

	.d-lg-inline {
		display: inline !important;
	}

	.d-lg-inline-block {
		display: inline-block !important;
	}

	.d-lg-block {
		display: block !important;
	}

	.d-lg-table {
		display: table !important;
	}

	.d-lg-table-row {
		display: table-row !important;
	}

	.d-lg-table-cell {
		display: table-cell !important;
	}

	.d-lg-flex {
		display: flex !important;
	}

	.d-lg-inline-flex {
		display: inline-flex !important;
	}
}

@media (min-width: 1200px) {
	.d-xl-none {
		display: none !important;
	}

	.d-xl-inline {
		display: inline !important;
	}

	.d-xl-inline-block {
		display: inline-block !important;
	}

	.d-xl-block {
		display: block !important;
	}

	.d-xl-table {
		display: table !important;
	}

	.d-xl-table-row {
		display: table-row !important;
	}

	.d-xl-table-cell {
		display: table-cell !important;
	}

	.d-xl-flex {
		display: flex !important;
	}

	.d-xl-inline-flex {
		display: inline-flex !important;
	}
}

@media print {
	.d-print-none {
		display: none !important;
	}

	.d-print-inline {
		display: inline !important;
	}

	.d-print-inline-block {
		display: inline-block !important;
	}

	.d-print-block {
		display: block !important;
	}

	.d-print-table {
		display: table !important;
	}

	.d-print-table-row {
		display: table-row !important;
	}

	.d-print-table-cell {
		display: table-cell !important;
	}

	.d-print-flex {
		display: flex !important;
	}

	.d-print-inline-flex {
		display: inline-flex !important;
	}
}

.flex-row {
	flex-direction: row !important;
}

.flex-column {
	flex-direction: column !important;
}

.flex-row-reverse {
	flex-direction: row-reverse !important;
}

.flex-column-reverse {
	flex-direction: column-reverse !important;
}

.flex-wrap {
	flex-wrap: wrap !important;
}

.flex-nowrap {
	flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
	flex-wrap: wrap-reverse !important;
}

.flex-fill {
	flex: 1 1 auto !important;
}

.flex-grow-0 {
	flex-grow: 0 !important;
}

.flex-grow-1 {
	flex-grow: 1 !important;
}

.flex-shrink-0 {
	flex-shrink: 0 !important;
}

.flex-shrink-1 {
	flex-shrink: 1 !important;
}

.justify-content-start {
	justify-content: flex-start !important;
}

.justify-content-end {
	justify-content: flex-end !important;
}

.justify-content-center {
	justify-content: center !important;
}

.justify-content-between {
	justify-content: space-between !important;
}

.justify-content-around {
	justify-content: space-around !important;
}

.align-items-start {
	align-items: flex-start !important;
}

.align-items-end {
	align-items: flex-end !important;
}

.align-items-center {
	align-items: center !important;
}

.align-items-baseline {
	align-items: baseline !important;
}

.align-items-stretch {
	align-items: stretch !important;
}

.align-content-start {
	align-content: flex-start !important;
}

.align-content-end {
	align-content: flex-end !important;
}

.align-content-center {
	align-content: center !important;
}

.align-content-between {
	align-content: space-between !important;
}

.align-content-around {
	align-content: space-around !important;
}

.align-content-stretch {
	align-content: stretch !important;
}

.align-self-auto {
	align-self: auto !important;
}

.align-self-start {
	align-self: flex-start !important;
}

.align-self-end {
	align-self: flex-end !important;
}

.align-self-center {
	align-self: center !important;
}

.align-self-baseline {
	align-self: baseline !important;
}

.align-self-stretch {
	align-self: stretch !important;
}

@media (min-width: 576px) {
	.flex-sm-row {
		flex-direction: row !important;
	}

	.flex-sm-column {
		flex-direction: column !important;
	}

	.flex-sm-row-reverse {
		flex-direction: row-reverse !important;
	}

	.flex-sm-column-reverse {
		flex-direction: column-reverse !important;
	}

	.flex-sm-wrap {
		flex-wrap: wrap !important;
	}

	.flex-sm-nowrap {
		flex-wrap: nowrap !important;
	}

	.flex-sm-wrap-reverse {
		flex-wrap: wrap-reverse !important;
	}

	.flex-sm-fill {
		flex: 1 1 auto !important;
	}

	.flex-sm-grow-0 {
		flex-grow: 0 !important;
	}

	.flex-sm-grow-1 {
		flex-grow: 1 !important;
	}

	.flex-sm-shrink-0 {
		flex-shrink: 0 !important;
	}

	.flex-sm-shrink-1 {
		flex-shrink: 1 !important;
	}

	.justify-content-sm-start {
		justify-content: flex-start !important;
	}

	.justify-content-sm-end {
		justify-content: flex-end !important;
	}

	.justify-content-sm-center {
		justify-content: center !important;
	}

	.justify-content-sm-between {
		justify-content: space-between !important;
	}

	.justify-content-sm-around {
		justify-content: space-around !important;
	}

	.align-items-sm-start {
		align-items: flex-start !important;
	}

	.align-items-sm-end {
		align-items: flex-end !important;
	}

	.align-items-sm-center {
		align-items: center !important;
	}

	.align-items-sm-baseline {
		align-items: baseline !important;
	}

	.align-items-sm-stretch {
		align-items: stretch !important;
	}

	.align-content-sm-start {
		align-content: flex-start !important;
	}

	.align-content-sm-end {
		align-content: flex-end !important;
	}

	.align-content-sm-center {
		align-content: center !important;
	}

	.align-content-sm-between {
		align-content: space-between !important;
	}

	.align-content-sm-around {
		align-content: space-around !important;
	}

	.align-content-sm-stretch {
		align-content: stretch !important;
	}

	.align-self-sm-auto {
		align-self: auto !important;
	}

	.align-self-sm-start {
		align-self: flex-start !important;
	}

	.align-self-sm-end {
		align-self: flex-end !important;
	}

	.align-self-sm-center {
		align-self: center !important;
	}

	.align-self-sm-baseline {
		align-self: baseline !important;
	}

	.align-self-sm-stretch {
		align-self: stretch !important;
	}
}

@media (min-width: 768px) {
	.flex-md-row {
		flex-direction: row !important;
	}

	.flex-md-column {
		flex-direction: column !important;
	}

	.flex-md-row-reverse {
		flex-direction: row-reverse !important;
	}

	.flex-md-column-reverse {
		flex-direction: column-reverse !important;
	}

	.flex-md-wrap {
		flex-wrap: wrap !important;
	}

	.flex-md-nowrap {
		flex-wrap: nowrap !important;
	}

	.flex-md-wrap-reverse {
		flex-wrap: wrap-reverse !important;
	}

	.flex-md-fill {
		flex: 1 1 auto !important;
	}

	.flex-md-grow-0 {
		flex-grow: 0 !important;
	}

	.flex-md-grow-1 {
		flex-grow: 1 !important;
	}

	.flex-md-shrink-0 {
		flex-shrink: 0 !important;
	}

	.flex-md-shrink-1 {
		flex-shrink: 1 !important;
	}

	.justify-content-md-start {
		justify-content: flex-start !important;
	}

	.justify-content-md-end {
		justify-content: flex-end !important;
	}

	.justify-content-md-center {
		justify-content: center !important;
	}

	.justify-content-md-between {
		justify-content: space-between !important;
	}

	.justify-content-md-around {
		justify-content: space-around !important;
	}

	.align-items-md-start {
		align-items: flex-start !important;
	}

	.align-items-md-end {
		align-items: flex-end !important;
	}

	.align-items-md-center {
		align-items: center !important;
	}

	.align-items-md-baseline {
		align-items: baseline !important;
	}

	.align-items-md-stretch {
		align-items: stretch !important;
	}

	.align-content-md-start {
		align-content: flex-start !important;
	}

	.align-content-md-end {
		align-content: flex-end !important;
	}

	.align-content-md-center {
		align-content: center !important;
	}

	.align-content-md-between {
		align-content: space-between !important;
	}

	.align-content-md-around {
		align-content: space-around !important;
	}

	.align-content-md-stretch {
		align-content: stretch !important;
	}

	.align-self-md-auto {
		align-self: auto !important;
	}

	.align-self-md-start {
		align-self: flex-start !important;
	}

	.align-self-md-end {
		align-self: flex-end !important;
	}

	.align-self-md-center {
		align-self: center !important;
	}

	.align-self-md-baseline {
		align-self: baseline !important;
	}

	.align-self-md-stretch {
		align-self: stretch !important;
	}
}

@media (min-width: 992px) {
	.flex-lg-row {
		flex-direction: row !important;
	}

	.flex-lg-column {
		flex-direction: column !important;
	}

	.flex-lg-row-reverse {
		flex-direction: row-reverse !important;
	}

	.flex-lg-column-reverse {
		flex-direction: column-reverse !important;
	}

	.flex-lg-wrap {
		flex-wrap: wrap !important;
	}

	.flex-lg-nowrap {
		flex-wrap: nowrap !important;
	}

	.flex-lg-wrap-reverse {
		flex-wrap: wrap-reverse !important;
	}

	.flex-lg-fill {
		flex: 1 1 auto !important;
	}

	.flex-lg-grow-0 {
		flex-grow: 0 !important;
	}

	.flex-lg-grow-1 {
		flex-grow: 1 !important;
	}

	.flex-lg-shrink-0 {
		flex-shrink: 0 !important;
	}

	.flex-lg-shrink-1 {
		flex-shrink: 1 !important;
	}

	.justify-content-lg-start {
		justify-content: flex-start !important;
	}

	.justify-content-lg-end {
		justify-content: flex-end !important;
	}

	.justify-content-lg-center {
		justify-content: center !important;
	}

	.justify-content-lg-between {
		justify-content: space-between !important;
	}

	.justify-content-lg-around {
		justify-content: space-around !important;
	}

	.align-items-lg-start {
		align-items: flex-start !important;
	}

	.align-items-lg-end {
		align-items: flex-end !important;
	}

	.align-items-lg-center {
		align-items: center !important;
	}

	.align-items-lg-baseline {
		align-items: baseline !important;
	}

	.align-items-lg-stretch {
		align-items: stretch !important;
	}

	.align-content-lg-start {
		align-content: flex-start !important;
	}

	.align-content-lg-end {
		align-content: flex-end !important;
	}

	.align-content-lg-center {
		align-content: center !important;
	}

	.align-content-lg-between {
		align-content: space-between !important;
	}

	.align-content-lg-around {
		align-content: space-around !important;
	}

	.align-content-lg-stretch {
		align-content: stretch !important;
	}

	.align-self-lg-auto {
		align-self: auto !important;
	}

	.align-self-lg-start {
		align-self: flex-start !important;
	}

	.align-self-lg-end {
		align-self: flex-end !important;
	}

	.align-self-lg-center {
		align-self: center !important;
	}

	.align-self-lg-baseline {
		align-self: baseline !important;
	}

	.align-self-lg-stretch {
		align-self: stretch !important;
	}
}

@media (min-width: 1200px) {
	.flex-xl-row {
		flex-direction: row !important;
	}

	.flex-xl-column {
		flex-direction: column !important;
	}

	.flex-xl-row-reverse {
		flex-direction: row-reverse !important;
	}

	.flex-xl-column-reverse {
		flex-direction: column-reverse !important;
	}

	.flex-xl-wrap {
		flex-wrap: wrap !important;
	}

	.flex-xl-nowrap {
		flex-wrap: nowrap !important;
	}

	.flex-xl-wrap-reverse {
		flex-wrap: wrap-reverse !important;
	}

	.flex-xl-fill {
		flex: 1 1 auto !important;
	}

	.flex-xl-grow-0 {
		flex-grow: 0 !important;
	}

	.flex-xl-grow-1 {
		flex-grow: 1 !important;
	}

	.flex-xl-shrink-0 {
		flex-shrink: 0 !important;
	}

	.flex-xl-shrink-1 {
		flex-shrink: 1 !important;
	}

	.justify-content-xl-start {
		justify-content: flex-start !important;
	}

	.justify-content-xl-end {
		justify-content: flex-end !important;
	}

	.justify-content-xl-center {
		justify-content: center !important;
	}

	.justify-content-xl-between {
		justify-content: space-between !important;
	}

	.justify-content-xl-around {
		justify-content: space-around !important;
	}

	.align-items-xl-start {
		align-items: flex-start !important;
	}

	.align-items-xl-end {
		align-items: flex-end !important;
	}

	.align-items-xl-center {
		align-items: center !important;
	}

	.align-items-xl-baseline {
		align-items: baseline !important;
	}

	.align-items-xl-stretch {
		align-items: stretch !important;
	}

	.align-content-xl-start {
		align-content: flex-start !important;
	}

	.align-content-xl-end {
		align-content: flex-end !important;
	}

	.align-content-xl-center {
		align-content: center !important;
	}

	.align-content-xl-between {
		align-content: space-between !important;
	}

	.align-content-xl-around {
		align-content: space-around !important;
	}

	.align-content-xl-stretch {
		align-content: stretch !important;
	}

	.align-self-xl-auto {
		align-self: auto !important;
	}

	.align-self-xl-start {
		align-self: flex-start !important;
	}

	.align-self-xl-end {
		align-self: flex-end !important;
	}

	.align-self-xl-center {
		align-self: center !important;
	}

	.align-self-xl-baseline {
		align-self: baseline !important;
	}

	.align-self-xl-stretch {
		align-self: stretch !important;
	}
}

.overflow-auto {
	overflow: auto !important;
}

.overflow-hidden {
	overflow: hidden !important;
}

.overflow-visible {
	overflow: visible !important;
}

.position-static {
	position: static !important;
}

.position-relative {
	position: relative !important;
}

.position-absolute {
	position: absolute !important;
}

.position-fixed {
	position: fixed !important;
}

.position-sticky {
	position: sticky !important;
}

.fixed-top {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 1030;
}

.fixed-bottom {
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1030;
}

@supports (position: sticky) {
	.sticky-top {
		position: sticky;
		top: 0;
		z-index: 1020;
	}
}

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

.sr-only-focusable:active,
.sr-only-focusable:focus {
	position: static;
	width: auto;
	height: auto;
	overflow: visible;
	clip: auto;
	white-space: normal;
}

.w-25 {
	width: 25% !important;
}

.w-50 {
	width: 50% !important;
}

.w-75 {
	width: 75% !important;
}

.w-100 {
	width: 100% !important;
}

.w-auto {
	width: auto !important;
}

.h-25 {
	height: 25% !important;
}

.h-50 {
	height: 50% !important;
}

.h-75 {
	height: 75% !important;
}

.h-100 {
	height: 100% !important;
}

.h-auto {
	height: auto !important;
}

.mw-100 {
	max-width: 100% !important;
}

.mh-100 {
	max-height: 100% !important;
}

.min-vw-100 {
	min-width: 100vw !important;
}

.min-vh-100 {
	min-height: 100vh !important;
}

.vw-100 {
	width: 100vw !important;
}

.vh-100 {
	height: 100vh !important;
}

.m-0 {
	margin: 0 !important;
}

.mt-0,
.my-0 {
	margin-top: 0 !important;
}

.mr-0,
.mx-0 {
	margin-right: 0 !important;
}

.mb-0,
.my-0 {
	margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
	margin-left: 0 !important;
}

.m-1 {
	margin: 0.25rem !important;
}

.mt-1,
.my-1 {
	margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
	margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
	margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
	margin-left: 0.25rem !important;
}

.m-2 {
	margin: 0.5rem !important;
}

.mt-2,
.my-2 {
	margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
	margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
	margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
	margin-left: 0.5rem !important;
}

.m-3 {
	margin: 1rem !important;
}

.mt-3,
.my-3 {
	margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
	margin-right: 1rem !important;
}

.mb-3,
.my-3 {
	margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
	margin-left: 1rem !important;
}

.m-4 {
	margin: 1.5rem !important;
}

.mt-4,
.my-4 {
	margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
	margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
	margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
	margin-left: 1.5rem !important;
}

.m-5 {
	margin: 3rem !important;
}

.mt-5,
.my-5 {
	margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
	margin-right: 3rem !important;
}

.mb-5,
.my-5 {
	margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
	margin-left: 3rem !important;
}

.p-0 {
	padding: 0 !important;
}

.pt-0,
.py-0 {
	padding-top: 0 !important;
}

.pr-0,
.px-0 {
	padding-right: 0 !important;
}

.pb-0,
.py-0 {
	padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
	padding-left: 0 !important;
}

.p-1 {
	padding: 0.25rem !important;
}

.pt-1,
.py-1 {
	padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
	padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
	padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
	padding-left: 0.25rem !important;
}

.p-2 {
	padding: 0.5rem !important;
}

.pt-2,
.py-2 {
	padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
	padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
	padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
	padding-left: 0.5rem !important;
}

.p-3 {
	padding: 1rem !important;
}

.pt-3,
.py-3 {
	padding-top: 1rem !important;
}

.pr-3,
.px-3 {
	padding-right: 1rem !important;
}

.pb-3,
.py-3 {
	padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
	padding-left: 1rem !important;
}

.p-4 {
	padding: 1.5rem !important;
}

.pt-4,
.py-4 {
	padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
	padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
	padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
	padding-left: 1.5rem !important;
}

.p-5 {
	padding: 3rem !important;
}

.pt-5,
.py-5 {
	padding-top: 3rem !important;
}

.pr-5,
.px-5 {
	padding-right: 3rem !important;
}

.pb-5,
.py-5 {
	padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
	padding-left: 3rem !important;
}

.m-n1 {
	margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
	margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
	margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
	margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
	margin-left: -0.25rem !important;
}

.m-n2 {
	margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
	margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
	margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
	margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
	margin-left: -0.5rem !important;
}

.m-n3 {
	margin: -1rem !important;
}

.mt-n3,
.my-n3 {
	margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
	margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
	margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
	margin-left: -1rem !important;
}

.m-n4 {
	margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
	margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
	margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
	margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
	margin-left: -1.5rem !important;
}

.m-n5 {
	margin: -3rem !important;
}

.mt-n5,
.my-n5 {
	margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
	margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
	margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
	margin-left: -3rem !important;
}

.m-auto {
	margin: auto !important;
}

.mt-auto,
.my-auto {
	margin-top: auto !important;
}

.mr-auto,
.mx-auto {
	margin-right: auto !important;
}

.mb-auto,
.my-auto {
	margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
	margin-left: auto !important;
}

@media (min-width: 576px) {
	.m-sm-0 {
		margin: 0 !important;
	}

	.mt-sm-0,
	.my-sm-0 {
		margin-top: 0 !important;
	}

	.mr-sm-0,
	.mx-sm-0 {
		margin-right: 0 !important;
	}

	.mb-sm-0,
	.my-sm-0 {
		margin-bottom: 0 !important;
	}

	.ml-sm-0,
	.mx-sm-0 {
		margin-left: 0 !important;
	}

	.m-sm-1 {
		margin: 0.25rem !important;
	}

	.mt-sm-1,
	.my-sm-1 {
		margin-top: 0.25rem !important;
	}

	.mr-sm-1,
	.mx-sm-1 {
		margin-right: 0.25rem !important;
	}

	.mb-sm-1,
	.my-sm-1 {
		margin-bottom: 0.25rem !important;
	}

	.ml-sm-1,
	.mx-sm-1 {
		margin-left: 0.25rem !important;
	}

	.m-sm-2 {
		margin: 0.5rem !important;
	}

	.mt-sm-2,
	.my-sm-2 {
		margin-top: 0.5rem !important;
	}

	.mr-sm-2,
	.mx-sm-2 {
		margin-right: 0.5rem !important;
	}

	.mb-sm-2,
	.my-sm-2 {
		margin-bottom: 0.5rem !important;
	}

	.ml-sm-2,
	.mx-sm-2 {
		margin-left: 0.5rem !important;
	}

	.m-sm-3 {
		margin: 1rem !important;
	}

	.mt-sm-3,
	.my-sm-3 {
		margin-top: 1rem !important;
	}

	.mr-sm-3,
	.mx-sm-3 {
		margin-right: 1rem !important;
	}

	.mb-sm-3,
	.my-sm-3 {
		margin-bottom: 1rem !important;
	}

	.ml-sm-3,
	.mx-sm-3 {
		margin-left: 1rem !important;
	}

	.m-sm-4 {
		margin: 1.5rem !important;
	}

	.mt-sm-4,
	.my-sm-4 {
		margin-top: 1.5rem !important;
	}

	.mr-sm-4,
	.mx-sm-4 {
		margin-right: 1.5rem !important;
	}

	.mb-sm-4,
	.my-sm-4 {
		margin-bottom: 1.5rem !important;
	}

	.ml-sm-4,
	.mx-sm-4 {
		margin-left: 1.5rem !important;
	}

	.m-sm-5 {
		margin: 3rem !important;
	}

	.mt-sm-5,
	.my-sm-5 {
		margin-top: 3rem !important;
	}

	.mr-sm-5,
	.mx-sm-5 {
		margin-right: 3rem !important;
	}

	.mb-sm-5,
	.my-sm-5 {
		margin-bottom: 3rem !important;
	}

	.ml-sm-5,
	.mx-sm-5 {
		margin-left: 3rem !important;
	}

	.p-sm-0 {
		padding: 0 !important;
	}

	.pt-sm-0,
	.py-sm-0 {
		padding-top: 0 !important;
	}

	.pr-sm-0,
	.px-sm-0 {
		padding-right: 0 !important;
	}

	.pb-sm-0,
	.py-sm-0 {
		padding-bottom: 0 !important;
	}

	.pl-sm-0,
	.px-sm-0 {
		padding-left: 0 !important;
	}

	.p-sm-1 {
		padding: 0.25rem !important;
	}

	.pt-sm-1,
	.py-sm-1 {
		padding-top: 0.25rem !important;
	}

	.pr-sm-1,
	.px-sm-1 {
		padding-right: 0.25rem !important;
	}

	.pb-sm-1,
	.py-sm-1 {
		padding-bottom: 0.25rem !important;
	}

	.pl-sm-1,
	.px-sm-1 {
		padding-left: 0.25rem !important;
	}

	.p-sm-2 {
		padding: 0.5rem !important;
	}

	.pt-sm-2,
	.py-sm-2 {
		padding-top: 0.5rem !important;
	}

	.pr-sm-2,
	.px-sm-2 {
		padding-right: 0.5rem !important;
	}

	.pb-sm-2,
	.py-sm-2 {
		padding-bottom: 0.5rem !important;
	}

	.pl-sm-2,
	.px-sm-2 {
		padding-left: 0.5rem !important;
	}

	.p-sm-3 {
		padding: 1rem !important;
	}

	.pt-sm-3,
	.py-sm-3 {
		padding-top: 1rem !important;
	}

	.pr-sm-3,
	.px-sm-3 {
		padding-right: 1rem !important;
	}

	.pb-sm-3,
	.py-sm-3 {
		padding-bottom: 1rem !important;
	}

	.pl-sm-3,
	.px-sm-3 {
		padding-left: 1rem !important;
	}

	.p-sm-4 {
		padding: 1.5rem !important;
	}

	.pt-sm-4,
	.py-sm-4 {
		padding-top: 1.5rem !important;
	}

	.pr-sm-4,
	.px-sm-4 {
		padding-right: 1.5rem !important;
	}

	.pb-sm-4,
	.py-sm-4 {
		padding-bottom: 1.5rem !important;
	}

	.pl-sm-4,
	.px-sm-4 {
		padding-left: 1.5rem !important;
	}

	.p-sm-5 {
		padding: 3rem !important;
	}

	.pt-sm-5,
	.py-sm-5 {
		padding-top: 3rem !important;
	}

	.pr-sm-5,
	.px-sm-5 {
		padding-right: 3rem !important;
	}

	.pb-sm-5,
	.py-sm-5 {
		padding-bottom: 3rem !important;
	}

	.pl-sm-5,
	.px-sm-5 {
		padding-left: 3rem !important;
	}

	.m-sm-n1 {
		margin: -0.25rem !important;
	}

	.mt-sm-n1,
	.my-sm-n1 {
		margin-top: -0.25rem !important;
	}

	.mr-sm-n1,
	.mx-sm-n1 {
		margin-right: -0.25rem !important;
	}

	.mb-sm-n1,
	.my-sm-n1 {
		margin-bottom: -0.25rem !important;
	}

	.ml-sm-n1,
	.mx-sm-n1 {
		margin-left: -0.25rem !important;
	}

	.m-sm-n2 {
		margin: -0.5rem !important;
	}

	.mt-sm-n2,
	.my-sm-n2 {
		margin-top: -0.5rem !important;
	}

	.mr-sm-n2,
	.mx-sm-n2 {
		margin-right: -0.5rem !important;
	}

	.mb-sm-n2,
	.my-sm-n2 {
		margin-bottom: -0.5rem !important;
	}

	.ml-sm-n2,
	.mx-sm-n2 {
		margin-left: -0.5rem !important;
	}

	.m-sm-n3 {
		margin: -1rem !important;
	}

	.mt-sm-n3,
	.my-sm-n3 {
		margin-top: -1rem !important;
	}

	.mr-sm-n3,
	.mx-sm-n3 {
		margin-right: -1rem !important;
	}

	.mb-sm-n3,
	.my-sm-n3 {
		margin-bottom: -1rem !important;
	}

	.ml-sm-n3,
	.mx-sm-n3 {
		margin-left: -1rem !important;
	}

	.m-sm-n4 {
		margin: -1.5rem !important;
	}

	.mt-sm-n4,
	.my-sm-n4 {
		margin-top: -1.5rem !important;
	}

	.mr-sm-n4,
	.mx-sm-n4 {
		margin-right: -1.5rem !important;
	}

	.mb-sm-n4,
	.my-sm-n4 {
		margin-bottom: -1.5rem !important;
	}

	.ml-sm-n4,
	.mx-sm-n4 {
		margin-left: -1.5rem !important;
	}

	.m-sm-n5 {
		margin: -3rem !important;
	}

	.mt-sm-n5,
	.my-sm-n5 {
		margin-top: -3rem !important;
	}

	.mr-sm-n5,
	.mx-sm-n5 {
		margin-right: -3rem !important;
	}

	.mb-sm-n5,
	.my-sm-n5 {
		margin-bottom: -3rem !important;
	}

	.ml-sm-n5,
	.mx-sm-n5 {
		margin-left: -3rem !important;
	}

	.m-sm-auto {
		margin: auto !important;
	}

	.mt-sm-auto,
	.my-sm-auto {
		margin-top: auto !important;
	}

	.mr-sm-auto,
	.mx-sm-auto {
		margin-right: auto !important;
	}

	.mb-sm-auto,
	.my-sm-auto {
		margin-bottom: auto !important;
	}

	.ml-sm-auto,
	.mx-sm-auto {
		margin-left: auto !important;
	}
}

@media (min-width: 768px) {
	.m-md-0 {
		margin: 0 !important;
	}

	.mt-md-0,
	.my-md-0 {
		margin-top: 0 !important;
	}

	.mr-md-0,
	.mx-md-0 {
		margin-right: 0 !important;
	}

	.mb-md-0,
	.my-md-0 {
		margin-bottom: 0 !important;
	}

	.ml-md-0,
	.mx-md-0 {
		margin-left: 0 !important;
	}

	.m-md-1 {
		margin: 0.25rem !important;
	}

	.mt-md-1,
	.my-md-1 {
		margin-top: 0.25rem !important;
	}

	.mr-md-1,
	.mx-md-1 {
		margin-right: 0.25rem !important;
	}

	.mb-md-1,
	.my-md-1 {
		margin-bottom: 0.25rem !important;
	}

	.ml-md-1,
	.mx-md-1 {
		margin-left: 0.25rem !important;
	}

	.m-md-2 {
		margin: 0.5rem !important;
	}

	.mt-md-2,
	.my-md-2 {
		margin-top: 0.5rem !important;
	}

	.mr-md-2,
	.mx-md-2 {
		margin-right: 0.5rem !important;
	}

	.mb-md-2,
	.my-md-2 {
		margin-bottom: 0.5rem !important;
	}

	.ml-md-2,
	.mx-md-2 {
		margin-left: 0.5rem !important;
	}

	.m-md-3 {
		margin: 1rem !important;
	}

	.mt-md-3,
	.my-md-3 {
		margin-top: 1rem !important;
	}

	.mr-md-3,
	.mx-md-3 {
		margin-right: 1rem !important;
	}

	.mb-md-3,
	.my-md-3 {
		margin-bottom: 1rem !important;
	}

	.ml-md-3,
	.mx-md-3 {
		margin-left: 1rem !important;
	}

	.m-md-4 {
		margin: 1.5rem !important;
	}

	.mt-md-4,
	.my-md-4 {
		margin-top: 1.5rem !important;
	}

	.mr-md-4,
	.mx-md-4 {
		margin-right: 1.5rem !important;
	}

	.mb-md-4,
	.my-md-4 {
		margin-bottom: 1.5rem !important;
	}

	.ml-md-4,
	.mx-md-4 {
		margin-left: 1.5rem !important;
	}

	.m-md-5 {
		margin: 3rem !important;
	}

	.mt-md-5,
	.my-md-5 {
		margin-top: 3rem !important;
	}

	.mr-md-5,
	.mx-md-5 {
		margin-right: 3rem !important;
	}

	.mb-md-5,
	.my-md-5 {
		margin-bottom: 3rem !important;
	}

	.ml-md-5,
	.mx-md-5 {
		margin-left: 3rem !important;
	}

	.p-md-0 {
		padding: 0 !important;
	}

	.pt-md-0,
	.py-md-0 {
		padding-top: 0 !important;
	}

	.pr-md-0,
	.px-md-0 {
		padding-right: 0 !important;
	}

	.pb-md-0,
	.py-md-0 {
		padding-bottom: 0 !important;
	}

	.pl-md-0,
	.px-md-0 {
		padding-left: 0 !important;
	}

	.p-md-1 {
		padding: 0.25rem !important;
	}

	.pt-md-1,
	.py-md-1 {
		padding-top: 0.25rem !important;
	}

	.pr-md-1,
	.px-md-1 {
		padding-right: 0.25rem !important;
	}

	.pb-md-1,
	.py-md-1 {
		padding-bottom: 0.25rem !important;
	}

	.pl-md-1,
	.px-md-1 {
		padding-left: 0.25rem !important;
	}

	.p-md-2 {
		padding: 0.5rem !important;
	}

	.pt-md-2,
	.py-md-2 {
		padding-top: 0.5rem !important;
	}

	.pr-md-2,
	.px-md-2 {
		padding-right: 0.5rem !important;
	}

	.pb-md-2,
	.py-md-2 {
		padding-bottom: 0.5rem !important;
	}

	.pl-md-2,
	.px-md-2 {
		padding-left: 0.5rem !important;
	}

	.p-md-3 {
		padding: 1rem !important;
	}

	.pt-md-3,
	.py-md-3 {
		padding-top: 1rem !important;
	}

	.pr-md-3,
	.px-md-3 {
		padding-right: 1rem !important;
	}

	.pb-md-3,
	.py-md-3 {
		padding-bottom: 1rem !important;
	}

	.pl-md-3,
	.px-md-3 {
		padding-left: 1rem !important;
	}

	.p-md-4 {
		padding: 1.5rem !important;
	}

	.pt-md-4,
	.py-md-4 {
		padding-top: 1.5rem !important;
	}

	.pr-md-4,
	.px-md-4 {
		padding-right: 1.5rem !important;
	}

	.pb-md-4,
	.py-md-4 {
		padding-bottom: 1.5rem !important;
	}

	.pl-md-4,
	.px-md-4 {
		padding-left: 1.5rem !important;
	}

	.p-md-5 {
		padding: 3rem !important;
	}

	.pt-md-5,
	.py-md-5 {
		padding-top: 3rem !important;
	}

	.pr-md-5,
	.px-md-5 {
		padding-right: 3rem !important;
	}

	.pb-md-5,
	.py-md-5 {
		padding-bottom: 3rem !important;
	}

	.pl-md-5,
	.px-md-5 {
		padding-left: 3rem !important;
	}

	.m-md-n1 {
		margin: -0.25rem !important;
	}

	.mt-md-n1,
	.my-md-n1 {
		margin-top: -0.25rem !important;
	}

	.mr-md-n1,
	.mx-md-n1 {
		margin-right: -0.25rem !important;
	}

	.mb-md-n1,
	.my-md-n1 {
		margin-bottom: -0.25rem !important;
	}

	.ml-md-n1,
	.mx-md-n1 {
		margin-left: -0.25rem !important;
	}

	.m-md-n2 {
		margin: -0.5rem !important;
	}

	.mt-md-n2,
	.my-md-n2 {
		margin-top: -0.5rem !important;
	}

	.mr-md-n2,
	.mx-md-n2 {
		margin-right: -0.5rem !important;
	}

	.mb-md-n2,
	.my-md-n2 {
		margin-bottom: -0.5rem !important;
	}

	.ml-md-n2,
	.mx-md-n2 {
		margin-left: -0.5rem !important;
	}

	.m-md-n3 {
		margin: -1rem !important;
	}

	.mt-md-n3,
	.my-md-n3 {
		margin-top: -1rem !important;
	}

	.mr-md-n3,
	.mx-md-n3 {
		margin-right: -1rem !important;
	}

	.mb-md-n3,
	.my-md-n3 {
		margin-bottom: -1rem !important;
	}

	.ml-md-n3,
	.mx-md-n3 {
		margin-left: -1rem !important;
	}

	.m-md-n4 {
		margin: -1.5rem !important;
	}

	.mt-md-n4,
	.my-md-n4 {
		margin-top: -1.5rem !important;
	}

	.mr-md-n4,
	.mx-md-n4 {
		margin-right: -1.5rem !important;
	}

	.mb-md-n4,
	.my-md-n4 {
		margin-bottom: -1.5rem !important;
	}

	.ml-md-n4,
	.mx-md-n4 {
		margin-left: -1.5rem !important;
	}

	.m-md-n5 {
		margin: -3rem !important;
	}

	.mt-md-n5,
	.my-md-n5 {
		margin-top: -3rem !important;
	}

	.mr-md-n5,
	.mx-md-n5 {
		margin-right: -3rem !important;
	}

	.mb-md-n5,
	.my-md-n5 {
		margin-bottom: -3rem !important;
	}

	.ml-md-n5,
	.mx-md-n5 {
		margin-left: -3rem !important;
	}

	.m-md-auto {
		margin: auto !important;
	}

	.mt-md-auto,
	.my-md-auto {
		margin-top: auto !important;
	}

	.mr-md-auto,
	.mx-md-auto {
		margin-right: auto !important;
	}

	.mb-md-auto,
	.my-md-auto {
		margin-bottom: auto !important;
	}

	.ml-md-auto,
	.mx-md-auto {
		margin-left: auto !important;
	}
}

@media (min-width: 992px) {
	.m-lg-0 {
		margin: 0 !important;
	}

	.mt-lg-0,
	.my-lg-0 {
		margin-top: 0 !important;
	}

	.mr-lg-0,
	.mx-lg-0 {
		margin-right: 0 !important;
	}

	.mb-lg-0,
	.my-lg-0 {
		margin-bottom: 0 !important;
	}

	.ml-lg-0,
	.mx-lg-0 {
		margin-left: 0 !important;
	}

	.m-lg-1 {
		margin: 0.25rem !important;
	}

	.mt-lg-1,
	.my-lg-1 {
		margin-top: 0.25rem !important;
	}

	.mr-lg-1,
	.mx-lg-1 {
		margin-right: 0.25rem !important;
	}

	.mb-lg-1,
	.my-lg-1 {
		margin-bottom: 0.25rem !important;
	}

	.ml-lg-1,
	.mx-lg-1 {
		margin-left: 0.25rem !important;
	}

	.m-lg-2 {
		margin: 0.5rem !important;
	}

	.mt-lg-2,
	.my-lg-2 {
		margin-top: 0.5rem !important;
	}

	.mr-lg-2,
	.mx-lg-2 {
		margin-right: 0.5rem !important;
	}

	.mb-lg-2,
	.my-lg-2 {
		margin-bottom: 0.5rem !important;
	}

	.ml-lg-2,
	.mx-lg-2 {
		margin-left: 0.5rem !important;
	}

	.m-lg-3 {
		margin: 1rem !important;
	}

	.mt-lg-3,
	.my-lg-3 {
		margin-top: 1rem !important;
	}

	.mr-lg-3,
	.mx-lg-3 {
		margin-right: 1rem !important;
	}

	.mb-lg-3,
	.my-lg-3 {
		margin-bottom: 1rem !important;
	}

	.ml-lg-3,
	.mx-lg-3 {
		margin-left: 1rem !important;
	}

	.m-lg-4 {
		margin: 1.5rem !important;
	}

	.mt-lg-4,
	.my-lg-4 {
		margin-top: 1.5rem !important;
	}

	.mr-lg-4,
	.mx-lg-4 {
		margin-right: 1.5rem !important;
	}

	.mb-lg-4,
	.my-lg-4 {
		margin-bottom: 1.5rem !important;
	}

	.ml-lg-4,
	.mx-lg-4 {
		margin-left: 1.5rem !important;
	}

	.m-lg-5 {
		margin: 3rem !important;
	}

	.mt-lg-5,
	.my-lg-5 {
		margin-top: 3rem !important;
	}

	.mr-lg-5,
	.mx-lg-5 {
		margin-right: 3rem !important;
	}

	.mb-lg-5,
	.my-lg-5 {
		margin-bottom: 3rem !important;
	}

	.ml-lg-5,
	.mx-lg-5 {
		margin-left: 3rem !important;
	}

	.p-lg-0 {
		padding: 0 !important;
	}

	.pt-lg-0,
	.py-lg-0 {
		padding-top: 0 !important;
	}

	.pr-lg-0,
	.px-lg-0 {
		padding-right: 0 !important;
	}

	.pb-lg-0,
	.py-lg-0 {
		padding-bottom: 0 !important;
	}

	.pl-lg-0,
	.px-lg-0 {
		padding-left: 0 !important;
	}

	.p-lg-1 {
		padding: 0.25rem !important;
	}

	.pt-lg-1,
	.py-lg-1 {
		padding-top: 0.25rem !important;
	}

	.pr-lg-1,
	.px-lg-1 {
		padding-right: 0.25rem !important;
	}

	.pb-lg-1,
	.py-lg-1 {
		padding-bottom: 0.25rem !important;
	}

	.pl-lg-1,
	.px-lg-1 {
		padding-left: 0.25rem !important;
	}

	.p-lg-2 {
		padding: 0.5rem !important;
	}

	.pt-lg-2,
	.py-lg-2 {
		padding-top: 0.5rem !important;
	}

	.pr-lg-2,
	.px-lg-2 {
		padding-right: 0.5rem !important;
	}

	.pb-lg-2,
	.py-lg-2 {
		padding-bottom: 0.5rem !important;
	}

	.pl-lg-2,
	.px-lg-2 {
		padding-left: 0.5rem !important;
	}

	.p-lg-3 {
		padding: 1rem !important;
	}

	.pt-lg-3,
	.py-lg-3 {
		padding-top: 1rem !important;
	}

	.pr-lg-3,
	.px-lg-3 {
		padding-right: 1rem !important;
	}

	.pb-lg-3,
	.py-lg-3 {
		padding-bottom: 1rem !important;
	}

	.pl-lg-3,
	.px-lg-3 {
		padding-left: 1rem !important;
	}

	.p-lg-4 {
		padding: 1.5rem !important;
	}

	.pt-lg-4,
	.py-lg-4 {
		padding-top: 1.5rem !important;
	}

	.pr-lg-4,
	.px-lg-4 {
		padding-right: 1.5rem !important;
	}

	.pb-lg-4,
	.py-lg-4 {
		padding-bottom: 1.5rem !important;
	}

	.pl-lg-4,
	.px-lg-4 {
		padding-left: 1.5rem !important;
	}

	.p-lg-5 {
		padding: 3rem !important;
	}

	.pt-lg-5,
	.py-lg-5 {
		padding-top: 3rem !important;
	}

	.pr-lg-5,
	.px-lg-5 {
		padding-right: 3rem !important;
	}

	.pb-lg-5,
	.py-lg-5 {
		padding-bottom: 3rem !important;
	}

	.pl-lg-5,
	.px-lg-5 {
		padding-left: 3rem !important;
	}

	.m-lg-n1 {
		margin: -0.25rem !important;
	}

	.mt-lg-n1,
	.my-lg-n1 {
		margin-top: -0.25rem !important;
	}

	.mr-lg-n1,
	.mx-lg-n1 {
		margin-right: -0.25rem !important;
	}

	.mb-lg-n1,
	.my-lg-n1 {
		margin-bottom: -0.25rem !important;
	}

	.ml-lg-n1,
	.mx-lg-n1 {
		margin-left: -0.25rem !important;
	}

	.m-lg-n2 {
		margin: -0.5rem !important;
	}

	.mt-lg-n2,
	.my-lg-n2 {
		margin-top: -0.5rem !important;
	}

	.mr-lg-n2,
	.mx-lg-n2 {
		margin-right: -0.5rem !important;
	}

	.mb-lg-n2,
	.my-lg-n2 {
		margin-bottom: -0.5rem !important;
	}

	.ml-lg-n2,
	.mx-lg-n2 {
		margin-left: -0.5rem !important;
	}

	.m-lg-n3 {
		margin: -1rem !important;
	}

	.mt-lg-n3,
	.my-lg-n3 {
		margin-top: -1rem !important;
	}

	.mr-lg-n3,
	.mx-lg-n3 {
		margin-right: -1rem !important;
	}

	.mb-lg-n3,
	.my-lg-n3 {
		margin-bottom: -1rem !important;
	}

	.ml-lg-n3,
	.mx-lg-n3 {
		margin-left: -1rem !important;
	}

	.m-lg-n4 {
		margin: -1.5rem !important;
	}

	.mt-lg-n4,
	.my-lg-n4 {
		margin-top: -1.5rem !important;
	}

	.mr-lg-n4,
	.mx-lg-n4 {
		margin-right: -1.5rem !important;
	}

	.mb-lg-n4,
	.my-lg-n4 {
		margin-bottom: -1.5rem !important;
	}

	.ml-lg-n4,
	.mx-lg-n4 {
		margin-left: -1.5rem !important;
	}

	.m-lg-n5 {
		margin: -3rem !important;
	}

	.mt-lg-n5,
	.my-lg-n5 {
		margin-top: -3rem !important;
	}

	.mr-lg-n5,
	.mx-lg-n5 {
		margin-right: -3rem !important;
	}

	.mb-lg-n5,
	.my-lg-n5 {
		margin-bottom: -3rem !important;
	}

	.ml-lg-n5,
	.mx-lg-n5 {
		margin-left: -3rem !important;
	}

	.m-lg-auto {
		margin: auto !important;
	}

	.mt-lg-auto,
	.my-lg-auto {
		margin-top: auto !important;
	}

	.mr-lg-auto,
	.mx-lg-auto {
		margin-right: auto !important;
	}

	.mb-lg-auto,
	.my-lg-auto {
		margin-bottom: auto !important;
	}

	.ml-lg-auto,
	.mx-lg-auto {
		margin-left: auto !important;
	}
}

@media (min-width: 1200px) {
	.m-xl-0 {
		margin: 0 !important;
	}

	.mt-xl-0,
	.my-xl-0 {
		margin-top: 0 !important;
	}

	.mr-xl-0,
	.mx-xl-0 {
		margin-right: 0 !important;
	}

	.mb-xl-0,
	.my-xl-0 {
		margin-bottom: 0 !important;
	}

	.ml-xl-0,
	.mx-xl-0 {
		margin-left: 0 !important;
	}

	.m-xl-1 {
		margin: 0.25rem !important;
	}

	.mt-xl-1,
	.my-xl-1 {
		margin-top: 0.25rem !important;
	}

	.mr-xl-1,
	.mx-xl-1 {
		margin-right: 0.25rem !important;
	}

	.mb-xl-1,
	.my-xl-1 {
		margin-bottom: 0.25rem !important;
	}

	.ml-xl-1,
	.mx-xl-1 {
		margin-left: 0.25rem !important;
	}

	.m-xl-2 {
		margin: 0.5rem !important;
	}

	.mt-xl-2,
	.my-xl-2 {
		margin-top: 0.5rem !important;
	}

	.mr-xl-2,
	.mx-xl-2 {
		margin-right: 0.5rem !important;
	}

	.mb-xl-2,
	.my-xl-2 {
		margin-bottom: 0.5rem !important;
	}

	.ml-xl-2,
	.mx-xl-2 {
		margin-left: 0.5rem !important;
	}

	.m-xl-3 {
		margin: 1rem !important;
	}

	.mt-xl-3,
	.my-xl-3 {
		margin-top: 1rem !important;
	}

	.mr-xl-3,
	.mx-xl-3 {
		margin-right: 1rem !important;
	}

	.mb-xl-3,
	.my-xl-3 {
		margin-bottom: 1rem !important;
	}

	.ml-xl-3,
	.mx-xl-3 {
		margin-left: 1rem !important;
	}

	.m-xl-4 {
		margin: 1.5rem !important;
	}

	.mt-xl-4,
	.my-xl-4 {
		margin-top: 1.5rem !important;
	}

	.mr-xl-4,
	.mx-xl-4 {
		margin-right: 1.5rem !important;
	}

	.mb-xl-4,
	.my-xl-4 {
		margin-bottom: 1.5rem !important;
	}

	.ml-xl-4,
	.mx-xl-4 {
		margin-left: 1.5rem !important;
	}

	.m-xl-5 {
		margin: 3rem !important;
	}

	.mt-xl-5,
	.my-xl-5 {
		margin-top: 3rem !important;
	}

	.mr-xl-5,
	.mx-xl-5 {
		margin-right: 3rem !important;
	}

	.mb-xl-5,
	.my-xl-5 {
		margin-bottom: 3rem !important;
	}

	.ml-xl-5,
	.mx-xl-5 {
		margin-left: 3rem !important;
	}

	.p-xl-0 {
		padding: 0 !important;
	}

	.pt-xl-0,
	.py-xl-0 {
		padding-top: 0 !important;
	}

	.pr-xl-0,
	.px-xl-0 {
		padding-right: 0 !important;
	}

	.pb-xl-0,
	.py-xl-0 {
		padding-bottom: 0 !important;
	}

	.pl-xl-0,
	.px-xl-0 {
		padding-left: 0 !important;
	}

	.p-xl-1 {
		padding: 0.25rem !important;
	}

	.pt-xl-1,
	.py-xl-1 {
		padding-top: 0.25rem !important;
	}

	.pr-xl-1,
	.px-xl-1 {
		padding-right: 0.25rem !important;
	}

	.pb-xl-1,
	.py-xl-1 {
		padding-bottom: 0.25rem !important;
	}

	.pl-xl-1,
	.px-xl-1 {
		padding-left: 0.25rem !important;
	}

	.p-xl-2 {
		padding: 0.5rem !important;
	}

	.pt-xl-2,
	.py-xl-2 {
		padding-top: 0.5rem !important;
	}

	.pr-xl-2,
	.px-xl-2 {
		padding-right: 0.5rem !important;
	}

	.pb-xl-2,
	.py-xl-2 {
		padding-bottom: 0.5rem !important;
	}

	.pl-xl-2,
	.px-xl-2 {
		padding-left: 0.5rem !important;
	}

	.p-xl-3 {
		padding: 1rem !important;
	}

	.pt-xl-3,
	.py-xl-3 {
		padding-top: 1rem !important;
	}

	.pr-xl-3,
	.px-xl-3 {
		padding-right: 1rem !important;
	}

	.pb-xl-3,
	.py-xl-3 {
		padding-bottom: 1rem !important;
	}

	.pl-xl-3,
	.px-xl-3 {
		padding-left: 1rem !important;
	}

	.p-xl-4 {
		padding: 1.5rem !important;
	}

	.pt-xl-4,
	.py-xl-4 {
		padding-top: 1.5rem !important;
	}

	.pr-xl-4,
	.px-xl-4 {
		padding-right: 1.5rem !important;
	}

	.pb-xl-4,
	.py-xl-4 {
		padding-bottom: 1.5rem !important;
	}

	.pl-xl-4,
	.px-xl-4 {
		padding-left: 1.5rem !important;
	}

	.p-xl-5 {
		padding: 3rem !important;
	}

	.pt-xl-5,
	.py-xl-5 {
		padding-top: 3rem !important;
	}

	.pr-xl-5,
	.px-xl-5 {
		padding-right: 3rem !important;
	}

	.pb-xl-5,
	.py-xl-5 {
		padding-bottom: 3rem !important;
	}

	.pl-xl-5,
	.px-xl-5 {
		padding-left: 3rem !important;
	}

	.m-xl-n1 {
		margin: -0.25rem !important;
	}

	.mt-xl-n1,
	.my-xl-n1 {
		margin-top: -0.25rem !important;
	}

	.mr-xl-n1,
	.mx-xl-n1 {
		margin-right: -0.25rem !important;
	}

	.mb-xl-n1,
	.my-xl-n1 {
		margin-bottom: -0.25rem !important;
	}

	.ml-xl-n1,
	.mx-xl-n1 {
		margin-left: -0.25rem !important;
	}

	.m-xl-n2 {
		margin: -0.5rem !important;
	}

	.mt-xl-n2,
	.my-xl-n2 {
		margin-top: -0.5rem !important;
	}

	.mr-xl-n2,
	.mx-xl-n2 {
		margin-right: -0.5rem !important;
	}

	.mb-xl-n2,
	.my-xl-n2 {
		margin-bottom: -0.5rem !important;
	}

	.ml-xl-n2,
	.mx-xl-n2 {
		margin-left: -0.5rem !important;
	}

	.m-xl-n3 {
		margin: -1rem !important;
	}

	.mt-xl-n3,
	.my-xl-n3 {
		margin-top: -1rem !important;
	}

	.mr-xl-n3,
	.mx-xl-n3 {
		margin-right: -1rem !important;
	}

	.mb-xl-n3,
	.my-xl-n3 {
		margin-bottom: -1rem !important;
	}

	.ml-xl-n3,
	.mx-xl-n3 {
		margin-left: -1rem !important;
	}

	.m-xl-n4 {
		margin: -1.5rem !important;
	}

	.mt-xl-n4,
	.my-xl-n4 {
		margin-top: -1.5rem !important;
	}

	.mr-xl-n4,
	.mx-xl-n4 {
		margin-right: -1.5rem !important;
	}

	.mb-xl-n4,
	.my-xl-n4 {
		margin-bottom: -1.5rem !important;
	}

	.ml-xl-n4,
	.mx-xl-n4 {
		margin-left: -1.5rem !important;
	}

	.m-xl-n5 {
		margin: -3rem !important;
	}

	.mt-xl-n5,
	.my-xl-n5 {
		margin-top: -3rem !important;
	}

	.mr-xl-n5,
	.mx-xl-n5 {
		margin-right: -3rem !important;
	}

	.mb-xl-n5,
	.my-xl-n5 {
		margin-bottom: -3rem !important;
	}

	.ml-xl-n5,
	.mx-xl-n5 {
		margin-left: -3rem !important;
	}

	.m-xl-auto {
		margin: auto !important;
	}

	.mt-xl-auto,
	.my-xl-auto {
		margin-top: auto !important;
	}

	.mr-xl-auto,
	.mx-xl-auto {
		margin-right: auto !important;
	}

	.mb-xl-auto,
	.my-xl-auto {
		margin-bottom: auto !important;
	}

	.ml-xl-auto,
	.mx-xl-auto {
		margin-left: auto !important;
	}
}

.text-monospace {
	font-family: SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace !important;
}

.unstyle-list,
.unstyle-list ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.unstyle-list li,
.unstyle-list ul li {
	margin-bottom: 0.5rem;
}

.text-justify {
	text-align: justify !important;
}

.text-wrap {
	white-space: normal !important;
}

.text-nowrap {
	white-space: nowrap !important;
}

.text-truncate {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.text-left {
	text-align: left !important;
}

.text-right {
	text-align: right !important;
}

.text-center {
	text-align: center !important;
}

.text-left .cta-group {
	justify-content: flex-start !important
}

.text-right .cta-group {
	justify-content: flex-end !important
}

.text-center .cta-group {
	justify-content: center !important
}

@media (min-width: 576px) {
	.text-sm-left {
		text-align: left !important;
	}

	.text-sm-right {
		text-align: right !important;
	}

	.text-sm-center {
		text-align: center !important;
	}

	.text-sm-left .cta-group {
		justify-content: flex-start !important
	}

	.text-sm-right .cta-group {
		justify-content: flex-end !important
	}

	.text-sm-center .cta-group {
		justify-content: center !important
	}
}

@media (min-width: 768px) {
	.text-md-left {
		text-align: left !important;
	}

	.text-md-right {
		text-align: right !important;
	}

	.text-md-center {
		text-align: center !important;
	}

	.text-md-left .cta-group {
		justify-content: flex-start !important
	}

	.text-md-right .cta-group {
		justify-content: flex-end !important
	}

	.text-md-center .cta-group {
		justify-content: center !important
	}
}

@media (min-width: 992px) {
	.text-lg-left {
		text-align: left !important;
	}

	.text-lg-right {
		text-align: right !important;
	}

	.text-lg-center {
		text-align: center !important;
	}

	.text-lg-left .cta-group {
		justify-content: flex-start !important
	}

	.text-lg-right .cta-group {
		justify-content: flex-end !important
	}

	.text-lg-center .cta-group {
		justify-content: center !important
	}
}

@media (min-width: 1200px) {
	.text-xl-left {
		text-align: left !important;
	}

	.text-xl-right {
		text-align: right !important;
	}

	.text-xl-center {
		text-align: center !important;
	}

	.text-xl-left .cta-group {
		justify-content: flex-start !important
	}

	.text-xl-right .cta-group {
		justify-content: flex-end !important
	}

	.text-xl-center .cta-group {
		justify-content: center !important
	}
}

.text-lowercase {
	text-transform: lowercase !important;
}

.text-uppercase {
	text-transform: uppercase !important;
}

.text-capitalize {
	text-transform: capitalize !important;
}

.font-weight-light {
	font-weight: 300 !important;
}

.font-weight-lighter {
	font-weight: lighter !important;
}

.font-weight-normal {
	font-weight: 400 !important;
}

.font-weight-bold {
	font-weight: 700 !important;
}

.font-weight-bolder {
	font-weight: bolder !important;
}

.font-italic {
	font-style: italic !important;
}

.text-decoration-none {
	text-decoration: none !important;
}

.text-break {
	word-break: break-word !important;
	word-wrap: break-word !important;
}

.text-reset {
	color: inherit !important;
}

.visible {
	visibility: visible !important;
}

.invisible {
	visibility: hidden !important;
}

@media print {

	*,
	*::before,
	*::after {
		text-shadow: none !important;
		box-shadow: none !important;
	}

	a:not(.btn) {
		text-decoration: underline;
	}

	abbr[title]::after {
		content: ' (' attr(title) ')';
	}

	pre {
		white-space: pre-wrap !important;
	}

	pre,
	blockquote {
		border: 1px solid #adb5bd;
		page-break-inside: avoid;
	}

	tr,
	img {
		page-break-inside: avoid;
	}

	p,
	h2,
	h3 {
		orphans: 3;
		widows: 3;
	}

	h2,
	h3 {
		page-break-after: avoid;
	}

	body {
		min-width: 992px !important;
	}

	.container {
		min-width: 992px !important;
	}

	.navbar {
		display: none;
	}

	.badge {
		border: 1px solid #000;
	}

	.table {
		border-collapse: collapse !important;
	}

	.table td,
	.table th {
		background-color: #fff !important;
	}
}

.block {
	display: table;
}

.circle {
	border-radius: 100%;
}

.divider {
	display: block;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	padding: 0 0 13px 0;
	margin: 0 0 40px;
}

.text-center-mobile {
	text-align: center;
}

.max-responsive {
	max-width: 100%;
	height: auto !important;
}

.antialiased {
	-webkit-font-smoothing: antialiased;
}

.shadow {
	-webkit-box-shadow: 15px 25px 60px 0px rgba(0, 0, 0, 0.10);
    box-shadow: 15px 25px 60px 0px rgba(0, 0, 0, 0.10);
}

.currentColor,
.currentColor svg,
.currentColor svg * {
	fill: currentColor;
}

.strikeout {
	text-decoration: line-through !important;
}

.height-auto     { min-height: 0vh; }
.height-small    { padding: 8rem 0; }
.height-medium   { padding: 14rem 0; }
.height-large    { padding: 20rem 0; }
.height-full     { min-height: 100vh; }
}

/* Custom styles */
@layer custom-styles {
      /* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.custom-system-page .no-list {
    list-style: none;
    padding-left: 10px;
}
   /* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.text-left{text-align:left}
.text-center{text-align:center}
.text-right{text-align:right}


.mx-10{margin-left:-10px; margin-right:-10px;}
.mx-15{margin-left:-15px; margin-right:-15px}
.mx-20{margin-left:-20px; margin-right:-20px}




.justify-flex-start{ justify-content: flex-start; }
.justify-center{ justify-content: center; }
.justify-flex-end{ justify-content: flex-end; }
.justify-space-between{ justify-content: space-between; }
.justify-space-around{ justify-content: space-around; }
.justify-space-evenly{ justify-content: space-evenly; }

.align-flex-start{ align-items: flex-start; }
.align-center{ align-items: center; }
.align-baseline{ align-items: baseline; }
.align-flex-end{ align-items: flex-end; }

.direction-column{ flex-direction: column; }
.direction-column-reverse{ flex-direction: column-reverse; }
.direction-revert{ flex-direction: revert; }
.direction-row{ flex-direction: row; }
.direction-row-reverse{ flex-direction: row-reverse; }



.pt0,.py0{padding-top:0px;}
.pt5,.py5{padding-top:5px;}
.pt10,.py10{padding-top:10px;}
.pt15,.py15{padding-top:15px;}
.pt20,.py20{padding-top:20px;}
.pt25,.py25{padding-top:25px;}
.pt30,.py30{padding-top:30px;}
.pt35,.py35{padding-top:35px;}
.pt40,.py40{padding-top:40px;}
.pt45,.py45{padding-top:45px;}
.pt50,.py50{padding-top:50px;}
.pt55,.py55{padding-top:55px;}
.pt60,.py60{padding-top:60px;}
.pt65,.py65{padding-top:65px;}
.pt70,.py70{padding-top:70px;}
.pt75,.py75{padding-top:75px;}
.pt80,.py80{padding-top:80px;}
.pt85,.py85{padding-top:85px;}
.pt90,.py90{padding-top:90px;}
.pt95,.py95{padding-top:95px;}
.pt100,.py100{padding-top:100px;}
.pt105,.py105{padding-top:105px;}
.pt110,.py110{padding-top:110px;}
.pt115,.py115{padding-top:115px;}
.pt120,.py120{padding-top:120px;}
.pt125,.py125{padding-top:125px;}
.pt130,.py130{padding-top:130px;}
.pt135,.py135{padding-top:135px;}
.pt140,.py140{padding-top:140px;}
.pt145,.py145{padding-top:145px;}
.pt150,.py150{padding-top:150px;}
.pt155,.py155{padding-top:155px;}
.pt160,.py160{padding-top:160px;}
.pt165,.py165{padding-top:165px;}
.pt170,.py170{padding-top:170px;}
.pt175,.py175{padding-top:175px;}
.pt180,.py180{padding-top:180px;}
.pt185,.py185{padding-top:185px;}
.pt190,.py190{padding-top:190px;}
.pt195,.py195{padding-top:195px;}
.pt200,.py200{padding-top:200px;}

.pb0,.py0{padding-bottom:0px;}
.pb5,.py5{padding-bottom:5px;}
.pb10,.py10{padding-bottom:10px;}
.pb15,.py15{padding-bottom:15px;}
.pb20,.py20{padding-bottom:20px;}
.pb25,.py25{padding-bottom:25px;}
.pb30,.py30{padding-bottom:30px;}
.pb35,.py35{padding-bottom:35px;}
.pb40,.py40{padding-bottom:40px;}
.pb45,.py45{padding-bottom:45px;}
.pb50,.py50{padding-bottom:50px;}
.pb55,.py55{padding-bottom:55px;}
.pb60,.py60{padding-bottom:60px;}
.pb65,.py65{padding-bottom:65px;}
.pb70,.py70{padding-bottom:70px;}
.pb75,.py75{padding-bottom:75px;}
.pb80,.py80{padding-bottom:80px;}
.pb85,.py85{padding-bottom:85px;}
.pb90,.py90{padding-bottom:90px;}
.pb95,.py95{padding-bottom:95px;}
.pb100,.py100{padding-bottom:100px;}
.pb105,.py105{padding-bottom:105px;}
.pb110,.py110{padding-bottom:110px;}
.pb115,.py115{padding-bottom:115px;}
.pb120,.py120{padding-bottom:120px;}
.pb125,.py125{padding-bottom:125px;}
.pb130,.py130{padding-bottom:130px;}
.pb135,.py135{padding-bottom:135px;}
.pb140,.py140{padding-bottom:140px;}
.pb145,.py145{padding-bottom:145px;}
.pb150,.py150{padding-bottom:150px;}
.pb155,.py155{padding-bottom:155px;}
.pb160,.py160{padding-bottom:160px;}
.pb165,.py165{padding-bottom:165px;}
.pb170,.py170{padding-bottom:170px;}
.pb175,.py175{padding-bottom:175px;}
.pb180,.py180{padding-bottom:180px;}
.pb185,.py185{padding-bottom:185px;}
.pb190,.py190{padding-bottom:190px;}
.pb195,.py195{padding-bottom:195px;}
.pb200,.py200{padding-bottom:200px;}

.pl5,.px5{padding-left:5px;}
.pl10,.px10{padding-left:10px;}
.pl15,.px15{padding-left:15px;}
.pl20,.px20{padding-left:20px;}

.pr5,.px5{padding-right:5px;}
.pr10,.px10{padding-right:10px;}
.pr15,.px15{padding-right:15px;}
.pr20,.px20{padding-right:20px;}


.positionRelative{position:relative;}


/****** min-width-578 ******/
@media(min-width:578px){


  .justify-sm-flex-start{ justify-content: flex-start; }
  .justify-sm-center{ justify-content: center; }
  .justify-sm-flex-end{ justify-content: flex-end; }
  .justify-sm-space-between{ justify-content: space-between; }
  .justify-sm-space-around{ justify-content: space-around; }
  .justify-sm-space-evenly{ justify-content: space-evenly; }

  .align-sm-flex-start{ align-items: flex-start; }
  .align-sm-center{ align-items: center; }
  .align-sm-baseline{ align-items: baseline; }
  .align-sm-flex-end{ align-items: flex-end; }

  .direction-sm-column{ flex-direction: column; }
  .direction-sm-column-reverse{ flex-direction: column-reverse; }
  .direction-sm-revert{ flex-direction: revert; }
  .direction-sm-row{ flex-direction: row; }
  .direction-sm-row-reverse{ flex-direction: row-reverse; }




  .text-sm-left{text-align:left}
  .text-sm-center{text-align:center}
  .text-sm-right{text-align:right}

}
/****** min-width-768 ******/
@media(min-width:768px){



  .justify-md-flex-start{ justify-content: flex-start; }
  .justify-md-center{ justify-content: center; }
  .justify-md-flex-end{ justify-content: flex-end; }
  .justify-md-space-between{ justify-content: space-between; }
  .justify-md-space-around{ justify-content: space-around; }
  .justify-md-space-evenly{ justify-content: space-evenly; }

  .align-md-flex-start{ align-items: flex-start; }
  .align-md-center{ align-items: center; }
  .align-md-baseline{ align-items: baseline; }
  .align-md-flex-end{ align-items: flex-end; }

  .direction-md-column{ flex-direction: column; }
  .direction-md-column-reverse{ flex-direction: column-reverse; }
  .direction-md-revert{ flex-direction: revert; }
  .direction-md-row{ flex-direction: row; }
  .direction-md-row-reverse{ flex-direction: row-reverse; }


  .text-md-left{text-align:left}
  .text-md-center{text-align:center}
  .text-md-right{text-align:right}



  .pt-md-0,.py-md-0{padding-top:0px;}
  .pt-md-5,.py-md-5{padding-top:5px;}
  .pt-md-10,.py-md-10{padding-top:10px;}
  .pt-md-15,.py-md-15{padding-top:15px;}
  .pt-md-20,.py-md-20{padding-top:20px;}
  .pt-md-25,.py-md-25{padding-top:25px;}
  .pt-md-30,.py-md-30{padding-top:30px;}
  .pt-md-35,.py-md-35{padding-top:35px;}
  .pt-md-40,.py-md-40{padding-top:40px;}
  .pt-md-45,.py-md-45{padding-top:45px;}
  .pt-md-50,.py-md-50{padding-top:50px;}
  .pt-md-55,.py-md-55{padding-top:55px;}
  .pt-md-60,.py-md-60{padding-top:60px;}
  .pt-md-65,.py-md-65{padding-top:65px;}
  .pt-md-70,.py-md-70{padding-top:70px;}
  .pt-md-75,.py-md-75{padding-top:75px;}
  .pt-md-80,.py-md-80{padding-top:80px;}
  .pt-md-85,.py-md-85{padding-top:85px;}
  .pt-md-90,.py-md-90{padding-top:90px;}
  .pt-md-95,.py-md-95{padding-top:95px;}
  .pt-md-100,.py-md-100{padding-top:100px;}
  .pt-md-105,.py-md-105{padding-top:105px;}
  .pt-md-110,.py-md-110{padding-top:110px;}
  .pt-md-115,.py-md-115{padding-top:115px;}
  .pt-md-120,.py-md-120{padding-top:120px;}
  .pt-md-125,.py-md-125{padding-top:125px;}
  .pt-md-130,.py-md-130{padding-top:130px;}
  .pt-md-135,.py-md-135{padding-top:135px;}
  .pt-md-140,.py-md-140{padding-top:140px;}
  .pt-md-145,.py-md-145{padding-top:145px;}
  .pt-md-150,.py-md-150{padding-top:150px;}
  .pt-md-155,.py-md-155{padding-top:155px;}
  .pt-md-160,.py-md-160{padding-top:160px;}
  .pt-md-165,.py-md-165{padding-top:165px;}
  .pt-md-170,.py-md-170{padding-top:170px;}
  .pt-md-175,.py-md-175{padding-top:175px;}
  .pt-md-180,.py-md-180{padding-top:180px;}
  .pt-md-185,.py-md-185{padding-top:185px;}
  .pt-md-190,.py-md-190{padding-top:190px;}
  .pt-md-195,.py-md-195{padding-top:195px;}
  .pt-md-200,.py-md-200{padding-top:200px;}

  .pb-md-0,.py-md-0{padding-bottom:0px;}
  .pb-md-5,.py-md-5{padding-bottom:5px;}
  .pb-md-10,.py-md-10{padding-bottom:10px;}
  .pb-md-15,.py-md-15{padding-bottom:15px;}
  .pb-md-20,.py-md-20{padding-bottom:20px;}
  .pb-md-25,.py-md-25{padding-bottom:25px;}
  .pb-md-30,.py-md-30{padding-bottom:30px;}
  .pb-md-35,.py-md-35{padding-bottom:35px;}
  .pb-md-40,.py-md-40{padding-bottom:40px;}
  .pb-md-45,.py-md-45{padding-bottom:45px;}
  .pb-md-50,.py-md-50{padding-bottom:50px;}
  .pb-md-55,.py-md-55{padding-bottom:55px;}
  .pb-md-60,.py-md-60{padding-bottom:60px;}
  .pb-md-65,.py-md-65{padding-bottom:65px;}
  .pb-md-70,.py-md-70{padding-bottom:70px;}
  .pb-md-75,.py-md-75{padding-bottom:75px;}
  .pb-md-80,.py-md-80{padding-bottom:80px;}
  .pb-md-85,.py-md-85{padding-bottom:85px;}
  .pb-md-90,.py-md-90{padding-bottom:90px;}
  .pb-md-95,.py-md-95{padding-bottom:95px;}
  .pb-md-100,.py-md-100{padding-bottom:100px;}
  .pb-md-105,.py-md-105{padding-bottom:105px;}
  .pb-md-110,.py-md-110{padding-bottom:110px;}
  .pb-md-115,.py-md-115{padding-bottom:115px;}
  .pb-md-120,.py-md-120{padding-bottom:120px;}
  .pb-md-125,.py-md-125{padding-bottom:125px;}
  .pb-md-130,.py-md-130{padding-bottom:130px;}
  .pb-md-135,.py-md-135{padding-bottom:135px;}
  .pb-md-140,.py-md-140{padding-bottom:140px;}
  .pb-md-145,.py-md-145{padding-bottom:145px;}
  .pb-md-150,.py-md-150{padding-bottom:150px;}
  .pb-md-155,.py-md-155{padding-bottom:155px;}
  .pb-md-160,.py-md-160{padding-bottom:160px;}
  .pb-md-165,.py-md-165{padding-bottom:165px;}
  .pb-md-170,.py-md-170{padding-bottom:170px;}
  .pb-md-175,.py-md-175{padding-bottom:175px;}
  .pb-md-180,.py-md-180{padding-bottom:180px;}
  .pb-md-185,.py-md-185{padding-bottom:185px;}
  .pb-md-190,.py-md-190{padding-bottom:190px;}
  .pb-md-195,.py-md-195{padding-bottom:195px;}
  .pb-md-200,.py-md-200{padding-bottom:200px;}


  .pl-md-0,.px-md-0{padding-left:0px;}
  .pl-md-5,.px-md-5{padding-left:5px;}
  .pl-md-10,.px-md-10{padding-left:10px;}
  .pl-md-15,.px-md-15{padding-left:15px;}
  .pl-md-20,.px-md-20{padding-left:20px;}
  .pl-md-25,.px-md-25{padding-left:25px;}
  .pl-md-30,.px-md-30{padding-left:30px;}
  .pl-md-35,.px-md-35{padding-left:35px;}
  .pl-md-40,.px-md-40{padding-left:40px;}
  .pl-md-45,.px-md-45{padding-left:45px;}
  .pl-md-50,.px-md-50{padding-left:50px;}
  .pl-md-55,.px-md-55{padding-left:55px;}
  .pl-md-60,.px-md-60{padding-left:60px;}
  .pl-md-65,.px-md-65{padding-left:65px;}
  .pl-md-70,.px-md-70{padding-left:70px;}
  .pl-md-75,.px-md-75{padding-left:75px;}
  .pl-md-80,.px-md-80{padding-left:80px;}
  .pl-md-85,.px-md-85{padding-left:85px;}
  .pl-md-90,.px-md-90{padding-left:90px;}
  .pl-md-95,.px-md-95{padding-left:95px;}
  .pl-md-100,.px-md-100{padding-left:100px;}


  .pr-md-0,.px-md-0{padding-right:0px;}
  .pr-md-5,.px-md-5{padding-right:5px;}
  .pr-md-10,.px-md-10{padding-right:10px;}
  .pr-md-15,.px-md-15{padding-right:15px;}
  .pr-md-20,.px-md-20{padding-right:20px;}
  .pr-md-25,.px-md-25{padding-right:25px;}
  .pr-md-30,.px-md-30{padding-right:30px;}
  .pr-md-35,.px-md-35{padding-right:35px;}
  .pr-md-40,.px-md-40{padding-right:40px;}
  .pr-md-45,.px-md-45{padding-right:45px;}
  .pr-md-50,.px-md-50{padding-right:50px;}
  .pr-md-55,.px-md-55{padding-right:55px;}
  .pr-md-60,.px-md-60{padding-right:60px;}
  .pr-md-65,.px-md-65{padding-right:65px;}
  .pr-md-70,.px-md-70{padding-right:70px;}
  .pr-md-75,.px-md-75{padding-right:75px;}
  .pr-md-80,.px-md-80{padding-right:80px;}
  .pr-md-85,.px-md-85{padding-right:85px;}
  .pr-md-90,.px-md-90{padding-right:90px;}
  .pr-md-95,.px-md-95{padding-right:95px;}
  .pr-md-100,.px-md-100{padding-right:100px;}
  .pr-md-105,.px-md-105{padding-right:105px;}
  .pr-md-110,.px-md-110{padding-right:110px;}


  .mt-md-0,.my-md-0{margin-top:0px;}
  .mt-md-5,.my-md-5{margin-top:5px;}
  .mt-md-10,.my-md-10{margin-top:10px;}
  .mt-md-15,.my-md-15{margin-top:15px;}
  .mt-md-20,.my-md-20{margin-top:20px;}
  .mt-md-25,.my-md-25{margin-top:25px;}
  .mt-md-30,.my-md-30{margin-top:30px;}
  .mt-md-35,.my-md-35{margin-top:35px;}
  .mt-md-40,.my-md-40{margin-top:40px;}
  .mt-md-45,.my-md-45{margin-top:45px;}
  .mt-md-50,.my-md-50{margin-top:50px;}
  .mt-md-55,.my-md-55{margin-top:55px;}
  .mt-md-60,.my-md-60{margin-top:60px;}
  .mt-md-65,.my-md-65{margin-top:65px;}
  .mt-md-70,.my-md-70{margin-top:70px;}
  .mt-md-75,.my-md-75{margin-top:75px;}
  .mt-md-80,.my-md-80{margin-top:80px;}
  .mt-md-85,.my-md-85{margin-top:85px;}
  .mt-md-90,.my-md-90{margin-top:90px;}
  .mt-md-95,.my-md-95{margin-top:95px;}
  .mt-md-100,.my-md-100{margin-top:100px;}
  .mt-md-105,.my-md-105{margin-top:105px;}
  .mt-md-110,.my-md-110{margin-top:110px;}
  .mt-md-115,.my-md-115{margin-top:115px;}
  .mt-md-120,.my-md-120{margin-top:120px;}
  .mt-md-125,.my-md-125{margin-top:125px;}
  .mt-md-130,.my-md-130{margin-top:130px;}
  .mt-md-135,.my-md-135{margin-top:135px;}
  .mt-md-140,.my-md-140{margin-top:140px;}
  .mt-md-145,.my-md-145{margin-top:145px;}
  .mt-md-150,.my-md-150{margin-top:150px;}
  .mt-md-155,.my-md-155{margin-top:155px;}
  .mt-md-160,.my-md-160{margin-top:160px;}
  .mt-md-165,.my-md-165{margin-top:165px;}
  .mt-md-170,.my-md-170{margin-top:170px;}
  .mt-md-175,.my-md-175{margin-top:175px;}
  .mt-md-180,.my-md-180{margin-top:180px;}
  .mt-md-185,.my-md-185{margin-top:185px;}
  .mt-md-190,.my-md-190{margin-top:190px;}
  .mt-md-195,.my-md-195{margin-top:195px;}
  .mt-md-200,.my-md-200{margin-top:200px;}

  .mb-md-0,.my-md-0{margin-bottom:0px;}
  .mb-md-5,.my-md-5{margin-bottom:5px;}
  .mb-md-10,.my-md-10{margin-bottom:10px;}
  .mb-md-15,.my-md-15{margin-bottom:15px;}
  .mb-md-20,.my-md-20{margin-bottom:20px;}
  .mb-md-25,.my-md-25{margin-bottom:25px;}
  .mb-md-30,.my-md-30{margin-bottom:30px;}
  .mb-md-35,.my-md-35{margin-bottom:35px;}
  .mb-md-40,.my-md-40{margin-bottom:40px;}
  .mb-md-45,.my-md-45{margin-bottom:45px;}
  .mb-md-50,.my-md-50{margin-bottom:50px;}
  .mb-md-55,.my-md-55{margin-bottom:55px;}
  .mb-md-60,.my-md-60{margin-bottom:60px;}
  .mb-md-65,.my-md-65{margin-bottom:65px;}
  .mb-md-70,.my-md-70{margin-bottom:70px;}
  .mb-md-75,.my-md-75{margin-bottom:75px;}
  .mb-md-80,.my-md-80{margin-bottom:80px;}
  .mb-md-85,.my-md-85{margin-bottom:85px;}
  .mb-md-90,.my-md-90{margin-bottom:90px;}
  .mb-md-95,.my-md-95{margin-bottom:95px;}
  .mb-md-100,.my-md-100{margin-bottom:100px;}
  .mb-md-105,.my-md-105{margin-bottom:105px;}
  .mb-md-110,.my-md-110{margin-bottom:110px;}
  .mb-md-115,.my-md-115{margin-bottom:115px;}
  .mb-md-120,.my-md-120{margin-bottom:120px;}
  .mb-md-125,.my-md-125{margin-bottom:125px;}
  .mb-md-130,.my-md-130{margin-bottom:130px;}
  .mb-md-135,.my-md-135{margin-bottom:135px;}
  .mb-md-140,.my-md-140{margin-bottom:140px;}
  .mb-md-145,.my-md-145{margin-bottom:145px;}
  .mb-md-150,.my-md-150{margin-bottom:150px;}
  .mb-md-155,.my-md-155{margin-bottom:155px;}
  .mb-md-160,.my-md-160{margin-bottom:160px;}
  .mb-md-165,.my-md-165{margin-bottom:165px;}
  .mb-md-170,.my-md-170{margin-bottom:170px;}
  .mb-md-175,.my-md-175{margin-bottom:175px;}
  .mb-md-180,.my-md-180{margin-bottom:180px;}
  .mb-md-185,.my-md-185{margin-bottom:185px;}
  .mb-md-190,.my-md-190{margin-bottom:190px;}
  .mb-md-195,.my-md-195{margin-bottom:195px;}
  .mb-md-200,.my-md-200{margin-bottom:200px;}

}

/****** min-width-992 ******/
@media(min-width:992px){


  .justify-lg-flex-start{ justify-content: flex-start; }
  .justify-lg-center{ justify-content: center; }
  .justify-lg-flex-end{ justify-content: flex-end; }
  .justify-lg-space-between{ justify-content: space-between; }
  .justify-lg-space-around{ justify-content: space-around; }
  .justify-lg-space-evenly{ justify-content: space-evenly; }

  .align-lg-flex-start{ align-items: flex-start; }
  .align-lg-center{ align-items: center; }
  .align-lg-baseline{ align-items: baseline; }
  .align-lg-flex-end{ align-items: flex-end; }

  .direction-lg-column{ flex-direction: column; }
  .direction-lg-column-reverse{ flex-direction: column-reverse; }
  .direction-lg-revert{ flex-direction: revert; }
  .direction-lg-row{ flex-direction: row; }
  .direction-lg-row-reverse{ flex-direction: row-reverse; } 


  .text-lg-left{text-align:left}
  .text-lg-center{text-align:center}
  .text-lg-right{text-align:right}





  .pt-lg-0,.py-lg-0{padding-top:0px;}
  .pt-lg-5,.py-lg-5{padding-top:5px;}
  .pt-lg-10,.py-lg-10{padding-top:10px;}
  .pt-lg-15,.py-lg-15{padding-top:15px;}
  .pt-lg-20,.py-lg-20{padding-top:20px;}
  .pt-lg-25,.py-lg-25{padding-top:25px;}
  .pt-lg-30,.py-lg-30{padding-top:30px;}
  .pt-lg-35,.py-lg-35{padding-top:35px;}
  .pt-lg-40,.py-lg-40{padding-top:40px;}
  .pt-lg-45,.py-lg-45{padding-top:45px;}
  .pt-lg-50,.py-lg-50{padding-top:50px;}
  .pt-lg-55,.py-lg-55{padding-top:55px;}
  .pt-lg-60,.py-lg-60{padding-top:60px;}
  .pt-lg-65,.py-lg-65{padding-top:65px;}
  .pt-lg-70,.py-lg-70{padding-top:70px;}
  .pt-lg-75,.py-lg-75{padding-top:75px;}
  .pt-lg-80,.py-lg-80{padding-top:80px;}
  .pt-lg-85,.py-lg-85{padding-top:85px;}
  .pt-lg-90,.py-lg-90{padding-top:90px;}
  .pt-lg-95,.py-lg-95{padding-top:95px;}
  .pt-lg-100,.py-lg-100{padding-top:100px;}
  .pt-lg-105,.py-lg-105{padding-top:105px;}
  .pt-lg-110,.py-lg-110{padding-top:110px;}
  .pt-lg-115,.py-lg-115{padding-top:115px;}
  .pt-lg-120,.py-lg-120{padding-top:120px;}
  .pt-lg-125,.py-lg-125{padding-top:125px;}
  .pt-lg-130,.py-lg-130{padding-top:130px;}
  .pt-lg-135,.py-lg-135{padding-top:135px;}
  .pt-lg-140,.py-lg-140{padding-top:140px;}
  .pt-lg-145,.py-lg-145{padding-top:145px;}
  .pt-lg-150,.py-lg-150{padding-top:150px;}
  .pt-lg-155,.py-lg-155{padding-top:155px;}
  .pt-lg-160,.py-lg-160{padding-top:160px;}
  .pt-lg-165,.py-lg-165{padding-top:165px;}
  .pt-lg-170,.py-lg-170{padding-top:170px;}
  .pt-lg-175,.py-lg-175{padding-top:175px;}
  .pt-lg-180,.py-lg-180{padding-top:180px;}
  .pt-lg-185,.py-lg-185{padding-top:185px;}
  .pt-lg-190,.py-lg-190{padding-top:190px;}
  .pt-lg-195,.py-lg-195{padding-top:195px;}
  .pt-lg-200,.py-lg-200{padding-top:200px;}

  .pb-lg-0,.py-lg-0{padding-bottom:0px;}
  .pb-lg-5,.py-lg-5{padding-bottom:5px;}
  .pb-lg-10,.py-lg-10{padding-bottom:10px;}
  .pb-lg-15,.py-lg-15{padding-bottom:15px;}
  .pb-lg-20,.py-lg-20{padding-bottom:20px;}
  .pb-lg-25,.py-lg-25{padding-bottom:25px;}
  .pb-lg-30,.py-lg-30{padding-bottom:30px;}
  .pb-lg-35,.py-lg-35{padding-bottom:35px;}
  .pb-lg-40,.py-lg-40{padding-bottom:40px;}
  .pb-lg-45,.py-lg-45{padding-bottom:45px;}
  .pb-lg-50,.py-lg-50{padding-bottom:50px;}
  .pb-lg-55,.py-lg-55{padding-bottom:55px;}
  .pb-lg-60,.py-lg-60{padding-bottom:60px;}
  .pb-lg-65,.py-lg-65{padding-bottom:65px;}
  .pb-lg-70,.py-lg-70{padding-bottom:70px;}
  .pb-lg-75,.py-lg-75{padding-bottom:75px;}
  .pb-lg-80,.py-lg-80{padding-bottom:80px;}
  .pb-lg-85,.py-lg-85{padding-bottom:85px;}
  .pb-lg-90,.py-lg-90{padding-bottom:90px;}
  .pb-lg-95,.py-lg-95{padding-bottom:95px;}
  .pb-lg-100,.py-lg-100{padding-bottom:100px;}
  .pb-lg-105,.py-lg-105{padding-bottom:105px;}
  .pb-lg-110,.py-lg-110{padding-bottom:110px;}
  .pb-lg-115,.py-lg-115{padding-bottom:115px;}
  .pb-lg-120,.py-lg-120{padding-bottom:120px;}
  .pb-lg-125,.py-lg-125{padding-bottom:125px;}
  .pb-lg-130,.py-lg-130{padding-bottom:130px;}
  .pb-lg-135,.py-lg-135{padding-bottom:135px;}
  .pb-lg-140,.py-lg-140{padding-bottom:140px;}
  .pb-lg-145,.py-lg-145{padding-bottom:145px;}
  .pb-lg-150,.py-lg-150{padding-bottom:150px;}
  .pb-lg-155,.py-lg-155{padding-bottom:155px;}
  .pb-lg-160,.py-lg-160{padding-bottom:160px;}
  .pb-lg-165,.py-lg-165{padding-bottom:165px;}
  .pb-lg-170,.py-lg-170{padding-bottom:170px;}
  .pb-lg-175,.py-lg-175{padding-bottom:175px;}
  .pb-lg-180,.py-lg-180{padding-bottom:180px;}
  .pb-lg-185,.py-lg-185{padding-bottom:185px;}
  .pb-lg-190,.py-lg-190{padding-bottom:190px;}
  .pb-lg-195,.py-lg-195{padding-bottom:195px;}
  .pb-lg-200,.py-lg-200{padding-bottom:200px;}


  .mt-lg-0,.my-lg-0{margin-top:0px;}
  .mt-lg-5,.my-lg-5{margin-top:5px;}
  .mt-lg-10,.my-lg-10{margin-top:10px;}
  .mt-lg-15,.my-lg-15{margin-top:15px;}
  .mt-lg-20,.my-lg-20{margin-top:20px;}
  .mt-lg-25,.my-lg-25{margin-top:25px;}
  .mt-lg-30,.my-lg-30{margin-top:30px;}
  .mt-lg-35,.my-lg-35{margin-top:35px;}
  .mt-lg-40,.my-lg-40{margin-top:40px;}
  .mt-lg-45,.my-lg-45{margin-top:45px;}
  .mt-lg-50,.my-lg-50{margin-top:50px;}
  .mt-lg-55,.my-lg-55{margin-top:55px;}
  .mt-lg-60,.my-lg-60{margin-top:60px;}
  .mt-lg-65,.my-lg-65{margin-top:65px;}
  .mt-lg-70,.my-lg-70{margin-top:70px;}
  .mt-lg-75,.my-lg-75{margin-top:75px;}
  .mt-lg-80,.my-lg-80{margin-top:80px;}
  .mt-lg-85,.my-lg-85{margin-top:85px;}
  .mt-lg-90,.my-lg-90{margin-top:90px;}
  .mt-lg-95,.my-lg-95{margin-top:95px;}
  .mt-lg-100,.my-lg-100{margin-top:100px;}
  .mt-lg-105,.my-lg-105{margin-top:105px;}
  .mt-lg-110,.my-lg-110{margin-top:110px;}
  .mt-lg-115,.my-lg-115{margin-top:115px;}
  .mt-lg-120,.my-lg-120{margin-top:120px;}
  .mt-lg-125,.my-lg-125{margin-top:125px;}
  .mt-lg-130,.my-lg-130{margin-top:130px;}
  .mt-lg-135,.my-lg-135{margin-top:135px;}
  .mt-lg-140,.my-lg-140{margin-top:140px;}
  .mt-lg-145,.my-lg-145{margin-top:145px;}
  .mt-lg-150,.my-lg-150{margin-top:150px;}
  .mt-lg-155,.my-lg-155{margin-top:155px;}
  .mt-lg-160,.my-lg-160{margin-top:160px;}
  .mt-lg-165,.my-lg-165{margin-top:165px;}
  .mt-lg-170,.my-lg-170{margin-top:170px;}
  .mt-lg-175,.my-lg-175{margin-top:175px;}
  .mt-lg-180,.my-lg-180{margin-top:180px;}
  .mt-lg-185,.my-lg-185{margin-top:185px;}
  .mt-lg-190,.my-lg-190{margin-top:190px;}
  .mt-lg-195,.my-lg-195{margin-top:195px;}
  .mt-lg-200,.my-lg-200{margin-top:200px;}

  .mb-lg-0,.my-lg-0{margin-bottom:0px;}
  .mb-lg-5,.my-lg-5{margin-bottom:5px;}
  .mb-lg-10,.my-lg-10{margin-bottom:10px;}
  .mb-lg-15,.my-lg-15{margin-bottom:15px;}
  .mb-lg-20,.my-lg-20{margin-bottom:20px;}
  .mb-lg-25,.my-lg-25{margin-bottom:25px;}
  .mb-lg-30,.my-lg-30{margin-bottom:30px;}
  .mb-lg-35,.my-lg-35{margin-bottom:35px;}
  .mb-lg-40,.my-lg-40{margin-bottom:40px;}
  .mb-lg-45,.my-lg-45{margin-bottom:45px;}
  .mb-lg-50,.my-lg-50{margin-bottom:50px;}
  .mb-lg-55,.my-lg-55{margin-bottom:55px;}
  .mb-lg-60,.my-lg-60{margin-bottom:60px;}
  .mb-lg-65,.my-lg-65{margin-bottom:65px;}
  .mb-lg-70,.my-lg-70{margin-bottom:70px;}
  .mb-lg-75,.my-lg-75{margin-bottom:75px;}
  .mb-lg-80,.my-lg-80{margin-bottom:80px;}
  .mb-lg-85,.my-lg-85{margin-bottom:85px;}
  .mb-lg-90,.my-lg-90{margin-bottom:90px;}
  .mb-lg-95,.my-lg-95{margin-bottom:95px;}
  .mb-lg-100,.my-lg-100{margin-bottom:100px;}
  .mb-lg-105,.my-lg-105{margin-bottom:105px;}
  .mb-lg-110,.my-lg-110{margin-bottom:110px;}
  .mb-lg-115,.my-lg-115{margin-bottom:115px;}
  .mb-lg-120,.my-lg-120{margin-bottom:120px;}
  .mb-lg-125,.my-lg-125{margin-bottom:125px;}
  .mb-lg-130,.my-lg-130{margin-bottom:130px;}
  .mb-lg-135,.my-lg-135{margin-bottom:135px;}
  .mb-lg-140,.my-lg-140{margin-bottom:140px;}
  .mb-lg-145,.my-lg-145{margin-bottom:145px;}
  .mb-lg-150,.my-lg-150{margin-bottom:150px;}
  .mb-lg-155,.my-lg-155{margin-bottom:155px;}
  .mb-lg-160,.my-lg-160{margin-bottom:160px;}
  .mb-lg-165,.my-lg-165{margin-bottom:165px;}
  .mb-lg-170,.my-lg-170{margin-bottom:170px;}
  .mb-lg-175,.my-lg-175{margin-bottom:175px;}
  .mb-lg-180,.my-lg-180{margin-bottom:180px;}
  .mb-lg-185,.my-lg-185{margin-bottom:185px;}
  .mb-lg-190,.my-lg-190{margin-bottom:190px;}
  .mb-lg-195,.my-lg-195{margin-bottom:195px;}
  .mb-lg-200,.my-lg-200{margin-bottom:200px;}


}

/****** min-width-1200 ******/
@media(min-width:1200px){


  .text-xl-left{text-align:left}
  .text-xl-center{text-align:center}
  .text-xl-right{text-align:right}


  .pt-xl-0,.py-xl-0{padding-top:0}
  .pt-xl-5,.py-xl-5{padding-top:5px}
  .pt-xl-10,.py-xl-10{padding-top:10px}
  .pt-xl-15,.py-xl-15{padding-top:15px}
  .pt-xl-20,.py-xl-20{padding-top:20px}
  .pt-xl-25,.py-xl-25{padding-top:25px}
  .pt-xl-30,.py-xl-30{padding-top:30px}
  .pt-xl-35,.py-xl-35{padding-top:35px}
  .pt-xl-40,.py-xl-40{padding-top:40px}
  .pt-xl-45,.py-xl-45{padding-top:45px}
  .pt-xl-50,.py-xl-50{padding-top:50px}
  .pt-xl-55,.py-xl-55{padding-top:55px}
  .pt-xl-60,.py-xl-60{padding-top:60px}
  .pt-xl-65,.py-xl-65{padding-top:65px}
  .pt-xl-70,.py-xl-70{padding-top:70px}
  .pt-xl-75,.py-xl-75{padding-top:75px}
  .pt-xl-80,.py-xl-80{padding-top:80px}
  .pt-xl-85,.py-xl-85{padding-top:85px}
  .pt-xl-90,.py-xl-90{padding-top:90px}
  .pt-xl-95,.py-xl-95{padding-top:95px}
  .pt-xl-100,.py-xl-100{padding-top:100px}
  .pt-xl-105,.py-xl-105{padding-top:105px}
  .pt-xl-110,.py-xl-110{padding-top:110px}
  .pt-xl-115,.py-xl-115{padding-top:115px}
  .pt-xl-120,.py-xl-120{padding-top:120px}
  .pt-xl-125,.py-xl-125{padding-top:125px}
  .pt-xl-130,.py-xl-130{padding-top:130px}
  .pt-xl-135,.py-xl-135{padding-top:135px}
  .pt-xl-140,.py-xl-140{padding-top:140px}
  .pt-xl-145,.py-xl-145{padding-top:145px}
  .pt-xl-150,.py-xl-150{padding-top:150px}
  .pt-xl-155,.py-xl-155{padding-top:155px}
  .pt-xl-160,.py-xl-160{padding-top:160px}
  .pt-xl-165,.py-xl-165{padding-top:165px}
  .pt-xl-170,.py-xl-170{padding-top:170px}
  .pt-xl-175,.py-xl-175{padding-top:175px}
  .pt-xl-180,.py-xl-180{padding-top:180px}
  .pt-xl-185,.py-xl-185{padding-top:185px}
  .pt-xl-190,.py-xl-190{padding-top:190px}
  .pt-xl-195,.py-xl-195{padding-top:195px}
  .pt-xl-200,.py-xl-200{padding-top:200px}
  .pt-xl-205,.py-xl-205{padding-top:205px}
  .pt-xl-210,.py-xl-210{padding-top:210px}
  .pt-xl-215,.py-xl-215{padding-top:215px}
  .pt-xl-220,.py-xl-220{padding-top:220px}
  .pt-xl-225,.py-xl-225{padding-top:225px}
  .pt-xl-230,.py-xl-230{padding-top:230px}
  .pt-xl-235,.py-xl-235{padding-top:235px}
  .pt-xl-240,.py-xl-240{padding-top:240px}
  .pt-xl-245,.py-xl-245{padding-top:245px}
  .pt-xl-250,.py-xl-250{padding-top:250px}
  .pb-xl-0,.py-xl-0{padding-bottom:0}
  .pb-xl-5,.py-xl-5{padding-bottom:5px}
  .pb-xl-10,.py-xl-10{padding-bottom:10px}
  .pb-xl-15,.py-xl-15{padding-bottom:15px}
  .pb-xl-20,.py-xl-20{padding-bottom:20px}
  .pb-xl-25,.py-xl-25{padding-bottom:25px}
  .pb-xl-30,.py-xl-30{padding-bottom:30px}
  .pb-xl-35,.py-xl-35{padding-bottom:35px}
  .pb-xl-40,.py-xl-40{padding-bottom:40px}
  .pb-xl-45,.py-xl-45{padding-bottom:45px}
  .pb-xl-50,.py-xl-50{padding-bottom:50px}
  .pb-xl-55,.py-xl-55{padding-bottom:55px}
  .pb-xl-60,.py-xl-60{padding-bottom:60px}
  .pb-xl-65,.py-xl-65{padding-bottom:65px}
  .pb-xl-70,.py-xl-70{padding-bottom:70px}
  .pb-xl-75,.py-xl-75{padding-bottom:75px}
  .pb-xl-80,.py-xl-80{padding-bottom:80px}
  .pb-xl-85,.py-xl-85{padding-bottom:85px}
  .pb-xl-90,.py-xl-90{padding-bottom:90px}
  .pb-xl-95,.py-xl-95{padding-bottom:95px}
  .pb-xl-100,.py-xl-100{padding-bottom:100px}
  .pb-xl-105,.py-xl-105{padding-bottom:105px}
  .pb-xl-110,.py-xl-110{padding-bottom:110px}
  .pb-xl-115,.py-xl-115{padding-bottom:115px}
  .pb-xl-120,.py-xl-120{padding-bottom:120px}
  .pb-xl-125,.py-xl-125{padding-bottom:125px}
  .pb-xl-130,.py-xl-130{padding-bottom:130px}
  .pb-xl-135,.py-xl-135{padding-bottom:135px}
  .pb-xl-140,.py-xl-140{padding-bottom:140px}
  .pb-xl-145,.py-xl-145{padding-bottom:145px}
  .pb-xl-150,.py-xl-150{padding-bottom:150px}
  .pb-xl-155,.py-xl-155{padding-bottom:155px}
  .pb-xl-160,.py-xl-160{padding-bottom:160px}
  .pb-xl-165,.py-xl-165{padding-bottom:165px}
  .pb-xl-170,.py-xl-170{padding-bottom:170px}
  .pb-xl-175,.py-xl-175{padding-bottom:175px}
  .pb-xl-180,.py-xl-180{padding-bottom:180px}
  .pb-xl-185,.py-xl-185{padding-bottom:185px}
  .pb-xl-190,.py-xl-190{padding-bottom:190px}
  .pb-xl-195,.py-xl-195{padding-bottom:195px}
  .pb-xl-200,.py-xl-200{padding-bottom:200px}
  .pb-xl-205,.py-xl-205{padding-bottom:205px}
  .pb-xl-210,.py-xl-210{padding-bottom:210px}
  .pb-xl-215,.py-xl-215{padding-bottom:215px}
  .pb-xl-220,.py-xl-220{padding-bottom:220px}
  .pb-xl-225,.py-xl-225{padding-bottom:225px}
  .pb-xl-230,.py-xl-230{padding-bottom:230px}
  .pb-xl-235,.py-xl-235{padding-bottom:235px}
  .pb-xl-240,.py-xl-240{padding-bottom:240px}
  .pb-xl-245,.py-xl-245{padding-bottom:245px}
  .pb-xl-250,.py-xl-250{padding-bottom:250px}


  .pl-xl-5,.px-xl-5{padding-left:5px}
  .pl-xl-10,.px-xl-10{padding-left:10px}
  .pl-xl-15,.px-xl-15{padding-left:15px}
  .pl-xl-20,.px-xl-20{padding-left:20px}
  .pl-xl-25,.px-xl-25{padding-left:25px}
  .pl-xl-30,.px-xl-30{padding-left:30px}
  .pl-xl-35,.px-xl-35{padding-left:35px}
  .pl-xl-40,.px-xl-40{padding-left:40px}
  .pl-xl-45,.px-xl-45{padding-left:45px}
  .pl-xl-50,.px-xl-50{padding-left:50px}
  .pl-xl-55,.px-xl-55{padding-left:55px}
  .pl-xl-60,.px-xl-60{padding-left:60px}
  .pl-xl-65,.px-xl-65{padding-left:65px}
  .pl-xl-70,.px-xl-70{padding-left:70px}
  .pl-xl-75,.px-xl-75{padding-left:75px}
  .pl-xl-80,.px-xl-80{padding-left:80px}

  .pr-xl-5,.px-xl-5{padding-right:5px}
  .pr-xl-10,.px-xl-10{padding-right:10px}
  .pr-xl-15,.px-xl-15{padding-right:15px}
  .pr-xl-20,.px-xl-20{padding-right:20px}
  .pr-xl-25,.px-xl-25{padding-right:25px}
  .pr-xl-30,.px-xl-30{padding-right:30px}
  .pr-xl-35,.px-xl-35{padding-right:35px}
  .pr-xl-40,.px-xl-40{padding-right:40px}
  .pr-xl-45,.px-xl-45{padding-right:45px}
  .pr-xl-50,.px-xl-50{padding-right:50px}
  .pr-xl-55,.px-xl-55{padding-right:55px}
  .pr-xl-60,.px-xl-60{padding-right:60px}
  .pr-xl-65,.px-xl-65{padding-right:65px}
  .pr-xl-70,.px-xl-70{padding-right:70px}
  .pr-xl-75,.px-xl-75{padding-right:75px}
  .pr-xl-80,.px-xl-80{padding-right:80px}


  .mt-xl-0,.my-xl-0{margin-top:0px;}
  .mt-xl-5,.my-xl-5{margin-top:5px;}
  .mt-xl-10,.my-xl-10{margin-top:10px;}
  .mt-xl-15,.my-xl-15{margin-top:15px;}
  .mt-xl-20,.my-xl-20{margin-top:20px;}
  .mt-xl-25,.my-xl-25{margin-top:25px;}
  .mt-xl-30,.my-xl-30{margin-top:30px;}
  .mt-xl-35,.my-xl-35{margin-top:35px;}
  .mt-xl-40,.my-xl-40{margin-top:40px;}
  .mt-xl-45,.my-xl-45{margin-top:45px;}
  .mt-xl-50,.my-xl-50{margin-top:50px;}
  .mt-xl-55,.my-xl-55{margin-top:55px;}
  .mt-xl-60,.my-xl-60{margin-top:60px;}
  .mt-xl-65,.my-xl-65{margin-top:65px;}
  .mt-xl-70,.my-xl-70{margin-top:70px;}
  .mt-xl-75,.my-xl-75{margin-top:75px;}
  .mt-xl-80,.my-xl-80{margin-top:80px;}
  .mt-xl-85,.my-xl-85{margin-top:85px;}
  .mt-xl-90,.my-xl-90{margin-top:90px;}
  .mt-xl-95,.my-xl-95{margin-top:95px;}
  .mt-xl-100,.my-xl-100{margin-top:100px;}
  .mt-xl-105,.my-xl-105{margin-top:105px;}
  .mt-xl-110,.my-xl-110{margin-top:110px;}
  .mt-xl-115,.my-xl-115{margin-top:115px;}
  .mt-xl-120,.my-xl-120{margin-top:120px;}
  .mt-xl-125,.my-xl-125{margin-top:125px;}
  .mt-xl-130,.my-xl-130{margin-top:130px;}
  .mt-xl-135,.my-xl-135{margin-top:135px;}
  .mt-xl-140,.my-xl-140{margin-top:140px;}
  .mt-xl-145,.my-xl-145{margin-top:145px;}
  .mt-xl-150,.my-xl-150{margin-top:150px;}
  .mt-xl-155,.my-xl-155{margin-top:155px;}
  .mt-xl-160,.my-xl-160{margin-top:160px;}
  .mt-xl-165,.my-xl-165{margin-top:165px;}
  .mt-xl-170,.my-xl-170{margin-top:170px;}
  .mt-xl-175,.my-xl-175{margin-top:175px;}
  .mt-xl-180,.my-xl-180{margin-top:180px;}
  .mt-xl-185,.my-xl-185{margin-top:185px;}
  .mt-xl-190,.my-xl-190{margin-top:190px;}
  .mt-xl-195,.my-xl-195{margin-top:195px;}
  .mt-xl-200,.my-xl-200{margin-top:200px;}

  .mb-xl-0,.my-xl-0{margin-bottom:0px;}
  .mb-xl-5,.my-xl-5{margin-bottom:5px;}
  .mb-xl-10,.my-xl-10{margin-bottom:10px;}
  .mb-xl-15,.my-xl-15{margin-bottom:15px;}
  .mb-xl-20,.my-xl-20{margin-bottom:20px;}
  .mb-xl-25,.my-xl-25{margin-bottom:25px;}
  .mb-xl-30,.my-xl-30{margin-bottom:30px;}
  .mb-xl-35,.my-xl-35{margin-bottom:35px;}
  .mb-xl-40,.my-xl-40{margin-bottom:40px;}
  .mb-xl-45,.my-xl-45{margin-bottom:45px;}
  .mb-xl-50,.my-xl-50{margin-bottom:50px;}
  .mb-xl-55,.my-xl-55{margin-bottom:55px;}
  .mb-xl-60,.my-xl-60{margin-bottom:60px;}
  .mb-xl-65,.my-xl-65{margin-bottom:65px;}
  .mb-xl-70,.my-xl-70{margin-bottom:70px;}
  .mb-xl-75,.my-xl-75{margin-bottom:75px;}
  .mb-xl-80,.my-xl-80{margin-bottom:80px;}
  .mb-xl-85,.my-xl-85{margin-bottom:85px;}
  .mb-xl-90,.my-xl-90{margin-bottom:90px;}
  .mb-xl-95,.my-xl-95{margin-bottom:95px;}
  .mb-xl-100,.my-xl-100{margin-bottom:100px;}
  .mb-xl-105,.my-xl-105{margin-bottom:105px;}
  .mb-xl-110,.my-xl-110{margin-bottom:110px;}
  .mb-xl-115,.my-xl-115{margin-bottom:115px;}
  .mb-xl-120,.my-xl-120{margin-bottom:120px;}
  .mb-xl-125,.my-xl-125{margin-bottom:125px;}
  .mb-xl-130,.my-xl-130{margin-bottom:130px;}
  .mb-xl-135,.my-xl-135{margin-bottom:135px;}
  .mb-xl-140,.my-xl-140{margin-bottom:140px;}
  .mb-xl-145,.my-xl-145{margin-bottom:145px;}
  .mb-xl-150,.my-xl-150{margin-bottom:150px;}
  .mb-xl-155,.my-xl-155{margin-bottom:155px;}
  .mb-xl-160,.my-xl-160{margin-bottom:160px;}
  .mb-xl-165,.my-xl-165{margin-bottom:165px;}
  .mb-xl-170,.my-xl-170{margin-bottom:170px;}
  .mb-xl-175,.my-xl-175{margin-bottom:175px;}
  .mb-xl-180,.my-xl-180{margin-bottom:180px;}
  .mb-xl-185,.my-xl-185{margin-bottom:185px;}
  .mb-xl-190,.my-xl-190{margin-bottom:190px;}
  .mb-xl-195,.my-xl-195{margin-bottom:195px;}
  .mb-xl-200,.my-xl-200{margin-bottom:200px;}

}





/****** min-width-1400 ******/
@media(min-width:1400px){


  .text-xxl-left{text-align:left}
  .text-xxl-center{text-align:center}
  .text-xxl-right{text-align:right}




  .pt-xxl-0,.py-xxl-0{padding-top:0px;}
  .pt-xxl-5,.py-xxl-5{padding-top:5px;}
  .pt-xxl-10,.py-xxl-10{padding-top:10px;}
  .pt-xxl-15,.py-xxl-15{padding-top:15px;}
  .pt-xxl-20,.py-xxl-20{padding-top:20px;}
  .pt-xxl-25,.py-xxl-25{padding-top:25px;}
  .pt-xxl-30,.py-xxl-30{padding-top:30px;}
  .pt-xxl-35,.py-xxl-35{padding-top:35px;}
  .pt-xxl-40,.py-xxl-40{padding-top:40px;}
  .pt-xxl-45,.py-xxl-45{padding-top:45px;}
  .pt-xxl-50,.py-xxl-50{padding-top:50px;}
  .pt-xxl-55,.py-xxl-55{padding-top:55px;}
  .pt-xxl-60,.py-xxl-60{padding-top:60px;}
  .pt-xxl-65,.py-xxl-65{padding-top:65px;}
  .pt-xxl-70,.py-xxl-70{padding-top:70px;}
  .pt-xxl-75,.py-xxl-75{padding-top:75px;}
  .pt-xxl-80,.py-xxl-80{padding-top:80px;}
  .pt-xxl-85,.py-xxl-85{padding-top:85px;}
  .pt-xxl-90,.py-xxl-90{padding-top:90px;}
  .pt-xxl-95,.py-xxl-95{padding-top:95px;}
  .pt-xxl-100,.py-xxl-100{padding-top:100px;}
  .pt-xxl-105,.py-xxl-105{padding-top:105px;}
  .pt-xxl-110,.py-xxl-110{padding-top:110px;}
  .pt-xxl-115,.py-xxl-115{padding-top:115px;}
  .pt-xxl-120,.py-xxl-120{padding-top:120px;}
  .pt-xxl-125,.py-xxl-125{padding-top:125px;}
  .pt-xxl-130,.py-xxl-130{padding-top:130px;}
  .pt-xxl-135,.py-xxl-135{padding-top:135px;}
  .pt-xxl-140,.py-xxl-140{padding-top:140px;}
  .pt-xxl-145,.py-xxl-145{padding-top:145px;}
  .pt-xxl-150,.py-xxl-150{padding-top:150px;}
  .pt-xxl-155,.py-xxl-155{padding-top:155px;}
  .pt-xxl-160,.py-xxl-160{padding-top:160px;}
  .pt-xxl-165,.py-xxl-165{padding-top:165px;}
  .pt-xxl-170,.py-xxl-170{padding-top:170px;}
  .pt-xxl-175,.py-xxl-175{padding-top:175px;}
  .pt-xxl-180,.py-xxl-180{padding-top:180px;}
  .pt-xxl-185,.py-xxl-185{padding-top:185px;}
  .pt-xxl-190,.py-xxl-190{padding-top:190px;}
  .pt-xxl-195,.py-xxl-195{padding-top:195px;}
  .pt-xxl-200,.py-xxl-200{padding-top:200px;}

  .pb-xxl-0,.py-xxl-0{padding-bottom:0px;}
  .pb-xxl-5,.py-xxl-5{padding-bottom:5px;}
  .pb-xxl-10,.py-xxl-10{padding-bottom:10px;}
  .pb-xxl-15,.py-xxl-15{padding-bottom:15px;}
  .pb-xxl-20,.py-xxl-20{padding-bottom:20px;}
  .pb-xxl-25,.py-xxl-25{padding-bottom:25px;}
  .pb-xxl-30,.py-xxl-30{padding-bottom:30px;}
  .pb-xxl-35,.py-xxl-35{padding-bottom:35px;}
  .pb-xxl-40,.py-xxl-40{padding-bottom:40px;}
  .pb-xxl-45,.py-xxl-45{padding-bottom:45px;}
  .pb-xxl-50,.py-xxl-50{padding-bottom:50px;}
  .pb-xxl-55,.py-xxl-55{padding-bottom:55px;}
  .pb-xxl-60,.py-xxl-60{padding-bottom:60px;}
  .pb-xxl-65,.py-xxl-65{padding-bottom:65px;}
  .pb-xxl-70,.py-xxl-70{padding-bottom:70px;}
  .pb-xxl-75,.py-xxl-75{padding-bottom:75px;}
  .pb-xxl-80,.py-xxl-80{padding-bottom:80px;}
  .pb-xxl-85,.py-xxl-85{padding-bottom:85px;}
  .pb-xxl-90,.py-xxl-90{padding-bottom:90px;}
  .pb-xxl-95,.py-xxl-95{padding-bottom:95px;}
  .pb-xxl-100,.py-xxl-100{padding-bottom:100px;}
  .pb-xxl-105,.py-xxl-105{padding-bottom:105px;}
  .pb-xxl-110,.py-xxl-110{padding-bottom:110px;}
  .pb-xxl-115,.py-xxl-115{padding-bottom:115px;}
  .pb-xxl-120,.py-xxl-120{padding-bottom:120px;}
  .pb-xxl-125,.py-xxl-125{padding-bottom:125px;}
  .pb-xxl-130,.py-xxl-130{padding-bottom:130px;}
  .pb-xxl-135,.py-xxl-135{padding-bottom:135px;}
  .pb-xxl-140,.py-xxl-140{padding-bottom:140px;}
  .pb-xxl-145,.py-xxl-145{padding-bottom:145px;}
  .pb-xxl-150,.py-xxl-150{padding-bottom:150px;}
  .pb-xxl-155,.py-xxl-155{padding-bottom:155px;}
  .pb-xxl-160,.py-xxl-160{padding-bottom:160px;}
  .pb-xxl-165,.py-xxl-165{padding-bottom:165px;}
  .pb-xxl-170,.py-xxl-170{padding-bottom:170px;}
  .pb-xxl-175,.py-xxl-175{padding-bottom:175px;}
  .pb-xxl-180,.py-xxl-180{padding-bottom:180px;}
  .pb-xxl-185,.py-xxl-185{padding-bottom:185px;}
  .pb-xxl-190,.py-xxl-190{padding-bottom:190px;}
  .pb-xxl-195,.py-xxl-195{padding-bottom:195px;}
  .pb-xxl-200,.py-xxl-200{padding-bottom:200px;}


  .mt-xxl-0,.my-xxl-0{margin-top:0px;}
  .mt-xxl-5,.my-xxl-5{margin-top:5px;}
  .mt-xxl-10,.my-xxl-10{margin-top:10px;}
  .mt-xxl-15,.my-xxl-15{margin-top:15px;}
  .mt-xxl-20,.my-xxl-20{margin-top:20px;}
  .mt-xxl-25,.my-xxl-25{margin-top:25px;}
  .mt-xxl-30,.my-xxl-30{margin-top:30px;}
  .mt-xxl-35,.my-xxl-35{margin-top:35px;}
  .mt-xxl-40,.my-xxl-40{margin-top:40px;}
  .mt-xxl-45,.my-xxl-45{margin-top:45px;}
  .mt-xxl-50,.my-xxl-50{margin-top:50px;}
  .mt-xxl-55,.my-xxl-55{margin-top:55px;}
  .mt-xxl-60,.my-xxl-60{margin-top:60px;}
  .mt-xxl-65,.my-xxl-65{margin-top:65px;}
  .mt-xxl-70,.my-xxl-70{margin-top:70px;}
  .mt-xxl-75,.my-xxl-75{margin-top:75px;}
  .mt-xxl-80,.my-xxl-80{margin-top:80px;}
  .mt-xxl-85,.my-xxl-85{margin-top:85px;}
  .mt-xxl-90,.my-xxl-90{margin-top:90px;}
  .mt-xxl-95,.my-xxl-95{margin-top:95px;}
  .mt-xxl-100,.my-xxl-100{margin-top:100px;}
  .mt-xxl-105,.my-xxl-105{margin-top:105px;}
  .mt-xxl-110,.my-xxl-110{margin-top:110px;}
  .mt-xxl-115,.my-xxl-115{margin-top:115px;}
  .mt-xxl-120,.my-xxl-120{margin-top:120px;}
  .mt-xxl-125,.my-xxl-125{margin-top:125px;}
  .mt-xxl-130,.my-xxl-130{margin-top:130px;}
  .mt-xxl-135,.my-xxl-135{margin-top:135px;}
  .mt-xxl-140,.my-xxl-140{margin-top:140px;}
  .mt-xxl-145,.my-xxl-145{margin-top:145px;}
  .mt-xxl-150,.my-xxl-150{margin-top:150px;}
  .mt-xxl-155,.my-xxl-155{margin-top:155px;}
  .mt-xxl-160,.my-xxl-160{margin-top:160px;}
  .mt-xxl-165,.my-xxl-165{margin-top:165px;}
  .mt-xxl-170,.my-xxl-170{margin-top:170px;}
  .mt-xxl-175,.my-xxl-175{margin-top:175px;}
  .mt-xxl-180,.my-xxl-180{margin-top:180px;}
  .mt-xxl-185,.my-xxl-185{margin-top:185px;}
  .mt-xxl-190,.my-xxl-190{margin-top:190px;}
  .mt-xxl-195,.my-xxl-195{margin-top:195px;}
  .mt-xxl-200,.my-xxl-200{margin-top:200px;}

  .mb-xxl-0,.my-xxl-0{margin-bottom:0px;}
  .mb-xxl-5,.my-xxl-5{margin-bottom:5px;}
  .mb-xxl-10,.my-xxl-10{margin-bottom:10px;}
  .mb-xxl-15,.my-xxl-15{margin-bottom:15px;}
  .mb-xxl-20,.my-xxl-20{margin-bottom:20px;}
  .mb-xxl-25,.my-xxl-25{margin-bottom:25px;}
  .mb-xxl-30,.my-xxl-30{margin-bottom:30px;}
  .mb-xxl-35,.my-xxl-35{margin-bottom:35px;}
  .mb-xxl-40,.my-xxl-40{margin-bottom:40px;}
  .mb-xxl-45,.my-xxl-45{margin-bottom:45px;}
  .mb-xxl-50,.my-xxl-50{margin-bottom:50px;}
  .mb-xxl-55,.my-xxl-55{margin-bottom:55px;}
  .mb-xxl-60,.my-xxl-60{margin-bottom:60px;}
  .mb-xxl-65,.my-xxl-65{margin-bottom:65px;}
  .mb-xxl-70,.my-xxl-70{margin-bottom:70px;}
  .mb-xxl-75,.my-xxl-75{margin-bottom:75px;}
  .mb-xxl-80,.my-xxl-80{margin-bottom:80px;}
  .mb-xxl-85,.my-xxl-85{margin-bottom:85px;}
  .mb-xxl-90,.my-xxl-90{margin-bottom:90px;}
  .mb-xxl-95,.my-xxl-95{margin-bottom:95px;}
  .mb-xxl-100,.my-xxl-100{margin-bottom:100px;}
  .mb-xxl-105,.my-xxl-105{margin-bottom:105px;}
  .mb-xxl-110,.my-xxl-110{margin-bottom:110px;}
  .mb-xxl-115,.my-xxl-115{margin-bottom:115px;}
  .mb-xxl-120,.my-xxl-120{margin-bottom:120px;}
  .mb-xxl-125,.my-xxl-125{margin-bottom:125px;}
  .mb-xxl-130,.my-xxl-130{margin-bottom:130px;}
  .mb-xxl-135,.my-xxl-135{margin-bottom:135px;}
  .mb-xxl-140,.my-xxl-140{margin-bottom:140px;}
  .mb-xxl-145,.my-xxl-145{margin-bottom:145px;}
  .mb-xxl-150,.my-xxl-150{margin-bottom:150px;}
  .mb-xxl-155,.my-xxl-155{margin-bottom:155px;}
  .mb-xxl-160,.my-xxl-160{margin-bottom:160px;}
  .mb-xxl-165,.my-xxl-165{margin-bottom:165px;}
  .mb-xxl-170,.my-xxl-170{margin-bottom:170px;}
  .mb-xxl-175,.my-xxl-175{margin-bottom:175px;}
  .mb-xxl-180,.my-xxl-180{margin-bottom:180px;}
  .mb-xxl-185,.my-xxl-185{margin-bottom:185px;}
  .mb-xxl-190,.my-xxl-190{margin-bottom:190px;}
  .mb-xxl-195,.my-xxl-195{margin-bottom:195px;}
  .mb-xxl-200,.my-xxl-200{margin-bottom:200px;}

}



@media(max-width:767px){



  .mobilept0,.mobilepy0{padding-top:0px;}
  .mobilept5,.mobilepy5{padding-top:5px;}
  .mobilept10,.mobilepy10{padding-top:10px;}
  .mobilept15,.mobilepy15{padding-top:15px;}
  .mobilept20,.mobilepy20{padding-top:20px;}
  .mobilept25,.mobilepy25{padding-top:25px;}
  .mobilept30,.mobilepy30{padding-top:30px;}
  .mobilept35,.mobilepy35{padding-top:35px;}
  .mobilept40,.mobilepy40{padding-top:40px;}
  .mobilept45,.mobilepy45{padding-top:45px;}
  .mobilept50,.mobilepy50{padding-top:50px;}
  .mobilept55,.mobilepy55{padding-top:55px;}
  .mobilept60,.mobilepy60{padding-top:60px;}
  .mobilept65,.mobilepy65{padding-top:65px;}
  .mobilept70,.mobilepy70{padding-top:70px;}
  .mobilept75,.mobilepy75{padding-top:75px;}
  .mobilept80,.mobilepy80{padding-top:80px;}
  .mobilept85,.mobilepy85{padding-top:85px;}
  .mobilept90,.mobilepy90{padding-top:90px;}
  .mobilept95,.mobilepy95{padding-top:95px;}
  .mobilept100,.mobilepy100{padding-top:100px;}
  .mobilept105,.mobilepy105{padding-top:105px;}
  .mobilept110,.mobilepy110{padding-top:110px;}
  .mobilept115,.mobilepy115{padding-top:115px;}
  .mobilept120,.mobilepy120{padding-top:120px;}
  .mobilept125,.mobilepy125{padding-top:125px;}
  .mobilept130,.mobilepy130{padding-top:130px;}
  .mobilept135,.mobilepy135{padding-top:135px;}
  .mobilept140,.mobilepy140{padding-top:140px;}
  .mobilept145,.mobilepy145{padding-top:145px;}
  .mobilept150,.mobilepy150{padding-top:150px;}
  .mobilept155,.mobilepy155{padding-top:155px;}
  .mobilept160,.mobilepy160{padding-top:160px;}
  .mobilept165,.mobilepy165{padding-top:165px;}
  .mobilept170,.mobilepy170{padding-top:170px;}


  .mobilepb0,.mobilepy0{padding-bottom:0px;}
  .mobilepb5,.mobilepy5{padding-bottom:5px;}
  .mobilepb10,.mobilepy10{padding-bottom:10px;}
  .mobilepb15,.mobilepy15{padding-bottom:15px;}
  .mobilepb20,.mobilepy20{padding-bottom:20px;}
  .mobilepb25,.mobilepy25{padding-bottom:25px;}
  .mobilepb30,.mobilepy30{padding-bottom:30px;}
  .mobilepb35,.mobilepy35{padding-bottom:35px;}
  .mobilepb40,.mobilepy40{padding-bottom:40px;}
  .mobilepb45,.mobilepy45{padding-bottom:45px;}
  .mobilepb50,.mobilepy50{padding-bottom:50px;}
  .mobilepb55,.mobilepy55{padding-bottom:55px;}
  .mobilepb60,.mobilepy60{padding-bottom:60px;}
  .mobilepb65,.mobilepy65{padding-bottom:65px;}
  .mobilepb70,.mobilepy70{padding-bottom:70px;}
  .mobilepb75,.mobilepy75{padding-bottom:75px;}
  .mobilepb80,.mobilepy80{padding-bottom:80px;}
  .mobilepb85,.mobilepy85{padding-bottom:85px;}
  .mobilepb90,.mobilepy90{padding-bottom:90px;}
  .mobilepb95,.mobilepy95{padding-bottom:95px;}
  .mobilepb100,.mobilepy100{padding-bottom:100px;}
  .mobilepb105,.mobilepy105{padding-bottom:105px;}
  .mobilepb110,.mobilepy110{padding-bottom:110px;}
  .mobilepb115,.mobilepy115{padding-bottom:115px;}
  .mobilepb120,.mobilepy120{padding-bottom:120px;}
  .mobilepb125,.mobilepy125{padding-bottom:125px;}
  .mobilepb130,.mobilepy130{padding-bottom:130px;}
  .mobilepb135,.mobilepy135{padding-bottom:135px;}
  .mobilepb140,.mobilepy140{padding-bottom:140px;}
  .mobilepb145,.mobilepy145{padding-bottom:145px;}
  .mobilepb150,.mobilepy150{padding-bottom:150px;}
  .mobilepb155,.mobilepy155{padding-bottom:155px;}
  .mobilepb160,.mobilepy160{padding-bottom:160px;}
  .mobilepb165,.mobilepy165{padding-bottom:165px;}
  .mobilepb170,.mobilepy170{padding-bottom:170px;}



  .mobilepl0,.mobilepx0{padding-left:0px;}
  .mobilepl5,.mobilepx5{padding-left:5px;}
  .mobilepl10,.mobilepx10{padding-left:10px;}
  .mobilepl15,.mobilepx15{padding-left:15px;}
  .mobilepl20,.mobilepx20{padding-left:20px;}
  .mobilepl25,.mobilepx25{padding-left:25px;}
  .mobilepl30,.mobilepx30{padding-left:30px;}
  .mobilepl35,.mobilepx35{padding-left:35px;}
  .mobilepl40,.mobilepx40{padding-left:40px;}
  .mobilepl45,.mobilepx45{padding-left:45px;}
  .mobilepl50,.mobilepx50{padding-left:50px;}
  .mobilepl55,.mobilepx55{padding-left:55px;}
  .mobilepl60,.mobilepx60{padding-left:60px;}
  .mobilepl65,.mobilepx65{padding-left:65px;}
  .mobilepl70,.mobilepx70{padding-left:70px;}
  .mobilepl75,.mobilepx75{padding-left:75px;}
  .mobilepl80,.mobilepx80{padding-left:80px;}
  .mobilepl85,.mobilepx85{padding-left:85px;}
  .mobilepl90,.mobilepx90{padding-left:90px;}
  .mobilepl95,.mobilepx95{padding-left:95px;}
  .mobilepl100,.mobilepx100{padding-left:100px;}



  .mobilepr0,.mobilepx0{padding-right:0px;}
  .mobilepr5,.mobilepx5{padding-right:5px;}
  .mobilepr10,.mobilepx10{padding-right:10px;}
  .mobilepr15,.mobilepx15{padding-right:15px;}
  .mobilepr20,.mobilepx20{padding-right:20px;}
  .mobilepr25,.mobilepx25{padding-right:25px;}
  .mobilepr30,.mobilepx30{padding-right:30px;}
  .mobilepr35,.mobilepx35{padding-right:35px;}
  .mobilepr40,.mobilepx40{padding-right:40px;}
  .mobilepr45,.mobilepx45{padding-right:45px;}
  .mobilepr50,.mobilepx50{padding-right:50px;}
  .mobilepr55,.mobilepx55{padding-right:55px;}
  .mobilepr60,.mobilepx60{padding-right:60px;}
  .mobilepr65,.mobilepx65{padding-right:65px;}
  .mobilepr70,.mobilepx70{padding-right:70px;}
  .mobilepr75,.mobilepx75{padding-right:75px;}
  .mobilepr80,.mobilepx80{padding-right:80px;}
  .mobilepr85,.mobilepx85{padding-right:85px;}
  .mobilepr90,.mobilepx90{padding-right:90px;}
  .mobilepr95,.mobilepx95{padding-right:95px;}
  .mobilepr100,.mobilepx100{padding-right:100px;}




  .mobilemt0,.mobilemy0{margin-top:0px;}
  .mobilemt5,.mobilemy5{margin-top:5px;}
  .mobilemt10,.mobilemy10{margin-top:10px;}
  .mobilemt15,.mobilemy15{margin-top:15px;}
  .mobilemt20,.mobilemy20{margin-top:20px;}
  .mobilemt25,.mobilemy25{margin-top:25px;}
  .mobilemt30,.mobilemy30{margin-top:30px;}
  .mobilemt35,.mobilemy35{margin-top:35px;}
  .mobilemt40,.mobilemy40{margin-top:40px;}
  .mobilemt45,.mobilemy45{margin-top:45px;}
  .mobilemt50,.mobilemy50{margin-top:50px;}
  .mobilemt55,.mobilemy55{margin-top:55px;}
  .mobilemt60,.mobilemy60{margin-top:60px;}
  .mobilemt65,.mobilemy65{margin-top:65px;}
  .mobilemt70,.mobilemy70{margin-top:70px;}
  .mobilemt75,.mobilemy75{margin-top:75px;}
  .mobilemt80,.mobilemy80{margin-top:80px;}
  .mobilemt85,.mobilemy85{margin-top:85px;}
  .mobilemt90,.mobilemy90{margin-top:90px;}
  .mobilemt95,.mobilemy95{margin-top:95px;}
  .mobilemt100,.mobilemy100{margin-top:100px;}
  .mobilemt105,.mobilemy105{margin-top:105px;}
  .mobilemt110,.mobilemy110{margin-top:110px;}
  .mobilemt115,.mobilemy115{margin-top:115px;}
  .mobilemt120,.mobilemy120{margin-top:120px;}


  .mobilemb0,.mobilemy0{margin-bottom:0px;}
  .mobilemb5,.mobilemy5{margin-bottom:5px;}
  .mobilemb10,.mobilemy10{margin-bottom:10px;}
  .mobilemb15,.mobilemy15{margin-bottom:15px;}
  .mobilemb20,.mobilemy20{margin-bottom:20px;}
  .mobilemb25,.mobilemy25{margin-bottom:25px;}
  .mobilemb30,.mobilemy30{margin-bottom:30px;}
  .mobilemb35,.mobilemy35{margin-bottom:35px;}
  .mobilemb40,.mobilemy40{margin-bottom:40px;}
  .mobilemb45,.mobilemy45{margin-bottom:45px;}
  .mobilemb50,.mobilemy50{margin-bottom:50px;}
  .mobilemb55,.mobilemy55{margin-bottom:55px;}
  .mobilemb60,.mobilemy60{margin-bottom:60px;}
  .mobilemb65,.mobilemy65{margin-bottom:65px;}
  .mobilemb70,.mobilemy70{margin-bottom:70px;}
  .mobilemb75,.mobilemy75{margin-bottom:75px;}
  .mobilemb80,.mobilemy80{margin-bottom:80px;}
  .mobilemb85,.mobilemy85{margin-bottom:85px;}
  .mobilemb90,.mobilemy90{margin-bottom:90px;}
  .mobilemb95,.mobilemy95{margin-bottom:95px;}
  .mobilemb100,.mobilemy100{margin-bottom:100px;}
  .mobilemb105,.mobilemy105{margin-bottom:105px;}
  .mobilemb110,.mobilemy110{margin-bottom:110px;}
  .mobilemb115,.mobilemy115{margin-bottom:115px;}
  .mobilemb120,.mobilemy120{margin-bottom:120px;}


  .mw25{width:25%;}.mw33{width:33.33%;}.mw50{width:50%;}.mw100{width:100%;}



  /******* Text Alignments  *******/    
  .mobile-left{text-align:left}
  .mobile-center{text-align:center}
  .mobile-right{text-align:right}
  /******* Text Alignments  *******/ 
  .mx-15{margin-left: -15px; margin-right: -15px;}
  .mx-20{margin-left: -20px; margin-right: -20px;}

}


@media(max-width:577px){


  .smmobilept0,.smmobilepy0{padding-top:0px;}
  .smmobilept5,.smmobilepy5{padding-top:5px;}
  .smmobilept10,.smmobilepy10{padding-top:10px;}
  .smmobilept15,.smmobilepy15{padding-top:15px;}
  .smmobilept20,.smmobilepy20{padding-top:20px;}
  .smmobilept25,.smmobilepy25{padding-top:25px;}
  .smmobilept30,.smmobilepy30{padding-top:30px;}
  .smmobilept35,.smmobilepy35{padding-top:35px;}
  .smmobilept40,.smmobilepy40{padding-top:40px;}
  .smmobilept45,.smmobilepy45{padding-top:45px;}
  .smmobilept50,.smmobilepy50{padding-top:50px;}


  .smmobilepb0,.smmobilepy0{padding-bottom:0px;}
  .smmobilepb5,.smmobilepy5{padding-bottom:5px;}
  .smmobilepb10,.smmobilepy10{padding-bottom:10px;}
  .smmobilepb15,.smmobilepy15{padding-bottom:15px;}
  .smmobilepb20,.smmobilepy20{padding-bottom:20px;}
  .smmobilepb25,.smmobilepy25{padding-bottom:25px;}
  .smmobilepb30,.smmobilepy30{padding-bottom:30px;}
  .smmobilepb35,.smmobilepy35{padding-bottom:35px;}
  .smmobilepb40,.smmobilepy40{padding-bottom:40px;}
  .smmobilepb45,.smmobilepy45{padding-bottom:45px;}
  .smmobilepb50,.smmobilepy50{padding-bottom:50px;}
}
    /*****************************************/
/*     Start your custom style here      */
/*****************************************/

body{
  word-break:break-word;
}

.font100{font-weight:100;}
.font200{font-weight:200;}
.font300{font-weight:300;}
.font400{font-weight:400;}
.font500{font-weight:500;}
.font600{font-weight:600;}
.font700{font-weight:700;}
.font800{font-weight:800;}
.font900{font-weight:900;}

.font14{
  font-size:14px;
  line-height:1.3;
}

.font16{
  font-size:16px;
  line-height:1;
}

p:last-child{
  margin-bottom:0 !important;
}

ul{
  padding-left:25px;
}

code{
  color:var(--danger);
  font:inherit;
}

.lead{
  letter-spacing: 1.15px;
}

.cta-group {
  gap: 10px;
}

@media (max-width:991px){

  p br {
    display: none;
  }

}


.btn-wrapper.btn-primary-wrapper :is(.cta_button,.cta-button,[data-hubspot-cta-id],input[type=submit],input[type=button]):hover{
  background-color:var(--tertiary);
  border-color:var(--tertiary);
  color:var(--white);

}

.btn-wrapper.btn-outline-primary-wrapper :is(.cta_button,.cta-button,[data-hubspot-cta-id],input[type=submit],input[type=button]):hover{
  background-color:transparent;
  border-color:var(--quaternary);
  color:var(--quaternary);
}


.btn-wrapper.btn-outline-secondary-wrapper :is(.cta_button,.cta-button,[data-hubspot-cta-id],input[type=submit],input[type=button]):hover{
  background-color:transparent;
  border-color:var(--primary);
  color:var(--primary);
}

.btn-wrapper.btn-primary-wrapper :is(.cta_button,.cta-button,[data-hubspot-cta-id],input[type=submit],input[type=button]),
.btn-wrapper.btn-tertiary-wrapper :is(.cta_button,.cta-button,[data-hubspot-cta-id],input[type=submit],input[type=button]),
.btn-wrapper.btn-white-wrapper :is(.cta_button,.cta-button,[data-hubspot-cta-id],input[type=submit],input[type=button]){
  box-shadow: 0px 5.046px 17.661px 0px rgba(190, 17, 38, 0.15), -1px -1px 1px 0px rgba(0, 0, 0, 0.25) inset, -1px 0px 4px 0px rgba(0, 0, 0, 0.25) inset, 1px 2px 2px 0px rgba(255, 255, 255, 0.25) inset !important;
  border: 0;
}


.btn-wrapper.btn-tertiary-wrapper :is(.cta_button,.cta-button,[data-hubspot-cta-id],input[type=submit],input[type=button]):hover{
  background-color:var(--primary);
  border-color:var(--primary);
  color:var(--white);

}



.btn-white:hover, .btn-wrapper:is(.btn-white-wrapper,.btn-black-wrapper) :is(.cta_button,.cta-button,[data-hubspot-cta-id],input[type=submit],input[type=button]):hover {
  background-color:var(--tertiary);
  border-color:var(--tertiary);
  color:var(--white);
}

.btn-wrapper.btn-outline-white-wrapper :is(.cta_button,.cta-button,[data-hubspot-cta-id],input[type=submit],input[type=button]):hover{
  background-color:transparent;
  border-color:var(--danger);
  color:var(--danger);
}



@media (max-width:767px){

  .btn-wrapper :is(.cta_button,.cta-button,[data-hubspot-cta-id],input[type=submit],input[type=button]){
    padding-left:20px !important;
    padding-right:20px !important;
  }

  .btn-wrapper.btn-wrapper-lg :is(.cta_button,.cta-button,[data-hubspot-cta-id],input[type=submit],input[type=button]){
    padding-left:20px !important;
    padding-right:20px !important;
  }
}



/* ################ HEADER ################# */

.header__container[data-fixed=true]{padding-top:15px;position:fixed!important;top:0}
.header__container[data-fixed=true] .header__bottom{background:0 0!important;box-shadow:none!important;top:auto!important}
.header__wrapper{border:2px solid #fff;box-shadow:0 10px 24px 0 #00000026;backdrop-filter:blur(64px);padding:3.5px 10px;border-radius:100px;background:rgb(255 255 255 / 80%)}
.header__container:not([data-layout=mobile]) .header__logo-col{margin:0!important}
.header__container .header__menu-link{line-height:1!important;font-weight:600!important;font-family: Neue Haas Grotesk Display Pro !important;}
.header__container:not([data-layout=mobile]) .header__logo-col{margin:0!important}
.header__button-col{margin:0 0 0 38px!important}
.header__container .header__menu--desktop:not(.header__menu--top) .header__menu-item--depth-1>.header__menu-link{padding:19px!important}
.header__container .header__menu--desktop:not(.header__menu--top) .header__menu-item--depth-1:last-child>.header__menu-link {
  padding-right: 0 !important;
}
.header__container .header__menu-wrapper{padding-left:2px;display:flex;flex-wrap:wrap;}

.header__container .header__logo img{width:143px!important;}

.header__container .header__menu-submenu{backdrop-filter:blur(64px)!important;border:2px solid #fff!important;border-radius:20px!important;background:#ffffff !important}
.header__container .header__menu-submenu::before{content:'';backdrop-filter:blur(32px)!important;border-radius:20px;background:rgba(255,255,255,0.80)!important;height:100%;width:100%;position:absolute;top:0;left:0;right:0;bottom:0;overflow:hidden;z-index:-1;}
.header__menu-submenu .header__menu-item{background:0 0!important}
.header__container .cta-group{gap:7px}
.header__button-col .cta-button {min-width: 100px;text-align: center;justify-content: center;}

.header__container .flag-img img {width: 24px;height: 24px;
}

.header__menu-item--language-switcher .button{
  display:flex;align-items:center;
}

.header__container .header__menu-item--depth-1:last-child>.header__menu-submenu{left:-50% !important;right:auto !important;}

@media (max-width:1640px){ 
  .header__container .header__menu--desktop:not(.header__menu--top) .header__menu-item--depth-1>.header__menu-link{padding: 19px 10px !important;}
  .header__button-col {margin: 0 0 0 20px !important;}

}



@media (max-width:1200px){
  .header__container .header__menu--desktop:not(.header__menu--top) .header__menu-item--depth-1>.header__menu-link{padding:19px 5px!important}
  .header__button-col{margin:0 0 0 19px!important}
}

@media (min-width:1025px) and (max-width:1200px){

  .header__container .header__menu-link{font-size:14px !important}
}


@media (max-width:1024px){
  .header__wrapper{padding:11.25px 30px}
  .header__menu--mobile{border:0!important;top:65px!important;backdrop-filter:blur(64px)!important;border:2px solid #fff!important;border-radius:20px!important;background:rgb(255 255 255 / 100%)!important}
  .header__container .cta-group{gap:15px}
  .header__container[data-layout=mobile] .header__bottom{padding:0 !important}
  .header__container[data-layout=mobile] .header__menu-submenu--level-2>li{margin-bottom:0 !important;}
  .header__container .header__menu-submenu{background: #ffffff !important;transition: transform .3s ease, opacity .2s ease, visibility 0s ease !important;}
}
@media (max-width:767px){
  .header__wrapper{padding:11.25px 15px}
}




/* ################ FOOTER ################# */

.sr-footer-01{position:relative;font-size:16px;line-height:1;font-weight:500}
.sr-footer-01 .sr-footer-nav{padding-top:94px;padding-bottom:69px}
.sr-footer-01 .sr-footer-nav .row{justify-content:space-between}
.sr-footer-01 .sr-footer-nav .row>div{padding:0 8px}
.footer-logo-wrap{width:13.1%}
.footer-menu-wrap{width:65.4%}
.sr-footer-01 .footer-menu-wrap ul{margin:0;list-style-type:none;padding:0;list-style-image:none}
.sr-footer-01 li.hs-menu-depth-1>a{font-weight:600;font-size:16px;line-height:1;margin-bottom:16px;display:inline-block;padding:1.5px 0}
.sr-footer-01 .hs-menu-wrapper>ul{display:flex;flex-wrap:wrap;column-gap:69px;row-gap:30px;justify-content:space-between;padding-right:40px;padding-left:62px}
.sr-footer-01 .hs-menu-children-wrapper li a{color:#0d1d2a;font-weight:500;line-height:1;letter-spacing:.75px;display:inline-block;font-weight:500;font-size:16px;padding:1.5px 0}
.sr-footer-01 .hs-menu-children-wrapper li:not(:last-child){margin-bottom:16px}
.sr-footer-01 .footer-form-wrap{width:21.15%}
.sr-footer-01 .hide-title .footer-form-title{display:none;}
.sr-footer-01 .fb-row{border-top:1px solid #706f6f;padding-top:25px;padding-bottom:21px}
.sr-footer-01 .fb-row>div{width:33.33%;text-align:center}
.sr-footer-01 .fb-row{align-items:center;justify-content:space-between;flex-wrap:wrap}
.sr-footer-01 .fb-row>div:first-child{text-align:left}
.sr-footer-01 .fb-row>div:last-child{text-align:right}
.sr-footer-01 .footer-form{background-color:#0d1d2a;border-radius:20px;padding:15px 10px;display: flex;flex-direction: column;justify-content: center;align-items: center;min-height: 150px;}
.sr-footer-01 .footer-form .form-title{display:none}
.sr-footer-01 .footer-form form{gap:10px}
.sr-footer-01 .footer-form .hs-form-field{display:block}
.sr-footer-01 .footer-form .hs-form-field>label{display:none}
.sr-footer-01 .footer-form .hs-input{border-radius:30px;border-width:2px;background-color:transparent;font-size:16px;font-weight:500;color:#fff;padding:10px 38px;padding-right:15px;line-height:1;min-height:43px;border-color:rgb(255 255 255 / 60%)}
.sr-footer-01 .footer-form .hs-input::placeholder{color:#fff;font-size:16px;font-weight:500;line-height:1;letter-spacing:0;opacity: 0.6;}
.sr-footer-01 .footer-form input[type=submit]{width:100%;background:0 0;border-color:#fff}
.sr-footer-01 .footer-form input[type=submit]:hover{border-color:var(--primary);background:0 0;color:var(--primary)}
.sr-footer-01 .footer-form .submitted-message{color:#fff;font-weight:600;font-size:16px;text-align:center;}
.sr-footer-01 .social{list-style:none;padding-left:0;margin:0;display:flex;flex-wrap:wrap;gap:16px;justify-content:center}
.sr-footer-01 ul.social li span{border-radius:50%;width:32px;height:32px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;color:inherit;border:1.33px solid;border-image-source:linear-gradient(274.89deg,rgba(255,255,255,0.9) 52.92%,rgba(255,255,255,0) 95.87%);box-shadow:-2.67px -2.67px 5.33px 0 #fffFFF40 inset;box-shadow:0 4px 18.67px 0 #00000026;box-shadow:0 5.33px 5.33px 0 #00000040 inset;box-shadow:2.33px 2.33px 5.33px 0 #fffFFF40 inset}
.sr-footer-01 ul.social li span svg,.sr-footer-01 ul.social li span svg g{fill:inherit}
.sr-footer-01 ul.social li span svg{max-height:12px}
.sr-footer-01 .footer-form .hs_cos_wrapper_type_form{width:100%;}
@media (max-width:1200px){
  .footer-logo-wrap{width:15%}
  .sr-footer-01 .hs-menu-wrapper>ul{column-gap:15px;display:flex;padding-left:15px;padding-right:15px}
  .footer-menu-wrap{width:60%}
  .sr-footer-01 .footer-form-wrap{width:25%}
  .sr-footer-01 .footer-form .hs-input{padding-left:20px;padding-right:20px;}
}
@media (max-width:992px){
  .footer-logo-wrap{width:100%;margin-bottom:40px;text-align:center}
  .footer-menu-wrap{width:100%;margin-bottom:40px}
  .sr-footer-01 .footer-form-wrap{width:100%}
  .sr-footer-01 .footer-form{padding:20px;text-align:center;}
  .sr-footer-01 .sr-footer-nav{padding-bottom:60px;padding-top:60px}
  .sr-footer-01 .footer-form .hs-input{text-align:left;}
}
@media (max-width:767px){
  .sr-footer-01 .sr-footer-nav{padding-bottom:40px;padding-top:40px}
  .sr-footer-01 .hs-menu-wrapper>ul>li{width:48%;text-align:center}
  .sr-footer-01 .fb-row>div{width:100%;margin-bottom:20px}
  .sr-footer-01 .fb-row>div:first-child{text-align:center}
  .sr-footer-01 .fb-row>div:last-child{text-align:center;margin-bottom:0}
}
@media (max-width:479px){
  .sr-footer-01 .hs-menu-wrapper>ul>li{width:44%;text-align:center}
}


/* home-banner */

.home-banner .sr-cover-inner{margin:0 auto;width:100%}
.banner-img-wrap{position:absolute;left:-65px;top:288px;width:60%;max-width:100%}
.banner-img{width:730px!important;max-width:100%!important;height:auto!important;object-fit:cover;position:relative}
.home-banner .heading{margin-bottom:45px;line-height:1;}
.home-banner .height-auto{min-height:0}
.home-banner .height-small{padding:8rem 0}
.home-banner .height-medium{padding:14rem 0}
.home-banner .height-large{padding:20rem 0}
.home-banner .height-full{min-height:100vh}
@media (min-width:992px) and (max-width:1200px){
  .home-banner{padding-top:200px!important;padding-bottom:100px!important}
  .banner-img-wrap{top:200px}
}
@media (max-width:1200px){
  .banner-img-wrap{width:500px!important;left:0}
  .banner-img{width:500px!important}
}
@media (max-width:992px){
  .home-banner.mobile-overlay:before{background-color:rgb(0 0 0 / 70%)!important}
  .banner-img-wrap{width:100%!important;position:static;margin-bottom:15px}
  .banner-img{width:100%!important}
  .home-banner .heading{margin-bottom:30px}
}

@media (max-width:767px){
  .home-banner .heading{margin-bottom:20px}
}


/* sr-tabs-02-custom */
.sr-tabs-02-custom .heading:last-child{margin-bottom:0;}
.sr-tabs-02-custom .tabber-list-wrap{background:linear-gradient(0deg,#253746,#253746),linear-gradient(250.91deg,rgba(245,245,245,.25) -5.29%,rgba(245,245,245,0) 72.33%);box-shadow:-3px 3px 6px 0 #00000059 inset;width:924px;margin:0 auto;border-radius:100px;position:absolute;top:157px;left:50%;transform:translateX(-50%);z-index:10;max-width:100%;overflow:auto;scrollbar-width:none;scroll-behavior:smooth}
.sr-tabs-02-custom .tabber-list{padding:0;margin:0;list-style-image:none;list-style-type:none;display:flex;justify-content:space-between}
.sr-tabs-02-custom .tabber-btn{display:inline-flex;align-items:center;justify-content:center;padding:18.5px 35px;font-weight:600;min-width:175px;line-height:1.56;color:#fff;cursor:pointer;white-space:nowrap;border-radius:100px}
.sr-tabs-02-custom li.tabber-btn--wrap:first-of-type .tabber-btn,.sr-tabs-02-custom li.tabber-btn--wrap:last-of-type .tabber-btn {min-width: 300px;}
/* .sr-tabs-02-custom .tabber-btn.active{background:#12212d;box-shadow:0 5.05px 17.66px 0 #fffFFF26} */
.sr-tabs-02-custom .img-col{width:54.5%}
.sr-tabs-02-custom .img-wrap{width:100%}
.sr-tabs-02-custom .content-col{width:45.5%;position:relative}
.sr-tabs-02-custom .content-col-inner{padding-top:279px;padding-left: 57px;}
.sr-tabs-02-custom .tabs-outer-wrap{position:relative;overflow:hidden}
.sr-tabs-02-custom .tab-content{opacity:0;visibility:hidden;min-height:inherit;pointer-events:none;position:absolute;transition:all .5s ease-in-out;width:100%;background-repeat: no-repeat;background-position: right bottom;background-size: 46%;}
.sr-tabs-02-custom .tab-content.active{opacity:1;visibility:visible;pointer-events:all}
.sr-tabs-02-custom .tab-content .d-flex{width:100%}
.sr-tabs-02-custom .tab-pattern{margin-top:25px;position:absolute;bottom:0;right:0;z-index:-1}
.sr-tabs-02-custom .content-wrap{width:439px;max-width:100%}
.sr-tabs-02-custom .text-content{width:395px;max-width:100%}
.sr-tabs-02-custom .text-content *:last-child{margin-bottom:0;}
.sr-tabs-02-custom .text-content ul{font-size:initial;}
.sr-tabs-02-custom .content-wrap .heading{margin-bottom:21px}
.sr-tabs-02-custom .tabber-bg{position:absolute;top:0;left:0;height:100%;border-radius:999px;background-color:#12212d;z-index:-1;transition:all .3s ease;box-shadow:1px 2px 2px 0 #fffFFF40 inset;box-shadow:-1px 0 4px 0 #00000040 inset;box-shadow:-1px -1px 1px 0 #00000040 inset;box-shadow:0 5.05px 17.66px 0 #fffFFF26}
.sr-tabs-02-custom .img-wrap.imgBlend img {mix-blend-mode: multiply;}

@media (min-width:992px){
  .sr-tabs-02-custom .container{max-width:100%;padding:0}
}
/* @media (min-width:1641px){

.sr-tabs-02-custom .img-wrap img{
height:1005px !important;
}

} */

@media (min-width:1921px){
  .sr-tabs-02-custom .container{max-width:1920px}
}
@media (max-width:1640px){
  .sr-tabs-02-custom .img-col{width:60%}
  .sr-tabs-02-custom .content-col{width:40%}
}
@media (max-width:1400px){
  .sr-tabs-02-custom .tabber-list-wrap{top:60px;}
  .sr-tabs-02-custom .content-col-inner{padding-top:160px;padding-left:0;}
  .sr-tabs-02-custom .tab-content .d-flex{align-items: center;}
  .sr-tabs-02-custom .img-wrap{display:flex;align-items:center}
  .sr-tabs-02-custom .tab-content{padding-bottom:100px !important;}
}

@media (max-width:1200px){
  /*     .sr-tabs-02-custom .tabber-list-wrap{top:95px} */
}
@media (max-width:992px){
  .sr-tabs-02-custom .tab-content .d-flex{flex-wrap:wrap}
  .sr-tabs-02-custom .content-col{width:100%}
  .sr-tabs-02-custom .tabs-outer-wrap {overflow: initial;}
  .sr-tabs-02-custom .img-wrap{width:100%;max-width:500px;margin:0 auto;margin-bottom:30px;min-height:auto;position:relative;left:-5%}
  .sr-tabs-02-custom .img-col{width:100%}
  .sr-tabs-02-custom .tab-pattern{width:60%}
  .sr-tabs-02-custom .content-col-inner{padding-top:0;padding-bottom:0}
  .sr-tabs-02-custom .content-wrap,.sr-tabs-02-custom .text-content{width:100%}
  .sr-tabs-02-custom .tabber-list-wrap{width:800px;}
  .sr-tabs-02-custom .tab-content{background-position: bottom center;background-size:60%;padding-bottom:150px !important}
}
@media (max-width:767px){
  .sr-tabs-02-custom .tabber-btn{padding:15px 24px;font-size:14px;}
  .sr-tabs-02-custom li.tabber-btn--wrap:first-of-type .tabber-btn,.sr-tabs-02-custom li.tabber-btn--wrap:last-of-type .tabber-btn {min-width: 220px;}
  .sr-tabs-02-custom .tabber-list-wrap{top:30px}
  .sr-tabs-02-custom .tabber-list-wrap{width:720px;}
  .sr-tabs-02-custom .tab-content{background-size:100%;}
}

@media (max-width:479px){
  .sr-tabs-02-custom .tabber-btn{min-width:150px;}
}


/* sr-tabs-02-custom */
.sr-tabs-02-custom-v2 .heading:last-child{margin-bottom:0;}
.sr-tabs-02-custom-v2 .tabber-list-wrap{background:linear-gradient(0deg,#253746,#253746),linear-gradient(250.91deg,rgba(245,245,245,.25) -5.29%,rgba(245,245,245,0) 72.33%);box-shadow:-3px 3px 6px 0 #00000059 inset;max-width:924px;margin:0 auto;border-radius:100px;position:absolute;top:361px;left:50%;transform:translateX(-50%);z-index:10;max-width:100%;overflow:auto;scrollbar-width:none;scroll-behavior:smooth}
.sr-tabs-02-custom-v2 .tabber-list{padding:0;margin:0;list-style-image:none;list-style-type:none;display:flex;justify-content:space-between}
.sr-tabs-02-custom-v2 .tabber-btn{display:inline-flex;min-width:300px;align-items:center;justify-content:center;padding:18.5px 35px;font-weight:600;line-height:1.56;color:#fff;cursor:pointer;white-space:nowrap;border-radius:100px}
.sr-tabs-02-custom-v2 .img-col{width:55.05%}
.sr-tabs-02-custom-v2 .img-wrap{width:100%}
.sr-tabs-02-custom-v2 .content-col{width:44.95%;position:relative}
.sr-tabs-02-custom-v2 .content-col-inner{padding-top:37px;margin-left:-48px;}
.sr-tabs-02-custom-v2 .tabs-outer-wrap{position:relative;overflow:hidden}
.sr-tabs-02-custom-v2 .tab-content{opacity:0;visibility:hidden;pointer-events:none;min-height:inherit;position:absolute;transition:all .5s ease-in-out;width:100%;background-repeat: no-repeat;background-size: 46%;background-position: right 28px bottom 44px;}
.sr-tabs-02-custom-v2 .tab-content.active{opacity:1;visibility:visible;pointer-events:all}
.sr-tabs-02-custom-v2 .tab-content .d-flex{width:100%}
.sr-tabs-02-custom-v2 .tab-pattern{margin-top:25px;position:absolute;bottom:25px;right:25px;z-index:0}
.sr-tabs-02-custom-v2 .content-wrap{width:569px;max-width:100%}
.sr-tabs-02-custom-v2 .text-content{width:100%;max-width:100%;height:198px;overflow:auto;}
.sr-tabs-02-custom-v2 .text-content ul{font-size:initial}
.sr-tabs-02-custom-v2 .bottom-text-content{width:426px;}
.sr-tabs-02-custom-v2 .text-content *:last-child,
.sr-tabs-02-custom-v2 .bottom-text-content *:last-child{margin-bottom:0;}
.sr-tabs-02-custom-v2 .content-wrap .heading{margin-bottom:21px}
.sr-tabs-02-custom-v2 .tabber-bg{position:absolute;top:0;left:0;height:100%;border-radius:999px;background-color:#12212d;z-index:-1;transition:all .3s ease;box-shadow:1px 2px 2px 0 #fffFFF40 inset;box-shadow:-1px 0 4px 0 #00000040 inset;box-shadow:-1px -1px 1px 0 #00000040 inset;box-shadow:0 5.05px 17.66px 0 #fffFFF26}

@media (min-width:992px){
  .sr-tabs-02-custom-v2 .container{max-width:100%;padding:0}
  .sr-tabs-02-custom-v2 .img-wrap{min-height:800px;}
}
@media (min-width:1921px){
  .sr-tabs-02-custom-v2 .container{max-width:1920px}
}
@media (max-width:1640px){
  .sr-tabs-02-custom-v2 .tab-content{background-size:40%;padding-bottom: 100px !important;}
  .sr-tabs-02-custom-v2 .img-col{width:60%}
  .sr-tabs-02-custom-v2 .content-col{width:40%}
  .sr-tabs-02-custom-v2 .content-col-inner{margin-left:0}
}
@media (max-width:1400px){
  .sr-tabs-02-custom-v2 .container{padding:0 15px}
}

@media (max-width:1400px){
  .sr-tabs-02-custom-v2 .tabber-list-wrap{top:325px;}

}
@media (max-width:992px){
  .sr-tabs-02-custom-v2 .tab-content .d-flex{flex-wrap:wrap}
  .sr-tabs-02-custom-v2 .content-col{width:100%}
  .sr-tabs-02-custom-v2 .img-wrap{width:100%;max-width:500px;margin:0 auto;margin-bottom:30px}
  .sr-tabs-02-custom-v2 .img-col{width:100%}
  .sr-tabs-02-custom-v2 .tab-pattern{width:60%}
  .sr-tabs-02-custom-v2 .content-col-inner{padding-top:0;padding-bottom:0;margin:0;}
  .sr-tabs-02-custom-v2 .content-wrap,
  .sr-tabs-02-custom-v2 .text-content{width:100%;height:auto;}
  .sr-tabs-02-custom-v2 .tabber-list-wrap{top:70px;}
  .sr-tabs-02-custom-v2 .bottom-text-content {width: 100%;}
  .sr-tabs-02-custom-v2 .tabber-list-wrap{width:800px;}
  .sr-tabs-02-custom-v2 .tab-content {background-size: 60%;padding-bottom: 150px !important;}
}
@media (max-width:767px){
  .sr-tabs-02-custom-v2 .tabber-btn{padding:15px 24px;min-width:220px;}
  .sr-tabs-02-custom-v2 .tabber-list-wrap{width:720px;}
  .sr-tabs-02-custom-v2 .tab-pattern{bottom:10px;right:10px;}
  .sr-tabs-02-custom-v2 .tab-content {background-size: 100%;background-position: right bottom;}
}

@media (max-width:479px){
  .sr-tabs-02-custom-v2 .tabber-btn{min-width:170px;}
}




/* sr-tabs-accordion-01-custom */

.sr-tabs-accordion-01-custom{position:relative}
.sr-tabs-accordion-01-custom .heading{margin-bottom:0}
.sr-tabs-accordion-01-custom h2.heading{letter-spacing:-1.15px}
.sr-tabs-accordion-01-custom .accordion-box.custom-gradient{background:linear-gradient(228.2deg,rgba(13,29,42,.85) 11.62%,#0d1d2a 59.78%),linear-gradient(75.55deg,rgba(255,255,255,0) 51.78%,rgba(255,255,255,.2) 121.66%)}
.sr-tabs-accordion-01-custom .accordion-box{position:relative;border-radius:24px;width:481px;max-width:100%;}
.sr-tabs-accordion-01-custom .accordion-box:before{content:"";position:absolute;inset:0;padding:5px;border-radius:23px;background:linear-gradient(106.85deg,rgba(255,255,255,.9) -11.09%,rgba(255,255,255,0) 94.13%),linear-gradient(112.53deg,rgba(255,255,255,.8) 10.51%,rgba(255,255,255,.0439863) 33.36%,rgba(255,255,255,.72) 56.65%,rgba(255,255,255,.368) 74.92%,rgba(255,255,255,.688) 89.77%,rgba(255,255,255,0) 97.65%);-webkit-mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);-webkit-mask-composite:destination-out;mask-composite:exclude;pointer-events:none;z-index:1;top:-1px;width:calc(100% + 2px);height:calc(100% + 2px);left:-1px;}
.sr-tabs-accordion-01-custom .arrow-svg{display:inline-flex;align-items:center;justify-content:center;width:32px;height:32px;min-width:32px;border-radius:32px;transition:all .5s ease-in-out}
.sr-tabs-accordion-01-custom .arrow-svg svg{width:20px}
.sr-tabs-accordion-01-custom .accordion-title{gap:10px}
.sr-tabs-accordion-01-custom .accordion-title.active .arrow-svg{transform:rotate(180deg)}
.sr-tabs-accordion-01-custom .accordion-item{border-bottom:2px solid rgb(255 255 255 / 19%);padding-bottom:26px;padding-top:24px}
.sr-tabs-accordion-01-custom .accordion-item:last-child{border-bottom:0}
.sr-tabs-accordion-01-custom .accordion-item:first-child{padding-top:0}
.sr-tabs-accordion-01-custom .accordion-item:last-child{padding-bottom:0}
.sr-tabs-accordion-01-custom .accordion-title{cursor:pointer}
.sr-tabs-accordion-01-custom .accordion-title h4{margin-bottom:0;font-weight:700;}
.sr-tabs-accordion-01-custom .accordion-body{display:none}
.sr-tabs-accordion-01-custom .accordion-body-inner{padding-top:24px}
.sr-tabs-accordion-01-custom .accordion-tab-images{position:absolute;width:100%;height:100%;top:0}
.sr-tabs-accordion-01-custom .accordion-tab-img{width:1368px;max-width:100%;text-align:right;position:absolute;top:0;right:0;opacity:0;visibility:hidden;pointer-events:none;transition:all .5s ease-in-out;height:100%}
.sr-tabs-accordion-01-custom .accordion-tab-img:before{content:'';position:absolute;left:0;top:0;width:100%;height:100%;display:block;background:linear-gradient(273.19deg,rgba(255,255,255,0) 53.68%,#f5f4f4 93.19%);z-index:1}
.sr-tabs-accordion-01-custom .accordion-tab-img img{height:100%;object-fit:contain;max-height:1097px;mix-blend-mode: multiply;}
.sr-tabs-accordion-01-custom .accordion-tab-img.active{opacity:1;visibility:visible;pointer-events:all}
.sr-tabs-accordion-01-custom .container{position:relative;z-index:2}
.sr-tabs-accordion-01-custom .accordion-item .mobile-img{display:none}
.sr-tabs-accordion-01-custom .heading-wrapper {width: 520px;max-width: 100%;}
@media (max-width:767px){
  .sr-tabs-accordion-01-custom .accordion-tab-images{display:none}
  .sr-tabs-accordion-01-custom .accordion-body-inner{padding-top:20px}
  .sr-tabs-accordion-01-custom .accordion-item{padding:20px 0}
  .sr-tabs-accordion-01-custom .accordion-box{width:100%}
  .sr-tabs-accordion-01-custom .accordion-item .mobile-img{background-color:#fff;position:relative;width:100%;display:block;margin-top:20px;}
  /*   .sr-tabs-accordion-01-custom .accordion-item .mobile-img:before{background:linear-gradient(273.19deg,hsla(0,0%,100%,0) 53.68%,#0d1d2aed 93.19%);content:"";display:block;height:100%;left:0;position:absolute;top:0;width:100%;z-index:1} */
  .sr-tabs-accordion-01-custom .heading-wrapper {
    width: 100%;
    max-width: 100%;
  } 
}


/* sr-tabs-accordion-02_custom */

.sr-tabs-accordion-02_custom .details__summary h3{font-weight:700 }
.sr-tabs-accordion-02_custom .mb-0 h2{margin-bottom:0}
.sr-tabs-accordion-02_custom .details{margin-bottom:23px;} 
.sr-tabs-accordion-02_custom .details:last-child{margin-bottom:0}
.sr-tabs-accordion-02_custom .container{position:relative}
.sr-tabs-accordion-02_custom .details-group{display:flex;flex-direction:column}
.sr-tabs-accordion-02_custom .details{overflow:hidden;transition:height .3s ease-in-out;border-bottom:2px solid #1b1818}
.sr-tabs-accordion-02_custom .details__summary{list-style:none;position:relative;transition:color 0.2s ease-in-out;cursor:pointer;position:relative}
.sr-tabs-accordion-02_custom .details__content{position:relative}
.sr-tabs-accordion-02_custom .details__summary::-webkit-details-marker{display:none}
.sr-tabs-accordion-02_custom .details__summary::-webkit-details-marker{display:none}
.sr-tabs-accordion-02_custom .details-icon{pointer-events:none;position:absolute;right:5%;top:30%;border-radius:100%;-webkit-transition:all 0.2s ease;-o-transition:all 0.2s ease;transition:all 0.2s ease}
.sr-tabs-accordion-02_custom .details-icon:{content:"";left:50%;position:absolute;top:30%}
.sr-tabs-accordion-02_custom [open] .details-icon{transform:rotate(180deg); -webkit-transition:all 0.2s ease;-o-transition:all 0.2s ease;transition:all 0.2s ease; }
.sr-tabs-accordion-02_custom .accordion-wrapper .heading{font-weight:700;line-height:1;margin-bottom:23px}
.sr-tabs-accordion-02_custom .accordion-wrapper+.accordion-wrapper{margin-top:49px}
.sr-tabs-accordion-02_custom .details__content ul{list-style-image:none}
.sr-tabs-accordion-02_custom .details__content ul li{margin:0}
.sr-tabs-accordion-02_custom .details__content a[href^="mailto:"],.sr-tabs-accordion-02_custom .details__content a[href^="tel:"]{color:inherit;text-decoration:none}
@media (min-width:1200px){
  .sr-tabs-accordion-02_custom .main-row{margin:0 -50px}
  .sr-tabs-accordion-02_custom .main-row>div{padding:0 50px}
}

@media (max-width:1200px){
  .sr-tabs-accordion-02_custom .details__summary h3{font-size:19px}
  .sr-tabs-accordion-02_custom .details-icon{width:15px}
}
@media (max-width:992px){
  .sr-tabs-accordion-02_custom .details{margin-bottom:0;} 
  .sr-tabs-accordion-02_custom .details:last-child{margin-bottom:0}
  .sr-tabs-accordion-02_custom .details{height:auto!important}
}

@media (max-width:767px){
  .sr-tabs-accordion-02_custom .details__summary{padding-top:20px!important;padding-bottom:20px!important}
  .sr-tabs-accordion-02_custom .accordion-wrapper .heading{margin-bottom:15px}
  .sr-tabs-accordion-02_custom .accordion-wrapper+.accordion-wrapper{margin-top:30px}
  .sr-tabs-accordion-02_custom .main-row>div+div{margin-top:30px}
}


/* sr-three-col-custom-v3 */

.sr-three-col-custom-v3 .content-text{max-width:533px;margin:0 0 0 auto}
.sr-three-col-custom-v3.bg-none{background:linear-gradient(0deg,#fff,#fff),linear-gradient(0deg,rgba(245,244,244,0) 0,#f5f4f4 100%)!important}
.sr-three-col-custom-v3 .sr-col{padding-left:0;padding-right:0;margin-left:0}
.sr-three-col-custom-v3{position:relative; overflow: hidden;}
.sr-three-col-custom-v3 .right{position:static}
.sr-three-col-custom-v3 .left ul{padding-left:27px;font-size:smaller}
.sr-three-col-custom-v3 .absolute-img{left:0;position:absolute;width:58%;top:0}
.sr-three-col-custom-v3 .media img{width:100%;mix-blend-mode: multiply;}
.sr-three-col-custom-v3 .content-text h6{margin-bottom:34px}
.sr-three-col-custom-v3 .content-text code{color:#be1126}
@media only screen and (max-width:1820px){
  .sr-three-col-custom-v3 .absolute-img{width: 50%;top: 12%;}
}
@media only screen and (max-width:1200px){
  .sr-three-col-custom-v3 .absolute-img{width:48%}
}
@media only screen and (max-width:992px){
  .sr-three-col-custom-v3 .absolute-img{bottom:0;top:auto;width:100%;left:0;position:static}
  .sr-three-col-custom-v3 .right{position:relative;height:auto}
  .sr-three-col-custom-v3 .content-text{max-width:100%}
  .sr-three-col-custom-v3 .content-text h6{margin-bottom:30px}
}
@media only screen and (max-width:767px){
  .sr-three-col-custom-v3 .content-text h6{margin-bottom:20px}
  .product-page .sr-three-col-custom-v3 .absolute-img {
    position: relative;
    left: -5%;
}
}

/* contentWithImgCustom */

.contentWithImgCustom.bg-none::before{position:absolute;left:0;right:0;height:100%;width:100%;z-index:-1;content:'';top:0;background:linear-gradient(180deg,rgba(245,244,244,0) 0,#f5f4f4 100%),#fff!important}
.contentWithImgCustom{position:relative}
.contentWithImgCustom .col-content h2{line-height:1.1}
.contentWithImgCustom .sr-col{border:0}
.contentWithImgCustom .col-content h2,.contentWithImgCustom .col-content p:not(:last-of-type){margin-bottom:37px}
.contentWithImgCustom .bottomfeatures [class*=col-]{padding-left:8px;padding-right:8px}
.contentWithImgCustom .feature-card .itemHeader:last-child{padding-bottom:0}
.contentWithImgCustom .feature-card .itemHeader h3{margin:0}
.contentWithImgCustom[data-parallax=true] .imgWithCoverBg {
  mix-blend-mode: multiply;
}

.contentWithImgCustom .image img{mix-blend-mode: multiply;}
.contentWithImgCustom .imgWithCoverBg{background-repeat:no-repeat;background-size:cover;height:100%;left:0;position:absolute;width:50%;max-width:50%;background-position:center;top:0}
.contentWithImgCustom.columnReversed .imgWithCoverBg{left:auto;right:0}
.contentWithImgCustom.useImgCoverBg .imgWithCoverBg{display:none}
.contentWithImgCustom .feature-card.gradient_one{backdrop-filter:blur(12px);background:radial-gradient(82.67% 60.49% at 27.01% 50%,#fff 0,hsla(0,0%,100%,0) 100%),linear-gradient(110deg,hsla(300,1%,87%,0) -27.86%,hsla(300,1%,87%,.3) 153.14%),hsla(0,0%,100%,.8)!important}
.contentWithImgCustom .feature-card.gradient_one:before{background:linear-gradient(125.58deg,#fff 8.11%,hsla(0,0%,100%,0) 105.83%);border-radius:16px;content:"";inset:0;-webkit-mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);-webkit-mask-composite:xor;mask-composite:exclude;padding:2.64px;position:absolute;z-index:-1}
.contentWithImgCustom .bottomfeatures{position:relative;z-index:1}
.sr-multicol-media.useImgCoverBg .sr-col{padding:1rem}
.contentWithImgCustom .contColumnWrp .heading.h6{margin-bottom:24px;line-height:1}
.contentWithImgCustom .contColumnWrp .col-content h6{letter-spacing:0;margin-bottom:0;line-height:1.7;font-weight:600}
.contentWithImgCustom[data-parallax=true]{overflow:hidden}
@media (min-width:1200px){
  .contentWithImgCustom .bottomfeatures .col-xl-2{flex:0 0 20%;max-width:20%}
}
@media (min-width:992px){
  .contentWithImgCustom .bottomfeatures.row-gap{row-gap:37px}
  .contentWithImgCustom.useImgCoverBg .imgColumnWrp .content-wrapper.image{display:none}
  .contentWithImgCustom.useImgCoverBg .imgWithCoverBg{display:block}
}
@media (min-width:1400px){
  .contentWithImgCustom .responsive-image{width:100%}
  .contentWithImgCustom .contColumnWrp.col-md-6 .content-wrapper{max-width:534px}
  .contentWithImgCustom .contColumnWrp.col-md-7 .content-wrapper{max-width:605px}
  .contentWithImgCustom.useImgCoverBg.columnReversed .col-lg-5.imgWithCoverBg{max-width:50%}
  .contentWithImgCustom .contColumnWrp.col-lg-7 .content-wrapper{max-width:615px}
  .contentWithImgCustom[data-parallax=true] .bottomfeatures{padding-top:5px}
}
@media (max-width:1640px){
  .contentWithImgCustom .imgWithCoverBg{background-size:contain !important;height:70%;}
}
@media (max-width:991px){
  .contentWithImgCustom .imgColumnWrp{max-width:100%;flex:0 0 100%}
  .contentWithImgCustom .contColumnWrp{max-width:100%;flex:0 0 100%}
  .contentWithImgCustom .feature-card{padding:20px !important}
  .sr-multicol-media.useImgCoverBg .sr-col{padding:0;}

  .contentWithImgCustom#custom-mobile-parallax .imgColumnWrp{position:static;}
  .contentWithImgCustom#custom-mobile-parallax .responsive-image{height:700px;}
  .contentWithImgCustom#custom-mobile-parallax .image img{position: absolute;right: 0;object-fit: contain;object-position: right;width: auto;height: 700px;}


}
@media (max-width:767px){
  .contentWithImgCustom .bottomfeatures.row-gap{row-gap:20px}
  .contentWithImgCustom#custom-mobile-parallax .responsive-image{height:600px;}
  .contentWithImgCustom#custom-mobile-parallax .image img{height: 600px;}
}

@media (max-width:575px){
  .contentWithImgCustom#custom-mobile-parallax .responsive-image{height:400px;}
  .contentWithImgCustom#custom-mobile-parallax .image img{height:400px;}
}

.pagebgShape.aboutBg{position:absolute;top:674px;left:0;display:none;pointer-events:none;right:0;bottom:0;height:2852px;width:100%;background-repeat:no-repeat;background-position:center;background-size:cover;}
.aboutPage.sr.dnd_page .pagebgShape.aboutBg{display:block;}
.pagebgShape.homeBg{position:absolute;top:5525px;left:0;z-index:-1;right:0;display:none;pointer-events:none;width:100%;height:300%;background-repeat:no-repeat;background-size:contain;background-position:center;}
.homePage.sr.dnd_page .pagebgShape.homeBg{display:block;}

/* .sr-cards-features-01.ourValues */

.sr-cards-features-01.ourValues .features [class*=col-]{padding-left:8px;padding-right:8px}
.sr-cards-features-01.ourValues .features .sr-card h3{margin-bottom:0}
.sr-cards-features-01.ourValues .features .sr-card.gradient_one{backdrop-filter:blur(12px);background:radial-gradient(82.67% 60.49% at 27.01% 50%,#fff 0,rgba(255,255,255,0) 100%),linear-gradient(110deg,rgba(222,221,222,0) -27.86%,rgba(222,221,222,.3) 153.14%),rgba(255,255,255,.8)!important}
.sr-cards-features-01.ourValues .topSec .description{line-height:1.3}
.sr-cards-features-01.ourValues .features .sr-card.gradient_one::before{content:"";position:absolute;inset:0;border-radius:16px;padding:2.64px;z-index:-1;-webkit-mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);-webkit-mask-composite:xor;mask-composite:exclude;background:linear-gradient(125.58deg,#fff 8.11%,rgba(255,255,255,0) 105.83%)}
.sr-cards-features-01.ourValues .features .sr-card .itemHeader:last-child{padding-bottom:0}
.sr-cards-features-01.ourValues.bg-custom .topSec .description p{line-height:1.5}
.sr-cards-features-01.ourValues.bg-custom .topSec{padding-bottom:37px}
.sr-cards-features-01.ourValues.bg-custom .topSec .description h2{line-height:1.1}
.sr-cards-features-01.ourValues .topSec .description h2{margin-bottom:37px}
.sr-cards-features-01.ourValues .topSec .description p:not(:last-of-type){margin-bottom:37px}
.sr-cards-features-01.ourValues .topSec{max-width:533px}
@media (min-width:1200px){
  .sr-cards-features-01.ourValues .col-xl-2{flex:0 0 20%;max-width:20%}
  .sr-cards-features-01.ourValues .row-gap{row-gap:37px}


}

/* sr-cards-grid-02.missionCardsWrp  */

.sr-cards-grid-02.missionCardsWrp .cards.row [class*=col-]{padding:0;border:0 solid transparent}
.sr-cards-grid-02.missionCardsWrp .card{position:relative;background-size:cover;background-position:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:100%;border-style:solid;border-width:0}
.sr-cards-grid-02.missionCardsWrp .card:after{content:"";width:100%;height:100%;position:absolute;top:0;left:0;z-index:0}
.sr-cards-grid-02.missionCardsWrp .card-inner{position:relative;z-index:1;height:100%;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}
.sr-cards-grid-02.missionCardsWrp .card-inner .cta-group{margin-top:auto}
.sr-cards-grid-02.missionCardsWrp .card{background-size:cover;background-repeat:no-repeat;background-position:center;position:relative}
@media (max-width:768px){
  .sr-cards-grid-02.missionCardsWrp .description br,.sr-cards-grid-02.missionCardsWrp .heading br{display:none}
}
.sr-cards-grid-02.missionCardsWrp{background-repeat:no-repeat}
.sr-cards-grid-02.missionCardsWrp .card-inner .text-wrapper.description ul li:not(:last-child){margin-bottom:1.5rem}
.sr-cards-grid-02.missionCardsWrp .card-inner .text-wrapper.description ul{line-height:1.5;letter-spacing:1.15px}
.sr-cards-grid-02.missionCardsWrp .cards.row [class*=col-]{padding-left:8px;padding-right:8px}
.sr-cards-grid-02.missionCardsWrp .card-inner .text-wrapper.description p{letter-spacing:1.15px}
.sr-cards-grid-02.missionCardsWrp .card-inner .heading.h4{font-weight:700}


/* sr-offer-bar-01_custom */

.sr-offer-bar-01_custom{border-radius:30px 0 0 30px;overflow:hidden;}
.main_offer_box{max-width:1752px;padding-left:15px;margin:0 auto;margin-right:0}
.sr-offer-bar-01_custom .main-row{column-gap:102px}
.sr-offer-bar-01_custom .left_col{max-width:642px;width:52.8%;}
.sr-offer-bar-01_custom .right_col{max-width:409px;width:50%;}
.sr-offer-bar-01_custom .left_col h2{margin-bottom:20px;line-height:1}
.sr-offer-bar-01 input:not([type=radio]):not([type=checkbox]):not([type=file]):not([type=submit]),.sr-offer-bar-01 select,.sr-offer-bar-01 textarea,.sr-offer-bar-01_custom .form,.sr-offer-bar-01_custom input[readonly]:not([type=radio]):not([type=checkbox]):not([type=file]):not([type=submit]){border-radius:50px;background-color:#deddde;min-height:55px;border-color:#deddde}
.sr-offer-bar-01_custom .form label{display:none}
.sr-offer-bar-01_custom input::placeholder{color:#706f6f}
.sr-offer-bar-01_custom .hs-button{min-width:211px}
.sr-offer-bar-01_custom .main-row>div{padding-left:8px;padding-right:8px}

@media(min-width:1940px){

  .main_offer_box{max-width:1800px;}
}

@media only screen and (max-width:1200px){
  .sr-offer-bar-01_custom .main-row{column-gap:0}
  .sr-offer-bar-01_custom .left_col{width:50%;max-width:100%}
  .sr-offer-bar-01_custom .right_col{width:50%;max-width:100%}
  .pagebgShape.homeBg{ top:5550px; }
}
@media only screen and (max-width:992px){
  .sr-offer-bar-01_custom .main-row{row-gap:30px}
  .sr-offer-bar-01_custom .left_col,.sr-offer-bar-01_custom .right_col{width:100%}
  .sr-offer-bar-01_custom .hs-button{width:100%;min-width:auto;}

}
@media only screen and (max-width:767px){
  .sr-offer-bar-01_custom{border-radius:16px}

}


/* sr-contact-01_custom */

.sr-contact-01_custom .row{margin-right:0;margin-left:0}
.sr-contact-01_custom .media{flex:1;align-items:center;position:relative}
.sr-contact-01_custom .media-figure{flex-basis:100%}
.sr-contact-01_custom .media-body{border-style:solid;border-width:1px}
.sr-contact-01_custom p a{color:var(--primary);border:none}
.sr-contact-01_custom .media-body a.cta-button{padding:0;line-height:1.1;border:none;min-height:auto}
.sr-contact-01_custom h2.heading{margin:0}
.sr-contact-01_custom .description p{line-height:1.278;margin:0}
.sr-contact-01_custom .container{max-width:1910px;padding:0 15px}
.sr-contact-01_custom .map-container{max-width:1910px;margin:0 auto;padding:0 15px}
.sr-contact-01_custom .media-body{position:absolute;left:18%;top:75.5px}
.sr-contact-01_custom .contact-deatils{display:flex;justify-content:space-between;gap:63px;padding-bottom:65px}
.sr-contact-01_custom .sr-map{height:100%;min-height:561px;width:100%;margin-right:0;background-size:cover;background-position:center;border-radius:16px}
.sr-contact-01_custom .detail-title{margin-bottom:11px}
@media (max-width:992px){
  .sr-contact-01_custom .media-body{padding:40px!important;left: 50%;transform: translateX(-50%);}
}
@media only screen and (max-width :768px){
  .sr-contact-01_custom .media{display:block!important}
  .sr-contact-01_custom .sr-map{padding-bottom:62.5%}
  .sr-contact-01_custom .media-body{left:10%;padding:20px 30px!important;width:80%;top:50px;transform: translateX(0%);}
  .sr-contact-01_custom .contact-deatils{flex-direction:column;gap:15px;padding-bottom:21px}
}
@media (max-width:544px){
  .sr-contact-01_custom .media-body{left:5%;width:90%;}
}


.sr-cards-grid-02-v3{background-repeat:no-repeat}
.sr-cards-grid-02-v3 .heading:last-child{margin-bottom:0;}
.sr-cards-grid-02-v3 .card{backdrop-filter:blur(24px);box-shadow:inset 15.82px 17.93px 23.21px 0 rgba(255,255,255,.25);position:relative;}
.sr-cards-grid-02-v3 .card.gradient_one{border:0;}
.sr-cards-grid-02-v3 .card.gradient_one:before{background: linear-gradient(125.58deg, #fff 8.11%, hsla(0, 0%, 100%, 0) 105.83%);border-radius:inherit;content: "";inset: 0;-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);-webkit-mask-composite: xor;mask-composite: exclude;padding: 2.64px;position: absolute;z-index: -1;}
.sr-cards-grid-02-v3 .cards.row{row-gap:30px}
.sr-cards-grid-02-v3 .card{position:relative;background-size:cover;background-position:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:100%}
.sr-cards-grid-02-v3 .card:after{content:"";width:100%;height:100%;position:absolute;top:0;left:0;z-index:0}
.sr-cards-grid-02-v3 .card-inner{position:relative;z-index:1;height:100%;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}
.sr-cards-grid-02-v3 .card-inner .cta-group{margin-top:auto}
.sr-cards-grid-02-v3 .card{background-size:cover;background-repeat:no-repeat;background-position:center;position:relative}
.sr-cards-grid-02-v3 .heading{margin-bottom:21px}
.sr-cards-grid-02-v3 .card-inner .description p {letter-spacing: 0; line-height: 1.22;}
.sr-cards-grid-02-v3 .card-image img{width:220px;object-fit:contain;max-width:100%;}
.sr-cards-grid-02-v3{position:relative;overflow:hidden}
.sr-cards-grid-02-v3 .container{position:static;z-index:2}
.sr-cards-grid-02-v3 .overlay-img{position:absolute;right:0;top:0;z-index:-1;}
.sr-cards-grid-02-v3 .main-heading{max-width:50%}


@media (min-width:2500px){
  .sr-cards-grid-02-v3 .container{position:relative;}
  .sr-cards-grid-02-v3 .overlay-img {right: -30%;top: -30%;}
}

@media (max-width:1400px){
  .sr-cards-grid-02-v3 .main-heading{max-width:48%}
}
@media (max-width:1200px){
  .sr-cards-grid-02-v3 .overlay-img{right:-10%}
  .sr-cards-grid-02-v3 .main-heading{max-width:42%}
}
@media (max-width:992px){
  .sr-cards-grid-02-v3 .main-heading{max-width:100%}
  .sr-cards-grid-02-v3 .overlay-img{position:static;margin-top:30px}
  .sr-cards-grid-02-v3 .overlay-img img{max-height:500px}
}
@media (max-width:767px){
  .sr-cards-grid-02-v3 .description br,.sr-cards-grid-02-v3 .heading br{display:none}
}




.sr-cards-pricing-01_custom{position:relative}
.sr-cards-pricing-01_custom .sr-card{margin:0 10px;padding-left:0;padding-right:0}
.sr-cards-pricing-01_custom>div{position:relative;z-index:1}
.sr-cards-pricing-01_custom .card{backdrop-filter:blur(24px);box-shadow:inset 15.82px 17.93px 23.21px 0 rgba(255,255,255,.25),inset -6px -6px 54px 0 rgba(0,0,0,.03);position:relative}
.sr-cards-pricing-01_custom .card:before{content:"";position:absolute;inset:0;padding:2.64px;border-radius:inherit;background:linear-gradient(125.58deg,#fff 8.11%,rgba(255,255,255,0) 105.83%);background-origin:border-box;background-clip:border-box;-webkit-mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);-webkit-mask-composite:destination-out;mask-composite:exclude;pointer-events:none;z-index:1;border-radius:15px}
.sr-cards-pricing-01_custom .dark-card  {
  background: linear-gradient(0deg, #10202C, #10202C),linear-gradient(136.72deg, rgba(222, 221, 222, 0) 32.07%, rgba(222, 221, 222, 0.15) 78.95%) !important;
  box-shadow:
    0px 5.05px 17.66px 0px rgba(190, 17, 38, 0.15),
    inset 1px 2px 2px 0px rgba(255, 255, 255, 0.25),
    inset -1px 0px 4px 0px rgba(0, 0, 0, 0.25),
    inset -1px -1px 1px 0px rgba(0, 0, 0, 0.25) !important;
  color:#ffffff !important;
}

.sr-cards-pricing-01_custom .dark-card:before{padding: 3px;background: linear-gradient(106.85deg, rgba(255, 255, 255, .9) -11.09%, rgba(255, 255, 255, 0) 94.13%), linear-gradient(112.53deg, rgba(255, 255, 255, .8) 10.51%, rgba(255, 255, 255, .0439863) 33.36%, rgba(255, 255, 255, .72) 56.65%, rgba(255, 255, 255, .368) 74.92%, rgba(255, 255, 255, .688) 89.77%, rgba(255, 255, 255, 0) 97.65%);}
.sr-cards-pricing-01_custom .dark-card .card-text,.sr-cards-pricing-01_custom .dark-card h5{color:#fff}
.sr-cards-pricing-01_custom .card{border-width:0;border-style:solid;text-align:center;-webkit-transition:background .25s ease-in-out;-moz-transition:background .25s ease-in-out;transition:background .25s ease-in-out;border-radius:16px}
.sr-cards-pricing-01_custom .pricing-name h5{margin-bottom:21px}
.sr-cards-pricing-01_custom .card-inner ul{padding:0;list-style:none;margin-bottom:.5rem;margin-top:10px}
.sr-cards-pricing-01_custom .pricing-name{font-weight:600}
.sr-cards-pricing-01_custom .card-inner ul li{padding:10px 0;position:relative;display:inline-block;padding-left:24px;text-align:left}
.sr-cards-pricing-01_custom .card-inner ul li:before {position: absolute;content: "";background: url(https://144336660.fs1.hubspotusercontent-eu1.net/hubfs/144336660/flawa_iq/images/check-list.svg);width: 18px;height: 17px;left: 0;top: 50%;background-repeat: no-repeat;transform: translateY(-50%);}
.sr-cards-pricing-01_custom .dark-card .card-inner ul li:before{ background: url(https://144336660.fs1.hubspotusercontent-eu1.net/hubfs/144336660/flawa_iq/images/Vector%2012.svg);background-repeat: no-repeat;} 
.sr-cards-pricing-01_custom .card .featured_text {border: 1px solid;border-color: var(--borders);border-radius: 1rem;padding: 0.2rem 1.25rem;position: absolute;font-size: 0.9rem;top: 1.5rem;left: 50%;transform: translateX(-50%);min-width: max-content;}

.sr-cards-pricing-01_custom .card-inner{height:100%;position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}
.sr-cards-pricing-01_custom .card-inner .cta-group{margin-top:auto}
.sr-cards-pricing-01_custom .section-wrapper{padding-bottom:3rem}
@media only screen and (min-width:992px){
  .sr-cards-pricing-01_custom .card{flex:1}
  .sr-cards-pricing-01_custom .card.active{box-shadow:15px 25px 60px 0 rgba(0,0,0,.1)}
}
@media only screen and (max-width:1200px){
  .sr-cards-pricing-01_custom .card-inner{padding:40px 30px!important}
}
@media only screen and (max-width:992px){
  .sr-cards-pricing-01_custom .card{margin:1rem 0}
  .sr-cards-pricing-01_custom .card{margin:0 2%;width:46%}
  .sr-cards-pricing-01_custom .cards .card{width:96%}
  .sr-cards-pricing-01_custom .sr-card{margin:10px}
  .sr-cards-pricing-01_custom .card-inner ul li{display:block}
}
@media only screen and (max-width:767px){
  .sr-cards-pricing-01_custom .card-inner{padding:30px 20px!important}
}

.sr-tabs-testimonials-01_custom{background-repeat:no-repeat;}
.sr-tabs-testimonials-01_custom .nav-tabs{gap:40px}
.sr-tabs-testimonials-01-thumbs .nav-link{border-radius:50%;border:none;background:0 0;padding:0;margin:0}
.sr-tabs-testimonials-01-thumbs .nav-link.active{opacity:1}
.sr-tabs-testimonials-01-thumbs .nav-link img{border-radius:50%;width:48px;height:48px!important;object-fit:cover;transition:all .3s ease}
.sr-tabs-testimonials-01-thumbs .nav-link.active img{transform:scale(1.354)}
.sr-tabs-testimonials-01_custom .nav-tabs{list-style:none;min-height:65px}
.sr-tabs-testimonials-01_custom .double-qoute-svg svg{width:85px;height:80px;margin:0 auto}
.sr-tabs-testimonials-01_custom .nav-link.active img{box-shadow:0 4px 14px 0 #be112640;border:2px solid #d60000;border:2px solid border-image-source: linear-gradient(0deg,#d60000,#d60000),linear-gradient(128.66deg,rgba(27,24,24,0) -1.11%,rgba(27,24,24,.96) 97.43%)}
.sr-tabs-testimonials-01_custom .tab-description h3{margin:0}
.sr-tabs-testimonials-01_custom .tab-content p{margin:0}
@media (max-width:767px){
  .sr-tabs-testimonials-01_custom .nav-tabs{gap:25px}
  .sr-tabs-testimonials-01_custom .double-qoute-svg svg{width:75px;height:70px}
  .sr-tabs-testimonials-01-thumbs .nav-link.active img{transform:scale(1.2)}
}


/* sr-two-col-01_custom2 */
.sr-two-col-01_custom2{overflow:hidden;position:relative;}
.sr-two-col-01_custom2 .text_wrapper {  max-width: 533px; width:100%;}
.sr-two-col-01_custom2 .text_wrapper code{color:#BE1126}
.sr-two-col-01_custom2 .highlight_box {  border-radius: 20px;  }
.sr-two-col-01_custom2 .bg_img_box { background: transparent;position:static;}
/* .sr-two-col-01_custom2 .responsive-image { padding: 60px 0 60px 50px;background:linear-gradient(0deg, #0D1D2A, #0D1D2A),linear-gradient(75.55deg, rgba(255, 255, 255, 0) 51.78%, rgba(255, 255, 255, 0.2) 121.66%);position:absolute;right: -5px;width: 45%;box-shadow: -10.63px 10.63px 14.88px 0px #00000040;border-radius: 300px 0 0 300px;-webkit-border-radius: 300px 0 0 300px;-moz-border-radius: 300px 0 0 300px;-ms-border-radius: 300px 0 0 300px;-o-border-radius: 300px 0 0 300px;} */
/* .sr-two-col-01_custom2 .responsive-image::before {content: "";position: absolute;inset: 0;padding: 5px;border-radius: inherit;background: linear-gradient(112.53deg, rgba(255, 255, 255, 0.8) 10.51%, rgba(255, 255, 255, 0.0439863) 33.36%, rgba(255, 255, 255, 0.72) 56.65%, rgba(255, 255, 255, 0.368) 74.92%, rgba(255, 255, 255, 0.688) 89.77%, rgba(255, 255, 255, 0) 97.65%);background-clip: border-box;background-origin: border-box;-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);-webkit-mask-composite: destination-out;mask-composite: exclude;pointer-events: none;z-index: 1;}
*/
.sr-two-col-01_custom2 .responsive-image { position:absolute;right: -5px;width: 45%;}


@media only screen and (max-width: 992px){
  .sr-two-col-01_custom2 .text_wrapper { max-width: 100%; width:100%;  }
  .sr-two-col-01_custom2 .responsive-image { position:relative; width:100%; border-radius: 30px; margin: 0 auto;     right: -5%; max-width: 100%; text-align: center;}
  /*   .sr-two-col-01_custom2 .responsive-image { padding: 20px;} */
}

/* sr-two-col-01_custom3 */

.sr-two-col-01_custom3{overflow:hidden;position:relative;}
.sr-two-col-01_custom3 .text_wrapper {  max-width: 533px; width:100%;}
.sr-two-col-01_custom3 .highlight_box {  border-radius: 20px;  }
.sr-two-col-01_custom3 .bg_img_box { background: transparent;  position:static;}
/* .sr-two-col-01_custom3 .responsive-image { padding: 60px 60px 50px 0;background:linear-gradient(0deg, #0D1D2A, #0D1D2A),linear-gradient(75.55deg, rgba(255, 255, 255, 0) 51.78%, rgba(255, 255, 255, 0.2) 121.66%);position:absolute;left: -5px;  width: 45%;box-shadow: -2.13px 4.25px 4.25px 0px #00000040;border-radius: 0 300px 300px 0;-webkit-border-radius: 0 300px 300px 0;-moz-border-radius:  0 300px 300px 0;-ms-border-radius:  0 300px 300px 0;-o-border-radius:  0 300px 300px 0;} */
/* .sr-two-col-01_custom3 .responsive-image:before {content: "";position: absolute;inset: 0;padding: 5px;border-radius: inherit;background: linear-gradient(112.53deg, rgba(255, 255, 255, 0.8) 10.51%, rgba(255, 255, 255, 0.0439863) 33.36%, rgba(255, 255, 255, 0.72) 56.65%, rgba(255, 255, 255, 0.368) 74.92%, rgba(255, 255, 255, 0.688) 89.77%, rgba(255, 255, 255, 0) 97.65%);background-clip: border-box;background-origin: border-box;-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);-webkit-mask-composite: destination-out;mask-composite: exclude;pointer-events: none;z-index: 1;} */
.sr-two-col-01_custom3  .responsive-image img { max-width: 100%; text-align: right !important;}
.sr-two-col-01_custom3 .responsive-image { position:absolute;left: -5px;  width: 45%;}
.sr-three-col-custom-v3 .left ul{letter-spacing:1.15px}
.sr-three-col-custom-v3.rowReversed .left .content-text ul li:not(:first-child){margin-top:10px}
.sr-three-col-custom-v3.rowReversed .left .content-text h2{margin-bottom:33px}
.sr-three-col-custom-v3.rowReversed .left .content-text ul{padding-top:20px;margin-bottom:0}
@media (min-width:1400px){
.sr-three-col-custom-v3.rowReversed .left .content-text{margin-left:0!important;max-width:546px}
.sr-three-col-custom-v3.rowReversed .right .absolute-img{width:49.5%;max-width:940px}
}

@media only screen and (max-width: 992px){
  .sr-two-col-01_custom3 .text_wrapper { max-width: 100%; width:100%;  }
  .sr-two-col-01_custom3 .responsive-image { position:relative; width:100%; border-radius: 30px;  margin: 0 auto;left:-5%; max-width: 100%; text-align: center;}
  /*   .sr-two-col-01_custom3 .responsive-image { padding: 20px;} */
}




/* sr-cards-team_custom */

.sr-cards-team_custom ul.social{margin:0;padding:0;gap:16px;display:flex;flex-wrap:wrap;justify-content: center;}
.sr-cards-team_custom ul.social li{display:inline-block;margin:0}
.sr-cards-team_custom ul.social li a{border-radius:100%;box-shadow:inset -4.58px -4.58px 9.17px 0 #ffffff40,0 6.88px 32.08px 0 #00000026,inset 0 9.17px 9.17px 0 #00000040,inset 4px 4px 9.17px 0 #ffffff40;display:inline-block;margin-right:0;position:relative;color:#ffffff3b}
.sr-cards-team_custom ul.social li a:before{background:linear-gradient(274.89deg,hsla(0,0%,100%,.9) 52.92%,hsla(0,0%,100%,0) 95.87%);border-radius:45px;content:" ";display:inline-block;height:58px;left:-2.2px;opacity:.5;position:absolute;top:-2.2px;width:58px}
.sr-cards-team_custom ul.social li span{align-items:center;border:2.29px solid;border-radius:45px;display:inline-flex;height:54px;justify-content:center;opacity:1;position:relative;width:54px}
.sr-cards-team_custom ul.social li span svg{display: block;vertical-align: middle;width: 22px;height: 22px;}
.sr-cards-team_custom .row{row-gap:16px;}
.sr-cards-team_custom .card-title{font-size:24px;margin:0;line-height:1.2084;font-weight:700}
.sr-cards-team_custom .card-img-top{height:200px;width:200px;margin:0 auto;border-radius:10px;position:relative;background:linear-gradient(180deg,rgba(245,244,244,0) -13.28%,#f5f4f4 82.3%)}
.sr-cards-team_custom .team-card{height:100%;position:relative;border-radius:16px;background:linear-gradient(0deg,rgba(255,255,255,.8),rgba(255,255,255,.8)),linear-gradient(109.9deg,rgba(222,221,222,0) -27.86%,rgba(222,221,222,.3) 153.14%),radial-gradient(52.84% 77.25% at 27.01% 50%,#fff 0,rgba(255,255,255,0) 100%);backdrop-filter:blur(24px);box-shadow:inset 15.82px 17.93px 23.21px rgba(255,255,255,.25)}
.sr-cards-team_custom .card-img-top img{border-radius:10px;object-fit:cover;height:100%;width:100%}
.sr-cards-team_custom .card-img-top::after{content:"";display:block;height:100%;width:100%;position:absolute;top:0;left:0;background-image:linear-gradient(0deg,rgba(255,255,255,.8),rgba(255,255,255,.8)),linear-gradient(109.9deg,rgba(222,221,222,0) -27.86%,rgba(222,221,222,.3) 153.14%),radial-gradient(52.84% 77.25% at 27.01% 50%,#fff 0,rgba(255,255,255,0) 100%);border-radius:inherit;content:"";inset:0;-webkit-mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);mask-composite:exclude;padding:1px;pointer-events:none;z-index:1}
.sr-cards-team_custom .team-card::after{content:"";display:block;height:100%;width:100%;position:absolute;top:0;left:0;background-image:linear-gradient(0deg,rgba(255,255,255,.8),rgba(255,255,255,.8)),linear-gradient(109.9deg,rgba(222,221,222,0) -27.86%,rgba(222,221,222,.3) 153.14%),radial-gradient(52.84% 77.25% at 27.01% 50%,#fff 0,rgba(255,255,255,0) 100%);border-radius:inherit;content:"";inset:0;-webkit-mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);mask-composite:exclude;padding:1px;pointer-events:none;z-index:1}
@media(max-width:1200px){
  .sr-cards-team_custom .card-img-top{height:150px;width:150px}
}
@media(max-width:992px){
  .sr-cards-team_custom .card-img-top{height:125px;width:125px}
  .sr-cards-team_custom .card-title{font-size:20px}
}
@media(max-width:768px){
  .sr-cards-team_custom .card-title{font-size:18px}
  .sr-cards-team_custom .team-column_custom .card-img-top{height: 200px;max-width: 100%;width: 200px;}
  .sr-cards-team_custom .team-column_custom .card-img-top img{object-position:top}
}
@media(max-width:540px){
  .sr-cards-team_custom .card-title{font-size:16px}
}


/* sr-clients-carousel-01_custom */

.sr-clients-carousel-01_custom .logo-slider {display: flex;align-items: center;}
.sr-clients-carousel-01_custom .grayscale-always_gray img,
.sr-clients-carousel-01_custom .grayscale-color_on_hover img {filter: grayscale(1);transition: filter 0.3s;}
.sr-clients-carousel-01_custom .grayscale-color_on_hover img:hover {filter: grayscale(0);transition: filter 0.3s;}
.sr-clients-carousel-01_custom .blaze-pagination button {background: var(--dots);}
.sr-clients-carousel-01_custom .blaze-pagination button.active {background-color: transparent;box-shadow: 0 0 0 2px var(--dots);}
.sr-clients-carousel-01_custom .description{line-height:1;}
.sr-clients-carousel-01_custom .logo-slider img { filter: grayscale(1); object-fit: contain; display: block; height: 100%; width: 100%; }
.sr-clients-carousel-01_custom .logo_slider-image { max-width: 210px; height: 80px; margin:0 40px;background: #f5f4f4; }
.sr-clients-carousel-01_custom .blaze-track { gap: 0 !important; width: 100% !important; padding-bottom:25px; }
.sr-clients-carousel-01_custom .heading { margin: 0;  }
.sr-clients-carousel-01_custom .logo_slider-image img{mix-blend-mode: multiply;}
.sr-clients-carousel-01_custom .blaze-container::before {pointer-events:none; z-index: 1; content:'' ;  display:block; background: linear-gradient(90deg, #F4F4F4 0.88%, rgba(244, 244, 244, 0) 8.65%, rgba(244, 244, 244, 0) 86.54%, #F4F4F4 98.29%); height: 100%; width: 100%; position: absolute; left: 0; top: 0; }

@media (min-width: 992px) {
  .sr-clients-carousel-01_custom .column-20.logo-slider>* {width: calc(20% - 2.875rem);}
  .sr-clients-carousel-01_custom .column-25.logo-slider>* {width: calc(25% - 2.875rem);}
  .sr-clients-carousel-01_custom .column-165.logo-slider>* {width: calc(16.66% - 2.875rem);}
}
@media (max-width: 991px) {
  .sr-clients-carousel-01_custom .logo_slider-image {  margin: 0 30px; max-width: 180px; }
}
@media (max-width: 767px) {
  .sr-clients-carousel-01_custom .logo_slider-image { height: 70px; margin: 0 25px; max-width: 150px; }
}
@media (max-width: 540px) {
  .sr-clients-carousel-01_custom .logo_slider-image { height: 60px; margin: 0 20px; max-width: 130px; }
}



.sr-hero-04.aboutBanner.sr-cover-parallax .sr-cover-inner{margin:0 auto;width:100%;z-index:2;position:relative;}
.sr-hero-04.aboutBanner .height-auto{min-height:0vh;}
.sr-hero-04.aboutBanner .height-medium{padding:14rem 0;}
.sr-hero-04.aboutBanner .height-large{padding:20rem 0;}
.sr-hero-04.aboutBanner .height-full{min-height:100vh;}
.sr-hero-04.aboutBanner .height-small{padding:10.85rem 0 10rem;}
.sr-hero-04.aboutBanner .description p {line-height: normal;}

@media (min-width:1200px){
  .sr-hero-04.aboutBanner .offset-lg-1{margin-left:14.333333%;}
  .sr-hero-04.aboutBanner .col-lg-10{flex:0 0 75%;max-width:75%;}
}

@media (max-width:992px){
  .sr-hero-04.aboutBanner br{display:none;}
}

@media (max-width:767px){
  .sr-hero-04.aboutBanner .height-small{padding:8rem 0 6rem;}
}


.sr-hero-04.aboutBanner .heading:last-of-type{margin:0}
.sr-hero-04.aboutBanner.servBanner .description h1{margin-bottom:25px}
.sr-hero-04.aboutBanner.servBanner .btn-wrapper a.cta-button{font-size:18px;min-height:1.9rem;padding-left:14px;padding-right:14px;min-width:71px}
.sr-hero-04.aboutBanner.servBanner .cta-group{column-gap:30px}
.sr-hero-04.aboutBanner.servBanner .topSec .description p{line-height:normal}
@media (min-width:1200px){
  .sr-hero-04.aboutBanner.servBanner .topSec{max-width:800px;margin:0 auto}
  .sr-hero-04.aboutBanner.servBanner .offset-lg-1{margin-left:13%}
}
@media (max-width: 767px){
  .sr-hero-04.aboutBanner.servBanner .cta-group{column-gap:10px;}
}

.customLogoGallery .heading-wrapper .heading:last-of-type{margin-bottom:0;}
.customLogoGallery{padding-top:4.75rem;}
.customLogoGallery .slick-dots{margin:0;padding:1.71875rem 0;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;list-style-type:none;}
.customLogoGallery .slick-dots button{display:none;}
.customLogoGallery .slick-dots>li{padding:0 0.625rem;cursor:pointer;}
.customLogoGallery .slick-dots>li:before{content:'';display:block;width:0.625rem;height:0.625rem;border:solid 3px transparent;border-radius:50%;background-color:#0c63ff;background-color:var(--primary);}
.customLogoGallery .slick-dots>li.slick-active:before{box-shadow:0 0 0px 5px #0c63ff;background-color:#fff;}
.customLogoGallery .item-card{padding-left:8px;padding-right:8px;width:100%;}
.customLogoGallery .media{color:inherit;border-width:1px;border-style:solid;-webkit-transition:all 0.2s ease;-o-transition:all 0.2s ease;transition:all 0.2s ease;padding:1.875rem;height:100%;}
.customLogoGallery a.media:hover{color:inherit;}
.customLogoGallery .media .card-heading{margin-bottom:0;font-weight:700;}
.customLogoGallery .media .card-description{margin-bottom:0;opacity:0.7;line-height:1;}
.customLogoGallery .media img{width:50px;max-height:50px;margin-right:0.556rem;height:auto;}
.customLogoGallery .media{backdrop-filter:blur(12px);box-shadow:15.82px 17.93px 23.21px 0px #FFFFFF40 inset;}
.customLogoGallery .media.gradient_one{border:0; background: radial-gradient(82.67% 60.49% at 27.01% 50%, #FFF 0%, rgba(255, 255, 255, 0.00) 100%), linear-gradient(110deg, rgba(222, 221, 222, 0.00) -27.86%, rgba(222, 221, 222, 0.30) 153.14%), rgba(255, 255, 255, 0.80) !important;}
.customLogoGallery .media.gradient_one::before{background:linear-gradient(125.58deg,#FFFFFF 8.11%,rgba(255,255,255,0) 105.83%);content:"";inset:0;-webkit-mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);-webkit-mask-composite:xor;mask-composite:exclude;padding:2.64px;position:absolute;z-index:-1;}
.customLogoGallery.customLogoGallery .card-carousel{row-gap:16px;display:-webkit-box;display:-ms-flexbox;display:flex;flex-wrap:wrap;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;}

@media (min-width:768px){
  .customLogoGallery .slick-list{overflow:visible;width:100%;}
  .customLogoGallery a.media:hover{box-shadow:15px 25px 60px 0 rgba(0,0,0,0.1);transform:translateY(-5px);cursor:pointer;}
  .customLogoGallery .item-card{width:50%;}
}


@media (min-width:992px){
  .customLogoGallery .item-card{width:33.33%;}
}
@media (min-width: 1500px){
  .customLogoGallery .media img{width:60px;margin-right:1.111rem;height:auto;max-height:60px;}
}

@media screen and (-ms-high-contrast:active) and (min-width:768px),screen and (-ms-high-contrast:none) and (min-width:768px){
  .customLogoGallery .slick-list,
  .customLogoGallery .slick-track{width:100%!important;}
}
@media (max-width:1200px){
  .customLogoGallery .media .card-heading{font-size:18px;}
  .customLogoGallery .item-card .media{padding:25px 20px !important}
}
@media (max-width:767px){
  .customLogoGallery .media .media-body{-webkit-box-flex:inherit;-ms-flex:inherit;flex:inherit;}
  .customLogoGallery .media{align-items:center;}
}


.sr-three-col-02_custom .right-tick-image img {width:44px;height:44px; margin:0 auto; } 
.sr-three-col-02_custom  .content-wrapper {  height: 100%; backdrop-filter: blur(24px);  position: relative;  }
.sr-three-col-02_custom .heading{margin: 0;}
.sr-three-col-02_custom .heading + .heading {margin-top: 24px;}
.sr-three-col-02_custom .digital_card-wrapper{row-gap:16px;}
.sr-three-col-02_custom .digital_card_modual_heading { max-width: 905px; margin: 0 auto; }
.sr-three-col-02_custom .content-wrapper { position: relative; }
.sr-three-col-02_custom.no-card-padding .content-wrapper{padding-top:0;padding-bottom:0;}

@media(max-width:540px){
  .sr-three-col-02_custom .responsive-image img { width: 30px; height: 30px;  }  }
.sr-three-col-02_custom .digital_card_modual_heading code{color:#BE1126;}

@media(max-width:767px){

  .sr-three-col-02_custom .heading + .heading {
    margin-top: 20px;
  }

}



.sr-cards-timeline-01.rootsTimeline .timeline-card-row{display:flex;justify-content:space-between;flex-wrap:wrap;position:relative;align-items:start;max-width:69.375rem;margin:3rem auto 0}
.sr-cards-timeline-01.rootsTimeline .timeline-card-row .timeline-card{width:50%;display:flex;position:relative;justify-content:flex-end;opacity:0;transition:all .6s linear;}
.sr-cards-timeline-01.rootsTimeline .timeline-card-row .timeline-card:nth-child(odd){justify-content:flex-start;margin-top:12rem;}
.sr-cards-timeline-01.rootsTimeline .timeline-card .timeline-card-inner{background:#fff; box-sizing:border-box;border-radius:20px;max-width:30.5rem;text-align:left;position:relative;z-index:2;width:100%;}
.sr-cards-timeline-01.rootsTimeline .timeline-details{padding:2.2rem;}
.sr-cards-timeline-01.rootsTimeline .timeline-image{height:9.375rem;overflow:hidden;}
.sr-cards-timeline-01.rootsTimeline .timeline-image img{width:100%;height:100%;}
.sr-cards-timeline-01.rootsTimeline .subheadwrp{font-weight:600;line-height:normal;margin-bottom:24px;}
.sr-cards-timeline-01.rootsTimeline .mainhead{line-height:1.381;margin-bottom:24px;}
.sr-cards-timeline-01.rootsTimeline .timeline-details .heading:not(:only-child){margin-bottom:24px;}
.sr-cards-timeline-01.rootsTimeline .timeline-details .heading:last-child{margin-bottom:0;}
.sr-cards-timeline-01.rootsTimeline .timeline-card-row .timeline-card::before{z-index:1;content:'';background:#000000;position:absolute;left:0;top:0;transform:translateX(-50%);-webkit-transform:translateX(-50%);width:23px;height:23px;-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;}
.sr-cards-timeline-01.rootsTimeline .timeline-card-row .timeline-card:nth-child(odd)::before{left:auto;right:-23px;}
.sr-cards-timeline-01.rootsTimeline .timeline-card-row .timeline-card:nth-child(odd) .timeline-card-inner{margin-right:25px;}
.sr-cards-timeline-01.rootsTimeline .timeline-card-row .timeline-card:nth-child(even) .timeline-card-inner{margin-left:25px;}
.sr-cards-timeline-01.rootsTimeline .default-line{content:"";position:absolute;left:50%;width:4px;background:#000000;height:calc(100% - 100px);transform:translateX(-50%);}
.sr-cards-timeline-01.rootsTimeline .draw-line{width:4px;height:0;position:absolute;left:50%;background:transparent;transform:translateX(-50%);}
.sr-cards-timeline-01.rootsTimeline .timeline-card-row .timeline-card.in-view{opacity:1;}
.sr-cards-timeline-01.rootsTimeline .timeline-card .heading span { color: #BE1126;}
.sr-cards-timeline-01.rootsTimeline .timeline-card-outer {display: flex;align-items: flex-start;width: 100%;flex-wrap:wrap;}
.sr-cards-timeline-01.rootsTimeline .row>[class*=col-] {padding-left: 8px;padding-right: 8px;}
.sr-cards-timeline-01.rootsTimeline .default-line svg {position: absolute;bottom: -2px;left: 50%;transform: translateX(-50%);}

@media (min-width:992px){
  .sr-cards-timeline-01.rootsTimeline .timeline-card-outer:last-child{flex-direction:row-reverse;}
  .sr-cards-timeline-01.rootsTimeline .timeline-card-outer:last-child .timeline-card:last-child{justify-content:flex-start;margin-top:12rem;}
  .sr-cards-timeline-01.rootsTimeline .timeline-card-outer:last-child .timeline-card:last-child .timeline-card-inner{margin-left:0;margin-right:25px;}
  .sr-cards-timeline-01.rootsTimeline .timeline-card-outer:last-child .timeline-card:last-child::before{left:auto;right:-23px;}
  .sr-cards-timeline-01.rootsTimeline .timeline-card-outer:last-child .timeline-card:first-child,
  .sr-cards-timeline-01.rootsTimeline .timeline-card-outer:last-child .timeline-card:only-child{margin-top:0;justify-content:flex-end;}
  .sr-cards-timeline-01.rootsTimeline .timeline-card-outer:last-child .timeline-card:first-child::before,
  .sr-cards-timeline-01.rootsTimeline .timeline-card-outer:last-child .timeline-card:only-child::before{left:0;right:a;}
  .sr-cards-timeline-01.rootsTimeline .timeline-card-outer:last-child .timeline-card:first-child .timeline-card-inner,
  .sr-cards-timeline-01.rootsTimeline .timeline-card-outer:last-child .timeline-card:only-child .timeline-card-inner{margin-right:0;}
  .sr-cards-timeline-01.rootsTimeline .timeline-card-outer:last-child .timeline-card:first-child .timeline-card-inner, 
  .sr-cards-timeline-01.rootsTimeline .timeline-card-outer:last-child .timeline-card:only-child .timeline-card-inner {margin-left: 25px;}

}

@media (min-width: 1400px){
  .sr-cards-timeline-01.rootsTimeline .timeline-card-outer:nth-of-type(3) .timeline-card:first-child{margin-top:10rem;}
  .sr-cards-timeline-01.rootsTimeline .timeline-card-outer:nth-of-type(2) .timeline-card:last-child{margin-top:-40px;}
  .sr-cards-timeline-01.rootsTimeline .timeline-card-outer:nth-of-type(2) .timeline-card:first-child{margin-top:7.5rem;}
  .sr-cards-timeline-01.rootsTimeline .timeline-card-outer:nth-of-type(4) .timeline-card:first-child{margin-top:4.5rem;}
  .sr-cards-timeline-01.rootsTimeline .timeline-card-outer:nth-of-type(4) .timeline-card:last-child{margin-top:-55px;}
  .sr-cards-timeline-01.rootsTimeline .timeline-card-outer:last-child .timeline-card:first-child,
  .sr-cards-timeline-01.rootsTimeline .timeline-card-outer:last-child .timeline-card:only-child{margin-top:25px;}
}

@media (max-width:991px){
  .sr-cards-timeline-01.rootsTimeline .timeline-card-row:after{left:5px;right:auto;}
  .sr-cards-timeline-01.rootsTimeline .timeline-card-row .timeline-card:nth-child(even){margin-top:0;margin-bottom:2rem;}
  .sr-cards-timeline-01.rootsTimeline .timeline-card-row .timeline-card{justify-content:center;width:100%;}
  .sr-cards-timeline-01.rootsTimeline .timeline-card-row .timeline-card:nth-child(odd){justify-content:center;margin:2rem 0;margin-top:0}
  .sr-cards-timeline-01.rootsTimeline .timeline-card .timeline-card-inner{margin-left:25px;}
  .sr-cards-timeline-01.rootsTimeline .timeline-card .timeline-image img{height:100%!important;width:100%;}
  .sr-cards-timeline-01.rootsTimeline .timeline-details{padding:1rem;}
  .sr-cards-timeline-01.rootsTimeline .timeline-card-row .timeline-card:before {left: 5px;}
  .sr-cards-timeline-01.rootsTimeline .timeline-card-row .timeline-card:nth-child(odd):before{left:5px;right:auto;}
  .sr-cards-timeline-01.rootsTimeline .default-line{left:5px;}
  .sr-cards-timeline-01.rootsTimeline .draw-line{left:5px;}
  .sr-cards-timeline-01.rootsTimeline .timeline-card-row .timeline-card:nth-child(odd) .timeline-card-inner{margin-right:0;}
  .sr-cards-timeline-01.rootsTimeline .timeline-card-outer:last-child .timeline-card:last-child {margin-bottom: 0;}
  .sr-cards-timeline-01.rootsTimeline .timeline-card-outer {flex-direction: column-reverse;}
}




.sr-cards-grid-01-custom-case-study .tagLogo-wrap{gap:15px;flex-wrap:wrap}
.sr-cards-grid-01-custom-case-study .img-wrap{margin-bottom:15px}
.sr-cards-grid-01-custom-case-study .img-col{max-height:400px}
.sr-cards-grid-01-custom-case-study .img-col img{max-height:400px;object-fit:cover;mix-blend-mode:multiply}
.sr-cards-grid-01-custom-case-study .content-col,.sr-cards-grid-01-custom-case-study .img-col{width:100%}
.sr-cards-grid-01-custom-case-study .content-col{height:calc(100% - 400px)}
.sr-cards-grid-01-custom-case-study .content-col.no-img{height:100%}
.sr-cards-grid-01-custom-case-study .content-inner{height:100%;display:flex;flex-direction:column;justify-content:space-between}
.sr-cards-grid-01-custom-case-study .tag{color:#636d76;line-height:1.5;font-weight:500}
.sr-cards-grid-01-custom-case-study .case-study-card{margin-bottom:16px}
.sr-cards-grid-01-custom-case-study .card-inner{background:linear-gradient(0deg,rgba(255,255,255,.2),rgba(255,255,255,.2)),linear-gradient(333.3deg,rgba(222,221,222,0) 53.86%,rgba(222,221,222,.3) 78.74%),linear-gradient(191.69deg,#fff -5.44%,rgba(255,255,255,0) 61.92%);overflow:hidden;padding:34px 40px;position:relative;border-radius:16px;backdrop-filter:blur(24px);box-shadow:15.82px 17.93px 23.21px 0 #fffFFF40 inset;height:100%}
.sr-cards-grid-01-custom-case-study .card-inner:before{background:linear-gradient(125.58deg,#fff 8.11%,rgba(255,255,255,0) 105.83%);border-radius:16px;content:"";inset:0;-webkit-mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);-webkit-mask-composite:xor;mask-composite:exclude;padding:2.64px;position:absolute;z-index:-1;border-radius:16px}
.sr-cards-grid-01-custom-case-study .logo-wrap img{width:96px;max-height:96px}
.sr-cards-grid-01-custom-case-study .headings-wrapper h2{margin-bottom:10px}
.sr-cards-grid-01-custom-case-study .content-col .heading {margin: 0;font-weight:700;}

@media (min-width:992px){
  .sr-cards-grid-01-custom-case-study .full-width-card .lead{font-size:24px}
  .sr-cards-grid-01-custom-case-study .full-width-card .card-inner{padding:24px 40px 53px;display:flex}
  .sr-cards-grid-01-custom-case-study .full-width-card .img-wrap{position:absolute;width:45%;max-width:100%;left:0;top:0;height:100%}
  .sr-cards-grid-01-custom-case-study .full-width-card .img-col{width:45%;height:auto}
  .sr-cards-grid-01-custom-case-study .full-width-card .content-col{width: 55%;height: auto !important;padding-left:15px;}
  .sr-cards-grid-01-custom-case-study .full-width-card .img-wrap{margin-bottom:0}
  .sr-cards-grid-01-custom-case-study .full-width-card .img-col{max-height:max-content}
  .sr-cards-grid-01-custom-case-study .full-width-card .img-wrap img{height: 100% !important;max-height: 100%;object-fit: contain;width:100%;}
  .sr-cards-grid-01-custom-case-study .full-width-card .content-col.no-img{width:100%}
}

@media (min-width:1200px){
  .sr-cards-grid-01-custom-case-study .full-width-card .img-wrap{width:32.5%;}
  .sr-cards-grid-01-custom-case-study .full-width-card .img-col{width:32.5%;}
  .sr-cards-grid-01-custom-case-study .full-width-card .content-col{width: 67.5%;padding-left: 53px;}
}

@media (max-width:992px){
  .sr-cards-grid-01-custom-case-study .card-inner{padding:25px 20px}
  .sr-cards-grid-01-custom-case-study .logo-wrap img {width: 80px;max-height: 80px;}
}

/* sr-one-col-02-custom */
.sr-one-col-02-custom .sr-card:before { width: 100% !important;}
.sr-one-col-02-custom .inner_container {max-width: 1010px; margin: 0 auto;}
.sr-one-col-02-custom .inner_container .heading:last-of-type{margin-bottom:0}
.sr-one-col-02-custom .inner_container .bottomcont p {line-height: 1;}
.sr-one-col-02-custom .inner_container .description h2:last-of-type {margin-bottom: 0;}
.partners-page .sr-one-col-02-custom .inner_container {max-width: 1230px;}
.partners-page .sr-one-col-02-custom .inner_container .lead {letter-spacing: 0;line-height: 1;}
.partners-page .sr-one-col-02-custom .inner_container h2.heading {line-height: normal;}
.partners-page .sr-one-col-02-custom .inner_container .description {line-height: normal;}
/* custom-safety-measures */

.custom-safety-measures .icon-wrap img{width:40px}
.custom-safety-measures code{color:#be1126}
.custom-safety-measures p{margin:0}
.custom-safety-measures .safety-card{padding:34px 30px;border-radius:20px;margin-bottom:13px;position:relative}
.custom-safety-measures .safety-card:last-child{margin-bottom:0}

.custom-safety-measures .safety-card:after {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)),
    linear-gradient(109.9deg, rgba(222, 221, 222, 0) -27.86%, rgba(222, 221, 222, 0.3) 153.14%),
    radial-gradient(52.84% 77.25% at 27.01% 50%, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%) ,
    linear-gradient(0deg, var(--Blue, #253746), var(--Blue, #253746));
  content: '';position: absolute;top: 0;left: 0;width: 100%;height: 100%;z-index: -1;
}
.custom-safety-measures .img-group{background-color:#f5f4f4;border-radius:68px;position:relative;flex-wrap:wrap;gap:15px 27px}
.custom-safety-measures .img-wrap{position:relative;z-index:2}
.custom-safety-measures .img-wrap img{max-height:100px;width:100px}
.custom-safety-measures .img-group:after{content:'';position:absolute;top:0;left:0;width:100%;height:100%;display:block;border:2px solid #fff;border-radius:inherit}
.custom-safety-measures .safety-card .heading{letter-spacing:1.15px;line-height:1.5;margin-bottom:0}
@media (min-width:1400px){
  .custom-safety-measures .container{max-width:1200px}
  .custom-safety-measures .row{margin:0 -38px}
  .custom-safety-measures .row>div{padding:0 38px}
  .custom-safety-measures .colLeft{padding-right:9px}
  .custom-safety-measures .colRight{padding-left:4px}
  .custom-safety-measures .img-wrap img{max-height:123px;width:123px}
  .custom-safety-measures .headings-wrapper h2{margin-bottom:28px}
}
@media (max-width:1200px){
  .custom-safety-measures .img-group{gap:15px}
  .custom-safety-measures .img-wrap img{max-height:80px;width:80px}
}
@media (max-width:767px){
  .custom-safety-measures .safety-card{padding:30px 20px;}
}
@media (max-width:575px){
  .custom-safety-measures .img-wrap img{max-height:70px;width:70px}
}


/* sr-pricing-01_custom */

.sr-pricing-01_custom .heading-wrapper .heading:last-of-type{margin:0}
.sr-pricing-01_custom .pricing-outer-wrap{overflow:auto}
.sr-pricing-01_custom .feature-items{display:flex;align-items:center;justify-content:flex-start}
.sr-pricing-01_custom .main-row{display:flex;flex-wrap:nowrap;width:100%}
.sr-pricing-01_custom .feature-column{width:37.15%;text-align:left;min-width:400px}
.sr-pricing-01_custom .plan-column{width:20.95%;min-width:220px}
.sr-pricing-01_custom .plan-col-inner h4 {color: #BE1126;}
.sr-pricing-01_custom .icon-item{border-bottom:1px solid #000}
.sr-pricing-01_custom .feature-items{border-bottom:1px solid #000}
.sr-pricing-01_custom .highlighted-plan{position:relative;background:linear-gradient(0deg,#10202c,#10202c),linear-gradient(136.72deg,rgba(222,221,222,0) 32.07%,rgba(222,221,222,.15) 78.95%);box-shadow:1px 2px 2px 0 #fffFFF40 inset;border-radius:16px}
.sr-pricing-01_custom .highlighted-plan::after{background-image:linear-gradient(0deg,#10202c,#10202c),linear-gradient(125.58deg,rgba(255,255,255,.95) 8.11%,rgba(255,255,255,0) 105.83%);border-radius:inherit;content:"";display:block;height:100%;left:0;position:absolute;top:0;inset:0;-webkit-mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);mask-composite:exclude;padding:3px;pointer-events:none;width:100%;z-index:1}
.sr-pricing-01_custom .highlighted-plan .icon-item{border:none}
.sr-pricing-01_custom .highlighted-plan .icon-item svg path{stroke:#fff}
.sr-pricing-01_custom .highlighted-plan .plan-col-inner h4{color:#fff}
.sr-pricing-01_custom .check svg{height:20px;width:20px}
.sr-pricing-01_custom .table-row:last-child{border:none}
.sr-pricing-01_custom .table-row{border-bottom:1px solid #000}
.sr-pricing-01_custom .bold h5{font-weight:700}
.sr-pricing-01_custom .pricing-outer-wrap::-webkit-scrollbar-track{-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,.1);border:1px solid #10202c;border-radius:10px;height:6px}
.sr-pricing-01_custom .pricing-outer-wrap::-webkit-scrollbar{height:6px;background-color:#f5f5f5}
.sr-pricing-01_custom .pricing-outer-wrap::-webkit-scrollbar-thumb{height:2px;border-radius:10px;background-color:#10202c;width:50px}
.sr-pricing-01_custom .feature-items:last-child, .sr-pricing-01_custom .icon-item:last-child {border-bottom: 0;}
.sr-pricing-01_custom .feature-text {line-height: 1.167;}
@media (max-width:767px){
  .sr-pricing-01_custom .feature-column{min-width:250px}
  .sr-pricing-01_custom .plan-column{min-width:180px}
  .sr-pricing-01_custom .check svg{height:15px;width:15px}
}


.sr-cards-flip-01-custom .card-icon{height:34px;width:34px;border-radius:50%;display:flex;align-items:center;justify-content:center;position:absolute;right:19px;top:14px;z-index:2;cursor:pointer;box-shadow:-.6px -.6px .6px 0 #00000040 inset}
.sr-cards-flip-01-custom .card-icon svg{width:16px;height:auto}
.sr-cards-flip-01-custom .expand .card-icon svg{transform:rotate(-45deg)}
.sr-cards-flip-01-custom .expand .card-icon span:after{content:none}
.sr-cards-flip-01-custom .card-block{min-height:405px;padding:38px 30px;position:relative;text-align:left;border-radius:16px}
.sr-cards-flip-01-custom .card-block.custom-default-bg{background-color:#fff;background: linear-gradient(0deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), linear-gradient(333.3deg, rgba(222, 221, 222, 0) 53.86%, rgba(222, 221, 222, 0.3) 78.74%), linear-gradient(191.69deg, #FFFFFF -5.44%, rgba(255, 255, 255, 0) 61.92%);}
.sr-cards-flip-01-custom .card-block.custom-default-bg:after {content: "";display: block;height: 100%;width: 100%;position: absolute;top: 0;left: 0;pointer-events:none;border-radius: 16px;background: linear-gradient(125.58deg, #FFFFFF 8.11%, rgba(255, 255, 255, 0) 105.83%);padding: 2.64px;-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);-webkit-mask-composite: xor;mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);mask-composite: exclude;box-sizing: border-box;}
.sr-cards-flip-01-custom .card-overlay{position:absolute;top:0;left:0;right:0;bottom:0;height:100%;opacity:0;transition:.2s;border-radius:16px}
.sr-cards-flip-01-custom .card-overlay.custom-overlay-bg{background-color:#f5f4f4!important}
.sr-cards-flip-01-custom .custom-overlay-bg .card-description{background: linear-gradient(0deg, hsla(0, 0%, 100%, .2), hsla(0, 0%, 100%, .2)), linear-gradient(333.3deg, hsla(300, 1%, 87%, 0) 53.86%, hsla(300, 1%, 87%, .3) 78.74%), linear-gradient(191.69deg, #fff -5.44%, hsla(0, 0%, 100%, 0) 61.92%) !important;}
.sr-cards-flip-01-custom .expand .card-overlay{opacity:1;cursor:auto;}
.sr-cards-flip-01-custom .card-block img{mix-blend-mode:multiply;object-fit: contain;height: auto;width:100%;}
.sr-cards-flip-01-custom .card-description{height:100%;overflow-y:auto;padding:30px 20px;border-radius:16px;display:flex;flex-direction:column;justify-content:center}
.sr-cards-flip-01-custom .card-description .heading{margin-bottom:24px}
.sr-cards-flip-01-custom .row.sr-valign-stretch .card-column{min-height:100%}
.sr-cards-flip-01-custom .row.sr-valign-stretch .card-column .card-block{height:100%}
.sr-cards-flip-01-custom .row{margin:0 -5px}
.sr-cards-flip-01-custom .row>div{padding-left:5px;padding-right:5px}
.sr-cards-flip-01-custom .card-description a[href^="mailto:"],
.sr-cards-flip-01-custom .card-description a[href^="tel:"] {color: inherit;text-decoration: none;}
.sr-cards-flip-01-custom .card-front{display:flex;flex-direction:column;justify-content:center}
.sr-cards-flip-01-custom .custom-overlay-bg .card-description p br { display: inline-block;}

@media (min-width:1200px){
  .sr-cards-flip-01-custom .container{max-width:1203px}
  .sr-cards-flip-01-custom .card-description{padding:40px 30px}
}

/* sr-cards-logos-01-Custom-V2 */

.sr-cards-logos-01-Custom-V2 .card-carousel {margin:0 -7px;row-gap: 15px;display:flex;flex-wrap:wrap;align-items: center;  justify-content: center;}
.sr-cards-logos-01-Custom-V2 .item-card { padding: 0 7px; }
.sr-cards-logos-01-Custom-V2 .media {width:100%; overflow: hidden;  filter: grayscale(100%); transition: filter 0.3s ease-in; -webkit-transition: filter 0.3s ease-in; -moz-transition: filter 0.3s ease-in; -ms-transition: filter 0.3s ease-in; -o-transition: filter 0.3s ease-in;}
.sr-cards-logos-01-Custom-V2 .media img { width:100%; height:100% !important; max-height: 100px; object-fit:contain;  margin-right: 0; }
.sr-cards-logos-01-Custom-V2 .media:hover {  filter: grayscale(0%); box-shadow:none;transform:0;cursor:pointer;-webkit-transform: none; 
  transition-duration: filter 0.3s ease-out; -webkit-transition-duration: filter 0.3s ease-out; -moz-transition-duration: filter 0.3s ease-out; -ms-transition-duration: filter 0.3s ease-out; 
  -o-transition-duration: filter 0.3s ease-out;}
.sr-cards-logos-01-Custom-V2 .heading-wrapper .heading:last-of-type {margin-bottom: 0;}
.sr-cards-logos-01-Custom-V2 .item-card{width: 50%; }

@media (min-width:479px){
  .sr-cards-logos-01-Custom-V2 .item-card{width: 33.33%; } 
}
@media (min-width:768px){
  .sr-cards-logos-01-Custom-V2  .slick-list{overflow:visible;width:100%;}
  .sr-cards-logos-01-Custom-V2  .item-card{width: 25%; }
  .sr-cards-logos-01-Custom-V2 .media img { max-height: 153px; object-fit:cover;
  }
}
@media (min-width:992px){
  .sr-cards-logos-01-Custom-V2  .item-card { width:20%; }
}

@media (min-width:1200px){
  .sr-cards-logos-01-Custom-V2  .item-card { width: 14.28%; }
  .sr-cards-logos-01-Custom-V2 .container{max-width:1169px}
}


/* sr-hero-form-01-custom */

.sr-hero-form-01-custom .sr-cover-image{background-repeat:no-repeat}
.sr-hero-form-01-custom .sr-form .h5{font-weight:600;margin-bottom:10px}
.sr-hero-form-01-custom .sr-form .sr-spacer-bottom-25{padding-bottom:0}
.sr-hero-form-01-custom h1 span{color:#fc414a}
.sr-hero-form-01-custom .social-icon a:before{background:linear-gradient(274.89deg,hsla(0,0%,100%,.9) 52.92%,hsla(0,0%,100%,0) 95.87%);border-radius:45px;content:" ";display:inline-block;height:58px;left:-2.2px;opacity:.5;position:absolute;top:-2.2px;width:58px}
.sr-hero-form-01-custom .social-icon .hs_cos_wrapper_type_icon{position:relative;width:54px;height:54px;border-radius:45px;display:inline-flex;justify-content:center;opacity:1;align-items:center;background:#0d1d2a;border:2.29px solid}
.sr-hero-form-01-custom .social-icon a{margin-right:27px;color:#ffffff3b;position:relative;display:inline-block;border-radius:100%;box-shadow:-4.58px -4.58px 9.17px 0 #fffFFF40 inset,0 6.88px 32.08px 0 #00000026,0 9.17px 9.17px 0 #00000040 inset,4px 4px 9.17px 0 #fffFFF40 inset}
.sr-hero-form-01-custom .social-icon{flex-wrap:wrap;row-gap:16px}
.sr-hero-form-01-custom{background:linear-gradient(336deg,rgba(245,245,245,.25) 33.5%,rgba(245,245,245,0) 58.79%),linear-gradient(0deg,#10202c 0,#10202c 100%),#f5f4f4}
.sr-hero-form-01-custom .sr-cover-inner{margin:0 auto;width:100%}
.sr-hero-form-01-custom .sr-form{overflow:hidden;width:100%}
.sr-hero-form-01-custom .hubspot-link__container{display:none!important}
.sr-hero-form-01-custom fieldset.form-columns-2 .input:first-child{margin-right:0}
.sr-hero-form-01-custom textarea{min-height:108px;vertical-align:middle}
.sr-hero-form-01-custom .height-auto{min-height:0}
.sr-hero-form-01-custom .height-small{padding:8rem 0}
.sr-hero-form-01-custom .height-medium{padding:14rem 0}
.sr-hero-form-01-custom .height-large{padding:20rem 0}
.sr-hero-form-01-custom .height-full{min-height:100vh}
.sr-hero-form-01-custom .social-icon .hs_cos_wrapper_type_icon svg{display:block;vertical-align:middle;width:22px;fill:#FFFFFF;height:22px}
.sr-hero-form-01-custom .description{line-height:1.3}
.sr-hero-form-01-custom .social-title{line-height:1.2}
.sr-hero-form-01-custom .formInner{width:100%;}
@media only screen and (max-width:992px){
  .sr-hero-form-01-custom p br{display:none}
}
@media only screen and (max-width:768px){
  .sr-hero-form-01-custom .sr-form{padding:30px 20px!important}
}


.sr-hero-form-01-custom-quote{
  background: linear-gradient(320deg, rgba(245, 245, 245, .25) 6.5% 6.5%, rgba(245, 245, 245, 0) 23.79%23.79%), linear-gradient(0deg, #10202c 0, #10202c 100%), #f5f4f4;
}
.sr-hero-form-01-custom-quote .sr-cover-image{background-repeat:no-repeat}
.sr-hero-form-01-custom-quote .sr-form .sr-spacer-bottom-25 {padding-bottom: 15px;}
.sr-hero-form-01-custom-quote .sr-form .h5{font-weight:600;line-height:1.2;margin:0;}
.sr-hero-form-01-custom-quote .sr-form{overflow:hidden;width:100%}
.sr-hero-form-01-custom-quote fieldset.form-columns-2 .input:first-child{margin-right:0}
.sr-hero-form-01-custom-quote textarea{min-height:108px;vertical-align:middle}
.sr-hero-form-01-custom-quote .height-auto{min-height:0}
.sr-hero-form-01-custom-quote .height-small{padding:8rem 0}
.sr-hero-form-01-custom-quote .height-medium{padding:14rem 0}
.sr-hero-form-01-custom-quote .height-large{padding:20rem 0}
.sr-hero-form-01-custom-quote .height-full{min-height:100vh}
.sr-hero-form-01-custom-quote .description{line-height:1.3}
.sr-hero-form-01-custom-quote .heading-Wrap .heading:last-of-type{margin-bottom:0}
.sr-hero-form-01-custom-quote .formInner{width:100%}
.sr-hero-form-01-custom-quote .stepsWrap{position:relative}
.sr-hero-form-01-custom-quote .stepItem{position:relative;z-index:2}
.sr-hero-form-01-custom-quote .stepItem:before{position:absolute;top:0;left:0;width:8px;height:100%;background:#be1126;content:'';left:29px}
.sr-hero-form-01-custom-quote .stepItem:last-child:before{content:none}
.sr-hero-form-01-custom-quote .stepText{padding-left:21px;font-weight:400;}
.sr-hero-form-01-custom-quote .stepText h6{margin-bottom:8px;font-size:18px;font-weight:700;line-height:1;letter-spacing:1.15px}
.sr-hero-form-01-custom-quote .numWrap{width:65px;height:62px;background-color:#be1126;color:#fff;display:inline-flex;align-items:center;justify-content:center;font-size:18px;font-weight:500;line-height:1;min-width:65px;border-radius:24px;position:relative;z-index:2}
.sr-hero-form-01-custom-quote .stepItem:not(:last-child){padding-bottom:30px}
.sr-hero-form-01-custom-quote .description p{margin:0}
.sr-hero-form-01-custom-quote .sr-form .hs-form-field{margin-bottom:15px}
.sr-hero-form-01-custom-quote .hs-richtext h6{margin-bottom:15px;font-size:18px;line-height:1.2;font-weight:600}
@media (min-width:992px){
  .sr-hero-form-01-custom-quote .contentInner{padding-right:34px}
  .sr-hero-form-01-custom-quote .formInner{padding-left:17px}
  .sr-hero-form-01-custom-quote .stepItem:not(:last-child){padding-bottom:47px}
  .sr-hero-form-01-custom-quote .form-columns-2 > .hs-form-field.hs_hs_country_region_code{max-width: calc(33% - 6px);min-width: auto;}
  .sr-hero-form-01-custom-quote .form-columns-2 > .hs-form-field.hs-phone {max-width: calc(67% - 6px);min-width: auto;}
}
@media only screen and (max-width:1440px){
  .sr-hero-form-01-custom-quote .sr-cover-image{
    background-size: 100% !important;
  }
}
@media only screen and (max-width:992px){
  .sr-hero-form-01-custom-quote p br{display:none}

}
@media only screen and (max-width:768px){
  .sr-hero-form-01-custom-quote .sr-form{padding:30px 20px!important}
  .sr-hero-form-01-custom-quote .stepText{padding-left:15px}
  .sr-hero-form-01-custom-quote .stepItem:before{left:24px;width:6px}
  .sr-hero-form-01-custom-quote .numWrap{width:55px;min-width:55px;height:52px}
}


.sr-two-col-06_custom .lead{font-weight:400}
.sr-two-col-06_custom .links .link-item{padding:2px;position:relative;display:inline}
.sr-two-col-06_custom .links>*{margin:0}
.sr-two-col-06_custom .links a.link-item{text-decoration:underline!important}
.sr-two-col-06_custom.text-white .links a:hover {color: var(--primary) !important;}
.sr-two-col-06_custom.text-white.bg-primary .links a:hover {color: var(--secondary) !important;}
.sr-two-col-06_custom .Heading{margin-bottom:5px}
.sr-two-col-06_custom .links span{color:#303030}
.sr-two-col-06_custom p br {display: initial;}
@media (min-width:992px){
  .sr-two-col-06_custom .description p{margin-bottom:30px}   
  .sr-two-col-06_custom .main-richtext{display: flex;flex-direction: column;align-items: flex-end;}

}

/* sr-contact-01_custom  */

.sr-contact-01_custom .locationLink{position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0}


/* Privacy Page page  */

.DataProtectionInner #GrediantBanner { background: linear-gradient(356.75deg, rgba(245, 245, 245, 0.25) -29.72%, rgba(245, 245, 245, 0) 71.77%), linear-gradient(0deg, #10202C, #10202C)  !important; }
.DataProtectionInner .hs_cos_wrapper_type_rich_text h5 { font-weight: 700; margin-bottom: 44px; font-size: 22px; line-height: 1.5; } 
.DataProtectionInner .hs_cos_wrapper_type_rich_text{font-weight:400;}
.DataProtectionInner .hs_cos_wrapper_type_rich_text p { font-size: 22px; line-height: 1.5; margin-bottom: 44px;font-weight:400; }
.DataProtectionInner p br{display:initial;}

@media (max-width:992px){
  .DataProtectionInner .hs_cos_wrapper_type_rich_text h5,
  .DataProtectionInner .hs_cos_wrapper_type_rich_text p{margin-bottom:30px;font-size: 20px;}
}

@media (max-width:768px){
  .DataProtectionInner .hs_cos_wrapper_type_rich_text h5,
  .DataProtectionInner .hs_cos_wrapper_type_rich_text p{margin-bottom:25px;font-size: 18px;}
  .DataProtectionInner .sr-hero-04.aboutBanner .sr-cover-image{background-position: bottom !important;}
}


@media (max-width:575px){

  .DataProtectionInner .sr-hero-04.aboutBanner h1.heading{
    font-size:24px;
  }

}


.heroV2Banner .topSec .description{line-height:normal}
.heroV2Banner .rightColImg.hideinDesk{display:block}
.heroV2Banner .rightColImg.hideinMob{display:none}
.heroV2Banner .imgColumn{text-align:center}
.heroV2Banner .bannerImg img{max-height:670px}
.heroV2Banner br{display:none}
@media (min-width:1200px){
.heroV2Banner .rightColImg.hideinDesk{display:none}
.heroV2Banner .rightColImg{position:absolute;right:4%;bottom:50px}
.heroV2Banner .rightColImg.hideinMob{display:block}
}
@media (min-width:1442px){
.heroV2Banner br{display:initial}
.heroV2Banner .topSec .heading{margin-bottom:25px;max-width:775px}
.heroV2Banner .topSec .description{max-width:794px}
.heroV2Banner .row{position:relative}
.heroV2Banner .imgColumn{position:static}
.heroV2Banner .bannerImg{position:absolute;right:0;top:0;width:40%;max-width:100%;right:-10%}
}
@media (min-width:1800px){
.heroV2Banner .bannerImg{right:-23%;width:50.58%}
}
@media (max-width:991px){
.heroV2Banner .bannerImg{max-width:500px;margin:0 auto}
.heroV2Banner .bannerImg{max-width:100%}
}


.heroV3Banner .topSec .description{line-height:normal}
.sr-hero-04.heroV3Banner.partnerBann .heading{max-width:100%}
.sr-hero-04.heroV3Banner.partnerBann .description{max-width:100%}
.heroV3Banner .imgColumn{text-align:center}
.heroV3Banner .bannerImg{text-align:right}
.heroV3Banner br{display:none}
.heroV3Banner.partnerBann .container{position:static}
.heroV3Banner .bannerImg{position:absolute;right:0;bottom:0;width:36.3%;max-width:100%}
.heroV3Banner .imgColumn{position:static}
@media (min-width:992px){
.heroV3Banner .topSec .heading{margin-bottom:25px}
.heroV3Banner .topSec .description{max-width:794px}
}
@media (max-width:1199px){
.heroV3Banner .bannerImg{width:35%;bottom:auto;top:50%;transform:translateY(-50%)}
}
@media (max-width:767px){
.heroV3Banner .bannerImg{width:100%;position:relative;top:0;margin-top:-15%;right:-5%;transform:none;bottom:auto}
}



.sr-hero-04.blogBanner .description h1{margin-bottom:25px}
.sr-hero-04.blogBanner .btn-wrapper a.cta-button{font-size:18px;min-height:1.9rem;padding-left:14px;padding-right:14px;min-width:71px}
.sr-hero-04.blogBanner .cta-group{column-gap:30px}
.sr-hero-04.blogBanner .topSec .description p{line-height:normal}
.sr-hero-04.blogBanner .btn-wrapper.btn-custom.allbtn a{color:#0d1d2a;background-color:#fff;border-color:#fff}
.sr-hero-04.blogBanner .btn-wrapper.btn-custom.allbtn a:hover{color:#be1126;background-color:#fff;border-color:#be1126}
.sr-hero-04.blogBanner .btn-wrapper.btn-custom.tagbtn a{color:#fff;background-color:rgba(0,0,0,0);border-color:#fff}
.sr-hero-04.blogBanner .btn-wrapper.btn-custom.tagbtn a:hover{color:#be1126;background-color:rgba(0,0,0,0);border-color:#be1126}
@media (min-width:1200px){
.sr-hero-04.blogBanner .topSec{max-width:800px;margin:0 auto}
.sr-hero-04.blogBanner .offset-lg-1{margin-left:13%}
}


.sr-offer-bar-01_custom input { padding:  0px 32px} 
@media only screen and (max-width: 1920px){ 
  .sr-offer-bar-01_custom .left_col {margin-left: -85px ; } 
}

@media only screen and (max-width: 1700px){ 
  .sr-offer-bar-01_custom .left_col {margin-left: -0px ; } 
}


.sr-cards-grid-02-v2{background-repeat:no-repeat}
.sr-cards-grid-02-v3 .heading:last-child{margin-bottom:0;}
.sr-cards-grid-02-v2 .card{border:2.64px solid;border-image-source:linear-gradient(125.58deg,#FFFFFF 8.11%,rgba(255,255,255,0) 105.83%);backdrop-filter:blur(24px);box-shadow:inset 15.82px 17.93px 23.21px 0 rgba(255,255,255,.25)}
.sr-cards-grid-02-v2 .cards.row{row-gap:30px}
.sr-cards-grid-02-v2 .card{position:relative;background-size:cover;background-position:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:100%}
.sr-cards-grid-02-v2.card:after{content:"";width:100%;height:100%;position:absolute;top:0;left:0;z-index:0}
.sr-cards-grid-02-v2.card-inner{position:relative;z-index:1;height:100%;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}
.sr-cards-grid-02-v2.card-inner .cta-group{margin-top:auto}
.sr-cards-grid-02-v2 .card{background-size:cover;background-repeat:no-repeat;background-position:center;position:relative}
.sr-cards-grid-02-v2 .heading{margin-bottom:21px}
@media (max-width:767px){
.sr-cards-grid-02-v2 .description br,.sr-cards-grid-02-v2 .heading br{display:none}
}




.sr-cards-image-01_custom{padding-top:4.75rem}
.sr-cards-image-01_custom .lead{line-height:1}
.sr-cards-image-01_custom .tophead .heading:last-of-type{margin-bottom:0}
.sr-cards-image-01_custom .btn-wrapper-md .cta-button{padding-left:13px;padding-right:13px;min-width:211px}
.sr-cards-image-01_custom .slick-dots{margin:0;padding:1.71875rem 0;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;list-style-type:none}
.sr-cards-image-01_custom .slick-dots button{display:none}
.sr-cards-image-01_custom .slick-dots>li{padding:0 .625rem;cursor:pointer}
.sr-cards-image-01_custom .slick-dots>li:before{content:'';display:block;width:.625rem;height:.625rem;border:solid 3px transparent;border-radius:50%;background-color:#0c63ff;background-color: var(--primary);}  
.sr-cards-image-01_custom .slick-dots>li.slick-active:before{box-shadow:0 0 0 5px #0c63ff;background-color:#fff}
.sr-cards-image-01_custom .card-heading{margin-top:2rem;width:100%}
.sr-cards-image-01_custom .card-description,.sr-cards-image-01_custom .card-image{width:100%}
.sr-cards-image-01_custom .media-body{display:flex;flex-direction:column}
.sr-cards-image-01_custom .card-image.hover{opacity:0;visibility:hidden}
.sr-cards-image-01_custom .item-cardOuter:hover .card-image.nomral{opacity:0;visibility:hidden}
.sr-cards-image-01_custom .item-cardOuter:hover .card-image.hover{opacity:1;visibility:visible}
.sr-cards-image-01_custom .item-card .heading{margin:0;font-weight:700;line-height:normal}
.sr-cards-image-01_custom .item-cardOuter{display:flex;flex-direction:column;height:100%;overflow:hidden;backdrop-filter:blur(12px);position:relative}
.sr-cards-image-01_custom .card-image{height:216px;width:100%;background-repeat:no-repeat;background-position:0 -3.754px;background-size:100% 120.152%;background-color:#d9d9d9;position:absolute;bottom:0;backdrop-filter:blur(25px);transition:all .3s ease-in;left:0;right:0}
.sr-cards-image-01_custom .item-card .topMeta{color:#636d76;gap:10px}
.sr-cards-image-01_custom .item-card .media-body{position:relative;z-index:1}
.sr-cards-image-01_custom .item-cardOuter .btmBody{position:relative;margin-top:auto;height:216px;overflow:hidden}
.sr-cards-image-01_custom .item-cardOuter.noHoverImg .card-image.nomral{opacity:1;visibility:visible}
.sr-cards-image-01_custom .item-cardOuter.noHoverImg:hover .card-image.nomral img{transform:scale(1.1);transition:all .3s ease-in}
.sr-cards-image-01_custom .card-image::before{content:'';position:absolute;height:100%;width:100%;bottom:0;left:0;overflow:hidden;right:0;background:linear-gradient(0deg,rgba(255,255,255,0) 0,#f0f0f0 81.47%);z-index:1}
.sr-cards-image-01_custom .tophead .heading.l-normal {line-height: normal;}
.sr-cards-image-01_custom .item-cardOuter .item-card {margin-bottom: -10px;}
.sr-cards-image-01_custom .item-cardOuter.gradient_two .card-image::before {background: linear-gradient(0deg, rgba(255, 255, 255, 0.00) 0%, #D1D5D8 81.47%);}
.sr-cards-image-01_custom .card-image img {width: 100%;height: 100%;object-fit: cover;transition: all .3s ease-in;object-position: bottom;}
.sr-cards-image-01_custom .videoPopup video{height:100%;left:50%;object-fit:cover;opacity:0;position:absolute;-webkit-transform:translate(-50%) scale(1.25);-ms-transform:translate(-50%) scale(1.25);transform:translate(-50%) scale(1.25);-webkit-transition:all .2s ease;-o-transition:all .2s ease;transition:all .2s ease;width:100%;z-index:1}
.sr-cards-image-01_custom .item-cardOuter .btmBody video.popupVideo{opacity:0}
.sr-cards-image-01_custom .modal-dialog{max-width:720px}
.sr-cards-image-01_custom button.close{appearance:none;-webkit-appearance:none;border:none;border-radius:50%;color:#fff;font-size:1.65rem;font-weight:100;height:40px;opacity:1;padding:0;position:absolute;right:-20px;top:-20px;width:40px}
.sr-cards-image-01_custom .item-cardOuter:not(:hover) .btn-wrapper a{border-color:#0d1d2a;color:#0d1d2a}
.sr-cards-image-01_custom .item-cardOuter .playBtn a:hover{border-color:#be1126;color:#be1126}
.sr-cards-image-01_custom .item-cardOuter .playBtn a{cursor:pointer}
.sr-cards-image-01_custom .description.lead{line-height:normal}
@media (min-width:768px){
.sr-cards-image-01_custom .slick-list{overflow:visible;width:100%}
}

@media screen and (-ms-high-contrast: active) and (min-width: 768px), screen and (-ms-high-contrast: none) and (min-width: 768px) {
  .sr-cards-image-01_custom .slick-list,
  .sr-cards-image-01_custom .slick-track {width: 100% !important;}
}
 
@media(max-width: 767px) {
  .sr-cards-image-01_custom .item-card {padding: 2rem;opacity: 1;}
}


.sr-testimonial-03_custom{overflow:hidden;}
.sr-testimonial-03_custom .blaze-track-container {overflow: inherit;}}
.sr-testimonial-03_custom .icon-wrapper { margin-left: -14px;}
.sr-testimonial-03_custom p{margin-top:0;margin-bottom:1.25rem;letter-spacing:0!important}
.sr-testimonial-03_custom p:last-child{margin-bottom:0}
.sr-testimonial-03_custom .main-row{position:relative;margin:0 auto;border-radius:25px;border:4px solid #fff;background:#fff;padding:70px 0 78px 86px;box-shadow:24.53px 27.81px 35.98px 0 #fffFFF40 inset}
.sr-testimonial-03_custom .content-col{max-width:690px}
.sr-testimonial-03_custom .img-column{position:absolute;bottom:-4px;right:-89px;max-width:701px ; box-shadow: 24.53px 27.81px 35.98px 0px #FFFFFF40 inset;
}
.sr-testimonial-03_custom .author-details{text-align:right}
.sr-testimonial-03_custom .author-details .author-name{font-size:14px;font-weight:700;margin-bottom:0;line-height:normal}
.sr-testimonial-03_custom .author-details .author-title{font-size:14px;font-weight:400;margin-bottom:0;line-height:normal}
.sr-testimonial-03_custom .slide-content h4{margin-bottom:21px}
.sr-testimonial-03_custom .blaze-track-container{overflow:visible}
.sr-testimonial-03_custom .blaze-container:before{display:none}
.sr-testimonial-03_custom .blaze-track{--slides-to-show:1;--slide-gap:20px;padding-bottom:0}
.sr-testimonial-03_custom svg{color:var(--icon-color)}
.sr-testimonial-03_custom .sr-slide .author-name{font-size:1rem;font-weight:500;margin-bottom:0;line-height:1rem}
.sr-testimonial-03_custom .blaze-arrow{color:var(--primary);border-radius:100%;border:2px solid var(--primary);width:2rem;height:2rem;display:flex;align-items:center;justify-content:center;transition:all .5s ease;background:0 0;background-color:#fff;appearance:none;-webkit-appearance:none;padding:0}
.sr-testimonial-03_custom .blaze-arrow{position:absolute;top:50%;font-size:30px;z-index:1;cursor:pointer}
.sr-testimonial-03_custom .blaze-arrow svg{color:var(--primary)}
.sr-testimonial-03_custom .blaze-arrow:hover svg{color:#fff}
.sr-testimonial-03_custom .blaze-arrow:hover{color:#fff;background-color:var(--primary)}
.sr-testimonial-03_custom .chevron-left{left:-30px;transform:translateY(calc(-50% - 15px)) translateX(-50%)}
.sr-testimonial-03_custom .chevron-right{right:-30px;transform:translateY(calc(-50% - 15px)) translateX(50%)}
.sr-testimonial-03_custom .blaze-pagination:empty{display:none}
@media only screen and (max-width:1440px){
.sr-testimonial-03_custom .img-column{max-width:550px}
.sr-testimonial-03_custom .img-column{position:absolute;bottom:-4px;right:-60px}
}
@media only screen and (max-width:1320px){
.sr-testimonial-03_custom .img-column{right:-12px}
}
@media only screen and (max-width:1200px){
.sr-testimonial-03_custom .img-column{position:relative;position:relative;bottom:0;margin:0 auto;margin-right:0;margin-bottom:-82px;max-width:400px}
}
@media only screen and (max-width:991px){
.sr-testimonial-03_custom .sr-slide .row{flex-direction:column-reverse}
.sr-testimonial-03_custom .author-meta img{width:100%}
.sr-testimonial-03_custom .main-row{padding:30px}
.sr-testimonial-03_custom .img-column{margin-bottom:-34px}
}
@media only screen and (max-width:767px){
.sr-testimonial-03_custom .main-row{padding:15px;border-radius:16px}
.sr-testimonial-03_custom .img-column{margin-bottom:-19px}
}

.sr-testimonial-03_custom_v2 .text_white {color:#fff;}
.sr-testimonial-03_custom_v2 .icon-wrapper img {filter: drop-shadow(0px 4.127px 14.444px rgba(190, 17, 38, 0.15));}
.sr-testimonial-03_custom_v2 .custom-slider-wrap {   overflow: hidden;}
.sr-testimonial-03_custom_v2 p{margin-top:0;margin-bottom:1.25rem;letter-spacing:0!important}
.sr-testimonial-03_custom_v2 p:last-child{margin-bottom:0}
.sr-testimonial-03_custom_v2 .main-row{position:relative;margin:0 auto;border-radius:24px;border:none !important;background-color: #10202C !important;
  padding: 84px 0 84px 90px !important;box-shadow: 24.53px 27.81px 35.98px 0px #00000040 inset !important;}

.sr-testimonial-03_custom_v2 .main-row::before { content: ""; position: absolute; inset: 0; padding: 4px; border-radius: inherit; background:linear-gradient(125.58deg, rgba(255, 255, 255, 0.3) 8.11%, rgba(255, 255, 255, 0) 105.83%); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: destination-out;  mask-composite: exclude; pointer-events: none; width: 100%; height: 100%; display: block;   top: 0; margin: 0px; z-index: 1;}
.sr-testimonial-03_custom_v2 .content-col {max-width:644px!important;}
.sr-testimonial-03_custom_v2 .img-column  { bottom: 0px !important; max-width: 537px !important; box-shadow:none !important; position: absolute; right: -6px!important;}

.sr-testimonial-03_custom_v2 .author-details{text-align:right}
.sr-testimonial-03_custom_v2 .author-details .author-name{font-size:15px;font-weight:700;margin-bottom:0;line-height:normal}
.sr-testimonial-03_custom_v2 .author-details .author-title{font-size:15px;font-weight:400;margin-bottom:0;line-height:normal}
.sr-testimonial-03_custom_v2 .slide-content h4{margin-bottom:18px; color: #fff;}
.sr-testimonial-03_custom_v2 .blaze-track-container{overflow:visible}
.sr-testimonial-03_custom_v2 .blaze-container:before{display:none}
.sr-testimonial-03_custom_v2 .blaze-track{--slides-to-show:1;--slide-gap:20px;padding-bottom:0}
.sr-testimonial-03_custom_v2 svg{color:var(--icon-color)}
.sr-testimonial-03_custom_v2 .sr-slide .author-name{font-size:1rem;font-weight:500;margin-bottom:0;line-height:1rem}
.sr-testimonial-03_custom_v2 .blaze-arrow{color:var(--primary);border-radius:100%;border:2px solid var(--primary);width:2rem;height:2rem;display:flex;align-items:center;justify-content:center;transition:all .5s ease;background:0 0;background-color:#fff;appearance:none;-webkit-appearance:none;padding:0}
.sr-testimonial-03_custom_v2 .blaze-arrow{position:absolute;top:50%;font-size:30px;z-index:1;cursor:pointer}
.sr-testimonial-03_custom_v2 .blaze-arrow svg{color:var(--primary)}
.sr-testimonial-03_custom_v2 .blaze-arrow:hover svg{color:#fff}
.sr-testimonial-03_custom_v2 .blaze-arrow:hover{color:#fff;background-color:var(--primary)}
.sr-testimonial-03_custom_v2 .chevron-left{left:-30px;transform:translateY(calc(-50% - 15px)) translateX(-50%)}
.sr-testimonial-03_custom_v2 .chevron-right{right:0;transform:translateY(calc(-50% - 15px)) translateX(50%)}
.sr-testimonial-03_custom_v2 .blaze-pagination:empty{display:none}
.sr-testimonial-03_custom_v2 .img-column img {min-height: 464px;object-fit: cover;}


@media only screen and (max-width:1440px){
  .sr-testimonial-03_custom_v2 .img-column{max-width:550px}
  .sr-testimonial-03_custom_v2 .img-column{position:absolute;bottom:-4px;right:0}
}
@media only screen and (max-width:1320px){
  .sr-testimonial-03_custom_v2 .img-column{right:0}
}
@media only screen and (max-width:1200px){
  .sr-testimonial-03_custom_v2 .img-column{position:relative;bottom:0;margin:0 auto;margin-right:0;margin-bottom:-84px !important ;max-width:400px !important; right: -3px!important;}
  .sr-testimonial-03_custom_v2 .img-column img {min-height: unset;}
}
@media only screen and (max-width:991px){
  .sr-testimonial-03_custom_v2 .sr-slide .row{flex-direction:column-reverse}
  .sr-testimonial-03_custom_v2 .author-meta img{width:100%}
  .sr-testimonial-03_custom_v2 .main-row{padding:30px !important;}
  .sr-testimonial-03_custom_v2 .img-column{margin-bottom: -30px !important; margin-right: -30px!important; }
}
@media only screen and (max-width:767px){
  .sr-testimonial-03_custom_v2 .main-row{padding:15px !important;border-radius:16px}
  .sr-testimonial-03_custom_v2 .img-column{margin-bottom:-15px!important; margin-right: -15px !important;}
}


.sr-two-col-01_custom .list_main_box { display:flex;}
.sr-two-col-01_custom  .img_box { margin-right: 6px}
.sr-two-col-01_custom span { color :#BE1126;}
.sr-two-col-01_custom h2 {margin-bottom:35px; max-width:533px;}

@media (max-width: 767px) {
.sr-two-col-01_custom h2 {margin-bottom:20px; max-width:100%;}
}

.sr-three-col-custom .sr-col{padding-left:0;padding-right:0;margin-left:0}
.sr-three-col-custom .sr-repeater-1{padding:30px 0 0}
.sr-three-col-custom{position:relative}
.sr-three-col-custom .sr-repeater-2{position:static}
.sr-three-col-custom .responsive-image{width:812px;position:absolute;right:35px;text-align:right}
.sr-three-col-custom .responsive-image img{width:100%}
@media only screen and (max-width:1630px){
.sr-three-col-custom .responsive-image{width:630px}
.sr-three-col-custom .sr-repeater-1{padding:0 10px}
}
@media only screen and (max-width:1200px){
.sr-three-col-custom .responsive-image{width:550px}
}
@media only screen and (max-width:992px){
.sr-three-col-custom .responsive-image{width:100%;position:static}
}

/* sr-cards-articles-custom */
.sr-cards-articles-custom .article-item{display:flex;align-items:center;justify-content:center}
.sr-cards-articles-custom .article-item .sr-border{color:inherit;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;height:100%;width:100%;-ms-flex-line-pack:start;align-content:flex-start;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;position:relative;-webkit-transition:all 420ms cubic-bezier(.165, .84, .44, 1);-o-transition:all 420ms cubic-bezier(.165, .84, .44, 1);transition:all 420ms cubic-bezier(.165, .84, .44, 1);-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}
.sr-cards-articles-custom .article-item .sr-border:hover{-webkit-box-shadow:0 3px 20px 0 rgba(0,0,0,.2);box-shadow:0 3px 20px 0 rgba(0,0,0,.2);-webkit-transform:scale(1.05);-ms-transform:scale(1.05);transform:scale(1.05)}
.sr-cards-articles-custom .article-item .image-container{max-height:140px;overflow:hidden;position:relative;width:100%}
.sr-cards-articles-custom .article-item .image-container img{object-fit:cover;position:relative;width:100%;height:100%;top:0;left:0}
.sr-cards-articles-custom .article-item .postDate{line-height:normal}
.sr-cards-articles-custom .author-details{line-height:1}
.sr-cards-articles-custom .post-name{font-weight:700;margin-bottom:0}
.sr-cards-articles-custom .article-readmore{color:var(--link_color)}
.sr-cards-articles-custom .summary{padding-top:1rem;font-size:.9rem;line-height:1.45rem}
.sr-cards-articles-custom .btn-wrapper{margin-top:auto}
.sr-cards-articles-custom .cards-row{row-gap:30px}
.sr-cards-articles-custom .overlay-link *{position:absolute;left:0;top:0;width:100%;height:100%;text-align:center;border-radius:16px;justify-content:center;background:0 0!important;color:transparent!important;border:none!important;opacity:0;box-shadow:none!important}
.sr-cards-articles-custom .article-item .sr-border.gradient_one{backdrop-filter:blur(12px);background:radial-gradient(82.67% 60.49% at 27.01% 50%,#fff 0,rgba(255,255,255,0) 100%),linear-gradient(110deg,rgba(222,221,222,0) -27.86%,rgba(222,221,222,.3) 153.14%),rgba(255,255,255,.8)!important}
.sr-cards-articles-custom .image-container img{border-radius:10px}



/* blog css */
.blog-index .sr-one-col-02-custom .inner_container .heading{line-height:normal;}
.blogListWrapper .sr-multicol-media .cta-button{width:100%;}
.blogListWrapper .sr-multicol-media .cta-group .btn-wrapper{width:100%;max-width:350px;}
.sr-listing_custom .item-cardOuter .btn-wrapper{max-width:211px;width:100%;}
.sr-listing_custom .item-cardOuter .btn-wrapper a{width:100%;}

/*  */
.blog-post-banner{height:627px;background-repeat:no-repeat;background-size:cover;background-position:center;background-color:#F5F4F4;position:relative;}
.blog-post-banner:after{content:'';position:absolute;left:0;top:0;width:100%;height:100%;background:linear-gradient(358.42deg,#F5F5F5 0.71%,rgba(245,245,245,0) 60.27%);}
.blog-postWrapper .blog-post-inner-container{background:#F5F4F4;padding:70px 150px 44px;margin-top:-275px;position:relative;border-radius:30px;}
.blog-post-main .metaItem a{font-size:20px;}
.blog-post-main .metaItem{line-height:1.2;}
.custom_blog_next-previous .nav-label{display:block;font-weight:700;font-size:20px;line-height:normal;text-transform:uppercase;letter-spacing:1.15px;color:#BE1126;}
.custom_blog_next-previous{display:flex;align-items:center;flex-wrap:wrap;}
.custom_blog_next-previous .custom-next,
.custom_blog_next-previous .custom-previous{width:50%;}
.post-author-wrapper img{width:130px;height:130px;}
.post-author-wrapper .authorContent h4{color:#000000;line-height:normal;margin-bottom:17px;}
.post-author-wrapper .authorBio{font-size:18px;line-height:normal;letter-spacing:0.15px;}
.custom_blog_next-previous a{font-weight:600;font-size:32px;line-height:100%;letter-spacing:1.15px;}
.custom_blog_next-previous a:not(:hover){color:#303030;}
.custom_blog_next-previous .custom-next{text-align:right;margin-left:auto;}
.blog-post-main .blogPostBody h3{font-size:32px;font-weight:600;line-height:normal;margin-bottom:20px;}
.blog-post-main .blogPostBody p{line-height:normal;letter-spacing:1.15px;}
.post-author-wrapper{max-width:665px;margin:0 auto;}
.custom_blog_next-previous>div{padding-left:10px;padding-right:10px;}
.custom_blog_next-previous{margin-left:-10px;margin-right:-10px;}
.blog-post-main .metaItem:not(:first-child)>span {
  padding-right: 20px;
}
.blog-postWrapper .metaWrap {
  flex-wrap: wrap;
  gap: 20px;
}
.blog-post-main .metaItem a:not(:hover) {
  color: #000000;
}


@media (min-width:992px){
  .blog-index .sr-hero-04 .pb-lg-40{padding-bottom:55px;}
}

@media (max-width:991px){
  .blog-postWrapper .blog-post-inner-container{padding:30px;border-radius:20px;}
  .blog-post-main .metaItem a {
    font-size: inherit;
  }
}

@media (max-width:767px){
  .custom_blog_next-previous .custom-next,
  .custom_blog_next-previous .custom-previous{width:100%;}
  .custom_blog_next-previous .nav-label{font-size:inherit;}
  .custom_blog_next-previous a{font-size:28px;}
  .blog-postWrapper .blog-post-inner-container{padding:30px 20px;}
  .blog-post-main .metaItem:not(:first-child)>span {
    padding-right: 5px;
  }
  .blog-postWrapper .metaWrap {
    gap: 5px;
  }

}
}