/* Links */
.ee-postmeta-term a:hover {
	text-decoration: underline !important;;
}

/* Forms */
select {
	color: var(--bde-headings-color);
	background-color: #fff;
}

/* Buttons */
.button-atom--primary {
	padding: 10px 50px 10px 20px !important;
	height: 42px;
	border-left-width: 5px !important;
}
/* .button-atom--primary::before {
	content: '';
	width: 40px;
	height: 40px;
	border-radius: 100px;
	background: #fff;
	position: absolute;
	right: 1px;
	top: 1px;
} */
.button-atom--primary::after {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 10px;
}
.button-atom--primary:hover .button-atom__text {
	text-decoration: underline;
}
.button-atom--primary:hover::after {
	transform: translate(4px, -50%);
}

.button-atom--secondary {
	border-left-width: 5px !important;
}
.button-atom--secondary:hover .button-atom__text {
	text-decoration: underline;
}
.button-atom--secondary:hover::after {
	transform: translateX(4px);
}
.btn-alt .button-atom--secondary,
.btn-alt .button-atom__text {
	color: var(--bde-body-text-color);
}
.btn-alt .button-atom--secondary::after {
	background-color: var(--bde-body-text-color) !important;
}


/* Partner Boxes */
.partner-boxes .btn-alt::after {
  background-color: var(--bde-brand-primary-color);
}
.partner-boxes .partner-row {
  display: flex;
  padding: 40px 0 60px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  border-top: 1px solid var(--bde-brand-primary-color);
}
.partner-boxes .partner-row-col:nth-of-type(1) {
  width: 100%;
  background: #fff;
  min-height: 200px;
  border-radius: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
	padding: 0 20px;
}
.partner-boxes .partner-row-col:nth-of-type(1) img {
  width: 300px;
  height: auto;
}
.partner-boxes .partner-row-col:nth-of-type(2) {
  width: 100%;
}
@media screen and (min-width: 992px) {
	.partner-boxes .partner-row-col:nth-of-type(1) {
		width: 20%;
		min-height: 200px;
	}
	.partner-boxes .partner-row-col:nth-of-type(2) {
	  width: 74%;
	}
}


/* Accordion */

.accordion {
	margin: 0;
	padding: 0;
	width: 100%;
	text-align: left;
}

.accordion h3 {
  margin: 0;
  padding: 0;
	border-top: 2px solid #E2E2E2;
}

.accordion-trigger {
	background: none;
	display: inline-block;
	font-size: 1rem;
	font-weight: normal;
	margin: 0;
	padding: 0 10px 0 0;
	position: relative;
	text-align: left;
	width: 100%;
	border: 0;
	cursor: pointer;
	width: auto;
	z-index: 2;
	transition: all .3s ease-in-out;
}
.accordion-trigger::before {
    top: 0;
    left: -10px;
    bottom: 0;
    position: absolute;
    content: '';
    display: block;
	background: var(--bde-palette-bg-navy-dbf9ef72-792a-4189-8a48-9157e216d721-9);
	z-index: -2;
	transform: skewX(-10deg);
	border-radius: 0 0 30px 0;
	transition: all .3s ease-in-out;
	width: 0;
}
.accordion-trigger[aria-expanded="true"] {
	color: #fff;
}
.accordion-trigger[aria-expanded="true"]::before {
	width: calc(100% - 10px);
}
.accordion-trigger[aria-expanded="true"] .accordion-title {
	color: red;
}

.accordion-title {
	display: inline-block;
	pointer-events: none;
	border: transparent 2px solid;
	outline: none;
	font-family: var(--bde-body-font-family) !important;
	color: var(--bde-brand-primary-color);
	font-size: 21px !important;
	color: #000;
	padding: 18px 40px 18px 60px;
	position: relative;
	z-index: 2;
	transition: all .3s ease-in-out;
}

.accordion-icon {
	height: 22px;
    pointer-events: none;
    position: absolute;
    left: 20px;
    top: 18px;
    width: 22px;
    background: var(--bde-brand-primary-color);
    padding: 4px;
    border-radius: 100px;
    color: #fff;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    line-height: .9;
	transition: all .3s ease-in-out;
}

.accordion-trigger[aria-expanded="true"] .accordion-icon {
  background: #ee3981;
}

.accordion-icon::before {
	content: '+';
}

.accordion-trigger[aria-expanded="true"] .accordion-icon::before {
	content: '-';
}

.accordion-panel {
  margin: 0;
  padding: 0px 20px 40px;
}
@media screen and (min-width: 768px) {
	.accordion-panel {
	  margin: 0;
	  padding: 0px 60px 40px;
	}
}

/* For Edge bug https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/4806035/ */
.accordion-panel[hidden] {
  height: 0;
	overflow: hidden;
	display: block !important;
	padding: 0;
}
.accordion-columns {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.accordion-col {
	width: 100%;
	padding: 0 0 30px 0;
}
@media screen and (min-width: 1024px) {
	.accordion-col {
		width: 47%;
	}
	.how-we-help {
		margin-top: -20px;
	}
}

.accordion-panel.active .shapes::after,
.accordion-panel.active .shapes::before {
  transform: rotate(45deg) translate(0px, -50px);
}

.accordion-panel.active .shapes-1::before {
  transform: rotate(45deg) translate(0px, 40px);
}

.accordion-panel.active .shapes-1::after {
  transform: rotate(45deg) translate(0px, -30px);
}

.accordion-panel.active .shapes-2::before {
	transform: rotate(45deg) translate(0px, -60px);
}


/* Headings */
h1, h2, h3, h4, h5, h6 {
	line-height: 1;
}
.breakdance .h1 {
    font-size: var(--bde-h1-font-size);
}
.breakdance .h1,
.breakdance h1 {
	letter-spacing: -1px;
}
.breakdance .h2 {
    font-size: var(--bde-h2-font-size);
	letter-spacing: -1px;
}
.breakdance .h3 {
    font-size: var(--bde-h3-font-size);
}
.breakdance .h4 {
    font-size: var(--bde-h4-font-size);
}
.breakdance .h5 {
    font-size: var(--bde-h5-font-size);
}
.breakdance .h6 {
    font-size: var(--bde-h6-font-size);
}


/* Rich text */
body .bde-rich-text h2 {
	font-size: var(--bde-h4-font-size);
}
body .bde-rich-text h3 {
	font-size: var(--bde-h5-font-size);
}
body .bde-rich-text h4,
body .bde-rich-text h5 {
	font-size: var(--bde-h6-font-size);
}
body .bde-accordion__panel .bde-rich-text h4 {
	margin-bottom: 0px;
}
@media screen and (min-width: 768px) {
	body .bde-accordion__panel .bde-rich-text h4 {
		font-size: var(--bde-h4-font-size);
	}
}
body .bde-accordion__panel .bde-rich-text h5 {
	font-size: var(--bde-h5-font-size);
	margin-bottom: 0px;
}

.bde-rich-text ul,
.bde-code-block ul {
	list-style: none;
	padding-left: 0;
	text-align: left;
}
.bde-rich-text ul li,
.bde-code-block ul li {
	padding: 0 0 10px 28px;
	position: relative;
}
.bde-rich-text ul li strong,
.bde-code-block ul li strong {
	color: var(--bde-brand-primary-color);
}
.bde-rich-text ul li::before,
.bde-code-block ul li::before {
    width: 8px;
    height: 8px;
    left: 8px;
    top: 8px;
    position: absolute;
    content: '';
	border: 1px solid var(--bde-brand-primary-color);
	border-radius: 50px;
}

.bde-rich-text ul ul,
.bde-code-block ul ul {
	margin-top: 10px;
}
.bde-rich-text ul ul li,
.bde-code-block ul ul li {
	padding: 0 0 10px 30px;
	position: relative;
}
.bde-rich-text ul ul li::before,
.bde-code-block ul ul li::before {
    width: 6px;
	height: 6px;
	top: 9px;
    background: var(--bde-brand-primary-color);
}
.bde-rich-text ul {
  list-style: none !important;
  padding-left: 0
}

.bde-rich-text ul li {
  position: relative;
}
.bde-rich-text ol {
	counter-reset: ol-list-counter;
	list-style: none;
	margin: 30px 0;
	padding: 0;
}
.bde-rich-text ol li {
	padding-left: 36px;
	counter-increment: ol-list-counter;
	position: relative;
}
.bde-rich-text ol li strong {
	font-weight: 700;
}
.bde-rich-text ol li:not(:last-child) {
	margin-bottom: 20px;
}
.bde-rich-text ol li::before {
    content: counter(ol-list-counter);
    color: #fff;
    font-weight: 400;
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    top: 0px;
    border-radius: 100px;
    text-align: center;
    line-height: 1.7;
    background: var(--bde-brand-primary-color);
    z-index: 5;
    font-size: 14px;
}
.bde-rich-text ol li::after {
	content: '';
    color: #fff;
    font-weight: bold;
    position: absolute;
    left: 0;
    width: 36px;
    height: 36px;
    top: -3px;
    text-align: center;
	background: url(/wp-content/uploads/2024/04/list-bg.svg) center/contain no-repeat;
}
.bde-rich-text hr {
	margin: 50px 0;
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid var(--bde-brand-primary-color);
	padding: 0;
}
.bde-rich-text blockquote {
	position: relative;
	padding-left: 20px;
	font-weight: 600;
	padding: 30px 40px 20px 40px;
	border-radius: 24px;
	background: var(--bde-palette-color-1-77fcdfe4-8a5e-43f9-b9a0-bf9d609fc7ed);
	margin-left: 0;
}
.bde-rich-text blockquote::before {
    top: 20px;
    left: 24px;
    position: absolute;
    content: "“";
    display: block;
    font-size: 60px;
    opacity: 0.1;
    line-height: 0.8;
}
@media screen and (max-width: 767px) {
	.bde-rich-text ul li,
	.bde-code-block ul li {
		padding: 0 0 10px 20px;
	}
	.bde-rich-text ul li::before,
	.bde-code-block ul li::before {
		top: 5px;
	}
	.bde-rich-text ul ul li::before,
	.bde-code-block ul ul li::before {
		top: 6px;
	}
}


/* Meta */
@media screen and (max-width: 767px) {
	.bde-post-meta {
		flex-wrap: wrap !important;
		flex-direction: row !important;
		width: 100% !important;
		gap: 24px !important;
	}
}


@media screen and (max-width: 767px) {
	.people-name {
		font-size: 16px !important;
		line-height: 1.1;
		margin-bottom: 5px !important;
	}
}


/* Tabs */
@media screen and (min-width: 1120px) {
	.tab-link {
		display: none !important;
	}
}
.tab-link.hidden {
	display: none !important;
}
.bde-post-loop .bde-tabs__select {
	border: 1px solid var(--bde-brand-primary-color);
	background: url("data:image/svg+xml;utf8,<svg viewBox='0 0 140 140' width='24' height='24' xmlns='https://www.w3.org/2000/svg'><g><path d='m121.3,34.6c-1.6-1.6-4.2-1.6-5.8,0l-51,51.1-51.1-51.1c-1.6-1.6-4.2-1.6-5.8,0-1.6,1.6-1.6,4.2 0,5.8l53.9,53.9c0.8,0.8 1.8,1.2 2.9,1.2 1,0 2.1-0.4 2.9-1.2l53.9-53.9c1.7-1.6 1.7-4.2 0.1-5.8z' fill='%23032851'/></g></svg>") no-repeat #fff;
	background-position: calc(100% - 10px) center;
    background-size: 18px auto;
	border-radius: 100px;
}



/* Looper Builder */
body.breakdance .bde-post-loop .ee-post {
    gap: 0;
}


/* Flex Filter Grid */
.flex-filter .ee-post {
  position: relative !important;
  left: 0 !important;
  top: 0 !important;
  transform: none !important;
  transition: opacity .01s ease-in-out !important;
	margin: 0 !important;
}
.flex-filter .ee-posts-isotope {
	height: auto !important;
}
.team-box {
	min-height: 0 !important;
}


/* Gravity Forms */
body .gform_required_legend {
    display: none;
}
body .gform_wrapper.gravity-theme .gfield_label {
    color: var(--bde-headings-color);
    font-size: 16px;
	margin-bottom: 4px;
}
body .gform_wrapper.gravity-theme .gfield_error [aria-invalid=true] {
	border-color: #be5da0;
}
body .gform_wrapper.gravity-theme .gfield_required {
	color: var(--bde-links-color);
}
body .gform_wrapper.gravity-theme .gform_fields {
    grid-row-gap: 30px !important;
}
@media screen and (min-width: 641px) {
    body .gform_wrapper.gravity-theme .gform_fields {
        grid-column-gap: 20px !important;
    }
}
body .gf_progressbar_percentage {
	background: -webkit-linear-gradient(0deg, var(--bde-palette-color-4), var(--bde-palette-color-5));
}
body .gform_wrapper.gravity-theme .gf_progressbar_title {
	color: #000;
}
body .gform_wrapper.gravity-theme .gf_progressbar,
body .gform_wrapper.gravity-theme .gf_progressbar_percentage,
body .gform_wrapper.gravity-theme .gf_progressbar_percentage:not(.percentbar_100) {
	border-radius: 0;
}
body .gform_wrapper.gravity-theme input[type=color], 
body .gform_wrapper.gravity-theme input[type=date], 
body .gform_wrapper.gravity-theme input[type=datetime-local], 
body .gform_wrapper.gravity-theme input[type=datetime], 
body .gform_wrapper.gravity-theme input[type=email], 
body .gform_wrapper.gravity-theme input[type=month], 
body .gform_wrapper.gravity-theme input[type=number], 
body .gform_wrapper.gravity-theme input[type=password], 
body .gform_wrapper.gravity-theme input[type=search], 
body .gform_wrapper.gravity-theme input[type=tel], 
body .gform_wrapper.gravity-theme input[type=text], 
body .gform_wrapper.gravity-theme input[type=time], 
body .gform_wrapper.gravity-theme input[type=url], 
body .gform_wrapper.gravity-theme input[type=week], 
body .gform_wrapper.gravity-theme select, 
body .gform_wrapper.gravity-theme textarea {
    background: none;
    border-radius: 0;
    padding: 10px 25px !important;
    width: 100%;
    color: #000;
    background-color: #FFFFFF00;
    border: 1px solid var(--bde-headings-color);
    font-family: var(--bde-heading-font-family);
    font-size: 16px;
}
body .gform_wrapper.gravity-theme select {
    appearance:  none;
    background: black url("data:image/svg+xml;utf8,<svg viewBox='0 0 140 140' width='24' height='24' xmlns='https://www.w3.org/2000/svg'><g><path d='m121.3,34.6c-1.6-1.6-4.2-1.6-5.8,0l-51,51.1-51.1-51.1c-1.6-1.6-4.2-1.6-5.8,0-1.6,1.6-1.6,4.2 0,5.8l53.9,53.9c0.8,0.8 1.8,1.2 2.9,1.2 1,0 2.1-0.4 2.9-1.2l53.9-53.9c1.7-1.6 1.7-4.2 0.1-5.8z' fill='black'/></g></svg>") no-repeat;
    background-position: calc(100% - 20px) center;
    background-size: 12px auto;
}
body .gform_wrapper .ginput_container {
    position: relative;
}
body .gform_wrapper .ginput_container::before {
    left: -10px;
    bottom: -12px;
    width: 19px;
    height: 25px;
    position: absolute;
    content: '';
    display: block;
}
body .gform_wrapper .ginput_container_textarea::before {
    bottom: -3px;
}
body .gform_wrapper.gravity-theme textarea,
body .gform_wrapper.gravity-theme .gfield textarea.large {
    height: 100px;
}
body .gform_wrapper.gravity-theme .gform_footer input {
    padding: 14px 40px;
    border-radius: 0 !important;
    border: 0;
    background: var(--bde-headings-color);
    color: #fff;
    margin: 0 0 0 auto;
    font-size: 16px;
	font-weight: 700;
	transition: all .3s ease-in-out;
	cursor: pointer;
	width: 100%;
}
body .gform_previous_button {
	color: var(--bde-body-text-color) !important;
	background: none !important;
	padding-left: 10px !important;
	padding-right: 10px !important;
	margin-right: 30px !important;
	border: 1px solid var(--bde-body-text-color) !important;
}
body .gform_page_footer {
    justify-content: space-between;
    display: flex;
}
body .gform_page_footer .gform_button,
body .gform_page_footer .gform_next_button {
	margin: 0 0 0 auto !important;
}
body .gform_previous_button::before,
body .gform_previous_button::after {
	display: none !important;
}
body .gform_wrapper.gravity-theme .gform_footer button {
	width: 100%;
}
body .gform_wrapper.gravity-theme .gform_footer input:hover {
    background-color: var(--bde-links-color);
}
body .gform_wrapper.gravity-theme .validation_message {
    background: #be5da0;
    border: 0;
    color: #fff !important;
    border-radius: 0;
    padding: 5px 10px !important;
    display: inline-block !important;
    width: auto !important;
	font-size: 14px;
}
body .gform_wrapper.gravity-theme .gform_validation_errors>h2 {
	font-size: 14px;
	color: #fff;
}
body .gform_wrapper.gravity-theme .gform_validation_errors {
    background: #be5da0;
    border-color: #be5da0;
    color: #fff;
    border-radius: 0;
	padding: 5px 10px !important;
}
body .gform_wrapper .gform_validation_errors>h2 {
    color: #fff;
}
body .gform_wrapper .gform_validation_errors>h2 {
    color: #fff;
}
body .gform_wrapper .gform_validation_errors>h2 .gform-icon {
    color: #fff;
}
body .gform_wrapper textarea {
    height: 140px !important;
}
body .dark-form .gform_wrapper.gravity-theme .gfield_label {
    color: #fff;
}
body .dark-form .gform_wrapper.gravity-theme input[type=color], 
body .dark-form .gform_wrapper.gravity-theme input[type=date], 
body .dark-form .gform_wrapper.gravity-theme input[type=datetime-local], 
body .dark-form .gform_wrapper.gravity-theme input[type=datetime], 
body .dark-form .gform_wrapper.gravity-theme input[type=email], 
body .dark-form .gform_wrapper.gravity-theme input[type=month], 
body .dark-form .gform_wrapper.gravity-theme input[type=number], 
body .dark-form .gform_wrapper.gravity-theme input[type=password], 
body .dark-form .gform_wrapper.gravity-theme input[type=search], 
body .dark-form .gform_wrapper.gravity-theme input[type=tel], 
body .dark-form .gform_wrapper.gravity-theme input[type=text], 
body .dark-form .gform_wrapper.gravity-theme input[type=time], 
body .dark-form .gform_wrapper.gravity-theme input[type=url], 
body .dark-form .gform_wrapper.gravity-theme input[type=week], 
body .dark-form .gform_wrapper.gravity-theme select, 
body .dark-form .gform_wrapper.gravity-theme textarea {
    border-color: #fff;
    color:  #fff;
}
body .dark-form .gform_wrapper.gravity-theme .gform_footer input {
    background: transparent;
}
body .dark-form .gform_wrapper.gravity-theme .gform_footer input:hover {
    background: var(--bde-links-color);
}
body .dark-form .gform_confirmation_message {
    color: #fff !important;
    text-align: center !important;
}
body .inline-form {
    width: 100%;
    position: relative;
}

body .inline-form .gform_validation_errors {
    display: none;
}

body .inline-form .gform_wrapper.gravity-theme input[type="email"] {
    padding: 14px 18px !important;
}

body .inline-form .gform_wrapper.gravity-theme .gform_footer input {
    background: var(--bde-headings-color) !important;
    padding: 14px 24px !important;
    border: 1px solid #000 !important;
    border-radius: 0 15px 15px 0 !important;
    height: 60px;
    text-align: center !important;
    width: 100%;
    font-size: 14px;
    letter-spacing: 0;
}

body .inline-form .gform_wrapper.gravity-theme .gform_footer {
    margin: 0;
    padding: 0;
}

@media screen and (min-width: 768px) {
    body .inline-form .gform_wrapper.gravity-theme input[type="email"] {
        border-radius: 15px 0 0 15px !important;
        width: calc(60% + 2px);
    }
    body .inline-form input[type="email"]::placeholder {
        font-size: 16px;
    }
    body .inline-form .gform_footer {
        position: absolute;
        right: 0;
        top: 0;
        padding: 0;
        margin: 0;
        width: 40%;
    }
}
body .inline-form .gform_footer input:hover {
    background-color: var(--bde-links-color) !important;
    border-color: var(--bde-links-color) !important;
    color: #000;
}
body .inline-form .gform_wrapper .gfield_validation_message, .gform_wrapper .validation_message {
    color: #fff;
    background: #be5da0;
    border: 0;
}
body .inline-form .gform_footer .gform_ajax_spinner {
    position: absolute;
    top: calc(50% - 8px);
    right: 20px;
}
body .inline-form .gform_confirmation_message_1 {
    background: var(--bde-text-color) !important;
    padding: 12px 20px;
    color: #fff;
}


/* Home slider */
.banner-carousel #app {
	display: flex;
    flex-wrap: wrap;
}
.banner-carousel ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.banner-carousel .bg-container {
	width: calc(100% - 100px);
	padding: 80px 0 0 104px;
}

.banner-carousel .bg-imgs {
	width: 100%;
	background-size: cover;
	-webkit-transition: background-image 650ms ease-in-out;
	transition: background-image 650ms ease-in-out;
	position: relative;
}

.banner-carousel .bg-imgs > div {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-size: cover;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
}

@media screen and (min-width: 1120px) {
	.banner-carousel .bg-imgs > div:nth-of-type(1) {
		padding-left: 38px;
	}

	.banner-carousel .bg-imgs > div:nth-of-type(2) {
		padding: 75px 0 0 24px;
	}

	.banner-carousel .bg-imgs > div:nth-of-type(3) {
		padding: 150px 0 0;
	}
}

.banner-carousel .carousel-nav {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-left: 40px;
}
@media screen and (min-width: 768px) {
	.banner-carousel .carousel-nav {
		min-height: 330px;
	}
}

@media (max-width: 767px) {
	.banner-carousel .carousel-nav {
		flex-direction: row;
		width: 200px;
	}
}

.banner-carousel .carousel-nav .timer {
	position: relative;
	width: 60px;
	height: 60px;
	margin-bottom: 24px;
	transform: translateX(120px);
}

.banner-carousel .carousel-nav .timer svg {
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

.banner-carousel .carousel-nav .dots {
  margin-top: 15px;
}

@media (max-width: 767px) {
  .carousel-nav .dots {
    margin-top: 0;
    margin-left: 15%;
  }
}

.banner-carousel .carousel-nav .dots li {
  margin-bottom: 35px;
}

@media screen and (min-width: 1120px) {
	.banner-carousel .carousel-nav .dots li:nth-of-type(1) {
		transform: translate(111px, 0px);
	}

	.banner-carousel .carousel-nav .dots li:nth-of-type(2) {
		transform: translate(96px, 0px);
	}

	.banner-carousel .carousel-nav .dots li:nth-of-type(3) {
		transform: translate(73px, 0px);
	}
}

@media (max-width: 767px) {
  .banner-carousel .carousel-nav .dots li {
    display: inline-block;
    margin-bottom: 0;
  }
}

.banner-carousel .carousel-nav .dots li span {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  margin: 0 auto;
  overflow: hidden;
	transition: all .3s ease-in-out;
}

.banner-carousel .carousel-nav .dots li:hover {
  cursor: pointer;
}

.banner-carousel .carousel-nav .dots li.active span {
  transform: scale(2);
}

.banner-carousel .carousel-nav .dots li:focus {
  outline: none;
}

.banner-carousel #circle {
  stroke: var(--bde-palette-color-1-2944d3dd-fd50-47f2-8a58-eb96e61a9af3);
  fill: none;
  stroke-width: 4;
  stroke-dasharray: 175.953; /* this value is the pixel circumference of the circle */
  stroke-dashoffset: 175.953;
}

.banner-carousel #circle,
.banner-carousel #animated-circle {
  stroke: var(--bde-palette-color-1-2944d3dd-fd50-47f2-8a58-eb96e61a9af3);
}

.banner-carousel .pause,
.banner-carousel .play {
	position: absolute;
	width: 100%;
	height: 100%;
	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;
}

.banner-carousel .pause:before,
.banner-carousel .play:before {
	color: var(--bde-brand-primary-color);
	height: 18px;
	width: 18px;
}

.banner-carousel .pause:hover,
.banner-carousel .play:hover {
	cursor: pointer;
}

.banner-carousel #timer-btn {
	z-index: 5;
}

.banner-carousel #timer-btn::after {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    content: '';
    display: block;
	background: var(--bde-brand-primary-color);
	transform: scale(.7);
	z-index: -1;
	border-radius: 100px;
}

.banner-carousel .pause:before {
  content: url('data:image/svg+xml,<svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 12 12"><polyline points="2.43 0 2.43 12 3.43 12 3.43 0" style="fill: %23fff; stroke-width: 0px;"/><polyline points="8.58 0 8.58 12 9.58 12 9.58 0" style="fill: %23fff; stroke-width: 0px;"/></svg>');
  display: inline-block;
}

.banner-carousel .play:before {
  content: url('data:image/svg+xml,<svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 12 12"><path d="M11.25,5.59L1.67.07v11.92l10.33-5.96-.75-.43ZM2.67,1.8l7.33,4.23-7.33,4.23V1.8Z" style="fill: %23fff; stroke-width: 0px;"/></svg>');
  font-family: "fontawesome";
  display: inline-block;
  font-size: 15px;
}

.banner-carousel-heading {
	font-weight: 700;
}
@media screen and (min-width: 768px) {
	.banner-carousel-heading {
		font-size: 18px;
	}
}
.banner-carousel-link {
	text-transform: uppercase;
	font-weight: 700;
	font-size: 13px;
}

@media screen and (max-width: 1119px) {
	.banner-carousel .carousel-nav {
		padding-left: 0;
		width: 100%;
		flex-direction: row;
		justify-content: space-between;
		min-height: 0;
		margin: 0 0 20px;
	}
	.banner-carousel .carousel-nav .timer {
		transform: none;
		margin: 0;
	}
	.banner-carousel .carousel-nav .dots {
		margin: 0;
		width: calc(100% - 95px);
		flex-direction: row;
		display: flex;
		z-index: 5;
		position: relative;
	}
	.banner-carousel .carousel-nav .dots li {
		margin: 0 15px;
	}
	.banner-carousel .bg-container {
		padding: 0;
		min-height: 100px;
	}
}
@media screen and (min-width: 1024px) and (max-width: 1119px) {
	.banner-carousel .bg-imgs > div:nth-of-type(1) {
		padding-left: 90px;
	}

	.banner-carousel .bg-imgs > div:nth-of-type(2) {
		padding-left: 160px;
	}

	.banner-carousel .bg-imgs > div:nth-of-type(3) {
		padding-left: 232px;
	}
}
@media screen and (max-width: 1024px) {
	.banner-carousel .bg-container {
		padding-left: 94px;
	}
}