/**
* Base Colors
*/
/**************************
  Media Queries
***************************/
/*************************
  Fonts
**************************/
/*************************
  Button colours
**************************/
/*************************
  Location page colours
**************************/
/*************************
  Form colours
**************************/
/*************************
  Sidebar variables
**************************/
/*************************
  404 button background
**************************/
/*************************
  Results Partial
**************************/
/*************************
  Swiper
**************************/
/*************************
  Footer Top
**************************/
/* Additional Mixins */
.accordion .item-accordion .title:after, .main-wrapper .cw-accordion__item-title:after, .btn--primary:before, .btn {
  transition: all 0.3s ease-in-out;
}

.uppercase-title {
  font-family: var(--secondary-font), sans-serif;
  color: #2b2b2b;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 0.15rem;
  text-align: center;
}

.main-wrapper {
  padding-top: 141px;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .main-wrapper {
    padding-top: 66px;
  }
}
@media screen and (min-width: 992px) {
  .main-wrapper {
    padding-top: 90px;
  }
}
@media screen and (min-width: 1200px) {
  .main-wrapper {
    padding-top: 117px;
  }
}
.main-content {
  padding: 40px 0 20px;
}

@media screen and (min-width: 768px) {
  .main-content {
    padding: 80px 0 20px;
  }
}
@media screen and (min-width: 1200px) {
  .main-content .container .row > .entry-content.col-lg-7,
.main-content .container .row > .content.col-lg-7 {
    padding-right: 70px;
  }
}
@media (min-width: 1400px) {
  .main-content .container .row > .entry-content.col-lg-7,
.main-content .container .row > .content.col-lg-7 {
    padding-right: 135px;
  }
}
[v-cloak] > * {
  display: none;
}

#loader-div {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.3);
  left: 0;
  top: 0;
  overflow: hidden;
  transition: all 0.5s ease;
}

#loader-div .lds-ring {
  display: inline-block;
  position: relative;
  width: 77px;
  height: 77px;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  margin: 0 auto;
  text-align: center;
  display: block;
}

#loader-div .lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 70px;
  height: 70px;
  margin: 6px;
  border: 7px solid #4164f2;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #4164f2 transparent transparent transparent;
}

#loader-div .lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

#loader-div .lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

#loader-div .lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.arrow-link {
  color: #eb5b13;
  font-size: 16px;
  font-weight: 600;
  background-image: url("../arrow-right.html");
  background-repeat: no-repeat;
  background-size: 18px 8px;
  padding-right: 22px;
  background-position: right center;
}

.arrow-link__alt {
  color: #fff;
  background-image: url("../arrow-alt-right.html");
}

.small-font-content p {
  font-family: var(--secondary-font), sans-serif;
  font-size: 1rem;
  line-height: 2rem;
  color: #242424;
  margin-bottom: 27px;
}

.results-wrap .result-item {
  background: #f4f4f4;
  border: 1px solid #d8d9d9;
  padding: 27px;
  padding-top: 23px;
  text-align: center;
  margin-bottom: 35px;
}

.results-wrap .result-item .result-title {
  color: var(--color-primary);
  font-size: 32px;
  font-weight: 700;
  padding-bottom: 5px;
  font-family: var(--secondary-font), sans-serif;
}

.results-wrap .result-item .result-taxonomy {
  font-size: 19px;
  text-transform: capitalize;
  color: var(--link-color);
  font-weight: 400;
}

.results-wrap .result-item p {
  padding-top: 8px;
  color: var(--text-color);
}

.results-wrap .result-item p:last-child {
  margin-bottom: 0;
}

.btn {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 18px 20px;
  color: #0E0F11;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-transform: uppercase;
  text-align: center;
  background: none;
  border: none;
  border-radius: 4px;
  box-shadow: none;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .btn {
    padding: 18px 24px;
  }
}
.btn--primary {
  background: linear-gradient(270deg, #78C066 0%, #4AA457 100%);
  box-shadow: 0px 0px 0px 1px rgba(14, 14, 15, 0.03), 0px 2px 8px 0px rgba(14, 14, 15, 0.1), 0px 10px 36px 0px rgba(14, 14, 15, 0.1);
}

.btn--primary:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary);
  border-radius: 4px;
  opacity: 0;
}

.btn--primary:hover {
  color: #0E0F11;
}

.btn--primary:hover:before {
  opacity: 1;
}

.btn--secondary {
  padding: 11px 16px;
  min-width: 207px;
  color: #fff;
  background-color: rgba(120, 192, 102, 0.15);
  border: 2px solid var(--color-secondary);
}

.btn--secondary:hover {
  color: #0E0F11;
  background-color: var(--color-primary);
}

.btn--secondary.button__load-more {
  padding: 16px;
  min-width: 247px;
}

.btn--tertiary {
  padding: 0;
  letter-spacing: 0.8px;
  border-bottom: 2px solid var(--color-secondary);
  border-radius: 0;
}

.btn--tertiary:hover {
  color: var(--color-primary);
}

.btn--tertiary-white {
  color: #fff;
}

.btn.btn--check {
  display: inline-flex;
  align-items: center;
  padding: 16px 15px;
  font-size: 15px;
  letter-spacing: normal;
}

.btn.btn--check svg {
  margin-right: 8px;
}

.btn.btn--check:hover svg path {
  fill: #0E0F11;
}

.btn.btn--bottom-border {
  color: #fff;
  padding: 0;
  letter-spacing: 0.8px;
  border-bottom: 2px solid var(--color-secondary);
  border-radius: 0;
}

.btn.btn--bottom-border:hover {
  color: var(--color-primary);
}

/* purgecss start ignore */
.gform_wrapper.gravity-theme form {
  max-width: 690px;
  margin-left: auto;
  margin-right: auto;
}

.gform_wrapper.gravity-theme .gform_heading {
  display: none;
}

.gform_wrapper.gravity-theme .gchoice {
  position: relative;
  padding-left: 40px;
}

.gform_wrapper.gravity-theme .gchoice label:after {
  content: "";
  background: transparent;
  width: 24px;
  height: 24px;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 4px;
  z-index: 0;
  border: 1px solid white;
}

.gform_wrapper.gravity-theme .gchoice label:before {
  content: "";
  display: block;
  position: absolute;
  width: 6px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  left: 9px;
  top: 4px;
  transform: rotate(45deg);
  opacity: 0;
  z-index: 1;
  transition: all 100ms;
}

.gform_wrapper.gravity-theme input[type=checkbox] {
  opacity: 0;
  outline: none;
  z-index: 100;
  width: 27px;
  height: 27px;
  top: 0;
  left: 0;
  position: absolute;
  appearance: none;
  cursor: pointer;
}

.gform_wrapper.gravity-theme input[type=checkbox] + label {
  cursor: pointer;
}

.gform_wrapper.gravity-theme input[type=checkbox]:checked + label:before {
  opacity: 1;
  top: 6px;
}

.gform_wrapper.gravity-theme .gfield {
  margin-bottom: 13px;
}

@media screen and (min-width: 768px) {
  .gform_wrapper.gravity-theme .gfield {
    margin-bottom: 24px;
  }
}
.gform_wrapper.gravity-theme .gfield .ginput_container label {
  color: #fff;
}

.gform_wrapper.gravity-theme .gfield .ginput_container input,
.gform_wrapper.gravity-theme .gfield .ginput_container textarea,
.gform_wrapper.gravity-theme .gfield .ginput_container select {
  padding: 10px;
  color: #fff;
  font-size: 17px;
  height: 50px;
  background-color: rgba(4, 5, 6, 0.35);
  border: none;
  border-bottom: 2px solid #EBEBEB;
  border-radius: 0;
}

.gform_wrapper.gravity-theme .gfield .ginput_container input::placeholder,
.gform_wrapper.gravity-theme .gfield .ginput_container textarea::placeholder,
.gform_wrapper.gravity-theme .gfield .ginput_container select::placeholder {
  color: #fff;
}

.gform_wrapper.gravity-theme .gfield .ginput_container select {
  padding-right: 35px;
  background: url(../svg/icon-select-arrow-down.svg) no-repeat center right 10px;
  background-color: rgba(4, 5, 6, 0.35);
  appearance: none;
}

.gform_wrapper.gravity-theme .gfield .ginput_container textarea.large {
  height: 134px;
}

@media screen and (min-width: 768px) {
  .gform_wrapper.gravity-theme .gfield .ginput_container textarea.large {
    height: 100px;
  }
}
.gform_wrapper.gravity-theme .gfield.gfield--type-html.label {
  margin-bottom: 9px;
  color: var(--form-label-color);
  font-size: 17px;
  font-weight: 700;
  line-height: 30px;
}

.gform_wrapper.gravity-theme .gfield .gform-field-label--type-sub {
  margin-bottom: 5px;
}

.gform_wrapper.gravity-theme .gfield .gfield_description:not(.validation_message) {
  color: #fff;
}

.gform_wrapper.gravity-theme .gform_body .gform_fields {
  display: block;
}

.gform_wrapper.gravity-theme .gform_body .gfield_label,
.gform_wrapper.gravity-theme .gform_body .gfield-choice-input + label {
  margin-bottom: 9px;
  color: var(--form-label-color);
  font-size: 17px;
  font-weight: 700;
  line-height: 30px;
}

.gform_wrapper.gravity-theme .gform_body .gfield_required {
  display: inline;
  padding: 0;
  color: #4AA457;
  font-size: inherit;
  font-weight: inherit;
}

.gform_wrapper.gravity-theme .gf_page_steps {
  border-bottom: 2px solid #EBEBEB;
}

@media screen and (min-width: 768px) {
  .gform_wrapper.gravity-theme .gf_page_steps {
    display: flex;
    align-items: baseline;
  }
}
.gform_wrapper.gravity-theme .gf_page_steps .gf_step {
  display: block;
  padding: 15px;
  margin: 0;
  background-color: rgba(4, 5, 6, 0.35);
}

.gform_wrapper.gravity-theme .gf_page_steps .gf_step.gf_step_active {
  background-color: #EBEBEB;
  border-top: 5px solid transparent;
  border-image: linear-gradient(270deg, #78C066 0%, #4AA457 100%) 1 0 0 0;
}

.gform_wrapper.gravity-theme .gf_page_steps .gf_step.gf_step_active .gf_step_number {
  background: linear-gradient(270deg, #78C066 0%, #4AA457 100%);
}

.gform_wrapper.gravity-theme .gf_page_steps .gf_step.gf_step_active .gf_step_label {
  color: var(--color-tertiary);
}

.gform_wrapper.gravity-theme .gf_page_steps .gf_step .gf_step_number {
  color: #fff;
  background: #282D30;
  border: none;
}

.gform_wrapper.gravity-theme .gf_page_steps .gf_step .gf_step_label {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 30px;
}

.gform_wrapper.gravity-theme .gform_footer.top_label {
  display: block;
  padding: 0;
  margin: 37px 0 0;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .gform_wrapper.gravity-theme .gform_footer.top_label {
    margin-top: 60px;
  }
}
.sidebar .gform_wrapper.gravity-theme .gform_footer.top_label {
  margin-top: 32px;
}

.main-contact-form .gform_wrapper.gravity-theme .gform_footer.top_label {
  text-align: center;
}

.footer .gform_wrapper.gravity-theme .gform_footer.top_label {
  text-align: left;
}

.gform_wrapper.gravity-theme .gform_footer .btn {
  margin: 0;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .gform_wrapper.gravity-theme .gform_footer .btn {
    max-width: 445px;
  }
}
@media (max-width: 767px) {
  .gform_wrapper.gravity-theme .gform_footer .btn {
    padding: 12px 20px;
  }
}
.gform_wrapper.gravity-theme .gform_page_footer.top_label {
  display: flex;
}

@media screen and (min-width: 768px) {
  .gform_wrapper.gravity-theme .gform_page_footer.top_label {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .gform_wrapper.gravity-theme .gform_page_footer.top_label {
    flex-direction: column;
  }
}
.gform_wrapper.gravity-theme .gform_page_footer.top_label .btn--secondary {
  padding: 18px 20px;
}

@media screen and (min-width: 768px) {
  .gform_wrapper.gravity-theme .gform_page_footer.top_label .btn--secondary {
    margin-right: 20px;
    padding: 18px 24px;
  }
}
.gform_wrapper.gravity-theme .gform_page_footer.top_label .gform_next_button span:after {
  content: url(../svg/icon-arrow-right-dark.svg);
  margin-left: 7px;
}

.gform_wrapper.gravity-theme .second-roi .gform_page_footer.top_label {
  display: none;
}

.form-wrap {
  background-color: #282D30;
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 100%;
  width: auto;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 30px;
}

@media screen and (min-width: 768px) {
  .form-wrap {
    padding: 40px 80px;
  }
}
@media screen and (min-width: 992px) {
  .form-wrap {
    padding: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .form-wrap {
    padding: 57px 80px;
  }
}
.footer .form-wrap {
  padding: 0;
  max-width: 100%;
  background: none;
  border: none;
}

.main-contact-form .form-wrap {
  padding: 30px 15px;
  margin-top: 50px;
}

@media screen and (min-width: 768px) {
  .main-contact-form .form-wrap {
    padding: 40px 80px 70px;
  }
}
.main-contact-form .form-wrap form {
  max-width: 100%;
}

.form-title {
  margin-bottom: 22px;
  color: var(--form-title-color);
  font-family: var(--secondary-font), sans-serif;
  font-size: 31px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 0.31px;
}

@media screen and (min-width: 768px) {
  .form-title {
    margin-bottom: 49px;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: 0.4px;
  }
}
@media (max-width: 767px) {
  .form-title {
    text-align: center;
  }
}
.form-title.small {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 400;
  line-height: 33px;
  letter-spacing: 0.32px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .form-title.small {
    margin-bottom: 46px;
    font-size: 32px;
    line-height: 41px;
  }
}
.sidebar .form-title {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 400;
  line-height: 33px;
  letter-spacing: 0.32px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .sidebar .form-title {
    margin-bottom: 46px;
    font-size: 32px;
    line-height: 41px;
  }
}
.main-contact-form .form-title {
  text-align: center;
}

.roi-wrap {
  max-width: initial;
  background-color: var(--contact-footer-bg-color);
  border: 0;
}

.roi-wrap form {
  margin-left: auto;
  margin-right: auto;
}

.roi-wrap input[type=checkbox] {
  opacity: 0;
  outline: none;
  z-index: 100;
  width: 27px;
  height: 27px;
  top: 0;
  left: 0;
  position: absolute;
  appearance: none;
  cursor: pointer;
}

.roi-wrap input[type=checkbox] + label {
  cursor: pointer;
}

.roi-wrap input[type=checkbox]:checked + label:before {
  opacity: 1;
  top: 6px;
}

.roi-wrap input,
.roi-wrap textarea {
  color: #fff;
  font-size: 17px;
  height: 50px;
  background-color: rgba(4, 5, 6, 0.35);
  border-bottom: 2px solid #EBEBEB;
  border-radius: 0;
  width: 100%;
}

.roi-wrap textarea.large {
  height: 134px;
}

@media screen and (min-width: 768px) {
  .roi-wrap textarea.large {
    height: 100px;
  }
}
.roi-wrap .field {
  margin-bottom: 13px;
}

@media screen and (min-width: 768px) {
  .roi-wrap .field {
    margin-bottom: 24px;
  }
}
.roi-wrap .field label {
  color: #fff;
  display: block;
  margin-bottom: 9px;
  font-weight: 700;
}

.roi-wrap .field-label,
.roi-wrap label + input {
  margin-bottom: 9px;
  color: var(--form-label-color);
  font-size: 17px;
  font-weight: 700;
  line-height: 30px;
}

.roi-wrap .field-required {
  display: inline;
  padding: 0;
  color: #4AA457;
  font-size: inherit;
  font-weight: inherit;
}

.roi-wrap input[type=submit], .roi-wrap button {
  margin: 0;
  width: 100%;
  max-width: initial;
}

.gform_confirmation_message_7 .roi-calculator-results .input-section {
  margin-bottom: 25px;
}

.gform_confirmation_message_7 .roi-calculator-results .input-section:last-child {
  margin-bottom: 0;
}

.gform_confirmation_message_7 .roi-calculator-results label {
  display: block;
  color: white;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  font-family: Arial, Helvetica, sans-serif;
}

.gform_confirmation_message_7 .roi-calculator-results .input-field {
  width: 100%;
  background-color: rgba(4, 5, 6, 0.35);
  color: white;
  border: none;
  border-bottom: 1px solid white;
  padding: 12px 10px;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  outline: none;
  min-height: 20px;
  cursor: default;
}

@media (max-width: 600px) {
  .gform_confirmation_message_7 .roi-calculator-results .container {
    padding: 15px;
  }
  .gform_confirmation_message_7 .roi-calculator-results .roi-calculator-results {
    padding: 20px;
  }
  .gform_confirmation_message_7 .roi-calculator-results label {
    font-size: 14px;
  }
  .gform_confirmation_message_7 .roi-calculator-results .input-field {
    font-size: 14px;
  }
}
.gform_confirmation_message {
  color: white;
}

.gform_confirmation_message * {
  color: white;
}

.gform_confirmation_message a {
  color: white;
}

.gform_confirmation_message a:hover, .gform_confirmation_message a:focus {
  color: white;
  opacity: 0.8;
}

#video_play {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 25px;
  height: 0;
  margin-top: 30px;
  margin-bottom: 30px;
}

#video_play iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#video_play .cw_video_description {
  display: none;
}

.cw_video_gallery.cw_video_type_matrix .cw_video_size_small {
  margin: 10px;
  padding: 10px;
  width: 142px;
}

.cw_video_gallery.cw_video_type_matrix .cw_video_size_small .cw_video_item_title {
  padding-top: 10px !important;
}

.cw_video_open_popup_customized {
  margin-bottom: 30px;
  display: inline-block;
}

.main-wrapper .cw-accordion {
  margin-bottom: 40px;
}

@media screen and (min-width: 1200px) {
  .main-wrapper .cw-accordion {
    max-width: 930px;
  }
}
.main-wrapper .cw-accordion:last-child {
  margin-bottom: 0;
}

.main-wrapper .cw-accordion__item {
  margin-bottom: 16px;
  box-shadow: none;
}

.main-wrapper .cw-accordion__item:last-child {
  margin-bottom: 0;
}

.main-wrapper .cw-accordion__item-title {
  position: relative;
  font-family: var(--secondary-font), sans-serif;
  line-height: 26px;
  letter-spacing: normal;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.3s ease;
}

@media (max-width: 767px) {
  .main-wrapper .cw-accordion__item-title {
    padding: 15px 55px 15px 15px;
  }
}
.main-wrapper .cw-accordion__item-title:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 16px;
  height: 9px;
  background: url(../svg/icon-arrow-down.svg) no-repeat center;
  background-size: 100%;
  transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
  .main-wrapper .cw-accordion__item-title:after {
    right: 21px;
  }
}
.main-wrapper .cw-accordion__item-title:is(:hover, :focus) {
  border-color: #EBEBEB !important;
}

.main-wrapper .cw-accordion__item-title[aria-expanded=true] {
  border-color: #EBEBEB !important;
  background-image: none;
}

.main-wrapper .cw-accordion__item-title[aria-expanded=true]:after {
  transform: translateY(-50%) rotate(180deg);
}

.main-wrapper .cw-accordion__item-content {
  border: none;
}

@media (max-width: 767px) {
  .main-wrapper .cw-accordion__item-content {
    padding: 20px 15px;
  }
}
.main-wrapper .cw-accordion__item-content p {
  line-height: 28px;
}

.main-wrapper .cw-accordion__item-content p:last-child {
  margin-bottom: 0;
}

.main-wrapper .cw-accordion__item-content ul {
  line-height: 28px;
}

.main-wrapper .cw-accordion__item-content ul:last-child {
  margin-bottom: 0 !important;
}

.main-wrapper .cw-accordion__item-content strong {
  font-weight: 700;
}

.main-wrapper .cw-accordion__item--open .cw-accordion__item-title {
  border-radius: 0;
}

.main-wrapper .cw-accordion__item--open .cw-accordion__item-content {
  border-radius: 0;
  animation-duration: 0.3s;
}

.accordion {
  margin-bottom: 32px;
}

@media screen and (min-width: 1200px) {
  .accordion {
    max-width: 930px;
  }
}
.accordion:last-child {
  margin-bottom: 0;
}

.accordion .item-accordion {
  margin-bottom: 16px;
}

.accordion .item-accordion:last-child {
  margin-bottom: 0;
}

.accordion .item-accordion .title {
  position: relative;
  display: block;
  padding: 16px 60px 16px 19px;
  color: #fff;
  font-family: var(--secondary-font), sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: normal;
  text-decoration: none;
  background-color: rgba(29, 32, 35, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.3s ease;
}

@media (max-width: 767px) {
  .accordion .item-accordion .title {
    padding: 15px 55px 15px 15px;
  }
}
.accordion .item-accordion .title:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 16px;
  height: 9px;
  background: url(../svg/icon-arrow-down.svg) no-repeat center;
  background-size: 100%;
  transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
  .accordion .item-accordion .title:after {
    right: 21px;
  }
}
.accordion .item-accordion .title:is(:hover, :focus) {
  color: #fff;
  border-color: #EBEBEB;
}

.accordion .item-accordion .title[aria-expanded=true] {
  border-color: #EBEBEB;
}

.accordion .item-accordion .title[aria-expanded=true]:after {
  transform: translateY(-50%) rotate(180deg);
}

.accordion .item-accordion-body {
  padding: 30px 20px 15px 20px;
}

@media (max-width: 767px) {
  .accordion .item-accordion-body {
    padding: 20px 15px;
  }
}
.accordion .item-accordion-body p:last-child {
  margin-bottom: 0;
}

.breadcrumb-container {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
}

.breadcrumb-container .breadcrumb {
  margin: 0;
  padding: 23px 0 0;
  color: #fff;
  font-size: 16px;
  list-style: none;
  letter-spacing: 0;
  border-radius: 0;
  line-height: 1.6;
}

.page-template-accident-data-center .breadcrumb-container .breadcrumb {
  color: var(--color-tertiary);
}

.breadcrumb-container .breadcrumb a {
  text-decoration: underline;
  color: var(--color-primary);
}

.breadcrumb-container .breadcrumb a:hover {
  color: var(--color-secondary);
}

.breadcrumb-container .breadcrumb a:after {
  content: url(../svg/icon-double-arrow.svg);
  margin: 0 8px 0 12px;
}

.page-template-accident-data-center .breadcrumb-container .breadcrumb a:after {
  filter: brightness(0);
}

.blog-pagination {
  margin-top: 45px;
  text-align: center;
}

@media (max-width: 991px) {
  .blog-pagination {
    margin-bottom: 15px;
  }
}
.blog-pagination .blog-navigation {
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: row;
}

.blog-pagination .blog-navigation span.page {
  padding-right: 15px;
}

.blog-pagination ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin: 0 -5px;
}

.blog-pagination ul li {
  margin: 2px;
  width: 26px;
  height: 26px;
}

@media screen and (min-width: 768px) {
  .blog-pagination ul li {
    margin: 5px;
    width: 35px;
    height: 35px;
  }
}
.blog-pagination ul li.page-li {
  display: none;
}

.blog-pagination ul li a, .blog-pagination ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--text-color);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  background-color: rgba(120, 192, 102, 0.15);
  border: 1px solid var(--color-secondary);
  border-radius: 4px;
}

@media screen and (min-width: 768px) {
  .blog-pagination ul li a, .blog-pagination ul li span {
    font-size: 16px;
  }
}
.blog-pagination ul li a:hover, .blog-pagination ul li span:hover {
  color: #0E0F11;
  background-color: var(--color-primary);
  border-color: var(--color-secondary);
}

.blog-pagination ul li a.current, .blog-pagination ul li span.current {
  color: #0E0F11;
  background-color: var(--color-primary);
  border-color: var(--color-secondary);
  pointer-events: none;
}

.blog-pagination ul li a.next:hover svg path, .blog-pagination ul li a.prev:hover svg path, .blog-pagination ul li span.next:hover svg path, .blog-pagination ul li span.prev:hover svg path {
  fill: #fff;
  fill-opacity: 1;
}

.blog-pagination ul li a.dots, .blog-pagination ul li span.dots {
  color: var(--text-color);
  background: none;
  border: none;
}

.blog-pagination ul li.active a {
  color: #0E0F11;
  background-color: var(--color-primary);
  border-color: var(--color-secondary);
  pointer-events: none;
}

.blog-pagination ul li.next-link a svg, .blog-pagination ul li.prev-link a svg {
  width: 7px;
}

@media screen and (min-width: 768px) {
  .blog-pagination ul li.next-link a svg, .blog-pagination ul li.prev-link a svg {
    width: 10px;
  }
}
.blog-pagination ul li.next-link a:hover svg path, .blog-pagination ul li.prev-link a:hover svg path {
  fill: #0E0F11;
}

.blog-pagination ul li.dots {
  color: var(--text-color);
  background: none;
  border: none;
}

.blog-pagination.blog-vue ul li svg {
  width: 8px;
  position: relative;
  top: -2px;
}

.blog-pagination.blog-vue ul li.disabled {
  opacity: 0;
  visibility: hidden;
}

.blog-pagination.blog-vue ul li.disabled.page-item {
  opacity: 1;
  visibility: visible;
  border: 0;
  background: none;
  margin: 0;
  cursor: default;
}

.blog-pagination.blog-vue ul li.disabled.page-item a {
  border: 0;
  background: none;
  padding-left: 9px;
  padding-right: 9px;
  min-width: auto;
  cursor: default;
}

.blog-pagination .loading-dots {
  display: inline-flex;
  gap: 8px;
  margin: 0;
}

.blog-pagination .loading-dots .dot {
  width: 15px;
  height: 15px;
  background-color: var(--accent-color);
  /* Change color as needed */
  border-radius: 50%;
  animation: dotPulse 1.5s infinite;
}

.blog-pagination .loading-dots .dot:nth-child(2) {
  animation-delay: 0.2s;
}

.blog-pagination .loading-dots .dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes dotPulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}
.results-slider__sidebar {
  position: relative;
}

.results-slider__sidebar .grid-results {
  margin: 0;
}

.results-slider__sidebar .grid-results .item .value {
  padding-top: 0;
}

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 0;
}

.swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  border: 2px solid #c6c6c6;
  background: transparent;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #18397b;
  border: 2px solid #18397b;
}

.arrow-prev,
.arrow-next {
  position: absolute;
  top: 70%;
  width: 42px;
  height: 42px;
  z-index: 99999;
}

.arrow-prev {
  left: 15px;
  background-image: url("../svg/arrow-prev.svg");
}

.arrow-next {
  right: 15px;
  background-image: url("../svg/arrow-next.svg");
}

.swiper-button-prev,
.swiper-button-next {
  top: 50%;
  margin-top: -22px;
  width: 44px;
  height: 44px;
  background-color: #0E0F11;
  border-radius: 50%;
  border: 1px solid #262728;
  transform: none;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  content: "";
  background: url(../svg/icon-arrow-swiper.svg) no-repeat center;
  transform: none;
  width: 14px;
  height: 10px;
}

.swiper-button-next:after {
  transform: rotate(180deg);
}

.portfolio-slider-wrap {
  position: relative;
  margin: 0 auto 40px;
  max-width: 658px;
}

.portfolio-slider-wrap .swiper-button-prev {
  left: -8px;
}

@media screen and (min-width: 1200px) {
  .portfolio-slider-wrap .swiper-button-prev {
    left: -22px;
  }
}
.portfolio-slider-wrap .portfolio-slider-inner-wrap {
  position: relative;
}

.portfolio-slider-wrap .swiper-button-next {
  right: -8px;
}

@media screen and (min-width: 1200px) {
  .portfolio-slider-wrap .swiper-button-next {
    right: -22px;
  }
}
.portfolio-slider-wrap .btn-wrapper {
  margin-top: 30px;
}

.cw__modal-dialog {
  background-color: var(--modal-overlay-color, rgba(0, 0, 0, 0.8));
  position: fixed;
  top: 0;
  height: 100vh;
  width: 100vw;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  /* Hide this modal until we need it */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  display: none;
}

.cw__modal-dialog.open {
  opacity: 1;
  pointer-events: all;
  display: flex;
}

.cw__modal-dialog .inner-modal {
  width: var(--inner-modal-width, 600px);
  height: auto;
  background-color: white;
  border-radius: 3px;
  padding: 1rem;
  border: 3px solid #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.cw__modal-dialog .inner-modal .modal-content {
  border: 3px solid #fff;
}

#hoursModal .modal-content .modal-header {
  padding: 0 0 10px 0;
}

#hoursModal .modal-content .modal-header .modal-title {
  font-family: var(--secondary-font), sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.25rem;
  color: var(--text-color);
  text-transform: uppercase;
}

#hoursModal .modal-content .modal-body {
  padding: 20px 0;
}

#hoursModal .modal-content .modal-body .opening-hours table {
  margin: 0 auto;
  width: 100%;
}

#hoursModal .modal-content .modal-body .opening-hours table tr {
  font-family: var(--secondary-font), sans-serif;
}

#hoursModal .modal-content .modal-body .opening-hours table tr .day {
  color: var(--day-color, var(--text-color));
  position: relative;
  font-weight: 700;
}

#hoursModal .modal-content .modal-body .opening-hours table tr .day:after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 80%;
  background-color: silver;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

#hoursModal .modal-content .modal-body .opening-hours table tr:nth-child(even) {
  background-color: var(--odd-rows-background-color, beige);
}

#hoursModal .modal-content .modal-body .opening-hours table tr th,
#hoursModal .modal-content .modal-body .opening-hours table tr td {
  border: 0;
  padding: 0.5em;
  color: var(--hours-color, #000);
}

#hoursModal .modal-content .modal-body .opening-hours table tr th:nth-child(2),
#hoursModal .modal-content .modal-body .opening-hours table tr td:nth-child(2) {
  padding-left: 30px;
}

#hoursModal .modal-content .close {
  background-color: black;
  border: 0;
  color: white;
  border-radius: 50%;
  font-size: 20px;
  display: block;
  width: 28px;
  height: 28px;
  right: 0;
  padding: 0;
  margin: 0;
}

.modal-video .inner-modal .modal-header {
  display: none;
}

.modal-video .inner-modal .modal-body {
  padding: 0;
}

.modal-video .inner-modal .modal-body > div {
  margin-bottom: 0;
}

.share-wrap {
  margin-top: 25px;
  padding-top: 30px;
  border-top: 1px solid #d8d9d9;
}

.share-wrap .social-icons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
}

.share-wrap .social-icons li {
  padding: 0;
}

@media (max-width: 767px) {
  .share-wrap .social-icons li {
    padding-left: 0 !important;
  }
}
.share-wrap .social-icons span {
  background: var(--color-primary);
  color: #fff;
  padding: 11px 27px;
  display: inline-block;
  margin-right: 7px;
  font-weight: 600;
}

.share-wrap .social-icons a {
  color: var(--text-color);
  margin-left: 15px;
  font-size: 0;
}

.share-wrap .social-icons a svg {
  margin-right: 5px;
}

.share-wrap .social-icons a svg * {
  fill: var(--color-secondary);
}

.share-wrap .social-icons a svg:hover * {
  fill: var(--color-primary);
}

.share-wrap .social-icons a.p-url svg {
  margin-right: 3px;
}

ul.social-icon-list {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

.page-template-contact main ul.social-icon-list {
  justify-content: center;
}

ul.social-icon-list li {
  padding: 0;
  margin: 0;
  margin-left: 16px;
}

ul.social-icon-list li:first-of-type {
  margin-left: 0;
}

ul.social-icon-list li .icon-facebook {
  background-image: url("../svg/icon-facebook.svg");
  display: block;
  height: 24px;
  width: 24px;
  background-size: 100%;
}

ul.social-icon-list li .icon-twitter {
  background-image: url("../svg/icon-twitter.svg");
  display: block;
  width: 24px;
  height: 22px;
  background-size: 100%;
}

ul.social-icon-list li .icon-google-plus {
  background-image: url("../icon-google-plus.html");
  display: block;
  width: 28px;
  height: 24px;
  background-size: 100%;
}

ul.social-icon-list li .icon-linkedin {
  background-image: url("../svg/icon-linkedin.svg");
  display: block;
  width: 24px;
  height: 24px;
  background-size: 100%;
}

ul.social-icon-list li .icon-instagram {
  background: url("../svg/icon-instagram.svg") no-repeat scroll center center transparent;
  display: block;
  width: 24px;
  height: 24px;
  background-size: 100%;
}

ul.social-icon-list li .icon-youtube {
  background: url("../svg/icon-youtube.svg") no-repeat scroll center center transparent;
  display: block;
  width: 26px;
  height: 18px;
  background-size: 100%;
}

.cw-custom-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 40px auto;
}

@media (max-width: 767px) {
  .cw-custom-gallery {
    justify-content: center;
  }
}
.cw-custom-gallery__item a {
  position: relative;
  display: block;
  max-width: 200px;
  width: 100%;
  border-top: 5px solid #78C066;
}

.cw-custom-gallery__item a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  transition: background 0.3s ease-in-out;
}

.cw-custom-gallery__item a:hover::after {
  background: linear-gradient(0deg, rgba(97, 178, 95, 0.4) 0%, rgba(97, 178, 95, 0.4) 100%);
}

.cw-custom-gallery__item a img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

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