/*!********************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./assets/css/src/index.scss ***!
  \********************************************************************************************************************/
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
  min-width: auto;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

:root {
  --primary-color: #02827B;
  --secondary-color: #EE7536;
  --text-color: #0A303F;
  --text-color-gray: #5b5b5d;
  --text-color-primary: #02827B;
  --text-color-white: #ffffff;
  --bg-primary-dark: #17413D;
  --bg-seconday-dark: #f4a93e;
  --bg-seconday-light: #F6BA47;
  --bg-light: #E6F2F2;
  --bg-white: #F6F6F6;
  --icon-filter-primary: brightness(0) saturate(100%) invert(35%) sepia(54%) saturate(942%) hue-rotate(132deg) brightness(99%) contrast(98%);
  --icon-filter-secondary: brightness(0) saturate(100%) invert(50%) sepia(91%) saturate(685%) hue-rotate(337deg) brightness(96%) contrast(95%);
}

h1 {
  font-size: 3.25rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.875rem;
}

a {
  --link-color: var(--secondary-color);
  --link-hover-color: var(--primary-color);
  color: var(--link-color);
}
a:hover {
  color: var(--link-hover-color);
}

.container-grid {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 0;
  width: 100%;
  max-width: 1110px;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

.row {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.col {
  flex: 0 0 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
}
@media (min-width: 992px) {
  .col {
    flex: 1 0 0%;
  }
  .col-66 {
    flex: 0 0 auto;
    width: 66%;
  }
  .col-70 {
    flex: 0 0 auto;
    width: 70%;
  }
}

.d-none {
  display: none;
}
.d-grid {
  display: grid;
}
.d-block {
  display: block;
}
.d-flex {
  display: flex;
}

.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-primary {
  color: var(--primary-color);
}
.text-secondary {
  color: var(--secondary-color);
}
.text-dark {
  color: var(--text-color);
}
.text-white {
  color: white;
}
.text-link {
  font-weight: 700;
  text-decoration: underline !important;
}
.text-link-outline {
  color: var(--primary-color);
}
.text-link-outline:hover {
  color: var(--secondary-color);
}

.d-block {
  display: block;
}
.d-flex {
  display: flex;
}

.position-relative {
  position: relative;
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

.bg-primary {
  background-color: var(--primary-color);
}

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

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

.fw-700 {
  font-weight: 700;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.ml-0 {
  margin-left: 0;
}

.mr-0 {
  margin-right: 0;
}

.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.pl-0 {
  padding-left: 0;
}

.pr-0 {
  padding-right: 0;
}

.mt-1 {
  margin-top: 0.563rem;
}

.mb-1 {
  margin-bottom: 0.563rem;
}

.ml-1 {
  margin-left: 0.563rem;
}

.mr-1 {
  margin-right: 0.563rem;
}

.pt-1 {
  padding-top: 0.563rem;
}

.pb-1 {
  padding-bottom: 0.563rem;
}

.pl-1 {
  padding-left: 0.563rem;
}

.pr-1 {
  padding-right: 0.563rem;
}

.mt-2 {
  margin-top: 1.125rem;
}

.mb-2 {
  margin-bottom: 1.125rem;
}

.ml-2 {
  margin-left: 1.125rem;
}

.mr-2 {
  margin-right: 1.125rem;
}

.pt-2 {
  padding-top: 1.125rem;
}

.pb-2 {
  padding-bottom: 1.125rem;
}

.pl-2 {
  padding-left: 1.125rem;
}

.pr-2 {
  padding-right: 1.125rem;
}

.mt-3 {
  margin-top: 1.25rem;
}

.mb-3 {
  margin-bottom: 1.25rem;
}

.ml-3 {
  margin-left: 1.25rem;
}

.mr-3 {
  margin-right: 1.25rem;
}

.pt-3 {
  padding-top: 1.25rem;
}

.pb-3 {
  padding-bottom: 1.25rem;
}

.pl-3 {
  padding-left: 1.25rem;
}

.pr-3 {
  padding-right: 1.25rem;
}

.mt-4 {
  margin-top: 2.25rem;
}

.mb-4 {
  margin-bottom: 2.25rem;
}

.ml-4 {
  margin-left: 2.25rem;
}

.mr-4 {
  margin-right: 2.25rem;
}

.pt-4 {
  padding-top: 2.25rem;
}

.pb-4 {
  padding-bottom: 2.25rem;
}

.pl-4 {
  padding-left: 2.25rem;
}

.pr-4 {
  padding-right: 2.25rem;
}

.mt-5 {
  margin-top: 3.125rem;
}

.mb-5 {
  margin-bottom: 3.125rem;
}

.ml-5 {
  margin-left: 3.125rem;
}

.mr-5 {
  margin-right: 3.125rem;
}

.pt-5 {
  padding-top: 3.125rem;
}

.pb-5 {
  padding-bottom: 3.125rem;
}

.pl-5 {
  padding-left: 3.125rem;
}

.pr-5 {
  padding-right: 3.125rem;
}

.mt-6 {
  margin-top: 4.5rem;
}

.mb-6 {
  margin-bottom: 4.5rem;
}

.ml-6 {
  margin-left: 4.5rem;
}

.mr-6 {
  margin-right: 4.5rem;
}

.pt-6 {
  padding-top: 4.5rem;
}

.pb-6 {
  padding-bottom: 4.5rem;
}

.pl-6 {
  padding-left: 4.5rem;
}

.pr-6 {
  padding-right: 4.5rem;
}

.mt-7 {
  margin-top: 6.875rem;
}

.mb-7 {
  margin-bottom: 6.875rem;
}

.ml-7 {
  margin-left: 6.875rem;
}

.mr-7 {
  margin-right: 6.875rem;
}

.pt-7 {
  padding-top: 6.875rem;
}

.pb-7 {
  padding-bottom: 6.875rem;
}

.pl-7 {
  padding-left: 6.875rem;
}

.pr-7 {
  padding-right: 6.875rem;
}

.fs-0 {
  font-size: 0;
}

.fs-1 {
  font-size: 0.5rem;
}

.fs-2 {
  font-size: 1rem;
}

.fs-3 {
  font-size: 1.125rem;
}

.fs-4 {
  font-size: 1.25rem;
}

.fs-5 {
  font-size: 1.438rem;
}

.fs-6 {
  font-size: 1.875rem;
}

.fs-7 {
  font-size: 2rem;
}

.fs-8 {
  font-size: 2.5rem;
}

.fs-9 {
  font-size: 3.25rem;
}

.btn {
  --bs-btn-padding-x: 1rem;
  --bs-btn-padding-y: 1rem;
  --bs-btn-font-size: 1.25rem;
  --bs-btn-bg: transparent;
  --bs-btn-border-radius: 4rem;
  --bs-btn-border-color: transparent;
  --bs-btn-border-width: 1px;
  --bs-btn-color: var(--text-color);
  --bs-btn-hover-color: var(--bs-btn-color);
  --bs-btn-hover-bg: var(--bs-btn-bg);
  --bs-btn-hover-border-color: var(--bs-btn-border-color);
  --bs-btn-font-weight: 700;
  --bs-btn-line-height: 1.5;
  display: inline-block;
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  font-size: var(--bs-btn-font-size);
  font-weight: var(--bs-btn-font-weight);
  line-height: var(--bs-btn-line-height);
  background-color: var(--bs-btn-bg);
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  border-radius: var(--bs-btn-border-radius);
  color: var(--bs-btn-color);
  transition: color 0.5s ease-in-out, background-color 0.5s ease-in-out, border-color 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
}
.btn.active, .btn:hover {
  color: var(--bs-btn-hover-color);
  background: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}
.btn-sm {
  --bs-btn-padding-x: 1rem;
  --bs-btn-padding-y: 0.375rem;
  --bs-btn-font-size: 1.125rem;
}
.btn-primary {
  --bs-btn-bg: var(--primary-color);
  --bs-btn-hover-border-color: var(--bg-primary-dark);
  --bs-btn-hover-bg: transparent;
}
.btn-secondary {
  --bs-btn-bg: var(--secondary-color);
  --bs-btn-hover-border-color: var(--bg-seconday-dark);
  --bs-btn-hover-bg: #ffffff;
}
.btn-secondary-outline {
  --bs-btn-bg: #FFFFFF;
  --bs-btn-color: var(--secondary-color);
  --bs-btn-border-color: var(--bg-seconday-dark);
  --bs-btn-hover-color: #FFFFFF;
  --bs-btn-hover-bg: var(--secondary-color);
}
.btn-secondary-gradient {
  --bs-btn-bg: var(--secondary-color);
  --bs-btn-hover-border-color: var(--bg-seconday-dark);
  --bs-btn-hover-bg: #ffffff;
  background: var(--secondary-color) linear-gradient(93deg, #f79750 0%, #f07264 100%) 0% 0% no-repeat padding-box;
}
.btn-white {
  --bs-btn-bg: #ffffff;
  --bs-btn-color: var(--text-color);
  --bs-btn-hover-border-color: #ffffff;
  --bs-btn-hover-bg: transparent;
  --bs-btn-hover-color: #ffffff;
}

.single-post h1 {
  text-align: center;
}
.single-post h3 {
  font-size: 28px !important;
  font-weight: 600 !important;
  padding-bottom: 30px;
}
.single-post .post-body {
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
  margin-top: 65px;
}
.single-post .columns-post {
  display: flex;
  flex: 1;
}
.single-post .popular-articles h5:hover {
  color: var(--secondary-color);
}
.single-post .video {
  margin-right: 0;
}
@media (min-width: 768px) {
  .single-post .video {
    margin-right: -80px;
  }
}
@media (min-width: 768px) {
  .single-post .columns-post .post-content {
    flex: 2;
    padding-right: 115px;
  }
}
.single-post .popular-articles {
  flex: 1;
}
.single-post .popular-articles img {
  width: 100%;
}
@media (max-width: 768px) {
  .single-post .columns-post {
    flex-direction: column;
  }
}
.single-post .breadcrumbs-separator {
  vertical-align: sub;
}
.single-post #breadcrumbs {
  margin-left: 0;
  font-size: 16px !important;
}
.single-post #breadcrumbs .breadcrumbs-separator {
  padding: 0 10px !important;
}
.single-post #breadcrumbs a {
  margin: 0px !important;
  font-weight: 600;
}
.single-post .breadcrumbs-separator-line {
  width: 100vw;
  position: relative;
  left: calc(-50vw + 50%);
  border-top: 1px solid #ebedee;
}
.single-post .post-image img {
  width: 100%;
}
.single-post .single-article-navigation {
  display: flex;
  font-weight: 600;
  font-size: 23px;
}
.single-post .single-article-navigation a:hover {
  filter: var(--icon-filter-primary);
  color: var(--icon-filter-primary);
}
@media (max-width: 580px) {
  .single-post .single-article-navigation {
    font-size: 16px;
  }
}
.single-post .navigation-separator {
  padding: 0 12px;
  display: flex;
  align-items: center;
}
.single-post .single-article-footer {
  display: flex;
  align-items: end;
}
.single-post .single-article-footer .social-media {
  align-items: start;
  flex-direction: column;
}
.single-post .single-article-footer .social-media a {
  margin-right: 10px;
}
.single-post .single-article-footer .social-media h4 {
  color: var(--text-color);
  font-weight: 600 !important;
  padding-bottom: 20px;
}
.single-post .single-article-footer .social-media .social-media-buttons {
  display: flex;
}
@media (max-width: 992px) {
  .single-post .single-article-footer {
    align-items: center;
    flex-direction: column;
    padding-bottom: 50px;
  }
}
.single-post .single-article-navigation {
  padding-top: 30px;
}
.single-post .footer-separator-line {
  margin: 60px 0;
}
.single-post .single-popular-article {
  padding-bottom: 30px;
}
.single-post .single-popular-article h5 {
  color: var(--primary-color);
}
.single-post .single-popular-article h4 {
  color: var(--text-color-gray);
}
.single-post .single-post-header {
  padding-top: 30px;
}
.single-post .single-post-header h3 {
  color: var(--primary-color);
  text-align: center !important;
  font-size: 22px !important;
  font-weight: 600 !important;
  padding-bottom: 40px;
}

.card {
  display: flex;
  flex-direction: column;
}
.card-body {
  flex: 1 1 auto;
}

.page-404 {
  text-align: center;
  color: #000;
  padding-bottom: 80px !important;
}
.page-404 h1 {
  font-size: 128px !important;
  padding: 100px 0 50px 0;
}
.page-404 .search-bar {
  padding-top: 10px;
}
.page-404 .search-bar .search-field {
  border-radius: 13px;
  border: 0.5px solid orange;
  padding: 6px 6px 6px 25px;
}
.page-404 .search-bar .search-field-box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-404 .search-bar .search-field-box svg {
  position: relative;
  left: 22px;
}
.page-404 .search-bar input::placeholder {
  font-size: 14px !important;
}
.page-404 .search-bar .search-submit {
  display: none !important;
}

.mega-menu-wrap .mega-sub-menu a:hover {
  text-decoration: underline !important;
}
.mega-menu-wrap .mega-disable-link > :first-child {
  pointer-events: none !important;
  cursor: default !important;
}

@media (max-width: 1280px) {
  #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
    padding: 4px 15px 4px 15px !important;
  }
  #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu {
    padding-top: 0 !important;
  }
  #mega-menu-primary {
    max-height: 83vh !important;
  }
}
#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1:after {
  color: #fff !important;
}

.elementor-nav-menu .sub-menu {
  border: 1px solid #dedede !important;
}

.cpa-menu-logo {
  width: 190px !important;
  background-image: url(../assets/f94bd325d55b58d12369.png) !important;
  height: 50px !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  margin-right: 8px !important;
}

.cpa-top-header-section .menu-item a {
  color: var(--text-color);
}

@media (max-width: 379px) {
  .cpa-header-section ul#mega-menu-primary {
    max-width: 100% !important;
    top: calc(10% - 2px) !important;
  }
}
@media (min-width: 380px) and (max-width: 480px) {
  .cpa-header-section ul#mega-menu-primary {
    max-width: 100% !important;
    top: calc(9% - 2px) !important;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
  .cpa-header-section ul#mega-menu-primary {
    max-width: 100% !important;
    top: calc(7% - 2px) !important;
  }
}
.search-page {
  max-width: 1102px;
  margin: 60px auto;
}
.search-page .header-breadcrumb ol {
  padding: 0px;
}
.search-page .blog-readmore-button {
  min-width: 110px;
  font-size: 10px !important;
  height: 0px;
  cursor: pointer;
}
.search-page .blog-post-list {
  padding-bottom: 60px;
}

@media (max-width: 1200px) {
  .search-page {
    padding: 0 30px;
  }
}
[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}

.header-notification-bar {
  width: 100vw;
  position: relative;
  left: calc(-50vw + 50%);
  background: #F4A93E;
  padding: 10px 70px;
  display: flex;
  justify-content: space-between;
}
.header-notification-bar .notification-bar-close {
  display: flex;
  align-items: center;
}
.header-notification-bar .notification-bar-close:hover {
  cursor: pointer;
}
.header-notification-bar .notification-bar-content {
  font-weight: 600;
}
.header-notification-bar .notification-bar-content a {
  color: var(--text-color);
  text-decoration: underline !important;
}

@media (max-width: 768px) {
  .header-notification-bar {
    padding: 10px 20px;
  }
}
.cpa-discount .container {
  display: flex;
}
@media (max-width: 785px) {
  .cpa-discount .container {
    flex-direction: column;
  }
}
.cpa-discount .column {
  position: relative;
  flex: 0 0 33.3333333333%;
  margin: 0 auto;
  padding-right: 40px;
}
@media (max-width: 785px) {
  .cpa-discount .column {
    padding: 0 30px;
  }
}
.cpa-discount .column .name {
  font-weight: 700 !important;
}
.cpa-discount .column h2 {
  font-size: 32px;
}
.cpa-discount .column .how_work_svg {
  position: relative;
  display: block;
  width: 75%;
  height: auto;
  right: auto;
  left: auto;
  top: auto;
  bottom: auto;
  transform: rotate(0deg);
}
@media (max-width: 785px) {
  .cpa-discount .column .how_work_svg {
    width: 240px;
    height: 240px;
    margin: 0 auto;
  }
}

.block-carousel {
  position: relative;
}
@media all and (max-width: 991px) {
  .block-carousel .item {
    background: none !important;
    height: auto !important;
  }
}
@media all and (min-width: 992px) {
  .block-carousel .item:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.64) 10%, rgba(0, 0, 0, 0.02) 50%);
  }
}
.block-carousel-slides {
  background-color: #F6F6F6;
  height: auto !important;
}
@media all and (min-width: 992px) {
  .block-carousel-image {
    display: none;
  }
}
.block-carousel-content {
  padding: 1.25rem 1.375rem;
  position: relative;
  z-index: 1000;
}
.block-carousel-content .heading {
  font-size: 2.125rem;
  line-height: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
}
@media all and (min-width: 992px) {
  .block-carousel-content .heading {
    max-width: 60%;
  }
}
.block-carousel-content .description {
  font-size: 1.25rem;
  line-height: 1.75rem;
  max-width: 660px;
}
.block-carousel-content .button {
  margin-top: 2.125rem;
}
@media all and (max-width: 991px) {
  .block-carousel-content .button {
    text-align: center;
  }
  .block-carousel-content .button a {
    margin: 0 auto;
  }
}
@media all and (min-width: 992px) {
  .block-carousel-content {
    display: flex;
    align-items: center;
    height: 100%;
    color: white;
    max-width: 1320px;
    margin: 0 auto;
  }
  .block-carousel-content .heading {
    font-size: 3.25rem;
    line-height: 3.625rem;
    margin-bottom: 1.25rem;
  }
  .block-carousel-content .button {
    margin-top: 2.25rem;
  }
}
.block-carousel .owl-dots {
  padding-bottom: 1rem;
  line-height: 0;
}
@media all and (min-width: 992px) {
  .block-carousel .owl-dots {
    display: none;
  }
}
.block-carousel .owl-dot {
  background: none !important;
}
.block-carousel .owl-dot span {
  margin: 0 2px !important;
  width: 6px !important;
  height: 6px !important;
  background: #bababa !important;
}
.block-carousel .owl-dot.active span {
  background: #2B2B2B !important;
}
.block-carousel-navigation {
  position: absolute;
  right: 4.875rem;
  bottom: 1.625rem;
  z-index: 10;
  font-size: 1.125rem;
  color: white;
  font-weight: 700;
  display: none;
}
.block-carousel-navigation .pagination {
  margin-right: 0.75rem;
  line-height: 1.4;
}
.block-carousel-navigation a {
  margin: 0 2px;
}
@media all and (min-width: 992px) {
  .block-carousel-navigation {
    display: flex;
  }
}

.block-posts-listing {
  margin: 0 -1rem;
}
.block-posts-listing .post {
  display: block;
  width: 33.33%;
  padding: 0 1rem;
  margin-bottom: 30px;
}
.block-posts-listing .post h3 {
  font-size: 2rem !important;
  font-weight: 700 !important;
  line-height: 2.5rem !important;
}
.block-posts-listing .post .excerpt p {
  margin: 0;
}
.block-posts-listing .post.is-video .content {
  background-color: var(--bg-light);
  padding: 3.5rem 1.25rem;
}
@media (max-width: 991px) {
  .block-posts-listing .post {
    position: relative;
    width: 100%;
  }
}
.block-posts-banner {
  margin-bottom: 3.75rem;
  position: relative;
  background-size: cover;
  height: 420px;
  background-position: center;
}
@media all and (min-width: 992px) {
  .block-posts-banner:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.64) 10%, rgba(0, 0, 0, 0.02) 50%);
  }
}
.block-posts-banner ul {
  list-style: none;
  padding: 0;
  margin: 0 -0.4rem;
  display: flex;
}
.block-posts-banner ul li {
  margin: 0 0.4rem;
}
.block-posts-banner .inner-wrapper {
  display: flex;
  align-items: center;
}
.block-posts-banner .inner-wrapper .inner {
  margin-top: -100px;
}
.block-posts-event {
  padding: 2.75rem 1.875rem 3.375rem 1.875rem;
}
.block-posts-event h4 {
  font-size: 1.875rem !important;
  font-weight: 700 !important;
  line-height: 2.25rem !important;
  margin-bottom: 1.875rem;
}
.block-posts-event .card-body {
  border-top: 1px solid white;
}
.block-posts-highlight h3 {
  font-size: 2rem !important;
  font-weight: 700 !important;
  line-height: 2.5rem !important;
}
.block-posts-highlight .thumbnail img {
  min-width: 100%;
}
@media (min-width: 992px) {
  .block-posts-highlight .thumbnail img {
    max-height: 320px;
    object-fit: cover;
  }
}
.block-posts-highlight .post.is-video .content {
  background-color: var(--bg-light);
  padding: 3.5rem 1.25rem;
}
.block-posts-categories {
  text-align: left;
}
@media (min-width: 992px) {
  .block-posts-categories {
    text-align: right;
  }
}

.navigation.pagination {
  text-align: center;
  margin-top: 4.5rem;
}
.navigation.pagination .nav-links {
  display: inline-block;
  font-weight: 700;
}
.navigation.pagination .page-numbers {
  color: var(--text-color);
  padding: 0.25rem 0.725rem;
}
.navigation.pagination .page-numbers.current {
  background-color: var(--bg-seconday-dark);
  color: white;
  border-radius: 50%;
}

.accordion-header {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  cursor: pointer;
}
.accordion-header svg {
  transition: all 0.4s;
}
.active .accordion-header svg {
  transform: rotate(-180deg);
}
.accordion-content {
  display: none;
}
.accordion-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.accordion-content ul li {
  margin-bottom: 1.25rem;
}
.accordion-content ul li:last-child {
  margin-bottom: 0;
}

.block-timeline-carousel {
  position: relative;
}
.block-timeline-carousel-slides {
  height: auto !important;
}
.block-timeline-carousel-slides img {
  max-height: 500px;
  object-fit: cover;
}
.block-timeline-carousel-content {
  padding: 1.25rem 1.375rem;
  box-shadow: inset 0 0 2px #bdbdbd;
}
.block-timeline-carousel-content .heading {
  font-size: 2.125rem;
  line-height: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
}
@media all and (min-width: 992px) {
  .block-timeline-carousel-content .heading {
    max-width: 60%;
  }
}
.block-timeline-carousel-content .description {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.block-timeline-carousel-content .button {
  margin-top: 2.125rem;
}
@media all and (max-width: 991px) {
  .block-timeline-carousel-content .button {
    text-align: center;
  }
  .block-timeline-carousel-content .button a {
    margin: 0 auto;
  }
}
@media all and (min-width: 992px) {
  .block-timeline-carousel-content {
    display: flex;
    align-items: center;
    height: 100%;
    max-width: 1320px;
    margin: 0 auto;
  }
  .block-timeline-carousel-content .heading {
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 3.625rem;
    margin-bottom: 1.25rem;
  }
  .block-timeline-carousel-content .button {
    margin-top: 2.25rem;
  }
}
.block-timeline-carousel .owl-dots {
  padding: 2rem 0;
  line-height: 0;
}
@media all and (min-width: 1024px) {
  .block-timeline-carousel .owl-dots {
    display: none;
  }
}
.block-timeline-carousel .owl-dot {
  background: none !important;
}
.block-timeline-carousel .owl-dot span {
  margin: 0 2px !important;
  width: 6px !important;
  height: 6px !important;
  background: #bababa !important;
}
.block-timeline-carousel .owl-dot.active span {
  background: #2B2B2B !important;
}
.block-timeline-carousel-navigation .pagination {
  margin-right: 0.75rem;
  line-height: 1.4;
}
.block-timeline-carousel-navigation .prev {
  position: absolute;
  left: 10px;
  top: 250px;
  z-index: 1;
}
.block-timeline-carousel-navigation .next {
  position: absolute;
  right: 10px;
  top: 250px;
  z-index: 1;
}
@media (max-width: 560px) {
  .block-timeline-carousel-navigation .prev {
    top: 50px;
  }
  .block-timeline-carousel-navigation .next {
    top: 50px;
  }
}
@media (min-width: 561px) and (max-width: 780px) {
  .block-timeline-carousel-navigation .prev {
    top: 100px;
  }
  .block-timeline-carousel-navigation .next {
    top: 100px;
  }
}
.block-timeline-carousel-navigation a {
  margin: 0 2px;
}
@media all and (min-width: 992px) {
  .block-timeline-carousel-navigation {
    display: flex;
  }
}
.block-timeline-carousel .pagination-info {
  position: absolute;
  top: 0;
  z-index: 1;
  color: #fff;
  padding: 20px;
  font-weight: 600;
}
@media (max-width: 760px) {
  .block-timeline-carousel .pagination-info {
    display: none;
  }
}

.block-timeline-navigation {
  padding: 40px;
  width: 100vw;
  position: relative;
  left: calc(-50vw + 50%);
}
@media (max-width: 1024px) {
  .block-timeline-navigation {
    display: none;
  }
}
.block-timeline-navigation .horizontal-line {
  width: 100vw;
  position: relative;
  left: calc(-50vw + 50%);
  border-bottom: 2px solid var(--text-color-primary);
}
.block-timeline-navigation-slides {
  display: flex;
}
.block-timeline-navigation-slides .date-item a {
  display: flex;
  flex-direction: column;
  color: var(--text-color-primary);
  font-size: 16px;
  opacity: 0.4;
}
.block-timeline-navigation .owl-item.center .date-item a {
  font-weight: bold;
  opacity: 1 !important;
}
.block-timeline-navigation .owl-item .timeline-date-active {
  display: none;
}
.block-timeline-navigation .owl-item.center .timeline-date {
  display: none;
}
.block-timeline-navigation .owl-item.center .timeline-date-active {
  display: block;
}

/*# sourceMappingURL=main.css.map*/