.upProgressSquare {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 61, 124, 0.5);
}

.owl-stage-outer {
  padding: 0;
}
.owl-carousel {
  touch-action: manipulation;
}
.owl-prev, .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0;
  width: 62px;
  height: 62px;
}
@media (max-width: 1023px) {
  .owl-prev, .owl-next {
    box-shadow: 0 0px 11px 1px rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.3), 0 0 4px rgba(0, 0, 0, 0.2);
    width: 40px;
    height: 40px;
  }
}
.owl-prev::before, .owl-next::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 20px;
  height: 20px;
  border-top: 0;
  border-left: 0;
  border-right: 2px solid;
  border-bottom: 2px solid;
  border-color: var(--clr-font);
}
@media (max-width: 1023px) {
  .owl-prev::before, .owl-next::before {
    width: 10px;
    height: 10px;
    border-right: 4px solid;
    border-bottom: 4px solid;
    border-color: var(--clr-primary);
  }
}
.owl-prev {
  left: -100px;
}
.owl-prev::before {
  transform: translate(-50%, -50%) rotate(135deg);
}
@media (max-width: 1023px) {
  .owl-prev::before {
    transform: translate(-30%, -50%) rotate(135deg);
  }
}
@media (max-width: 1023px) {
  .owl-prev {
    left: 10px;
  }
}
.owl-next {
  right: -100px;
}
.owl-next::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media (max-width: 1023px) {
  .owl-next::before {
    transform: translate(-70%, -50%) rotate(-45deg);
  }
}
@media (max-width: 1023px) {
  .owl-next {
    right: 10px;
  }
}
.owl-dots {
  margin: 60px 0 40px;
  display: flex;
  justify-content: center;
}
.owl-dot {
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
}
.owl-dot.active {
  background-color: var(--clr-secondary);
}
.owl-dot:not(:last-child) {
  margin: 0px 12px 0 0;
}

.slick-dots {
  list-style: none;
  display: flex !important;
  margin: 0;
}
.slick-dots li {
  margin: 10px;
  border: 1px solid var(--clr-primary);
  width: 15px;
  height: 15px;
  border-radius: 50%;
}
.slick-dots li.slick-active {
  background-color: var(--clr-primary);
}
.slick-dots li button {
  font-size: 0;
  border: unset;
}

.masonry__layout {
  --columns: 1;
  --gap: 20px;
  display: grid;
  grid-template-columns: repeat(var(--columns), 1fr);
  grid-gap: var(--gap);
}
@media (max-width: 991px) {
  .masonry__layout {
    place-items: center;
  }
}
.masonry__layout.columns-1 {
  --columns: 1;
}
.masonry__layout.columns-2 {
  --columns: 2;
}
.masonry__layout.columns-3 {
  --columns: 3;
}
.masonry__layout.columns-4 {
  --columns: 4;
}
.masonry__layout img {
  max-width: 100%;
  width: 100%;
  display: block;
}
.masonry__item {
  margin-bottom: var(--gap);
}

.at-share-btn-elements {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 680px) {
  .at-share-btn-elements {
    justify-content: center;
  }
}
.at-share-btn-elements a {
  margin-bottom: 0 !important;
  background-color: var(--clr-primary) !important;
  border-radius: 6px !important;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(81, 192, 173, 0.8);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
}
#preloader .pageprogress {
  position: fixed;
  z-index: 999999;
  display: block;
  top: 50%;
  left: 50%;
  width: 90px;
  height: 90px;
  margin: 0;
  fill: transparent;
  transform: translate(-50%, -50%);
}
#preloader .pageprogress circle {
  fill: none;
  stroke-width: 3px;
}
#preloader .pageprogress circle.background {
  stroke: rgba(255, 255, 255, 0.1);
}
#preloader .pageprogress circle.foregroundp {
  stroke-dasharray: 2030px 2030px;
  stroke-dashoffset: 2030px;
  transform: rotate3d(0, 0, 1, -90deg);
  transform-origin: 50% 50%;
}

.displayBlock {
  display: none;
}

.accordion-section {
  margin-bottom: 10px;
}
.accordion-section:last-child {
  margin-bottom: 0;
}
.accordion-section-content {
  display: none;
  padding: 30px;
  background-color: #fff;
}
.accordion-section-title {
  position: relative;
  width: 20px;
  height: 20px;
}
.accordion-section-title .arrows {
  pointer-events: none;
  position: absolute;
}
.accordion-section-title .arrow-props {
  display: block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
}
.accordion-section-title .arrow-down {
  background-image: url(/CMS/site/images/arrow-down.svg);
}
.accordion-section-title .arrow-down::before {
  content: "Read more";
  font-size: 11px;
  position: absolute;
  width: 55px;
  left: -64px;
  top: 4px;
  color: var(--clr-primary);
}
.accordion-section-title .arrow-up {
  display: none;
  background-image: url(/CMS/site/images/arrow-up.svg);
}
.accordion-section-title.active .arrow-up {
  display: flex;
}
.accordion-section-title.active .arrow-down {
  display: none;
}

#cboxLoadedContent .displayBlock {
  display: block;
}

#cboxOverlay {
  background: none !important;
}

#cboxMiddleLeft,
#cboxTopLeft,
#cboxTopCenter,
#cboxTopRight,
#cboxMiddleRight,
#cboxBottomRight,
#cboxBottomCenter,
#cboxBottomLeft {
  height: 0 !important;
  width: 0 !important;
  background: none !important;
}

#cboxLoadedContent {
  margin-bottom: 0 !important;
}

#cboxContent {
  background: var(--clr-secondary) !important;
  padding: 23px;
}

#cboxClose {
  top: 45px !important;
  right: 45px !important;
  background: url(/CMS/site/images/colorbox-close.svg) !important;
  width: 42px !important;
  height: 42px !important;
}
@media (max-width: 1080px) {
  #cboxClose {
    top: 20px !important;
    right: 20px !important;
    width: 20px !important;
    height: 20px !important;
    background-position: center !important;
    background-size: cover !important;
  }
}

#cboxClose:focus,
#cboxClose:focus-visible {
  outline: none;
}

#colorbox {
  box-shadow: 0px 0px 30px 5px rgba(0, 0, 0, 0.3);
}

#cboxPrevious,
#cboxNext {
  bottom: unset;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
#cboxPrevious:hover,
#cboxNext:hover {
  background-position: unset;
}

#cboxPrevious {
  right: unset;
  left: 16px;
  background: unset;
}

#cboxNext {
  left: unset;
  right: 16px;
  background: unset;
}

#cboxCurrent {
  left: 50%;
  transform: translateX(-50%);
  bottom: 18px;
  background-color: #fff;
  padding: 5px 10px;
  color: #000;
}

.pagination {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 20px;
  margin-top: 40px;
  justify-content: center;
}
.pagination .page {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}
.pagination .page a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  text-decoration: none;
  color: var(--clr-secondary);
  font-weight: bold;
}
.pagination .page.current {
  color: var(--clr-white);
  font-weight: bold;
}
.pagination .page.prev {
  margin-right: 10px;
}
.pagination .page.next {
  margin-left: 10px;
}
.pagination .page.prev, .pagination .page.next {
  font-size: 0;
  width: unset;
  color: var(--clr-secondary);
}
.pagination .page.prev::before, .pagination .page.prev::before, .pagination .page.next::before, .pagination .page.next::before {
  font-size: 14px;
}
.pagination .page.prev::before {
  content: "Previous";
}
.pagination .page.next::before {
  content: "Next";
}
.pagination .page.last, .pagination .page.first, .pagination .page.arrow-prev, .pagination .page.arrow-double-prev, .pagination .page.arrow-next, .pagination .page.arrow-double-next {
  display: none;
}/*# sourceMappingURL=plugins.css.map */