.section-spacer {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-spacer-small {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media (max-width: 1299.98px) {
  .section-spacer {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .section-spacer-small {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
@media (max-width: 1199.98px) {
  .section-spacer {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .section-spacer-small {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (max-width: 991.98px) {
  .section-spacer {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .section-spacer-small {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
html,
body {
  overflow-x: hidden;
  background-color: #fff;
}

body:before {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 3;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
body.mobile-menu-active:before {
  opacity: 1;
  visibility: visible;
}
body.modal-open {
  padding-right: 0 !important;
}

a {
  color: #e6332a;
  text-underline-offset: initial;
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}

@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1295px;
  }
}
.custom-col-cc {
  display: flex;
  justify-content: space-between;
}
.custom-col-cc .left-col {
  max-width: 345px;
  width: 100%;
  flex-shrink: 0;
}
.custom-col-cc .right-col {
  max-width: 830px;
  width: 100%;
}

.top-col {
  margin-bottom: 50px;
}

@media (max-width: 1199.98px) {
  .custom-col-cc {
    flex-direction: column;
  }
  .custom-col-cc .left-col,
  .custom-col-cc .right-col {
    max-width: 100% !important;
  }
  .top-col {
    margin-bottom: 10px;
  }
}
@media (max-width: 575.98px) {
  .row > * {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.bg-secondary {
  background-color: #312783 !important;
  color: #fff;
}
.bg-secondary a {
  color: #fff;
}

.bg-primary {
  background-color: #e6332a !important;
  color: #fff;
}

.bg-grey {
  background-color: #F6F6F6;
}

.bg-half {
  position: relative;
  z-index: 0;
}
.bg-half:before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 100%;
  height: 50%;
  z-index: -1;
}
.bg-half.bg-half-bottom:before {
  top: auto;
  bottom: -1px;
}
.bg-half.bg-half-grey:before {
  background-color: #F6F6F6;
}
.bg-half.bg-half-white:before {
  background-color: #fff;
}
.bg-half.bg-half-primary:before {
  background-color: #e6332a;
}

picture {
  display: block;
}
picture * {
  display: block;
  width: 100%;
}

.modal-backdrop {
  z-index: 99;
}

#back-to-top {
  position: fixed;
  bottom: 50px;
  right: 15px;
  visibility: hidden;
  opacity: 0;
  width: 40px;
  height: 40px;
  background-color: #e6332a;
  color: #fff;
  border-radius: 100%;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 2;
}
#back-to-top .fa {
  font-size: 26px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
}
#back-to-top.active {
  opacity: 1;
  visibility: visible;
}
#back-to-top:hover {
  background-color: #312783;
}

.slick-slider .slick-arrow {
  width: 47px;
  height: 47px;
  border-radius: 100%;
  background-color: #D6D6D6 !important;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.slick-slider .slick-arrow:before {
  display: none;
}
.slick-slider .slick-arrow:after {
  position: absolute;
  width: 43px;
  height: 18px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.slick-slider .slick-arrow:hover {
  background-color: #e6332a !important;
}
.slick-slider .slick-prev {
  left: -100px;
}
.slick-slider .slick-prev:after {
  content: url("../img/slick_prev.svg");
  top: 15px;
  left: 20px;
}
.slick-slider .slick-prev:hover:after {
  left: 10px;
}
.slick-slider .slick-next {
  right: -100px;
}
.slick-slider .slick-next:after {
  content: url("../img/slick_next.svg");
  top: 15px;
  left: -15px;
}
.slick-slider .slick-next:hover:after {
  left: -5px;
}

.slick-dots {
  bottom: 55px;
}
.slick-dots li {
  width: 15px;
  height: 15px;
  margin: 0 12px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.slick-dots li button {
  width: 15px;
  height: 15px;
  background-color: #fff !important;
  border-radius: 100%;
  position: relative;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.slick-dots li button:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  border-radius: 100%;
  border: solid 1px #e6332a;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.slick-dots li.slick-active button {
  background-color: #e6332a !important;
}
.slick-dots li.slick-active button:before {
  opacity: 1;
  visibility: visible;
}

.slick-slider.slider-small .slick-dots {
  bottom: 20px;
}
.slick-slider.slider-small .slick-dots li {
  margin: 0 8px;
}
.slick-slider.slider-small .slick-dots li button {
  width: 7px;
  height: 7px;
}
.slick-slider.slider-small .slick-dots li button:before {
  width: 20px;
  height: 20px;
}

@media (max-width: 1499.98px) {
  .slick-slider .slick-dots li {
    margin-right: 8px;
    margin-left: 8px;
    width: 15px;
    height: 15px;
  }
  .slick-slider .slick-dots li button {
    width: 7px;
    height: 7px;
  }
  .slick-slider .slick-dots li button:before {
    width: 20px;
    height: 20px;
  }
  .slick-slider .slick-next {
    right: -53px;
  }
  .slick-slider .slick-prev {
    left: -55px;
  }
}
@media (max-width: 1399.98px) {
  .slick-slider .slick-next {
    right: -80px;
  }
  .slick-slider .slick-prev {
    left: -80px;
  }
}
@media (max-width: 1299.98px) {
  .slick-dots {
    bottom: 35px;
  }
}
@media (max-width: 991.98px) {
  .slick-dots {
    bottom: 10px;
  }
}
.decorator-image {
  position: absolute;
}

.forminator-ui {
  text-shadow: none !important;
}
.forminator-ui.draft-enabled .forminator-save-draft-link {
  color: #e6332a !important;
}
.forminator-ui .draft-success {
  box-shadow: none !important;
  background-color: #d1e7dd !important;
  border: solid 1px #a3cfbb;
  color: #0a3622 !important;
}
.forminator-ui .draft-success p {
  margin-bottom: 0;
}
.forminator-ui.forminator-design--default .forminator-radio input:checked + .forminator-radio-bullet {
  border-color: #e6332a !important;
}
.forminator-ui.forminator-design--default .forminator-radio .forminator-radio-bullet:before {
  background-color: #e6332a !important;
}
.forminator-ui.forminator-design--default .forminator-checkbox input:checked + .forminator-checkbox-box {
  border-color: #e6332a !important;
  color: #e6332a !important;
}
.forminator-ui .forminator-draft-form .forminator-button-submit {
  line-height: 1 !important;
  font-weight: 800 !important;
  padding: 15px 30px !important;
  font-size: 18px !important;
  color: #fff !important;
  background-color: #e6332a !important;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.forminator-ui .forminator-draft-form .forminator-button-submit:hover, .forminator-ui .forminator-draft-form .forminator-button-submit:focus {
  box-shadow: none !important;
}
.forminator-ui .forminator-draft-form .forminator-button-submit:hover {
  background-color: #312783 !important;
}
.forminator-ui .forminator-pagination-progress .forminator-progress-bar span {
  background-color: #e6332a !important;
}
.forminator-ui .selection .select2-selection.select2-selection--single {
  background-color: #F6F6F6 !important;
  border: none !important;
}
.forminator-ui .selection .select2-selection.select2-selection--single .select2-selection__arrow {
  color: #312783 !important;
  opacity: 0.5 !important;
}
.forminator-ui .selection .select2-selection.select2-selection--single:hover .select2-selection__arrow {
  color: #312783 !important;
  opacity: 0.5 !important;
}
.forminator-ui .selection .select2-selection .select2-selection__rendered {
  padding: 20px !important;
  color: #312783 !important;
}
.forminator-ui .selection .select2-selection .select2-selection__rendered .select2-selection__placeholder {
  color: #312783 !important;
  opacity: 0.4 !important;
}
.forminator-ui .forminator-row:not(:last-child) {
  margin-bottom: 15px !important;
}
.forminator-ui .forminator-row .forminator-field-radio .forminator-label {
  margin-bottom: 0 !important;
}
.forminator-ui .forminator-field .forminator-input-with-prefix {
  position: relative;
}
.forminator-ui .forminator-field .forminator-input,
.forminator-ui .forminator-field .forminator-textarea {
  line-height: 1 !important;
  border: solid 1px #fff !important;
  outline: none !important;
  color: #312783 !important;
  background-color: #F6F6F6 !important;
  padding: 20px !important;
}
.forminator-ui .forminator-field .forminator-input:focus,
.forminator-ui .forminator-field .forminator-textarea:focus {
  outline: none;
  box-shadow: none;
}
.forminator-ui .forminator-field .forminator-select {
  line-height: 1 !important;
  border: solid 1px #fff !important;
}
.forminator-ui .forminator-field .forminator-select .forminator-select-dropdown .select2-search {
  padding: 9px !important;
}
.forminator-ui .forminator-field .iti .forminator-input {
  padding-left: 60px !important;
}
.forminator-ui .forminator-field .forminator-button-upload {
  background-color: #959595 !important;
}
.forminator-ui .forminator-field .forminator-button-upload:hover, .forminator-ui .forminator-field .forminator-button-upload:focus {
  box-shadow: none !important;
}
.forminator-ui .forminator-field .forminator-label {
  font-size: 14px !important;
  color: #312783 !important;
  margin-bottom: 15px !important;
}
.forminator-ui .forminator-field .forminator-input-with-icon {
  color: #312783 !important;
  opacity: 0.5;
}
.forminator-ui .forminator-field .forminator-input-with-icon span {
  top: 66% !important;
}
.forminator-ui .forminator-field.forminator-has_error .forminator-input,
.forminator-ui .forminator-field.forminator-has_error .forminator-select,
.forminator-ui .forminator-field.forminator-has_error .forminator-textarea {
  border-color: #f1aeb5 !important;
  box-shadow: none !important;
}
.forminator-ui .forminator-field.forminator-has_error .forminator-select .select2-selection {
  box-shadow: none !important;
}
.forminator-ui .forminator-field .forminator-error-message {
  background-color: #f8d7da !important;
  color: #58151c !important;
  font-size: 14px !important;
}
.forminator-ui .forminator-title {
  font-size: 30px !important;
  color: #312783 !important;
  font-weight: 700 !important;
}
.forminator-ui .forminator-button {
  line-height: 1 !important;
  font-weight: 800 !important;
  padding: 15px 30px !important;
  font-size: 18px !important;
}
.forminator-ui .forminator-button:hover, .forminator-ui .forminator-button:focus {
  box-shadow: none !important;
}
.forminator-ui .forminator-response-message {
  font-weight: 500 !important;
  font-size: 14px !important;
  background-color: #cfe2ff;
}
.forminator-ui .forminator-response-message label:last-of-type {
  margin-bottom: 0;
}
.forminator-ui .forminator-response-message p {
  font-weight: 500 !important;
  font-size: 14px !important;
}
.forminator-ui .forminator-response-message.forminator-loading {
  background-color: #fff !important;
}
.forminator-ui .forminator-response-message.forminator-success {
  background-color: #d1e7dd !important;
  color: #0a3622 !important;
}

.ui-datepicker .ui-datepicker-header .ui-corner-all {
  top: 20px !important;
  background-color: #e6332a !important;
}
.ui-datepicker .ui-datepicker-calendar .ui-state-active {
  background-color: #e6332a !important;
}
.ui-datepicker .ui-state-default.ui-state-highlight {
  border-color: #e6332a !important;
  color: #e6332a !important;
  background-color: #f1ddc0 !important;
}
.ui-datepicker .ui-state-default.ui-state-highlight.ui-state-active {
  background-color: #e6332a !important;
}
.ui-datepicker.forminator-calendar--default:before {
  border: none !important;
}

.forminator-select .forminator-select-dropdown {
  border: none !important;
  padding: 0 !important;
}

.select2-results .select2-results__options .select2-results__option.select2-results__option--selected {
  background-color: #e6332a !important;
}

input:not([type=submit])::placeholder,
textarea::placeholder {
  color: #312783;
  opacity: 0.5;
}

input:not([type=submit])::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #312783;
  opacity: 0.5;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

input:not([type=submit]),
input:not([name=calculation-1]),
select,
.select2-container--default .select2-selection--single,
textarea {
  line-height: 1 !important;
  border: none !important;
  outline: none !important;
  color: #312783 !important;
  background-color: #F6F6F6 !important;
  padding: 18px !important;
  margin: 0 !important;
  border-radius: 0 !important;
  height: auto !important;
}
input:not([type=submit]):focus,
input:not([name=calculation-1]):focus,
select:focus,
.select2-container--default .select2-selection--single:focus,
textarea:focus {
  outline: none;
  box-shadow: none;
}

input[name=calculation-1] {
  padding: 0 !important;
}

.styled-checkbox {
  display: flex;
}
.styled-checkbox label {
  display: flex;
  margin-bottom: 0 !important;
}
.styled-checkbox input[type=checkbox] {
  position: relative;
  cursor: pointer;
  width: 20px;
  height: 20px !important;
  padding: 0 !important;
  margin-top: 3px !important;
  margin-right: 10px !important;
}
.styled-checkbox input[type=checkbox]:before {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  top: 0;
  left: 0;
  border: 2px solid #D6D6D6;
  border-radius: 3px;
  background-color: #fff;
}
.styled-checkbox input[type=checkbox]:checked:after {
  content: "";
  display: block;
  width: 5px;
  height: 10px;
  border: solid #e6332a;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 3px;
  left: 7px;
}

input[type=radio] {
  position: absolute;
  cursor: pointer;
  width: 15px;
  height: 15px !important;
  border-radius: 50% !important;
  background-color: #fff !important;
  padding: 12px !important;
  border: solid 1px #e6332a !important;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
input[type=radio]:hover {
  background-color: #F9F9F9 !important;
}
input[type=radio]:after {
  width: 10px;
  height: 10px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0 !important;
  background-color: #e6332a;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
input[type=radio]:checked:after {
  opacity: 1 !important;
}
input[type=radio] ~ label {
  margin-bottom: 0;
  padding-left: 40px;
  text-transform: capitalize;
}

.forminator-select.forminator-select-dropdown-container--open .forminator-select-dropdown .select2-results .select2-results__options {
  max-height: 300px !important;
}

.notification-cc {
  border: solid 1px transparent;
}
.notification-cc .icon {
  margin-right: 10px;
}
.notification-cc .btn-close {
  background-color: transparent !important;
}
.notification-cc .icon {
  font-size: 18px;
}
.notification-cc .message-type {
  font-weight: 700;
  font-size: 18px;
}
.notification-cc .toast-body {
  font-size: 16px;
}
.notification-cc .success {
  background-color: #d1e7dd;
  border-color: #a3cfbb;
}
.notification-cc .success .toast-header {
  background-color: #d1e7dd;
  border-color: #a3cfbb;
}
.notification-cc .success .icon,
.notification-cc .success .message-type,
.notification-cc .success .toast-body {
  color: #0a3622;
}
.notification-cc .warning {
  background-color: #fff3cd;
  border-color: #ffe69c;
}
.notification-cc .warning .toast-header {
  background-color: #fff3cd;
  border-color: #ffe69c;
}
.notification-cc .warning .icon,
.notification-cc .warning .message-type,
.notification-cc .warning .toast-body {
  color: #664d03;
}
.notification-cc .error {
  background-color: #f8d7da;
  border-color: #f1aeb5;
}
.notification-cc .error .toast-header {
  background-color: #f8d7da;
  border-color: #f1aeb5;
}
.notification-cc .error .icon,
.notification-cc .error .message-type,
.notification-cc .error .toast-body {
  color: #58151c;
}

.parallax {
  position: relative;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.parallax:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.parallax.parallax-primary-40:before {
  background-color: rgba(0, 0, 0, 0.4);
}
.parallax.parallax-primary-60:before {
  background-color: rgba(0, 0, 0, 0.6);
}
.parallax.parallax-primary-70:before {
  background-color: rgba(0, 0, 0, 0.7);
}
.parallax.parallax-secondary:before {
  background-color: rgba(25, 29, 22, 0.95);
}
.parallax.parallax-white:before {
  background-color: rgba(232, 233, 229, 0.95);
}

.load-more-btn-container {
  margin-top: 60px;
}

#loader-container {
  display: none;
}
#loader-container .animated-loader {
  width: 48px;
  height: 48px;
  border: 2px solid #e6332a;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 991.98px) {
  .load-more-btn-container {
    margin-top: 50px;
  }
}
@media (max-width: 575.98px) {
  .load-more-btn-container {
    margin-top: 30px;
  }
}
.accordion.faq-accordion .accordion-cc:first-of-type .accordion-item {
  margin-right: 15px;
}
.accordion.faq-accordion .accordion-cc:last-of-type .accordion-item {
  margin-left: 15px;
}
.accordion .accordion-item {
  border: none;
  border-radius: 4px;
  margin-bottom: 10px;
}
.accordion .accordion-item .accordion-collapse {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.accordion .accordion-item .accordion-collapse.show, .accordion .accordion-item .accordion-collapse.collapsing {
  background-color: #e6332a !important;
  color: #fff !important;
}
.accordion .accordion-item .accordion-collapse .accordion-body {
  padding-top: 0;
  padding-right: 80px;
}
.accordion .accordion-button {
  background-color: #F6F6F6 !important;
  padding: 20px;
  font-weight: bold;
  color: #312783 !important;
  border-radius: 4px !important;
  box-shadow: none !important;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.accordion .accordion-button:focus, .accordion .accordion-button:hover {
  box-shadow: none;
  border: none;
}
.accordion .accordion-button:after {
  width: 32px;
  height: 32px;
  background-color: #e6332a;
  border-radius: 100%;
  background-position: center;
  background-size: 50%;
}
.accordion .accordion-button:hover, .accordion .accordion-button[aria-expanded=true] {
  background-color: #e6332a !important;
  color: #fff !important;
}
.accordion .accordion-button[aria-expanded=true] {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

@media (max-width: 991.98px) {
  .accordion.faq-accordion .accordion-cc:first-of-type .accordion-item {
    margin-right: 0;
  }
  .accordion.faq-accordion .accordion-cc:last-of-type .accordion-item {
    margin-left: 0;
  }
  .accordion .accordion-button:after {
    width: 25px;
    height: 25px;
  }
}
.icon {
  position: relative;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 100%;
  flex-shrink: 0;
}
.icon picture {
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.quantity-btn-container {
  border: solid 1px #D6D6D6 !important;
}
.quantity-btn-container input[type=number] {
  padding: 10px 5px !important;
  width: 100%;
}
.quantity-btn-container.disabled {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}
.quantity-btn-container .quantity-btn {
  display: block;
  width: 44px;
  height: 44px;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  background-color: #fff !important;
  border: none !important;
  box-shadow: none !important;
}
.quantity-btn-container .quantity-btn:before {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -54%);
  color: #D6D6D6;
  font-size: 22px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.quantity-btn-container .quantity-btn.disabled {
  cursor: default;
  pointer-events: none;
}
.quantity-btn-container .quantity-btn:not(.disabled):hover:before {
  color: #312783;
}
.quantity-btn-container input[type=number] {
  border: none !important;
  text-align: center;
  font-size: 18px;
  font-weight: 800;
}
.quantity-btn-container .decrease:before {
  content: "-";
}
.quantity-btn-container .increase:before {
  content: "+";
}

.product-image {
  position: relative;
  text-align: center;
}
.product-image picture {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: solid 1px #D6D6D6;
  border: 0;
  width: 70%;
}
.product-image .icon-text {
  font-weight: 800;
  font-size: 100px;
  line-height: 0.8;
}
.product-image .icon-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  background-color: #fff;
  padding: 5px;
  font-weight: 800;
  font-size: 12px;
}

@media (max-width: 1199.98px) {
  .quantity-btn-container input[type=number] {
    font-size: 16px;
  }
  .quantity-btn-container .quantity-btn {
    height: 34px;
    width: 34px;
  }
}
.error-section .content-cc,
.thank-you-section .content-cc {
  max-width: 700px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.error-section .title, .error-section p,
.thank-you-section .title,
.thank-you-section p {
  font-size: 24px;
  margin-bottom: 50px;
  font-weight: 800;
}

.woocommerce .select2-container--default .select2-selection--single {
  padding: 14px !important;
}
.woocommerce .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.wc-notification-container .woocommerce-notices-wrapper a {
  color: #312783;
}
.wc-notification-container ul {
  padding-left: 0;
  list-style: none;
}
.wc-notification-container .woocommerce-error {
  padding: 15px;
  margin-bottom: 30px;
  background-color: #f8d7da;
  border: solid 1px #f1aeb5;
}

.woocommerce-password-strength {
  margin-top: 10px;
  padding: 10px;
  border: solid 1px;
}
.woocommerce-password-strength.short, .woocommerce-password-strength.bad {
  background-color: #f8d7da;
  color: #58151c;
  border-color: #f1aeb5;
}
.woocommerce-password-strength.medium, .woocommerce-password-strength.good {
  background-color: #fff3cd;
  color: #664d03;
  border-color: #ffe69c;
}
.woocommerce-password-strength.strong {
  background-color: #d1e7dd;
  color: #0a3622;
  border-color: #a3cfbb;
}

.woocommerce-NoticeGroup {
  margin-bottom: 30px;
}
.woocommerce-NoticeGroup ul {
  list-style: none;
}
.woocommerce-NoticeGroup .woocommerce-error {
  padding: 10px;
  border: solid 1px #f1aeb5;
  background-color: #f8d7da;
  color: #58151c;
}
.woocommerce-NoticeGroup .woocommerce-error a {
  color: #58151c;
  font-weight: 700;
}

.read-more-content {
  display: none;
}
.read-more-content + .btn-container {
  margin-top: 16px;
  display: flex;
  gap: 16px;
}

.services-intro-section .read-more-content p:last-of-type {
  margin-bottom: 0;
}

.special-offer-popup .modal-body {
  background-color: #fff;
  padding: 30px;
}
.special-offer-popup .modal-body .btn-primary:before, .special-offer-popup .modal-body .btn-primary:after {
  background-color: #312783 !important;
}
.special-offer-popup .modal-body .logo {
  max-width: 70px;
  margin-bottom: 30px;
}
.special-offer-popup .modal-body .title {
  padding: 5px;
  font-size: 12px;
  background-color: #312783;
}
.special-offer-popup .modal-body .content h1 {
  font-size: 24px;
  font-weight: 900;
}
.special-offer-popup .modal-body .content h3 {
  font-size: 18px;
}
.special-offer-popup .modal-body .content h4 {
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.special-offer-popup .close-modal {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 40px;
  height: 40px;
  background-color: #F9F9F9;
  border-radius: 100%;
  border: none;
  font-size: 20px;
  padding: 0;
  color: #D6D6D6;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.special-offer-popup .close-modal:focus {
  box-shadow: none;
}
.special-offer-popup .close-modal:hover {
  background-color: #e6332a;
  color: #fff;
}
.special-offer-popup .left-col {
  padding-right: 20px;
}
.special-offer-popup .right-col picture {
  box-shadow: 6px 6px 12.8px rgba(0, 0, 0, 0.67);
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
}

@media (max-width: 991.98px) {
  .special-offer-popup .left-col {
    padding-right: 0;
  }
}
@media (max-width: 575.98px) {
  .special-offer-popup .modal-body {
    padding: 15px;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Mulish", sans-serif;
  font-weight: 700;
}

body {
  font-family: "Mulish", sans-serif;
  color: #312783;
  line-height: 1.5;
}

ul {
  font-family: "Mulish", sans-serif;
}

p {
  line-height: 1.5;
}

h1 strong, .h1 strong, h2 strong, .h2 strong, h3 strong, .h3 strong, h4 strong, .h4 strong, h5 strong, .h5 strong, h6 strong, .h6 strong {
  font-weight: 700;
}

.title {
  font-family: "Mulish", sans-serif;
  font-size: 46px;
  color: #312783;
  font-weight: 800;
  line-height: 1.2;
}
.title span {
  font-weight: 300;
}

.subtitle {
  font-family: "Mulish", sans-serif;
  font-size: 14px;
  color: #e6332a;
  font-weight: 500;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 90px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  line-height: 1;
  text-transform: uppercase;
  position: relative;
}
.subtitle:before, .subtitle:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #e6332a;
  height: 1px;
}
.subtitle:before {
  width: 12px;
}
.subtitle:after {
  left: 18px;
  width: 50px;
}

.section-title {
  margin-bottom: 15px;
}

.text-white {
  color: #fff !important;
}

.body-font {
  font-family: "Mulish", sans-serif;
}

.title-font {
  font-family: "Mulish", sans-serif;
}

.text-primary {
  color: #e6332a !important;
}

.text-secondary {
  color: #312783 !important;
}

.text-maroon {
  color: #a30505 !important;
}

@media (max-width: 1399.98px) {
  .title {
    font-size: 40px;
  }
}
@media (max-width: 1199.98px) {
  .title {
    font-size: 36px;
  }
  .section-title {
    margin-bottom: 30px;
  }
}
@media (max-width: 991.98px) {
  .title {
    font-size: 32px;
  }
}
@media (max-width: 575.98px) {
  .title {
    font-size: 28px;
  }
}
.fw-extrabold {
  font-weight: 800;
}

.btn {
  position: relative;
  text-transform: none;
  font-family: "Mulish", sans-serif;
  font-weight: 800;
  font-size: 18px;
  border-radius: 2px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 0;
  overflow: hidden;
  padding: 20px 55px;
}
.btn:after {
  height: 0;
  left: 50%;
  top: 50%;
  width: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.btn:before, .btn:after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 2px;
}
.btn:hover:after, .btn.active:after {
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}
.btn:hover, .btn:focus {
  box-shadow: none;
}
.btn.btn-primary {
  background-color: #e6332a !important;
  color: #fff !important;
}
.btn.btn-primary:before, .btn.btn-primary:after {
  background-color: #312783;
}
.btn.btn-primary:hover {
  color: #fff !important;
}
.btn.btn-primary.btn-bordered {
  color: #e6332a !important;
  border: solid 1px #e6332a;
  background-color: #fff !important;
}
.btn.btn-primary.btn-bordered:before, .btn.btn-primary.btn-bordered:after {
  background-color: #e6332a !important;
}
.btn.btn-primary.btn-bordered:hover {
  color: #fff !important;
}
.btn.btn-secondary {
  background-color: #312783 !important;
  color: #fff !important;
}
.btn.btn-secondary:before, .btn.btn-secondary:after {
  background-color: #e6332a;
}
.btn.btn-secondary.btn-bordered {
  border: solid 1px #312783;
}
.btn.btn-white {
  background-color: #fff;
  color: #312783;
}
.btn.btn-white:before, .btn.btn-white:after {
  background-color: #312783;
}
.btn.btn-white:hover {
  color: #fff !important;
}
.btn.btn-white-hover-primary {
  background-color: #fff;
  color: #312783;
}
.btn.btn-white-hover-primary:before, .btn.btn-white-hover-primary:after {
  background-color: #e6332a;
}
.btn.btn-white-hover-primary:hover {
  color: #fff !important;
}

.btn.btn-primary.loading {
  pointer-events: none;
  cursor: default;
  opacity: 0.7;
}

@media (max-width: 1499.98px) {
  .btn {
    padding-top: 15px;
    padding-right: 30px;
    padding-bottom: 15px;
    padding-left: 30px;
  }
}
.pre-header {
  padding-top: 15px;
  padding-bottom: 15px;
}

.pre-header .container,
.main-header .container {
  max-width: 1665px;
}

.pre-header-cc {
  column-gap: 80px;
}
.pre-header-cc .first-col {
  max-width: 184px;
  width: 100%;
}
.pre-header-cc .second-col .header-offers {
  position: relative;
  padding-right: 35px;
  margin-right: 35px;
}
.pre-header-cc .second-col .header-offers:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #312783;
  opacity: 0.25;
}
.pre-header-cc .second-col p {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  font-weight: 500;
}
.pre-header-cc .second-col p:first-of-type i, .pre-header-cc .second-col p:first-of-type span {
  color: #e6332a;
  font-weight: 800;
}
.pre-header-cc .second-col p:first-of-type i {
  margin-right: 5px;
  font-weight: 400;
}
.pre-header-cc .second-col p span.separator {
  margin-right: 10px;
  margin-left: 10px;
}
.pre-header-cc .third-col {
  display: flex;
  align-items: center;
}
.pre-header-cc .mobile-details {
  margin-right: 40px;
  position: relative;
}
.pre-header-cc .mobile-details:after {
  content: "";
  position: absolute;
  top: 0;
  right: -18px;
  width: 1px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

.mobile-details a,
.social-media-single {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #312783;
  text-decoration: none;
  border-radius: 100%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 20px;
}
.mobile-details a:not(:last-of-type),
.social-media-single:not(:last-of-type) {
  margin-right: 15px;
}
.mobile-details a:hover,
.social-media-single:hover {
  background-color: #e6332a;
}

@media (min-width: 1200px) {
  .pre-header-cc .second-col .header-offers {
    max-width: 70%;
  }
  .pre-header-cc .second-col .header-working-hours p:last-of-type span {
    display: block;
  }
}
@media (min-width: 1600px) {
  .pre-header-cc .second-col .header-working-hours p:last-of-type span {
    position: relative;
    display: inline-flex;
  }
  .pre-header-cc .second-col .header-working-hours p:last-of-type span:not(:last-of-type) {
    padding-right: 15px;
    margin-right: 15px;
  }
  .pre-header-cc .second-col .header-working-hours p:last-of-type span:not(:last-of-type):after {
    content: "|";
    position: absolute;
    right: 0;
    top: 0;
  }
}
@media (max-width: 1499.98px) {
  .pre-header .container,
  .main-header .container {
    max-width: 100%;
  }
}
@media (max-width: 1199.98px) {
  .pre-header-cc {
    column-gap: 50px;
  }
  .pre-header-cc .second-col .header-offers {
    padding-right: 0;
    margin-right: 0;
  }
  .pre-header-cc .second-col .header-offers:after {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .pre-header-cc .second-col {
    position: absolute;
    right: 15px;
    top: 10px;
  }
  .pre-header-cc .third-col {
    position: absolute;
    right: 30px;
    top: 70px;
  }
}
@media (max-width: 767.98px) {
  .pre-header-cc {
    flex-direction: column;
  }
  .pre-header-cc .second-col .header-offers {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
  }
  .pre-header-cc .second-col,
  .pre-header-cc .third-col {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
  }
}
@media (max-width: 575.98px) {
  .mobile-details a:not(:last-of-type),
  .social-media-single:not(:last-of-type) {
    margin-right: 10px;
  }
  .pre-header-cc .mobile-details {
    margin-right: 30px;
  }
}
@media (min-width: 1450px) {
  #header-menu > li.menu-item-has-children:after {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  #header-menu {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    list-style: none;
  }
  #header-menu .sub-menu-toggle {
    display: none;
  }
  #header-menu li {
    position: relative;
  }
  #header-menu li a {
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  #header-menu li.menu-item-has-children:hover > ul {
    opacity: 1;
    visibility: visible;
    top: 100%;
  }
  #header-menu ul {
    list-style: none;
  }
  #header-menu > li {
    display: inline-flex;
  }
  #header-menu > li:not(:last-child) {
    margin-right: 30px;
  }
  #header-menu > li.menu-item-has-children {
    margin-right: 40px;
  }
  #header-menu > li a {
    padding-top: 22px;
    padding-bottom: 22px;
  }
  #header-menu > li a:before {
    content: "";
    position: absolute;
    opacity: 0;
    visibility: hidden;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background-color: #312783;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  #header-menu > li a:hover:before {
    opacity: 1;
    visibility: visible;
    width: 100%;
  }
  #header-menu > li.menu-item-has-children:after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-size: 12px;
    color: #fff;
    position: absolute;
    right: -13px;
    top: 54%;
    transform: translateY(-50%);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    font-weight: 900;
  }
  #header-menu > li.menu-item-has-children a:hover:before {
    width: 120%;
  }
  #header-menu > li.current-menu-item a:before, #header-menu > li.current-page-parent a:before, #header-menu > li.current-menu-ancestor a:before {
    width: 100%;
    opacity: 1;
    visibility: visible;
  }
  #header-menu > li.current-menu-item.menu-item-has-children a:before, #header-menu > li.current-page-parent.menu-item-has-children a:before, #header-menu > li.current-menu-ancestor.menu-item-has-children a:before {
    width: 120%;
  }
  #header-menu > li.current-menu-parent a:before {
    width: 120%;
    opacity: 1;
    visibility: visible;
  }
  #header-menu > li ul {
    position: absolute;
    left: 0;
    top: 120%;
    min-width: 230px;
    opacity: 0;
    visibility: hidden;
    z-index: 2;
    height: auto;
    border-radius: 0;
    padding-left: 0px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.15);
  }
  #header-menu > li ul ul {
    left: 100%;
    top: 110%;
  }
  #header-menu > li ul > li:not(:last-child) a {
    border-bottom: solid 1px rgba(71, 71, 71, 0.1);
  }
  #header-menu > li ul > li > a {
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 10px;
    padding-left: 20px;
    display: block;
    color: #fff;
    background-color: #e6332a;
  }
  #header-menu > li ul > li > a:before {
    display: none;
  }
  #header-menu > li ul > li.current-menu-item > a {
    padding-left: 30px;
  }
  #header-menu > li ul > li:hover > a {
    padding-left: 30px;
  }
  #header-menu > li ul > li.menu-item-has-children:hover > ul {
    top: 0;
  }
}
.main-header {
  position: absolute;
  top: 130px;
  left: 0;
  width: 100%;
  background-color: #e6332a;
  z-index: 2;
}
.main-header .header-call-now {
  margin-top: 5px;
  margin-bottom: 5px;
  padding-top: 15px;
  padding-right: 23px;
  padding-bottom: 15px;
  padding-left: 21px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 18px;
  font-weight: 800;
}
.main-header .header-call-now i {
  font-size: 20px;
  margin-right: 10px;
}
.main-header.sticky {
  position: fixed;
  top: 0;
}

@media (max-width: 1599.98px) {
  .main-header #header-menu > li:not(:last-child) {
    margin-right: 20px;
  }
  .main-header #header-menu > li.menu-item-has-children {
    margin-right: 30px;
  }
}
@media (max-width: 1399.98px) {
  .main-header #header-menu > li:not(:last-child) {
    margin-right: 10px;
  }
  .main-header #header-menu > li.menu-item-has-children {
    margin-right: 25px;
  }
  .main-header .header-call-now {
    font-size: 16px;
    padding-top: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
  }
  .pre-header-cc .second-col p {
    font-size: 14px;
  }
}
@media (max-width: 1299.98px) {
  .main-header #header-menu > li.menu-item-has-children {
    margin-right: 22px;
  }
  .main-header #header-menu > li a {
    font-size: 15px;
  }
}
@media (max-width: 1199.98px) {
  .main-header .header-call-now p {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .main-header {
    top: 265px;
  }
}
@media (max-width: 399.98px) {
  .main-header {
    top: 286px;
  }
}
@media (max-width: 1199.98px) {
  .mobile-nav-cc {
    height: 50px;
    position: relative;
    flex-direction: row-reverse;
  }
  .mobile-nav-cc .mobile-side-buttons {
    margin-right: 60px;
  }
  .mobile-nav-cc .mobile-side-buttons .side-buttons-section {
    position: relative;
    top: auto;
    right: auto;
  }
  .mobile-nav-cc .mobile-side-buttons .side-buttons-section .custom-col-cc {
    flex-direction: row;
  }
  .mobile-nav-cc .mobile-side-buttons .side-buttons-section .top-col {
    display: flex;
    align-items: center;
    position: relative;
    top: auto;
    right: auto;
    margin-right: 15px;
  }
  .mobile-nav-cc .mobile-side-buttons .side-buttons-section .top-col .btn-single {
    width: 45px;
    height: 100%;
    background-color: #e6332a;
  }
  .mobile-nav-cc .mobile-side-buttons .side-buttons-section .top-col .btn-single:not(:last-of-type) {
    margin-bottom: 0;
    margin-right: 20px;
  }
  .mobile-nav-cc .mobile-side-buttons .side-buttons-section .bottom-col a {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    border-radius: 0;
  }
  .mobile-nav-cc .menu-trigger {
    position: absolute;
    right: 20px;
    top: 15px;
    width: 35px;
    height: 25px;
  }
  .mobile-nav-cc .menu-trigger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: #fff;
    opacity: 1;
    left: 0;
    border-radius: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  .mobile-nav-cc .menu-trigger span:nth-child(2) {
    top: 10px;
  }
  .mobile-nav-cc .menu-trigger span:nth-child(3) {
    top: 20px;
  }
  .mobile-menu {
    position: fixed;
    top: 0;
    left: -575.98px;
    width: 100%;
    max-width: 575.98px;
    background-color: #fff;
    z-index: 3;
    height: 100%;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    border-right: solid 1px rgba(55, 63, 48, 0.2);
    overflow-y: auto;
  }
  .mobile-menu .head {
    position: relative;
    border-bottom: solid 1px rgba(55, 63, 48, 0.2);
    padding-top: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
  }
  .mobile-menu .head h6 {
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    color: #312783;
  }
  .mobile-menu .head #inner-menu-trigger {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
  .mobile-menu .head #inner-menu-trigger span {
    position: absolute;
    display: inline-block;
    width: 30px;
    height: 2px;
    background-color: rgba(0, 0, 0, 0.2);
    top: 13px;
    left: 0;
  }
  .mobile-menu .head #inner-menu-trigger span:nth-child(1) {
    transform: rotate(-45deg);
  }
  .mobile-menu .head #inner-menu-trigger span:nth-child(2) {
    transform: rotate(45deg);
  }
  .mobile-menu #header-menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .mobile-menu #header-menu .sub-menu-toggle {
    display: none;
  }
  .mobile-menu #header-menu ul {
    list-style: none;
    border-top: solid 1px rgba(55, 63, 48, 0.2);
    padding: 0;
    display: none;
  }
  .mobile-menu #header-menu ul li:last-child {
    border-bottom: none;
  }
  .mobile-menu #header-menu ul li a {
    padding-top: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 30px;
  }
  .mobile-menu #header-menu ul li ul li a {
    padding-left: 60px;
  }
  .mobile-menu #header-menu li {
    border-bottom: solid 1px rgba(55, 63, 48, 0.2);
    position: relative;
  }
  .mobile-menu #header-menu li a {
    text-decoration: none;
    color: #312783;
    font-size: 18px;
    padding: 15px;
    display: block;
  }
  .mobile-menu #header-menu li.current-menu-item > a {
    color: #e6332a;
  }
  .mobile-menu #header-menu li .sub-menu-trigger {
    width: 58px;
    height: 58px;
    position: absolute;
    right: 0;
    top: 0;
    border-left: solid 1px rgba(55, 63, 48, 0.2);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  .mobile-menu #header-menu li .sub-menu-trigger:before, .mobile-menu #header-menu li .sub-menu-trigger:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  .mobile-menu #header-menu li .sub-menu-trigger:before {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .mobile-menu #header-menu li .sub-menu-trigger.active:before {
    opacity: 0;
    visibility: hidden;
  }
  .mobile-menu-active .mobile-menu {
    left: 0;
  }
}
@media (max-width: 575.98px) {
  .mobile-nav-cc .mobile-side-buttons {
    margin-left: -10px;
    margin-right: auto;
  }
}
.side-buttons-section {
  position: fixed;
  top: 220px;
  right: 0;
  z-index: 2;
}
.side-buttons-section .top-col {
  margin-bottom: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.side-buttons-section .top-col .btn-single {
  width: 53px;
  height: 58px;
  background-color: #fff;
  color: #312783;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  font-size: 24px;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.side-buttons-section .top-col .btn-single:not(:last-of-type) {
  margin-bottom: 10px;
}
.side-buttons-section .top-col .btn-single:hover {
  background-color: #e6332a;
  color: #fff;
}
.side-buttons-section .top-col .btn-single:hover .cart-total {
  color: #312783;
}
.side-buttons-section .top-col .btn-single .cart-total {
  width: 17px;
  height: 17px;
  border-radius: 100%;
  border: solid 1px #e6332a;
  font-size: 10px;
  text-align: center;
  margin-top: -10px;
  margin-left: -8px;
  background-color: #fff;
}
.side-buttons-section .bottom-col a {
  position: absolute;
  top: 200px;
  right: -62px;
  white-space: nowrap;
  transform: rotate(-90deg);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 15px 30px;
  font-weight: 900;
  border: solid 1px #fff;
}

.breadcrumb-section {
  min-height: 500px;
  height: 100%;
  margin-top: 68px;
  padding-top: 100px;
  padding-right: 10px;
  padding-bottom: 100px;
  padding-left: 10px;
}
.breadcrumb-section.has-content {
  min-height: 660px;
}
.breadcrumb-section.has-content .breadcrumb-content-container {
  margin-top: 70px;
}
.breadcrumb-section h1 {
  font-size: 70px;
}
.breadcrumb-section ul {
  padding: 0;
  list-style: none;
  margin-top: 15px;
  margin-bottom: 0px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.breadcrumb-section ul li {
  color: #e6332a;
}
.breadcrumb-section ul li:empty {
  display: none;
}
.breadcrumb-section ul li:not(:last-child) {
  padding-right: 20px;
  position: relative;
}
.breadcrumb-section ul li:not(:last-child):after {
  content: "/";
  position: absolute;
  right: 7px;
  top: 1px;
}
.breadcrumb-section ul li a {
  color: #e6332a;
  text-decoration: none;
}
.breadcrumb-section ul li a:hover {
  text-decoration: underline;
}
.breadcrumb-section .content {
  max-width: 1024px;
  width: 100%;
  margin-top: 30px;
  margin-right: auto;
  margin-left: auto;
}
.breadcrumb-section .content p {
  font-size: 16px;
}

@media (max-width: 1499.98px) {
  .breadcrumb-section h1 {
    font-size: 55px;
  }
  .breadcrumb-section ul {
    font-size: 20px;
  }
}
@media (max-width: 1399.98px) {
  .breadcrumb-section {
    margin-top: 58px;
    min-height: 400px;
  }
}
@media (max-width: 1199.98px) {
  .breadcrumb-section {
    margin-top: 46px;
  }
}
@media (max-width: 991.98px) {
  .breadcrumb-section {
    min-height: 300px;
  }
  .breadcrumb-section h1 {
    font-size: 50px;
  }
}
@media (max-width: 575.98px) {
  .breadcrumb-section h1 {
    font-size: 34px;
  }
  .breadcrumb-section ul {
    font-size: 16px;
  }
}
.banner-slider-cc {
  margin-bottom: 0px !important;
}

.banner-slider-single {
  position: relative;
  z-index: 0;
  margin-top: 55px;
}
.banner-slider-single:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.banner-slider-single.no-overlay:before {
  display: none;
}
.banner-slider-single .banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  max-width: 60%;
  width: 100%;
}

.banner-content .slider-title {
  font-size: 70px;
  font-weight: 800;
  line-height: 1;
}
.banner-content .slider-title span {
  font-weight: 400;
}
.banner-content p {
  margin-top: 30px;
  margin-bottom: 40px;
  color: #e6332a;
  font-size: 24px;
}

@media (max-width: 1499.98px) {
  .banner-content .slider-title {
    font-size: 52px;
    line-height: 1.2;
  }
  .banner-content p {
    font-size: 20px;
  }
}
@media (max-width: 1299.98px) {
  .banner-content .slider-title {
    font-size: 46px;
  }
  .banner-content p {
    font-size: 18px;
  }
}
@media (max-width: 1199.98px) {
  .banner-slider-single {
    margin-top: 46px;
  }
  .banner-slider-single .banner-content {
    max-width: 80%;
  }
  .banner-slider-single .banner-content .slider-title {
    font-size: 40px;
  }
}
@media (max-width: 991.98px) {
  .banner-slider-single .banner-content {
    max-width: 60%;
  }
  .banner-slider-single .banner-content .slider-title {
    font-size: 32px;
  }
  .banner-slider-single .banner-content p {
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 20px;
  }
}
@media (max-width: 575.98px) {
  .banner-slider-single .banner-content {
    max-width: 100%;
    position: relative;
    background-color: #e6332a;
    transform: inherit;
    top: inherit;
    left: inherit;
    width: 100%;
    padding: 30px;
  }
  .banner-slider-single .banner-content .slider-title {
    font-size: 26px;
  }
  .banner-slider-single .banner-content p {
    color: #fff;
  }
}
.about-us-section .top-col {
  column-gap: 120px;
}
.about-us-section .top-col .left-col {
  max-width: 340px;
}
.about-us-section .bottom-col .left-col {
  max-width: 460px;
}
.about-us-section .bottom-col .right-col {
  max-width: 835px;
}

.about-section-advantages-cc {
  max-width: 315px;
  width: 100%;
}
.about-section-advantages-cc .about-section-advantages-single {
  display: flex;
  align-items: center;
  margin-bottom: 38px;
}
.about-section-advantages-cc .about-section-advantages-single picture {
  max-width: 52px;
  width: 100%;
}
.about-section-advantages-cc .about-section-advantages-single h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0px;
  margin-left: 40px;
}

@media (min-width: 1300px) {
  .about-us-section .title span {
    font-size: 36px;
  }
}
@media (max-width: 1399.98px) {
  .about-section-advantages-cc .about-section-advantages-single {
    margin-bottom: 21px;
  }
  .about-section-advantages-cc .about-section-advantages-single h5 {
    font-size: 18px;
  }
}
@media (max-width: 1199.98px) {
  .home-page .about-us-section .bottom-col .left-col {
    margin-top: 30px;
  }
  .about-section-advantages-cc {
    max-width: 100%;
  }
}
.services-section .custom-col-cc {
  column-gap: 80px;
}
.services-section .right-col p {
  line-height: 1.7;
}
.services-section .slick-slide {
  margin: 0 8px;
}
.services-section .slick-list {
  margin: 0 -8px;
}

.services-single {
  position: relative;
}
.services-single a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.services-single:hover {
  text-decoration: none;
}
.services-single:hover .icon {
  background-color: #e6332a;
}
.services-single:hover .content .title {
  color: #fff;
}
.services-single:hover .content p {
  color: #fff;
}
.services-single .icon {
  width: 130px;
  height: 130px;
  background-color: #312783;
  margin-right: auto;
  margin-left: auto;
  display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.services-single .icon picture {
  max-width: 70px;
}
.services-single .content {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  border-radius: 3px;
  padding: 15px;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  z-index: 0;
  height: 100%;
}
.services-single .content * {
  text-decoration: none !important;
}
.services-single .content .title {
  margin-top: 20px;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 700;
  color: #e6332a;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.services-single .content p {
  color: #312783;
  margin-bottom: 0px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.services-single .content:hover .content .title {
  color: #fff;
}
.services-single .content:hover .content p {
  color: #fff;
}
.services-single .content:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  z-index: -1;
}
.services-single:hover .content:before {
  background-color: hsl(0deg 0% 0% / 53%);
}

@media (max-width: 1199.98px) {
  .services-section .services-slider {
    margin-top: 20px;
  }
}
@media (max-width: 1499.98px) {
  .services-single .icon picture {
    max-width: 60px;
  }
}
.advantages-section .custom-col-cc {
  column-gap: 100px;
}
.advantages-section .left-col {
  max-width: 620px;
}
.advantages-section .left-col .title {
  line-height: 1.2;
}
.advantages-section .right-col {
  max-width: 575px;
}
.advantages-section .right-col p {
  line-height: 1.7;
}
.advantages-section .content {
  text-align: center;
  background-color: #F9F9F9;
  padding: 40px;
  margin-top: 30px;
}
.advantages-section .content .read-more-content .title {
  padding-top: 20px;
}
.advantages-section .content .title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}
.advantages-section .content .btn {
  margin-top: 20px;
}

@media (max-width: 1399.98px) {
  .advantages-section .left-col {
    max-width: 510px;
  }
  .advantages-section .right-col {
    max-width: 685px;
  }
}
@media (max-width: 767.98px) {
  .advantages-section .content {
    padding: 20px;
  }
}
.how-it-works-section .custom-col-cc {
  column-gap: 125px;
}
.how-it-works-section .left-col {
  max-width: 480px;
}
.how-it-works-section .left-col .content .btn-container {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  align-items: start;
}
.how-it-works-section .left-col .content .btn.btn-primary:before, .how-it-works-section .left-col .content .btn.btn-primary:after {
  background-color: #fff;
}
.how-it-works-section .left-col .content .btn.btn-primary:hover {
  color: #e6332a !important;
}
.how-it-works-section .left-col .content .btn.btn-white {
  color: #e6332a;
}
.how-it-works-section .left-col .content .btn.btn-white:before, .how-it-works-section .left-col .content .btn.btn-white:after {
  background-color: #e6332a;
}
.how-it-works-section .right-col {
  max-width: 680px;
  display: flex;
  flex-wrap: wrap;
}
.how-it-works-section .right-col .steps-single {
  width: calc(50% - 10px);
  border: solid 1px #fff;
  border-radius: 3px;
  padding-top: 30px;
  padding-right: 45px;
  padding-bottom: 30px;
  padding-left: 45px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.how-it-works-section .right-col .steps-single .icon {
  width: 87px;
  height: 87px;
  background-color: #fff;
  display: flex;
    align-items: center;
    justify-content: center;
}
.how-it-works-section .right-col .steps-single .icon picture {
  max-width: 45px;
}
.how-it-works-section .right-col .steps-single:nth-of-type(odd) {
  margin-right: 20px;
}
.how-it-works-section .right-col .steps-single:nth-of-type(-n+2) {
  margin-bottom: 15px;
}
.how-it-works-section .right-col .steps-single .title {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-top: 20px;
  margin-bottom: 0px;
}
.how-it-works-section .right-col .steps-single:hover .icon {
  background-color: #e6332a;
}

@media (min-width: 1200px) {
  .how-it-works-section .left-col .content .btn {
    min-width: 367px;
    padding-top: 20px;
    padding-right: 25px;
    padding-bottom: 22px;
    padding-left: 25px;
  }
}
@media (max-width: 1399.98px) {
  .how-it-works-section .right-col .steps-single {
    padding-top: 30px;
    padding-right: 35px;
    padding-bottom: 30px;
    padding-left: 35px;
  }
}
@media (max-width: 1199.98px) {
  .how-it-works-section .left-col .content .btn-container {
    flex-direction: row;
    column-gap: 20px;
    margin-bottom: 30px;
  }
  .how-it-works-section .left-col .content .btn-container .btn:last-of-type {
    width: 44%;
  }
}
@media (max-width: 767.98px) {
  .how-it-works-section .right-col .steps-single .title {
    font-size: 18px;
  }
  .how-it-works-section .left-col .content .btn-container {
    flex-direction: column;
  }
}
@media (max-width: 575.98px) {
  .how-it-works-section .left-col .content .btn-container .btn:last-of-type {
    width: 100%;
  }
  .how-it-works-section .right-col .steps-single {
    padding-top: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
    padding-left: 20px;
  }
  .how-it-works-section .right-col .steps-single:nth-of-type(-n+2) {
    margin-bottom: 20px;
  }
}
.page-template-home .why-choose-us-section .custom-col-cc {
  column-gap: 60px;
}
.page-template-home .why-choose-us-section .left-col {
  max-width: 565px;
}
.page-template-home .why-choose-us-section .left-col picture {
  border-radius: 2px;
  width: 100%;
}
.page-template-home .why-choose-us-section .right-col {
  max-width: 660px;
}
.page-template-home .why-choose-us-section .right-col > .content h4 {
  margin-bottom: 25px;
  font-size: 22px;
  font-weight: 600;
}
.page-template-home .why-choose-us-section .right-col .benefits-single {
  display: flex;
  align-items: center;
}
.page-template-home .why-choose-us-section .right-col .benefits-single:not(:last-of-type) {
  margin-bottom: 25px;
}
.page-template-home .why-choose-us-section .right-col .benefits-single .icon {
  width: 80px;
  height: 80px;
  background-color: #312783;
  margin-right: 30px;
  display: flex;
    align-items: center;
    justify-content: center;
}
.page-template-home .why-choose-us-section .right-col .benefits-single .icon picture {
  max-width: 48px;
}
.page-template-home .why-choose-us-section .right-col .benefits-single .content h5 {
  font-size: 20px;
  font-weight: bold;
}
.page-template-home .why-choose-us-section .right-col .benefits-single .content p {
  margin-bottom: 0;
}

.home-page .right-col > .content {
  margin-top: 10px;
  margin-bottom: 30px;
}

@media (max-width: 1399.98px) {
  .page-template-home .why-choose-us-section .title {
    font-size: 37px;
  }
  .page-template-home .why-choose-us-section .right-col .content h4 {
    font-size: 18px;
  }
}
@media (max-width: 1199.98px) {
  .page-template-home .why-choose-us-section .left-col picture {
    max-width: 500px;
    width: 100%;
  }
  .page-template-home .why-choose-us-section .right-col .section-title {
    margin-top: 30px;
  }
}
.cta-section {
  z-index: 1;
}
.cta-section .custom-col-cc {
  column-gap: 60px;
}
.cta-section .decorator-image-single {
  top: 10px;
  left: 120px;
}
.cta-section .left-col {
  max-width: 570px;
}
.cta-section .left-col .title {
  line-height: 1.2;
  font-size: 40px;
}
.cta-section .right-col {
  max-width: 640px;
}
.cta-section .right-col .content p {
  line-height: 1.7;
}
.cta-section .btn-secondary:before, .cta-section .btn-secondary:after {
  background-color: #fff;
}
.cta-section .btn-secondary:hover {
  color: #e6332a !important;
}
.cta-section .btn-white {
  color: #e6332a;
}
.cta-section .btn-container {
  display: flex;
  column-gap: 15px;
  align-items: flex-start;
}

@media (min-width: 1200px) {
  .cta-section .btn {
    padding-top: 20px;
    padding-right: 30px;
    padding-bottom: 20px;
    padding-left: 30px;
  }
}
@media (max-width: 1399.98px) {
  .cta-section .btn-container {
    flex-direction: column;
  }
  .cta-section .btn-container .btn:first-of-type {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
@media (max-width: 1199.98px) {
  .cta-section .btn-container {
    flex-direction: row;
  }
  .cta-section .btn-container .btn:last-of-type {
    width: 44%;
  }
  .cta-section .left-col .title {
    font-size: 36px;
  }
}
@media (max-width: 991.98px) {
  .cta-section .left-col .title {
    font-size: 32px;
  }
}
@media (max-width: 767.98px) {
  .cta-section .btn-container {
    flex-direction: column;
  }
  .cta-section .btn-container .btn:last-of-type {
    width: 72%;
  }
}
@media (max-width: 575.98px) {
  .cta-section .btn-container .btn:last-of-type {
    width: 100%;
  }
  .cta-section .left-col .title {
    font-size: 28px;
  }
}
.testimonials-section {
  z-index: 0;
}
.testimonials-section .decorator-image-single {
  right: 120px;
  bottom: 51%;
}
.testimonials-section .custom-col-cc {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
  padding-top: 70px;
  padding-right: 70px;
  padding-bottom: 70px;
  padding-left: 0px;
}
.testimonials-section .left-col {
  max-width: 770px;
  padding-left: 50px;
}
.testimonials-section .left-col .section-title {
  margin-bottom: 60px;
}
.testimonials-section .right-col {
  max-width: 420px;
  position: relative;
  z-index: 0;
}
.testimonials-section .right-col:before {
  content: "";
  width: 270px;
  height: 270px;
  border-radius: 100%;
  background-color: rgba(252, 163, 33, 0.06);
  position: absolute;
  bottom: -40px;
  left: -140px;
  z-index: -1;
}
.testimonials-section .testimonial-slider-cc {
  padding-top: 50px;
  padding-right: 40px;
  padding-bottom: 50px;
  padding-left: 40px;
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.06);
  background-color: rgba(255, 255, 255, 0.5);
}
.testimonials-section .testimonial-slider-cc:before {
  content: url("../img/quotes.svg");
  position: absolute;
  top: -20px;
  left: 40px;
}
.testimonials-section .testimonial-slider-single .content {
  margin-bottom: 35px;
}
.testimonials-section .testimonial-slider-single .title {
  font-size: 24px;
  font-weight: 700;
}
.testimonials-section .slick-arrow {
  top: auto;
  bottom: -110px;
}
.testimonials-section .slick-prev {
  left: 0;
}
.testimonials-section .slick-next {
  right: auto;
  left: 110px;
}

@media (max-width: 1399.98px) {
  .testimonials-section .left-col {
    max-width: 650px;
  }
  .testimonials-section .right-col {
    max-width: 420px;
  }
  .testimonials-section .slick-arrow {
    bottom: -100px;
  }
}
@media (max-width: 1299.98px) {
  .testimonials-section .left-col {
    max-width: 620px;
  }
}
@media (max-width: 1199.98px) {
  .testimonials-section .right-col {
    padding-left: 50px;
  }
  .testimonials-section .custom-col-cc {
    padding-right: 50px;
    padding-bottom: 100px;
  }
}
@media (max-width: 767.98px) {
  .testimonials-section .custom-col-cc {
    padding-top: 30px;
    padding-right: 20px;
    padding-bottom: 25px;
  }
  .testimonials-section .left-col {
    padding-left: 20px;
  }
}
@media (max-width: 575.98px) {
  .testimonials-section .testimonial-slider-cc {
    padding-top: 40px;
    padding-right: 30px;
    padding-bottom: 20px;
    padding-left: 30px;
  }
}
.products-section .products-slider-cc {
  margin-bottom: 25px;
}
.products-section .products-slider-cc .slick-arrow {
  margin-top: -17px;
}
.products-section .products-single {
  background-color: #F9F9F9;
  padding: 30px;
}
.products-section .products-single:nth-child(-n+2) {
  margin-bottom: 30px;
}
.products-section .products-single .product-content {
  max-width: 60%;
  width: 100%;
}
.products-section .products-single .product-content .btn {
  padding: 12px 33px;
}
.products-section .products-single .product-content .added_to_cart {
  display: none !important;
}
.products-section .products-single .product-content .title {
  font-size: 30px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.products-section .products-single .product-content .product-price {
  font-size: 18px;
}
.products-section .products-single .product-content .product-price span {
  font-weight: 800;
}
.products-section .products-single .product-content .product-dimension p:first-of-type {
  margin-bottom: 0;
}
.products-section .products-single .product-content .product-dimension p:last-of-type {
  font-weight: 700;
  margin-bottom: 20px;
}
.products-section .products-single .product-image {
  max-width: 50%;
  width: 100%;
}
.products-section .products-single:hover .title {
  color: #e6332a;
}

@media (max-width: 1299.98px) {
  .products-section .products-slider-cc .products-single picture {
    width: 75%;
  }
}
@media (max-width: 1199.98px) {
  .products-section .products-single .product-content .title {
    font-size: 24px;
  }
}
@media (max-width: 991.98px) {
  .products-section .products-single .product-content {
    max-width: 100%;
    text-align: center;
  }
  .products-section .products-single .product-image {
    max-width: 50%;
    margin-bottom: 30px;
    height: inherit !important;
  }
  .products-section .products-single .product-image picture {
    width: 100%;
    position: relative;
    transform: none;
    left: initial;
    top: initial;
  }
}
.our-vehicles-section {
  z-index: 0;
  padding-bottom: 30px;
}
.our-vehicles-section .decorator-image-single {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  z-index: -1;
}
.our-vehicles-section .section-title {
  margin-bottom: 80px;
}
.our-vehicles-section .van-title {
  margin-bottom: 30px;
}
.our-vehicles-section .content h4 {
  font-size: 31px;
  font-weight: 700;
}
.our-vehicles-section .btn {
  margin-top: 40px;
}
.our-vehicles-section .left-col > .title {
  margin-bottom: 30px;
  font-size: 28px;
}
.our-vehicles-section .row > * {
  padding-right: 30px;
  padding-left: 30px;
}

.page-template-home .our-vehicles-section .btn-primary:before, .page-template-home .our-vehicles-section .btn-primary:after {
  background-color: #fff;
}
.page-template-home .our-vehicles-section .btn-primary:hover {
  color: #e6332a !important;
}

@media (min-width: 1200px) {
  .our-vehicles-section .our-vehicles-slider {
    margin-bottom: 70px;
  }
}
@media (max-width: 1399.98px) {
  .our-vehicles-section .section-title {
    margin-bottom: 50px;
  }
}
@media (max-width: 1199.98px) {
  .our-vehicles-section .section-title {
    margin-bottom: 30px;
  }
  .our-vehicles-section .image {
    margin-bottom: 30px;
  }
  .our-vehicles-section .content {
    margin-bottom: 50px;
  }
  .our-vehicles-section .left-col .title {
    font-size: 24px;
  }
  .our-vehicles-section .left-col,
  .our-vehicles-section .right-col {
    width: 100%;
  }
  .our-vehicles-section .btn {
    margin-top: 0;
  }
}
.business-partners-section .custom-col-cc {
  column-gap: 80px;
}
.business-partners-section .left-col {
  max-width: 500px;
}
.business-partners-section .right-col {
  max-width: 710px;
}
.business-partners-section .right-col h5 {
  font-size: 24px;
  font-weight: 700;
}
.business-partners-section .business-partners-slider-cc {
  padding-top: 30px;
  padding-right: 30px;
  padding-bottom: 30px;
  padding-left: 30px;
  margin-top: 50px;
  background-color: #fff;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.business-partners-section .slick-list {
  margin: 0 -40px;
}
.business-partners-section .slick-slide {
  margin: 0 40px;
}
.business-partners-section.slick-initialized .slick-slide {
  display: flex;
}
.business-partners-section.slick-initialized .slick-slide * {
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .business-partners-section .business-partners-slider-cc .slider-single:not(:first-of-type) {
    margin-top: -40px;
  }
  .business-partners-section .slick-list {
    margin: 0 -20px;
  }
  .business-partners-section .slick-slide {
    margin: 0 20px;
  }
}
@media (max-width: 767.98px) {
  .business-partners-section .business-partners-slider-cc {
    margin-top: 30px;
  }
}
@media (max-width: 575.98px) {
  .business-partners-section .business-partners-slider-cc .slider-single:not(:first-of-type) {
    margin-top: -30px;
  }
}
@media (max-width: 399.98px) {
  .business-partners-section .business-partners-slider-cc .slider-single:not(:first-of-type) {
    margin-top: -20px;
  }
}
.checklist-download-section .section-title .title {
  margin-bottom: 50px;
}
.checklist-download-section .checklist-single .content-cc {
  margin-top: 30px;
}
.checklist-download-section .checklist-single .content-cc .title {
  font-size: 24px;
  font-weight: 700;
}
.checklist-download-section .checklist-single .content-cc .btn {
  font-weight: 600;
  font-size: 16px;
  padding-top: 20px;
  padding-right: 30px;
  padding-bottom: 20px;
  padding-left: 30px;
}
.checklist-download-section .row > * {
  padding-right: 15px;
  padding-left: 15px;
}

@media (max-width: 1199.98px) {
  .checklist-download-section .checklist-single .content-cc {
    flex-direction: column;
    row-gap: 30px;
  }
}
@media (max-width: 767.98px) {
  .checklist-download-section [class*=col-]:not(:first-of-type) .checklist-single {
    margin-top: 30px;
  }
}
.page-template-about .about-us-section .bottom-col {
  background-color: #312783;
  padding: 0;
}
.page-template-about .about-us-section .bottom-col .left-col {
  padding: 50px 70px;
  max-width: 473px;
}
.page-template-about .about-us-section .bottom-col .right-col {
  max-width: 822px;
}
.page-template-about .about-us-section .about-section-advantages-cc .about-section-advantages-single:last-child {
  margin-bottom: 0;
}
.page-template-about .why-choose-us-section .custom-col-cc {
  column-gap: 70px;
}
.page-template-about .why-choose-us-section .custom-col-cc .left-col {
  max-width: 425px;
}
.page-template-about .why-choose-us-section .custom-col-cc .right-col {
  max-width: 790px;
}
.page-template-about .why-choose-us-section .image {
  margin-top: 30px;
  margin-bottom: 60px;
}
.page-template-about .why-choose-us-section .advantages-single {
  column-gap: 20px;
  margin-bottom: 50px;
}
.page-template-about .why-choose-us-section .advantages-single .content p {
  margin-bottom: 0;
}
.page-template-about .why-choose-us-section .advantages-single h4 {
  font-weight: 800;
  font-size: 20px;
}
.page-template-about .why-choose-us-section .advantages-single .icon {
  width: 82px;
  height: 82px;
  background-color: #312783;
}
.page-template-about .why-choose-us-section .advantages-single .icon picture {
  max-width: 50px;
  height: auto;
}
.page-template-about .why-choose-us-section .why-choose-us-advantages-cc {
  border-bottom: solid 5px #D9D9D9;
}
.page-template-about .testimonials-section:before {
  display: none;
}

.about-us-cta-section .left-col {
  max-width: 640px;
}
.about-us-cta-section .right-col {
  max-width: 650px;
  padding-top: 45px;
  padding-right: 0px;
  padding-bottom: 54px;
  padding-left: 88px;
}
.about-us-cta-section .right-col .subtitle {
  font-weight: 300;
  font-size: 30px;
  padding-left: 0;
  text-transform: none;
}
.about-us-cta-section .right-col .subtitle:before, .about-us-cta-section .right-col .subtitle:after {
  display: none;
}
.about-us-cta-section .right-col .btn {
  margin-top: 20px;
}
.about-us-cta-section .right-col .btn:before, .about-us-cta-section .right-col .btn:after {
  background-color: #fff;
}
.about-us-cta-section .right-col .btn:hover {
  color: #312783 !important;
}

@media (max-width: 1399.98px) {
  .page-template-about .about-us-section .bottom-col .left-col {
    padding: 45px 50px;
  }
  .page-template-about .about-section-advantages-cc .about-section-advantages-single {
    margin-bottom: 12px;
  }
  .about-us-cta-section .container {
    max-width: 100%;
    padding: 0;
  }
  .about-us-cta-section .left-col {
    max-width: 50%;
  }
  .about-us-cta-section .right-col {
    padding-left: 70px;
    padding-right: 80px;
    max-width: 50%;
  }
}
@media (max-width: 1299.98px) {
  .page-template-about .about-us-section .bottom-col {
    column-gap: 0;
  }
  .page-template-about .about-us-section .bottom-col .left-col {
    padding: 20px 15px;
  }
  .page-template-about .about-us-section .bottom-col .right-col {
    max-width: 900px;
  }
  .about-us-cta-section .right-col {
    padding-top: 30px;
    padding-right: 60px;
    padding-bottom: 30px;
    padding-left: 50px;
  }
}
@media only screen and (max-width: 1220px) {
  .about-us-cta-section .left-col {
    max-width: 46%;
  }
  .about-us-cta-section .right-col {
    max-width: 54%;
    padding-top: 5px;
    padding-right: 65px;
    padding-bottom: 15px;
    padding-left: 40px;
  }
}
@media (max-width: 1199.98px) {
  .about-us-cta-section .left-col {
    padding-top: 45px;
  }
  .about-us-cta-section .right-col {
    padding-top: 30px;
    padding-right: 0;
    padding-bottom: 40px;
    padding-left: 0;
  }
}
@media (max-width: 575.98px) {
  .about-us-cta-section .custom-col-cc {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.post-type-archive-services .services-section {
  padding-bottom: 75px;
}
.post-type-archive-services .services-section .services-single {
  margin-bottom: 25px;
}
.post-type-archive-services .services-section .services-single ul {
  padding-left: 20px;
}
.post-type-archive-services .services-section .services-single .content {
  padding: 30px;
}
.post-type-archive-services .services-section .services-single .content:before {
  background-color: #312783;
}
.post-type-archive-services .services-section .services-single .content p {
  color: #fff;
}
.post-type-archive-services .services-section .services-single .icon {
  background-color: #666;
}
.post-type-archive-services .services-section .services-single:hover .icon {
  background-color: #e6332a;
}
.post-type-archive-services .services-section .services-single:hover .content:before {
  background-color: hsl(0deg 0% 0% / 53%);
}

.services-cc {
  margin-top: 45px;
}

.services-intro-section .custom-col-cc {
  column-gap: 80px;
}
.services-intro-section .custom-col-cc .left-col {
  max-width: 590px;
}
.services-intro-section .custom-col-cc .left-col .content p:last-of-type {
  margin-bottom: 0;
}
.services-intro-section .custom-col-cc .left-col .insurance-form-download-btn {
  display: none;
}
.services-intro-section .custom-col-cc .right-col {
  max-width: 615px;
}
.services-intro-section .custom-col-cc .right-col .play-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  background-color: #e6332a;
  border: solid 2px #e6332a;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 30px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  text-decoration: none;
}
.services-intro-section .custom-col-cc .right-col .play-icon i {
  margin-right: -5px;
}
.services-intro-section .custom-col-cc .right-col .play-icon:hover {
  color: #e6332a;
  background-color: #fff;
}

.insurance-page .services-intro-section .left-col .insurance-form-download-btn {
  display: inline-block;
}

@media (max-width: 1199.98px) {
  .services-intro-section .custom-col-cc .right-col {
    max-width: 80% !important;
    margin-top: 30px;
  }
}
@media (max-width: 575.98px) {
  .services-intro-section .custom-col-cc .right-col {
    max-width: 100% !important;
  }
}
.benefits-section {
  background-color: #F6F6F6;
}
.benefits-section .custom-col-cc {
  column-gap: 100px;
}
.benefits-section .content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}
.benefits-section .right-col {
  max-width: 780px;
}
.benefits-section .right-col .content p:last-of-type {
  margin-bottom: 0;
}
.benefits-section .right-col .btn-read-more {
  margin-top: 16px;
}

@media (max-width: 1199.98px) {
  .benefits-section .left-col {
    max-width: 50% !important;
    margin-bottom: 30px;
  }
}
.services-packages-section > .container {
  padding: 50px 50px 30px;
}
.services-packages-section .section-title {
  margin-bottom: 50px;
}
.services-packages-section .packages-single {
  border: solid 1px #e6332a;
  margin-bottom: 30px;
}
.services-packages-section .packages-single .title {
  background-color: #e6332a;
  padding: 17px 30px;
  font-size: 32px;
  margin-bottom: 0;
}
.services-packages-section .packages-single .icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-color: #959595;
  margin-right: 10px;
}
.services-packages-section .packages-single .icon.available:before, .services-packages-section .packages-single .icon.available:after, .services-packages-section .packages-single .icon.not-available:before, .services-packages-section .packages-single .icon.not-available:after {
  content: "";
  position: absolute;
  background-color: #312783;
}
.services-packages-section .packages-single .icon.available {
  background-color: #e6332a;
}
.services-packages-section .packages-single .icon.available:before {
  width: 6px;
  height: 2px;
  left: 4px;
  top: 11px;
  transform: rotate(45deg);
}
.services-packages-section .packages-single .icon.available:after {
  width: 10px;
  height: 2px;
  left: 7px;
  top: 9px;
  transform: rotate(-45deg);
}
.services-packages-section .packages-single .icon.not-available:before {
  width: 10px;
  height: 2px;
  left: 5px;
  top: 9px;
  transform: rotate(45deg);
}
.services-packages-section .packages-single .icon.not-available:after {
  width: 10px;
  height: 2px;
  left: 5px;
  top: 9px;
  transform: rotate(-45deg);
}
.services-packages-section .packages-single-cc {
  padding: 30px;
}
.services-packages-section .packages-single-cc ul li:not(:last-child) {
  margin-bottom: 15px;
}
.services-packages-section .packages-single-cc .btn {
  margin-top: 20px;
}
.services-packages-section .packages-single-cc .note {
  margin-top: 25px;
  font-size: 14px;
}

@media (max-width: 1199.98px) {
  .services-packages-section > .container {
    padding: 30px 20px 0;
  }
  .services-packages-section .section-title {
    margin-bottom: 30px;
  }
  .services-packages-section .packages-single {
    margin-bottom: 30px;
  }
  .services-packages-section .packages-single .title {
    font-size: 26px;
  }
}
.services-cta-section {
  background-color: #F6F6F6;
}
.services-cta-section .left-col {
  max-width: 695px;
  padding: 60px;
}
.services-cta-section .left-col .btn {
  margin-top: 25px;
}
.services-cta-section .left-col .btn:after, .services-cta-section .left-col .btn:before {
  background-color: #fff;
}
.services-cta-section .left-col .btn:hover {
  color: #312783 !important;
}
.services-cta-section .right-col {
  max-width: 600px;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 1399.98px) {
  .services-cta-section .custom-col-cc .left-col {
    max-width: 53%;
    padding: 45px;
  }
}
@media (max-width: 1199.98px) {
  .services-cta-section .right-col {
    min-height: 500px;
  }
}
@media (max-width: 575.98px) {
  .services-cta-section .custom-col-cc .left-col {
    padding: 30px;
  }
  .services-cta-section .right-col {
    min-height: 400px;
  }
}
.steps-section .section-title {
  margin-bottom: 50px;
}
.steps-section .steps-single {
  position: relative;
  background-color: #F6F6F6;
  padding: 20px;
}
.steps-section .steps-single .title {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 80px;
  margin-top: 20px;
}
.steps-section .steps-single .icon {
  position: absolute;
  top: 90px;
  left: 40px;
  height: 87px;
  width: 87px;
  background-color: #fff;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.steps-section .steps-single .icon picture {
  max-width: 45px;
}
.steps-section .steps-single:hover .icon {
  background-color: #e6332a;
}

@media (max-width: 1399.98px) {
  .steps-section .steps-single .icon {
    height: 70px;
    width: 70px;
  }
  .steps-section .steps-single .icon picture {
    max-width: 35px;
  }
}
@media (max-width: 1199.98px) {
  .steps-section .steps-single .title {
    margin-bottom: 50px;
    margin-top: 0;
  }
  .steps-section .steps-single .icon {
    height: 60px;
    width: 60px;
    top: 55px;
  }
}
@media (max-width: 991.98px) {
  .steps-section {
    padding-bottom: 0;
  }
  .steps-section .steps-single {
    margin-bottom: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .steps-section .steps-single .title {
    margin-bottom: 80px;
  }
  .steps-section .steps-single .icon {
    width: 87px;
    height: 87px;
  }
  .steps-section .steps-single .icon picture {
    max-width: 45px;
  }
}
.services-why-choose-us-section .custom-col-cc {
  column-gap: 60px;
}
.services-why-choose-us-section .custom-col-cc .left-col {
  max-width: 580px;
}
.services-why-choose-us-section .custom-col-cc .right-col {
  max-width: 640px;
}
.services-why-choose-us-section .custom-col-cc .right-col .title {
  margin-bottom: 20px;
  line-height: 1;
}
.services-why-choose-us-section .custom-col-cc .right-col .subtitle {
  font-size: 22px;
  font-weight: 600;
  color: #312783;
  padding-left: 0;
  text-transform: none;
}
.services-why-choose-us-section .custom-col-cc .right-col .subtitle:before, .services-why-choose-us-section .custom-col-cc .right-col .subtitle:after {
  display: none;
}
.services-why-choose-us-section .custom-col-cc .right-col .benefits-cc {
  margin-top: 30px;
}
.services-why-choose-us-section .custom-col-cc .right-col .benefits-cc .benefits-single {
  margin-bottom: 20px;
}
.services-why-choose-us-section .custom-col-cc .right-col .benefits-cc .benefits-single .icon {
  width: 60px;
  height: 60px;
  background-color: #312783;
  margin-right: 15px;
}
.services-why-choose-us-section .custom-col-cc .right-col .benefits-cc .benefits-single .icon picture {
  max-width: 34px;
}
.services-why-choose-us-section .custom-col-cc .right-col .benefits-cc .benefits-single .title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

@media (min-width: 1400px) {
  .services-why-choose-us-section .custom-col-cc .right-col .title {
    font-size: 42px;
  }
}
@media (max-width: 1299.98px) {
  .services-why-choose-us-section .custom-col-cc .right-col .benefits-cc .benefits-single .title {
    font-size: 16px;
  }
}
@media (max-width: 1199.98px) {
  .services-why-choose-us-section .custom-col-cc .left-col {
    max-width: 80% !important;
    margin-bottom: 30px;
  }
}
@media (max-width: 767.98px) {
  .services-why-choose-us-section .custom-col-cc .right-col .benefits-cc {
    column-gap: 30px;
  }
}
@media (max-width: 575.98px) {
  .services-why-choose-us-section .custom-col-cc .left-col {
    max-width: 100% !important;
  }
}
.services-faq-section .custom-col-cc {
  margin-bottom: 50px;
  column-gap: 60px;
}
.services-faq-section .custom-col-cc .left-col {
  max-width: 140px;
}
.services-faq-section .custom-col-cc .right-col {
  max-width: 1080px;
}
.services-faq-section .accordion-button {
  background-color: #fff !important;
}

.buy-packaging-intro-section .top-col {
  column-gap: 100px;
  margin-bottom: 30px;
}
.buy-packaging-intro-section .top-col .left-col {
  max-width: 355px;
}
.buy-packaging-intro-section .top-col .left-col .subtitle {
  font-size: 24px;
  font-weight: 800;
  padding-left: 0;
  text-transform: none;
  color: #312783;
  line-height: 1.2;
}
.buy-packaging-intro-section .top-col .left-col .subtitle:after, .buy-packaging-intro-section .top-col .left-col .subtitle:before {
  display: none;
}
.buy-packaging-intro-section .top-col .right-col {
  max-width: 830px;
}
.buy-packaging-intro-section .top-col .right-col .content p {
  line-height: 1.7;
}
.buy-packaging-intro-section .top-col .right-col .content p:last-of-type {
  margin-bottom: 0;
}
.buy-packaging-intro-section .bottom-col {
  column-gap: 55px;
}
.buy-packaging-intro-section .bottom-col .left-col {
  max-width: 640px;
}
.buy-packaging-intro-section .bottom-col .left-col .section-title {
  margin-bottom: 30px;
}
.buy-packaging-intro-section .bottom-col .right-col {
  max-width: 600px;
}

.buy-packaging-faq-section .custom-col-cc {
  column-gap: 60px;
}
.buy-packaging-faq-section .custom-col-cc .left-col {
  max-width: 115px;
}
.buy-packaging-faq-section .custom-col-cc .right-col {
  max-width: 1120px;
}
.buy-packaging-faq-section .faq-single .accordion-body a {
  color: #fff;
}
.buy-packaging-faq-section .faq-cc {
  margin-top: 55px;
}

.buy-packaging-shop-section {
  padding-bottom: 70px;
}
.buy-packaging-shop-section .buy-package-shop-cc {
  column-gap: 30px;
}
.buy-packaging-shop-section .tab-nav {
  max-width: 300px;
  width: 100%;
  background-color: #fff;
  padding: 20px 15px;
}
.buy-packaging-shop-section .tab-nav .title {
  font-size: 24px;
  margin-bottom: 20px;
}
.buy-packaging-shop-section .tab-nav .nav-link {
  color: #312783 !important;
  font-size: 18px;
  font-weight: 500;
  background-color: #fff !important;
  text-align: left;
  padding-top: 20px;
  padding-bottom: 20px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.buy-packaging-shop-section .tab-nav .nav-link.active, .buy-packaging-shop-section .tab-nav .nav-link:hover {
  color: #fff !important;
  background-color: #e6332a !important;
  font-weight: 900;
}
.buy-packaging-shop-section .tab-content .section-title {
  margin-bottom: 25px;
}
.buy-packaging-shop-section .tab-content .title {
  font-size: 36px;
}
.buy-packaging-shop-section .tab-content .custom-col-cc {
  flex-wrap: wrap;
  justify-content: flex-start;
  column-gap: 30px;
}
.buy-packaging-shop-section .tab-content .product-single {
  background-color: #fff !important;
  margin-bottom: 30px;
  width: 31%;
  padding-top: 30px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
}
.buy-packaging-shop-section .tab-content .product-single .package-includes-text {
  font-size: 17px;
  font-weight: 800;
  margin-top: 50px;
}
.buy-packaging-shop-section .tab-content .product-single .image .icon-text {
  font-weight: 800;
  font-size: 150px;
  line-height: 0.8;
  margin-bottom: 0;
}
.buy-packaging-shop-section .tab-content .product-single .image .icon-title {
  font-size: 18px;
  font-weight: 800;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  background-color: #fff;
  padding-left: 10px;
  padding-right: 10px;
}
.buy-packaging-shop-section .tab-content .product-single .image picture {
  max-width: 100px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.buy-packaging-shop-section .tab-content .product-single .content {
  margin-bottom: 40px;
}
.buy-packaging-shop-section .tab-content .product-single .content p {
  margin-bottom: 5px;
}
.buy-packaging-shop-section .tab-content .product-single .content ul {
  list-style: none;
  padding-left: 15px;
}
.buy-packaging-shop-section .tab-content .product-single .content ul li {
  font-size: 14px;
}
.buy-packaging-shop-section .tab-content .product-single .product-meta p {
  font-weight: 800;
  font-size: 18px;
}
.buy-packaging-shop-section .tab-content .product-single .btn {
  padding-top: 15px;
  padding-bottom: 15px;
  margin-top: 15px;
  width: 100%;
}
.buy-packaging-shop-section .tab-content .product-single .btn a {
  color: #fff !important;
  text-decoration: none;
}
.buy-packaging-shop-section .tab-content .product-single .added_to_cart {
  display: none !important;
}
.buy-packaging-shop-section .tab-content .product-single .product-dimension {
  margin-bottom: 50px;
}
.buy-packaging-shop-section .tab-content .product-single .product-dimension p {
  margin-bottom: 0;
}
.buy-packaging-shop-section .tab-content .product-single .product-dimension p:nth-child(2) {
  font-weight: 800;
}
.buy-packaging-shop-section .tab-content .product-single input[type=number] {
  max-width: 45px;
  width: 100%;
  padding: 5px !important;
}
.buy-packaging-shop-section .tab-content .product-single .quantity-btn {
  width: 30px;
  height: 30px;
}
.buy-packaging-shop-section .tab-content .product-single .quantity-btn.disabled {
  cursor: default;
  pointer-events: none;
}
.buy-packaging-shop-section .tab-content .product-single .bottom-content {
  position: absolute;
  bottom: 15px;
  left: 15px;
  width: 100%;
}
.buy-packaging-shop-section #all-products .product-single .package-includes-text {
  margin-bottom: 50px;
}
.buy-packaging-shop-section #all-products .product-single .image picture {
  max-width: 200px;
}

@media (min-width: 1400px) {
  .buy-packaging-shop-section #recommended-packages-tab-pane .product-single:last-of-type .btn {
    position: absolute;
    bottom: 15px;
    width: calc(100% - 30px);
  }
}
@media (max-width: 1399.98px) {
  .buy-packaging-shop-section .tab-content .product-single {
    width: 48%;
  }
}
@media (max-width: 1299.98px) {
  .buy-packaging-shop-section {
    padding-bottom: 50px;
  }
}
@media (max-width: 1199.98px) {
  .buy-packaging-shop-section {
    padding-bottom: 30px;
  }
  .buy-packaging-shop-section .tab-content .product-single {
    width: 47%;
  }
  .buy-packaging-shop-section .custom-col-cc {
    flex-direction: row;
  }
}
@media (max-width: 991.98px) {
  .buy-packaging-shop-section {
    padding-bottom: 10px;
  }
  .buy-packaging-shop-section .tab-nav {
    width: 50%;
    margin-bottom: 30px;
  }
  .buy-packaging-shop-section .tab-content .title {
    font-size: 32px;
  }
  .buy-packaging-shop-section .tab-content .product-single {
    width: 47%;
  }
  .buy-packaging-shop-section .custom-col-cc {
    flex-direction: row;
  }
}
@media (max-width: 575.98px) {
  .buy-packaging-shop-section .tab-nav {
    width: 100%;
  }
  .buy-packaging-shop-section .tab-content .title {
    font-size: 28px;
  }
  .buy-packaging-shop-section .tab-content .product-single {
    width: 100%;
  }
}
.page-template-our-vehicles .business-partners-section {
  padding: 0;
}
.page-template-our-vehicles .testimonials-section:before {
  background-color: #F6F6F6;
}

.locations-section {
  padding-bottom: 80px;
}
.locations-section .section-title {
  max-width: 860px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 75px;
}
.locations-section .section-title .title {
  margin-bottom: 20px;
}
.locations-section .section-title .subtitle {
  text-transform: none;
  padding-left: 0;
  font-size: 16px;
  font-weight: 400;
}
.locations-section .section-title .subtitle:before, .locations-section .section-title .subtitle:after {
  display: none;
}
.locations-section .locations-single {
  z-index: 0;
  margin-bottom: 30px;
}
.locations-section .locations-single a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.locations-section .locations-single:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(71, 71, 71, 0.4);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.locations-section .locations-single:hover:before {
  background-color: hsl(0deg 0% 0% / 53%);;
}
.locations-section .locations-single .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.our-locations-intro-section .custom-col-cc {
  column-gap: 55px;
}
.our-locations-intro-section .custom-col-cc .left-col {
  max-width: 63%;
}
.our-locations-intro-section .custom-col-cc .left-col strong {
  font-weight: 800;
}
.our-locations-intro-section .custom-col-cc .left-col .btn-container .btn {
  padding: 20px 70px;
}
.our-locations-intro-section .custom-col-cc .left-col .title {
  font-size: 28px;
  font-weight: 700;
}
.our-locations-intro-section .custom-col-cc .right-col {
  max-width: 33%;
}

@media (max-width: 1399.98px) {
  .our-locations-intro-section .custom-col-cc .left-col {
    max-width: 55%;
  }
  .our-locations-intro-section .custom-col-cc .right-col {
    max-width: 40%;
  }
}
@media (max-width: 1199.98px) {
  .our-locations-intro-section .custom-col-cc .left-col {
    margin-bottom: 30px;
  }
  .our-locations-intro-section .custom-col-cc .right-col {
    max-width: 80% !important;
  }
}
@media (max-width: 767.98px) {
  .our-locations-intro-section .custom-col-cc .right-col {
    max-width: 100% !important;
  }
}
.our-locations-about-section {
  z-index: 0;
}
.our-locations-about-section .row {
  column-gap: 45px;
}
.our-locations-about-section .row:not(:last-child) {
  margin-bottom: 80px;
}
.our-locations-about-section .section-title {
  margin-top: -10px;
}
.our-locations-about-section .left-col {
  max-width: 50%;
}
.our-locations-about-section .right-col {
  max-width: 46%;
}
.our-locations-about-section .row-1 .left-col {
  max-width: 38%;
}
.our-locations-about-section .row-1 .right-col {
  max-width: 57%;
}
.our-locations-about-section .decorator-image-single {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.09;
  z-index: -1;
}

@media (max-width: 1399.98px) {
  .our-locations-about-section .row-1 .right-col {
    max-width: 55%;
  }
  .our-locations-about-section .left-col {
    max-width: 49%;
  }
}
@media (max-width: 1199.98px) {
  .our-locations-about-section .right-col {
    max-width: 100% !important;
  }
  .our-locations-about-section .left-col {
    max-width: 80% !important;
  }
  .our-locations-about-section .row:not(:last-child) {
    margin-bottom: 30px;
  }
}
@media (max-width: 767.98px) {
  .our-locations-about-section .left-col {
    max-width: 100% !important;
  }
  .our-locations-about-section .section-title {
    margin-bottom: 15px;
  }
}
.best-moving-service-section {
  padding-bottom: 45px;
}
.best-moving-service-section .custom-col-cc {
  column-gap: 55px;
}
.best-moving-service-section .custom-col-cc .left-col {
  max-width: 275px;
}
.best-moving-service-section .custom-col-cc .left-col .title {
  line-height: 1.2;
}
.best-moving-service-section .custom-col-cc .right-col {
  max-width: 960px;
}
.best-moving-service-section .best-moving-service-cc {
  margin-top: 25px;
}
.best-moving-service-section .best-moving-service-single {
  column-gap: 25px;
  margin-bottom: 35px;
}
.best-moving-service-section .best-moving-service-single .content p:last-of-type {
  margin-bottom: 0;
}
.best-moving-service-section .best-moving-service-single .title {
  font-size: 24px;
  font-weight: 700;
  margin-top: -5px;
}
.best-moving-service-section .best-moving-service-single .image {
  max-width: 100px;
  width: 100%;
  flex-shrink: 0;
}

@media (max-width: 575.98px) {
  .best-moving-service-section .best-moving-service-single .image {
    margin-bottom: 15px;
  }
}
.why-use-section .custom-col-cc {
  column-gap: 65px;
}
.why-use-section .custom-col-cc .left-col {
  max-width: 595px;
}
.why-use-section .custom-col-cc .right-col {
  max-width: 615px;
  padding-top: 55px;
  padding-bottom: 55px;
}
.why-use-section .custom-col-cc .right-col .content p:last-of-type {
  margin-bottom: 0;
}

@media (min-width: 1200px) and (max-width: 1400px) {
  .why-use-section .container {
    max-width: 100%;
    padding: 0;
  }
  .why-use-section .container .custom-col-cc .left-col {
    max-width: 41%;
  }
  .why-use-section .container .custom-col-cc .right-col {
    max-width: 60%;
  }
}
@media (max-width: 1299.98px) {
  .why-use-section .custom-col-cc {
    column-gap: 30px;
  }
  .why-use-section .custom-col-cc .left-col {
    max-width: 41%;
  }
  .why-use-section .custom-col-cc .right-col {
    padding-top: 20px;
    padding-right: 70px;
    padding-bottom: 27px;
    padding-left: 0;
  }
}
@media (max-width: 1199.98px) {
  .why-use-section {
    padding-top: 40px;
  }
  .why-use-section .left-col {
    max-width: 80% !important;
  }
  .why-use-section .right-col {
    padding-right: 0 !important;
    padding-bottom: 40px !important;
  }
}
@media (max-width: 575.98px) {
  .why-use-section .left-col {
    max-width: 100% !important;
  }
}
.other-locations-single {
  min-height: 300px;
  background-size: cover;
  z-index: 0;
  gap: 30px;
}
.other-locations-single .title {
  color: #fff;
}
.other-locations-single:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: -1;
}

.our-locations-faq-section .section-title {
  margin-bottom: 60px;
}

.cart-page .newsletter-section {
  padding-top: 80px;
}
.cart-page .woocommerce .cart-empty {
  text-align: center;
  font-size: 24px;
  font-weight: 800;
}
.cart-page .woocommerce .return-to-shop {
  text-align: center;
  margin-top: 50px;
}

.cart-section .product-quantity .btn-container {
  border: solid 1px #D6D6D6;
  display: flex;
  align-items: center;
}
.cart-section .product-quantity .btn-container input[type=number] {
  border: none !important;
  padding: 10px !important;
  text-align: center;
  width: 100%;
  font-size: 18px;
  font-weight: 800;
}
.cart-section .product-quantity .quantity {
  max-width: 60px;
  width: 100%;
  text-align: center;
}
.cart-section table th, .cart-section table td {
  border: 0;
  font-family: "Mulish", sans-serif;
  color: #312783;
}
.cart-section .cart-table-cc table th, .cart-section .cart-table-cc table td {
  border: 0;
  font-family: "Mulish", sans-serif;
}
.cart-section .cart-table-cc table thead th {
  background-color: #F6F6F6;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 18px;
}
.cart-section .cart-table-cc table tbody td {
  padding: 30px;
  border-bottom: solid 1px #D6D6D6;
}
.cart-section .cart-table-cc table tbody td.product-subtotal {
  font-weight: 800;
}
.cart-section .cart-table-cc table tbody .title {
  font-size: 24px;
}
.cart-section .cart-table-cc table tbody .product-image {
  max-width: 200px;
  width: 100%;
}
.cart-section .cart-table-cc table .product-details {
  width: 44%;
  padding-left: 0;
}
.cart-section .cart-table-cc table .product-price {
  width: 16%;
  padding-left: 0;
  text-align: left;
}
.cart-section .cart-table-cc table .product-quantity {
  width: 20%;
  padding-left: 0;
  text-align: left;
}
.cart-section .cart-table-cc table .product-quantity .quantity-btn-container {
  max-width: 150px;
  width: 100%;
}
.cart-section .cart-table-cc table .product-subtotal {
  width: 15%;
  padding-left: 0;
  text-align: left;
}
.cart-section .cart-table-cc table .product-remove {
  width: 5%;
  padding-left: 0;
  text-align: left;
}
.cart-section .cart-table-cc table .product-remove a {
  color: #312783;
  opacity: 0.3;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.cart-section .cart-table-cc table .product-remove a:hover {
  opacity: 1;
}
.cart-section .cart-table-cc .cart-bottom-cta {
  display: none !important;
}
.cart-section .cart-summary {
  background-color: #F6F6F6;
  padding: 45px;
  margin-top: 50px;
}
.cart-section .cart-summary h2 {
  font-weight: 800;
  font-size: 24px;
  text-transform: capitalize;
  margin-bottom: 40px;
}
.cart-section .cart-summary th,
.cart-section .cart-summary td {
  font-size: 18px;
  border-bottom: solid 1px #D6D6D6;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cart-section .cart-summary tr td {
  font-weight: 800;
  text-align: right;
}
.cart-section .cart-summary tr td strong {
  font-weight: 800;
}
.cart-section .cart-summary tr.woocommerce-shipping-totals th:first-of-type {
  vertical-align: top;
}
.cart-section .cart-summary tr.woocommerce-shipping-totals td {
  font-weight: 400;
}
.cart-section .cart-summary tr.woocommerce-shipping-totals .woocommerce-shipping-destination {
  margin-top: 10px;
}
.cart-section .cart-summary tr.woocommerce-shipping-totals .woocommerce-shipping-destination,
.cart-section .cart-summary tr.woocommerce-shipping-totals .woocommerce-shipping-calculator {
  font-weight: 400;
}
.cart-section .cart-summary tr.woocommerce-shipping-totals .shipping-calculator-form {
  margin-top: 10px;
}
.cart-section .cart-summary tr.woocommerce-shipping-totals .shipping-calculator-form #calc_shipping_country_field {
  display: none;
}
.cart-section .cart-summary tr.woocommerce-shipping-totals .shipping-calculator-form .button {
  position: relative;
  text-transform: none;
  font-family: "Mulish", sans-serif;
  font-weight: 800;
  font-size: 18px;
  border-radius: 2px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 0;
  overflow: hidden;
  padding: 10px 20px;
  background-color: #312783;
  color: #fff;
}
.cart-section .cart-summary tr.woocommerce-shipping-totals .shipping-calculator-form .button:after {
  height: 0;
  left: 50%;
  top: 50%;
  width: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.cart-section .cart-summary tr.woocommerce-shipping-totals .shipping-calculator-form .button:before, .cart-section .cart-summary tr.woocommerce-shipping-totals .shipping-calculator-form .button:after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 2px;
  background-color: #e6332a;
}
.cart-section .cart-summary tr.woocommerce-shipping-totals .shipping-calculator-form .button:hover:after, .cart-section .cart-summary tr.woocommerce-shipping-totals .shipping-calculator-form .button.active:after {
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}
.cart-section .cart-summary tr.woocommerce-shipping-totals .shipping-calculator-form .button:hover, .cart-section .cart-summary tr.woocommerce-shipping-totals .shipping-calculator-form .button:focus {
  box-shadow: none;
}
.cart-section .cart-summary tr.woocommerce-shipping-totals .select2-container .select2-selection {
  background-color: #fff !important;
  display: flex;
  justify-content: space-between;
  padding: 10px 5px !important;
  font-size: 16px !important;
}
.cart-section .cart-summary tr.woocommerce-shipping-totals .shipping-calculator-form input:not([type=submit]) {
  width: 100%;
  background-color: #fff !important;
  padding: 12px !important;
  font-size: 16px !important;
}
.cart-section .cart-summary tr th {
  text-transform: uppercase;
  padding-left: 0;
  font-weight: 400;
}
.cart-section .cart-summary tr:last-child th, .cart-section .cart-summary tr:last-child td {
  border-bottom: none;
}
.cart-section .cart-summary .woocommerce-shipping-methods {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cart-section .cart-summary .woocommerce-shipping-methods li {
  font-weight: 400;
}
.cart-section .cart-summary .woocommerce-shipping-methods li .woocommerce-Price-amount {
  font-weight: 800;
}
.cart-section .cart-summary .woocommerce-shipping-methods li:not(:last-child) {
  margin-bottom: 10px;
}
.cart-section .cart-summary .woocommerce-shipping-methods li input[type=radio] {
  width: 10px;
  height: 10px !important;
  padding: 10px !important;
}
.cart-section .cart-summary .woocommerce-shipping-methods li label {
  cursor: pointer;
  padding-left: 35px;
  font-size: 16px;
}
.cart-section .cart-summary .wc-proceed-to-checkout {
  text-align: center;
  margin-top: 30px;
}
.cart-section .cart-summary .wc-proceed-to-checkout a {
  width: 100%;
}

@media (max-width: 1199.98px) {
  .cart-section .cart-table-cc table .product-quantity .quantity-btn-container {
    max-width: 130px;
  }
  .cart-section .cart-table-cc table tbody .title {
    font-size: 20px;
  }
  .cart-section .cart-table-cc table tbody td {
    padding: 20px;
  }
  .cart-section .cart-table-cc table tbody .product-image {
    max-width: 100px;
  }
}
@media (max-width: 991.98px) {
  .cart-section .cart-table-cc table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .cart-section .cart-table-cc table tr {
    display: block;
    margin-bottom: 20px;
    border: solid 1px #D6D6D6;
    padding: 0 20px;
  }
  .cart-section .cart-table-cc table td {
    display: block;
    font-size: 0.8em;
    text-align: right !important;
    width: 100% !important;
    position: relative;
  }
  .cart-section .cart-table-cc table td:before {
    content: attr(data-label);
    text-transform: uppercase;
    position: absolute;
    left: 0;
    top: 50%;
    font-weight: 700;
    transform: translateY(-50%);
  }
  .cart-section .cart-table-cc table td:last-child {
    border-bottom: none;
  }
  .cart-section .cart-table-cc table td.product-quantity .quantity-btn-container {
    margin-left: auto;
  }
}
@media (max-width: 575.98px) {
  .cart-section .cart-table-cc table .product-details {
    padding-top: 50px;
  }
  .cart-section .cart-table-cc table .product-details:before {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
  .cart-section .cart-table-cc table .product-details .product-description {
    text-align: center;
  }
  .cart-section .cart-table-cc table tbody td {
    padding-right: 0 !important;
    font-size: 14px;
  }
  .cart-section .cart-table-cc table tbody .product-image {
    max-width: 200px;
    margin-bottom: 20px;
  }
  .cart-section .cart-table-cc table tbody .product-image picture {
    width: 65%;
  }
  .cart-section .cart-summary {
    margin-top: 0;
    padding: 20px;
  }
  .cart-section .cart-summary h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .cart-section .cart-summary th, .cart-section .cart-summary td {
    font-size: 16px;
  }
  .cart-section .cart-summary .cart_totals .checkout-button {
    font-size: 16px;
  }
}
.checkout-page .checkout-section .custom-col-cc {
  gap: 20px;
}
.checkout-page .checkout-section .custom-col-cc input:not([type=submit]),
.checkout-page .checkout-section .custom-col-cc #billing_country_field,
.checkout-page .checkout-section .custom-col-cc #shipping_country_field {
  background-color: #F6F6F6 !important;
}
.checkout-page .checkout-section .custom-col-cc .left-col {
  max-width: 700px;
  width: 100%;
  flex-shrink: initial;
}
.checkout-page .checkout-section .custom-col-cc .left-col .woocommerce-form-login-toggle {
  padding: 0;
}
.checkout-page .checkout-section .custom-col-cc .left-col .toggle-create-account-cc {
  margin-bottom: 10px;
}
.checkout-page .checkout-section .custom-col-cc .left-col .toggle-create-account-cc .input-container {
  pointer-events: none;
}
.checkout-page .checkout-section .custom-col-cc .left-col .woocommerce-info {
  font-size: 18px;
  margin-bottom: 30px;
}
.checkout-page .checkout-section .custom-col-cc .left-col .woocommerce-billing-fields {
  display: flex;
  flex-wrap: wrap;
}
.checkout-page .checkout-section .custom-col-cc .left-col .woocommerce-billing-fields h3 {
  display: none;
}
.checkout-page .checkout-section .custom-col-cc .left-col .woocommerce-billing-fields input:not([type=submit]),
.checkout-page .checkout-section .custom-col-cc .left-col .woocommerce-billing-fields input:not([type=checkbox]) {
  width: 100%;
}
.checkout-page .checkout-section .custom-col-cc .left-col .woocommerce-billing-fields p {
  display: inline-flex;
}
.checkout-page .checkout-section .custom-col-cc .left-col .woocommerce-billing-fields p,
.checkout-page .checkout-section .custom-col-cc .left-col .woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper,
.checkout-page .checkout-section .custom-col-cc .left-col .woocommerce-billing-fields .woocommerce-input-wrapper {
  width: 100%;
}
.checkout-page .checkout-section .custom-col-cc .left-col .woocommerce-billing-fields #billing_phone_field,
.checkout-page .checkout-section .custom-col-cc .left-col .woocommerce-billing-fields #billing_email_field,
.checkout-page .checkout-section .custom-col-cc .left-col .woocommerce-billing-fields #billing_state_field,
.checkout-page .checkout-section .custom-col-cc .left-col .woocommerce-billing-fields #billing_postcode_field,
.checkout-page .checkout-section .custom-col-cc .left-col .woocommerce-billing-fields #billing_state_field,
.checkout-page .checkout-section .custom-col-cc .left-col .woocommerce-billing-fields #billing_postcode_field {
  width: 50%;
}
.checkout-page .checkout-section .custom-col-cc .left-col .woocommerce-billing-fields #billing_phone_field,
.checkout-page .checkout-section .custom-col-cc .left-col .woocommerce-billing-fields #billing_state_field {
  padding-right: 7.5px;
}
.checkout-page .checkout-section .custom-col-cc .left-col .woocommerce-billing-fields #billing_email_field,
.checkout-page .checkout-section .custom-col-cc .left-col .woocommerce-billing-fields #billing_postcode_field {
  padding-left: 7.5px;
}
.checkout-page .checkout-section .custom-col-cc .left-col .woocommerce-billing-fields #billing_state_field {
  position: relative;
  top: -2px;
}
.checkout-page .checkout-section .custom-col-cc .left-col .woocommerce-account-fields p {
  padding-bottom: 20px;
  margin-bottom: 0;
}
.checkout-page .checkout-section .custom-col-cc .left-col .woocommerce-account-fields input:not([type=submit]) {
  width: 100%;
}
.checkout-page .checkout-section .custom-col-cc .left-col .wc_payment_methods {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.checkout-page .checkout-section .custom-col-cc .left-col input[type=radio] {
  display: inline-block !important;
  background-color: #fff !important;
}
.checkout-page .checkout-section .custom-col-cc .left-col input[type=radio]:checked {
  background-color: #e6332a !important;
}
.checkout-page .checkout-section .custom-col-cc .left-col label {
  cursor: pointer;
}
.checkout-page .checkout-section .custom-col-cc .left-col .payment_box {
  margin-top: 30px;
}
.checkout-page .checkout-section .custom-col-cc .left-col .button {
  position: relative;
  text-transform: capitalize;
  background-color: #e6332a;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 0;
  overflow: hidden;
  padding: 20px 55px;
  border: none;
}
.checkout-page .checkout-section .custom-col-cc .left-col .button:after {
  height: 0;
  left: 50%;
  top: 50%;
  width: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.checkout-page .checkout-section .custom-col-cc .left-col .button:before, .checkout-page .checkout-section .custom-col-cc .left-col .button:after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 2px;
}
.checkout-page .checkout-section .custom-col-cc .left-col .button:hover:after, .checkout-page .checkout-section .custom-col-cc .left-col .button.active:after {
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}
.checkout-page .checkout-section .custom-col-cc .left-col .button:hover, .checkout-page .checkout-section .custom-col-cc .left-col .button:focus {
  box-shadow: none;
}
.checkout-page .checkout-section .custom-col-cc .left-col .button:before, .checkout-page .checkout-section .custom-col-cc .left-col .button:after {
  background-color: #312783;
}
.checkout-page .checkout-section .custom-col-cc .left-col .button:hover {
  color: #fff !important;
}
.checkout-page .checkout-section .custom-col-cc .left-col #billing_country_field,
.checkout-page .checkout-section .custom-col-cc .left-col #shipping_country_field {
  padding: 18px !important;
  cursor: not-allowed;
}
.checkout-page .checkout-section .custom-col-cc .left-col #billing_country_field strong,
.checkout-page .checkout-section .custom-col-cc .left-col #shipping_country_field strong {
  font-weight: 400;
}
.checkout-page .checkout-section .custom-col-cc .left-col .login-form-cc {
  display: none;
}
.checkout-page .checkout-section .custom-col-cc .left-col .login-form-cc form {
  padding-top: 20px;
  padding-bottom: 30px;
}
.checkout-page .checkout-section .custom-col-cc .left-col .login-form-cc button {
  padding: 12px 33px;
}
.checkout-page .checkout-section .custom-col-cc .left-col .login-form-cc .login-form-extra-fields span {
  opacity: 1;
}
.checkout-page .checkout-section .custom-col-cc .left-col .login-form-cc .login-form-extra-fields a {
  opacity: 0.7;
}
.checkout-page .checkout-section .custom-col-cc .left-col .login-form-cc .login-form-extra-fields a:hover {
  opacity: 1;
}
.checkout-page .checkout-section .custom-col-cc .woocommerce-additional-fields h3 {
  display: none;
}
.checkout-page .checkout-section .custom-col-cc .woocommerce-additional-fields textarea {
  height: 158px !important;
}
.checkout-page .checkout-section .custom-col-cc .right-col {
  max-width: 530px;
  width: 100%;
  padding: 40px;
  background-color: #F6F6F6 !important;
}
.checkout-page .checkout-section .custom-col-cc .right-col tr {
  display: flex;
}
.checkout-page .checkout-section .custom-col-cc .right-col td,
.checkout-page .checkout-section .custom-col-cc .right-col th {
  border: none;
  padding: 0;
}
.checkout-page .checkout-section .custom-col-cc .right-col input[type=radio] {
  width: 10px;
  height: 10px !important;
  padding: 10px !important;
}
.checkout-page .checkout-section .custom-col-cc .right-col input[type=radio] + label {
  cursor: pointer;
}
.checkout-page .checkout-section .custom-col-cc .right-col ul li label {
  padding-left: 35px;
}
.checkout-page .checkout-section .custom-col-cc .right-col .cart_item {
  column-gap: 50px;
  margin-bottom: 0;
  border-bottom: solid 1px #D6D6D6;
  padding-top: 30px;
  padding-bottom: 30px;
}
.checkout-page .checkout-section .custom-col-cc .right-col .cart_item .product-image {
  max-width: 120px;
  width: 100%;
  min-height: 115px;
  height: 100%;
  border: solid 1px #D6D6D6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.checkout-page .checkout-section .custom-col-cc .right-col .cart_item .product-image picture {
  border: none;
  width: 70%;
}
.checkout-page .checkout-section .custom-col-cc .right-col .cart_item .product-description .title {
  font-size: 24px;
  margin-bottom: 20px;
}
.checkout-page .checkout-section .custom-col-cc .right-col .cart_item .product-description .product-dimension {
  margin-bottom: 30px;
}
.checkout-page .checkout-section .custom-col-cc .right-col .cart_item .product-price {
  font-size: 18px;
  font-weight: 500;
}
.checkout-page .checkout-section .custom-col-cc .right-col .woocommerce-shipping-totals td {
  font-weight: 400;
}
.checkout-page .checkout-section .custom-col-cc .right-col > h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
.checkout-page .checkout-section .custom-col-cc .right-col tfoot tr {
  padding: 26px 0;
  justify-content: space-between;
  border-bottom: solid 1px #d6d6d6;
  column-gap: 50px;
}
.checkout-page .checkout-section .custom-col-cc .right-col tfoot tr.woocommerce-shipping-totals td {
  font-size: 16px;
}
.checkout-page .checkout-section .custom-col-cc .right-col tfoot tr th, .checkout-page .checkout-section .custom-col-cc .right-col tfoot tr td {
  font-size: 18px;
  font-weight: 400;
  font-family: "Mulish", sans-serif;
}
.checkout-page .checkout-section .custom-col-cc .right-col tfoot tr td {
  font-weight: 800;
  text-align: right;
}
.checkout-page .checkout-section .custom-col-cc .right-col tfoot tr td ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.checkout-page .checkout-section .custom-col-cc .right-col tfoot tr td ul li .woocommerce-Price-amount {
  font-weight: 800;
}
.checkout-page .checkout-section .custom-col-cc .right-col tfoot tr td ul li:not(:last-child) {
  margin-bottom: 10px;
}
.checkout-page .checkout-section .custom-col-cc .right-col tfoot tr td ul li label {
  font-size: 16px;
}
.checkout-page .checkout-section .custom-col-cc .right-col tfoot tr td strong {
  font-weight: 800;
}
.checkout-page .checkout-section .custom-col-cc .right-col .woocommerce-checkout-payment .payment_methods {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 20px;
}
.checkout-page .checkout-section .custom-col-cc .right-col .woocommerce-checkout-payment .payment_methods li .payment_box {
  padding-left: 40px;
  margin-top: 10px;
}
.checkout-page .checkout-section .custom-col-cc .right-col .woocommerce-checkout-payment .payment_methods li .payment_box p:last-of-type {
  margin-bottom: 0;
}
.checkout-page .checkout-section .custom-col-cc .right-col .woocommerce-checkout-payment .payment_methods li input[type=radio] {
  display: inherit !important;
}
.checkout-page .checkout-section .custom-col-cc .right-col .woocommerce-checkout-payment .payment_methods li label {
  font-weight: 700;
}
.checkout-page .checkout-section .custom-col-cc .right-col .woocommerce-checkout-payment .woocommerce-privacy-policy-text {
  margin-top: 20px;
  margin-bottom: 20px;
}

@media (max-width: 1499.98px) {
  .checkout-page .checkout-section .custom-col-cc .left-col .button {
    padding: 15px 30px;
  }
}
@media (max-width: 1299.98px) {
  .checkout-section .left-col {
    max-width: 60% !important;
  }
  .checkout-section .right-col {
    padding: 30px !important;
    max-width: 40% !important;
  }
  .checkout-section .right-col .product-image .icon-title {
    padding: 5px !important;
  }
}
@media (max-width: 1199.98px) {
  .checkout-section .custom-col-cc {
    flex-direction: column-reverse;
  }
  .checkout-section .left-col {
    max-width: 100% !important;
  }
  .checkout-section .right-col {
    max-width: 50% !important;
  }
}
@media (max-width: 991.98px) {
  .checkout-section .right-col {
    max-width: 100% !important;
  }
}
@media (max-width: 575.98px) {
  .checkout-section .custom-col-cc {
    padding: 0 !important;
  }
  .checkout-section .right-col .product-single .top-col {
    flex-direction: column;
    column-gap: 0;
    row-gap: 30px;
  }
}
.woocommerce-shipping-fields #ship-to-different-address > label input[type=checkbox] {
  margin-top: 0 !important;
}

.woocommerce-shipping-fields__field-wrapper #shipping_phone_field,
.woocommerce-shipping-fields__field-wrapper #shipping_email_field {
  width: 50%;
}

.woocommerce-shipping-fields input:not([type=checkbox]) {
  width: 100%;
}
.woocommerce-shipping-fields p#shipping_phone_field, .woocommerce-shipping-fields p#shipping_email_field, .woocommerce-shipping-fields p#shipping_state_field, .woocommerce-shipping-fields p#shipping_postcode_field {
  display: inline-flex;
  width: 50%;
}
.woocommerce-shipping-fields p#shipping_phone_field .woocommerce-input-wrapper, .woocommerce-shipping-fields p#shipping_email_field .woocommerce-input-wrapper, .woocommerce-shipping-fields p#shipping_state_field .woocommerce-input-wrapper, .woocommerce-shipping-fields p#shipping_postcode_field .woocommerce-input-wrapper {
  width: 100%;
}
.woocommerce-shipping-fields p#shipping_phone_field, .woocommerce-shipping-fields p#shipping_state_field {
  padding-right: 7.5px;
}
.woocommerce-shipping-fields p#shipping_email_field, .woocommerce-shipping-fields p#shipping_postcode_field {
  padding-left: 7.5px;
}

.woocommerce-customer-details {
  margin-top: 30px;
}
.woocommerce-customer-details h2 {
  text-transform: capitalize;
  font-weight: 700;
  font-size: 22px;
}
.woocommerce-customer-details .woocommerce-columns {
  display: flex;
}
.woocommerce-customer-details .woocommerce-column {
  width: 50%;
}
.woocommerce-customer-details .woocommerce-customer-details--phone {
  margin-bottom: 0;
}

.woocommerce-order-details h2 {
  text-transform: capitalize;
}
.woocommerce-order-details table .tax_label {
  display: none;
}
.woocommerce-order-details table tbody tr td {
  text-align: center;
}

@media (max-width: 767.98px) {
  .woocommerce-customer-details .woocommerce-columns {
    flex-direction: column;
  }
  .woocommerce-customer-details .woocommerce-columns .woocommerce-column {
    width: 100%;
  }
}
.get-in-touch-section .custom-col-cc {
  column-gap: 60px;
}
.get-in-touch-section .left-col {
  max-width: 450px;
  width: 100%;
}
.get-in-touch-section .right-col {
  max-width: 750px;
  width: 100%;
}
.get-in-touch-section .address-single {
  column-gap: 30px;
  border-left: solid 5px #e6332a;
  background-color: #F6F6F6;
  padding: 25px;
  margin-top: 25px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.get-in-touch-section .address-single .icon {
  width: 70px;
  height: 70px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  border-radius: 100%;
  flex-shrink: 0;
  font-size: 26px;
  background-color: #e6332a;
  color: #fff;
}
.get-in-touch-section .address-single .title {
  font-weight: 700;
  font-size: 20px;
}
.get-in-touch-section .address-single p {
  font-size: 14px;
  font-weight: 500;
}
.get-in-touch-section .address-single .content a {
  color: #312783;
  text-decoration: none;
}
.get-in-touch-section .address-single .content a:hover {
  text-decoration: underline;
}
.get-in-touch-section .address-single:hover {
  background-color: #e6332a;
}
.get-in-touch-section .address-single:hover .title,
.get-in-touch-section .address-single:hover p,
.get-in-touch-section .address-single:hover a {
  color: #fff !important;
}
.get-in-touch-section .address-single:hover .icon {
  background-color: #fff;
  color: #e6332a;
}
.get-in-touch-section .address-single .social-media-cc {
  row-gap: 15px;
  flex-wrap: wrap;
}
.get-in-touch-section .address-single .social-media-single {
  border: solid 1px #312783;
}
.get-in-touch-section .address-single .social-media-single:hover {
  color: #312783;
}
.get-in-touch-section .address-single.social-icons .title {
  color: #e6332a;
  max-width: 19%;
}

@media (max-width: 1199.98px) {
  .get-in-touch-section .address-single .icon {
    width: 60px;
    height: 60px;
  }
  .get-in-touch-section .address-single.social-icons {
    flex-direction: column;
    align-items: flex-start !important;
    justify-content: center;
    row-gap: 20px;
  }
  .get-in-touch-section .address-single.social-icons .title {
    max-width: 100%;
  }
}
.contact-form-section .custom-col-cc .left-col .forminator-input,
.contact-form-section .custom-col-cc .left-col .forminator-textarea {
  background-color: #F6F6F6 !important;
}
.contact-form-section .custom-col-cc .left-col .subtitle {
  padding-left: 0;
  font-size: 20px;
  margin-bottom: 10px;
}
.contact-form-section .custom-col-cc .left-col .subtitle:before, .contact-form-section .custom-col-cc .left-col .subtitle:after {
  display: none;
}
.contact-form-section .custom-col-cc .left-col .forminator-ui .forminator-button-submit {
  padding: 20px 40px !important;
}

@media (min-width: 1200px) {
  .contact-form-section .custom-col-cc .left-col {
    max-width: 52%;
  }
  .contact-form-section .custom-col-cc .right-col {
    max-width: 48%;
  }
  .contact-form-section .custom-col-cc .right-col picture {
    position: relative;
    top: -40px;
  }
}
@media (min-width: 1450px) {
  .contact-form-section .custom-col-cc .left-col {
    max-width: 670px;
  }
}
@media (max-width: 1199.98px) {
  .contact-form-section .custom-col-cc .right-col {
    margin-top: 20px;
  }
}
.map-section {
  z-index: 0;
  padding-bottom: 110px;
}
.map-section .nav .nav-item:not(:last-child) {
  margin-right: 1px;
}
.map-section:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  left: 0;
  bottom: -1px;
  background-color: #e6332a;
  z-index: -1;
}
.map-section .tab-content .tab-pane iframe {
  min-height: 700px;
}
.map-section + .newsletter-section {
  padding-top: 10px;
}

@media (max-width: 1299.98px) {
  .map-section {
    padding-bottom: 80px;
  }
  .map-section .tab-content .tab-pane iframe {
    min-height: 500px;
  }
}
@media (max-width: 1199.98px) {
  .map-section {
    padding-bottom: 60px;
  }
}
@media (max-width: 991.98px) {
  .map-section {
    padding-bottom: 40px;
  }
  .map-section .tab-content .tab-pane iframe {
    min-height: 400px;
  }
}
@media (max-width: 575.98px) {
  .map-section ul li .btn {
    padding: 15px !important;
    font-size: 16px;
  }
}
@media (max-width: 399.98px) {
  .map-section ul li .btn {
    font-size: 14px;
  }
}
.page-template-get-a-quote .custom-col-cc.top-col .section-title {
  margin-bottom: 30px;
}
.page-template-get-a-quote .business-partners-section {
  padding-bottom: 80px;
}

.request-a-quote-section {
  padding-bottom: 0;
}
.request-a-quote-section .forminator-checkbox:hover .forminator-checkbox-image {
  border-color: #e6332a !important;
  background-color: transparent !important;
}
.request-a-quote-section .forminator-action-buttons {
  margin-top: 20px !important;
}
.request-a-quote-section .forminator-action-buttons .forminator-repeater-action-button:not(:last-of-type) {
  margin-right: 15px !important;
}
.request-a-quote-section .show-checkbox .forminator-checkbox-box {
  border-color: transparent !important;
  display: block !important;
  margin-right: 10px;
}
.request-a-quote-section .show-checkbox .forminator-checkbox-box:before {
  color: #e6332a !important;
}
.request-a-quote-section .show-checkbox a {
  color: #312783;
}
.request-a-quote-section .forminator-checkbox-box {
  display: none !important;
}
.request-a-quote-section .forminator-checkbox-label {
  margin-left: 0 !important;
}
.request-a-quote-section .forminator-checkbox input:checked ~ .forminator-checkbox-image {
  border-color: #e6332a !important;
  background-color: transparent !important;
}

.careers-form-section .custom-col-cc {
  column-gap: 35px;
}
.careers-form-section .custom-col-cc .left-col {
  max-width: 860px;
}
.careers-form-section .custom-col-cc .left-col .forminator-field .forminator-datepicker {
  padding-left: 20px !important;
}
.careers-form-section .custom-col-cc .left-col .forminator-row-last {
  margin-top: 50px;
}
.careers-form-section .custom-col-cc .right-col {
  max-width: 400px;
}
.careers-form-section .custom-col-cc .right-col .current-openings-cc .current-opening-single {
  background-color: #F6F6F6;
  padding: 20px;
}
.careers-form-section .custom-col-cc .right-col .current-openings-cc .current-opening-single .title {
  font-size: 24px;
}
.careers-form-section .custom-col-cc .right-col .current-openings-cc .current-opening-single:not(:last-of-type) {
  margin-bottom: 30px;
}

.blog-posts-section {
  padding-bottom: 70px;
}

.blog-post-single {
  margin-bottom: 30px;
}
.blog-post-single:hover .post-image {
  background-size: 170%;
}
.blog-post-single .post-image {
  margin-bottom: 15px;
  position: relative;
  min-height: 270px;
  z-index: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 150%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  overflow: hidden;
}
.blog-post-single .post-image a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.blog-post-single .post-details a {
  text-decoration: none;
}
.blog-post-single .post-details a:hover .title {
  color: #e6332a;
}
.blog-post-single .post-details .title {
  font-size: 26px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.blog-post-single .post-details .btn {
  margin-top: 15px;
  padding: 15px;
  font-size: 16px;
}
.blog-post-single .post-details .post-title {
  margin-bottom: 15px;
}

.blog-details-section .content-cc .title {
  margin-bottom: 30px;
}
.blog-details-section .content-cc .featured-image {
  margin-bottom: 15px;
}
.blog-details-section .content-cc blockquote {
  padding-top: 30px;
  padding-right: 75px;
  padding-bottom: 30px;
  padding-left: 90px;
  margin-top: 25px;
  margin-bottom: 25px;
  background-color: #F6F6F6;
  font-size: 18px;
  line-height: 28px;
  color: #312783;
  position: relative;
}
.blog-details-section .content-cc blockquote a {
  text-decoration: none;
}
.blog-details-section .content-cc blockquote a:hover {
  text-decoration: underline;
}
.blog-details-section .content-cc blockquote * {
  font-weight: 400;
  font-style: italic;
}
.blog-details-section .content-cc blockquote:before {
  content: "\f10d";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  font-size: 37px;
  line-height: 1;
  top: 31px;
  left: 21px;
  font-style: italic;
  font-weight: 900;
}
.blog-details-section .content-cc h1, .blog-details-section .content-cc h2, .blog-details-section .content-cc h3, .blog-details-section .content-cc h4, .blog-details-section .content-cc h5, .blog-details-section .content-cc h6 {
  font-weight: 800;
}

@media (max-width: 1199.98px) {
  .blog-posts-section {
    padding-bottom: 30px;
  }
  .blog-post-single .post-details .title {
    font-size: 24px;
  }
}
@media (max-width: 991.98px) {
  .blog-posts-section {
    padding-bottom: 10px;
  }
  .blog-post-single .post-details .title {
    font-size: 22px;
  }
}
.my-account-form-section {
  background-color: #F6F6F6;
  padding: 70px;
}
.my-account-form-section .nav-tabs {
  display: none;
}
.my-account-form-section .tab-pane {
  max-width: 900px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.my-account-form-section .tab-pane#login-tab-pane, .my-account-form-section .tab-pane#lost-password-tab-pane {
  max-width: 440px;
}
.my-account-form-section .tab-pane .title {
  margin-bottom: 40px;
}
.my-account-form-section .tab-pane .btn {
  margin-bottom: 30px;
  margin-top: 30px;
  max-width: 440px;
  width: 100%;
}

.wc-form input[type=text],
.wc-form input[type=password],
.wc-form input[type=email],
.wc-form input[type=number],
.wc-form input[type=tel] {
  background-color: #fff !important;
  width: 100%;
}
.wc-form.field-bg-grey input:not([type=submit]) {
  background-color: #F6F6F6 !important;
}
.wc-form .login-form-extra-fields {
  margin-top: 15px;
  margin-bottom: 15px;
}
.wc-form .login-form-extra-fields a {
  color: #312783;
  text-decoration: none;
  opacity: 0.7;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.wc-form .login-form-extra-fields a:hover {
  text-decoration: underline;
  opacity: 1;
}
.wc-form .login-form-extra-fields span {
  font-size: 16px;
  color: #312783;
  opacity: 0.7;
}
.wc-form .input-container {
  position: relative;
}
.wc-form .input-container:not(:last-of-type) {
  margin-bottom: 15px;
}
.wc-form .input-container + label.error,
.wc-form .input-container label.error {
  background-color: #f8d7da;
  color: #58151c;
  font-weight: 500;
  font-size: 12px;
  display: block;
  margin-top: 5px;
  text-align: left;
  padding: 5px 10px;
}

.password-rest-email-sent-section .woocommerce-message {
  font-size: 24px;
  font-weight: 800;
}

.woocommerce-MyAccount-navigation {
  margin-bottom: 50px;
}
.woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding-left: 0;
}
.woocommerce-MyAccount-navigation ul li {
  display: inline-block;
}
.woocommerce-MyAccount-navigation ul li.is-active a {
  border: solid 2px #e6332a;
  background-color: #e6332a;
  color: #fff;
}
.woocommerce-MyAccount-navigation ul li a {
  text-decoration: none;
  padding: 10px;
  border: solid 2px #e6332a;
  background-color: #fff;
  color: #e6332a;
  display: block;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.woocommerce-MyAccount-navigation ul li a:hover {
  background-color: #e6332a;
  color: #fff;
}

.woocommerce-MyAccount-content input:not([type=submit]) {
  width: 100%;
}
.woocommerce-MyAccount-content .button {
  margin-top: 30px;
  display: inline-block;
}
.woocommerce-MyAccount-content .woocommerce-notices-wrapper {
  padding: 0 !important;
}

.woocommerce-address-fields p > label,
.woocommerce-EditAccountForm p > label {
  display: none;
}

.woocommerce-Address-title h3 {
  font-size: 22px;
}
.woocommerce-Address-title .btn {
  padding: 10px 30px;
}

.password-rest-email-sent-section .wc-block-components-notice-banner {
  justify-content: center;
}
.password-rest-email-sent-section .wc-block-components-notice-banner__content {
  flex-basis: auto !important;
}
.password-rest-email-sent-section .wc-block-components-notice-banner__content ul {
  margin: 0;
}

.reset-password-section .title {
  font-size: 30px;
  margin-bottom: 15px;
}
.reset-password-section input[type=password] {
  width: 100%;
}
.reset-password-section .btn {
  margin-top: 50px;
}

@media (max-width: 767.98px) {
  .my-account-form-section {
    padding: 30px !important;
  }
  .my-account-form-section .styled-checkbox {
    flex-direction: column;
    align-items: flex-start !important;
    row-gap: 15px !important;
  }
  .my-account-form-section .tab-pane .btn {
    margin-top: 15px !important;
  }
  .woocommerce-MyAccount-navigation ul li {
    margin-bottom: 10px;
  }
  .woocommerce-MyAccount-navigation ul li:not(:last-child) {
    margin-right: 5px;
  }
}
@media (max-width: 575.98px) {
  .my-account-form-section #signup-tab-pane form > .row > div {
    padding-left: 8px;
    padding-right: 8px;
  }
  .my-account-form-section #signup-tab-pane .styled-checkbox {
    flex-direction: row;
  }
  .woocommerce-MyAccount-orders.shop_table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .woocommerce-MyAccount-orders.shop_table tr {
    display: block;
    margin-bottom: 20px;
  }
  .woocommerce-MyAccount-orders.shop_table td {
    display: block;
    text-align: right;
    border-color: #D6D6D6;
  }
  .woocommerce-MyAccount-orders.shop_table td:not(:last-child) {
    border-bottom: none;
  }
  .woocommerce-MyAccount-orders.shop_table td:before {
    content: attr(data-title);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }
  .user-account-address-section .container {
    padding-left: 0;
    padding-right: 0;
  }
  .user-account-address-section .container > .row > div {
    padding-left: 0;
    padding-right: 0;
  }
  .reset-password-section .container {
    padding-left: 0;
    padding-right: 0;
  }
  .reset-password-section .title {
    font-size: 22px;
  }
  .reset-password-section input[type=password] {
    margin-top: 15px;
  }
}
.single-product .woocommerce-breadcrumb {
  display: none;
}

.cleaning-packages-list-section {
  padding-bottom: 70px;
}

.cleaning-packages-cc {
  margin-top: 30px;
  column-gap: 15px;
}
.cleaning-packages-cc .cleaning-package-single {
  background-color: #F6F6F6;
  width: 23.9%;
  margin-bottom: 30px;
  align-self: start;
}
.cleaning-packages-cc .cleaning-package-single .included-service {
  padding: 20px;
  height: 430px;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: #e6332a transparent;
}
.cleaning-packages-cc .cleaning-package-single .included-service::-webkit-scrollbar {
  width: 12px;
}
.cleaning-packages-cc .cleaning-package-single .included-service::-webkit-scrollbar-track {
  background-color: transparent;
}
.cleaning-packages-cc .cleaning-package-single .included-service::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 20px;
  border: 3px solid #e6332a;
}
.cleaning-packages-cc .cleaning-package-single .included-service .sub-title:not(:first-of-type) {
  margin-top: 15px;
}
.cleaning-packages-cc .cleaning-package-single .included-service .sub-title p {
  font-size: 18px;
  line-height: 1.2;
}
.cleaning-packages-cc .cleaning-package-single .included-service ul {
  position: relative;
  list-style: none;
}
.cleaning-packages-cc .cleaning-package-single .included-service ul li {
  position: relative;
  padding-left: 15px;
  font-size: 13px;
}
.cleaning-packages-cc .cleaning-package-single .included-service ul li:not(:last-child) {
  margin-bottom: 10px;
}
.cleaning-packages-cc .cleaning-package-single .included-service ul li:before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 13px;
  position: absolute;
  left: 0;
  top: 0;
}
.cleaning-packages-cc .cleaning-package-single .title {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cleaning-packages-cc .cleaning-package-single .price {
  background-color: #e6332a;
  color: #fff;
  padding: 20px;
  position: relative;
}
.cleaning-packages-cc .cleaning-package-single .price:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #F6F6F6;
}
.cleaning-packages-cc .cleaning-package-single .btn {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
}

.cleaning-services-page .why-choose-us-section {
  background-color: #F6F6F6;
}
.cleaning-services-page .why-choose-us-section .why-choose-us-cc {
  max-width: 1000px;
  width: 100%;
}
.cleaning-services-page .why-choose-us-section .why-choose-us-single {
  margin-top: 50px;
}
.cleaning-services-page .why-choose-us-section .why-choose-us-single .icon {
  width: 143px;
  height: 143px;
  background-color: #e6332a;
  border-radius: 100%;
}
.cleaning-services-page .why-choose-us-section .why-choose-us-single .icon picture {
  width: 50%;
}
.cleaning-services-page .why-choose-us-section .why-choose-us-single p {
  margin-top: 30px;
  font-size: 20px;
  font-weight: 600;
}

@media (max-width: 1399.98px) {
  .cleaning-package-single .price h5 {
    font-size: 18px;
  }
}
@media (max-width: 1299.98px) {
  .cleaning-packages-list-section {
    padding-bottom: 50px;
  }
}
@media (max-width: 1199.98px) {
  .cleaning-packages-list-section {
    padding-bottom: 30px;
  }
  .cleaning-packages-cc .cleaning-package-single {
    width: 32%;
  }
  .cleaning-services-page .why-choose-us-section .why-choose-us-single {
    margin-top: 20px;
  }
}
@media (max-width: 991.98px) {
  .cleaning-packages-list-section {
    padding-bottom: 10px;
  }
  .cleaning-packages-cc {
    margin-top: 10px;
  }
  .cleaning-packages-cc .cleaning-package-single {
    width: 48%;
  }
  cleaning-services-page .why-choose-us-section .why-choose-us-single .icon {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 767.98px) {
  .cleaning-packages-list-section .cleaning-packages-section-bottom-content p {
    font-size: 26px;
  }
}
@media (max-width: 575.98px) {
  .cleaning-packages-list-section .cleaning-packages-section-bottom-content p {
    font-size: 22px;
  }
  .cleaning-packages-cc .cleaning-package-single {
    width: 100%;
  }
}
.woocommerce .woocommerce-notices-wrapper:not(:empty) {
  margin-bottom: 30px;
}
.woocommerce .woocommerce-notices-wrapper .woocommerce-info,
.woocommerce .woocommerce-notices-wrapper .woocommerce-message {
  background-color: #cfe2ff;
  color: #052c65;
  border: solid 1px #9ec5fe;
}
.woocommerce .woocommerce-notices-wrapper .woocommerce-message {
  padding: 10px;
}
.woocommerce .woocommerce-notices-wrapper .woocommerce-error {
  padding: 10px;
  list-style: none;
  background-color: #f8d7da;
  color: #58151c;
  border: solid 1px #f1aeb5;
}
.woocommerce > div > div[class*=woocommerce-]:not(:empty) {
  padding: 10px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
.processing {
  background-color: rgba(255, 255, 255, 0.1) !important;
  opacity: 0.5 !important;
}

.blockUI {
  opacity: 1 !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
}
.blockUI.blockOverlay {
  position: relative !important;
  z-index: 9 !important;
  opacity: 1 !important;
}
.blockUI.blockOverlay:before {
  animation: spin 0.6s linear infinite;
  border-bottom: 3px solid rgba(0, 0, 0, 0.1) !important;
  border-left: 3px solid #e6332a;
  border-radius: 50%;
  border-right: 3px solid rgba(0, 0, 0, 0.1) !important;
  border-top: 3px solid rgba(0, 0, 0, 0.1) !important;
  content: "";
  display: block;
  font-size: 2em;
  height: 30px;
  left: 50%;
  line-height: 1;
  margin-left: -0.5em;
  margin-top: -0.5em;
  pointer-events: none;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 30px;
}

.select2-container .select2-dropdown {
  background-color: #E6E6E6;
  border: none;
}
.select2-container .select2-dropdown ul li.select2-results__option--highlighted {
  background-color: #e6332a;
}
.select2-container .select2-search .select2-search__field {
  padding: 10px !important;
}

.gallery-section {
  padding-bottom: 70px;
}
.gallery-section .gallery-single {
  overflow: hidden;
  margin-bottom: 25px;
}
.gallery-section .gallery-single a {
  width: 100%;
  height: 300px;
  display: block;
}
.gallery-section .gallery-single a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.gallery-section .gallery-single:hover img {
  transform: scale(1.1);
}

@media (max-width: 1299.98px) {
  .gallery-section {
    padding-bottom: 55px;
  }
}
@media (max-width: 1199.98px) {
  .gallery-section {
    padding-bottom: 35px;
  }
}
@media (max-width: 991.98px) {
  .gallery-section {
    padding-bottom: 15px;
  }
}
.terms-and-conditions-page ul {
  padding-top: 10px;
  list-style: none;
}
.terms-and-conditions-page .title {
  font-size: 26px;
}

.request-a-quote-section {
  padding-bottom: 60px;
  z-index: 0;
}
.request-a-quote-section .section-title {
  margin-bottom: 50px;
}
.request-a-quote-section .forminator-row .forminator-description,
.request-a-quote-section .forminator-row .forminator-label {
  font-size: 14px !important;
}
.request-a-quote-section .forminator-button:hover,
.request-a-quote-section .forminator-button:focus {
  box-shadow: none !important;
}
.request-a-quote-section .custom-col-cc {
  border-radius: 5px;
  background-color: #F6F6F6;
  padding: 70px;
  flex-direction: column;
}
.request-a-quote-section .custom-col-cc .forminator-ui .forminator-field .forminator-input,
.request-a-quote-section .custom-col-cc .forminator-ui .forminator-field .forminator-textarea {
  background-color: #fff !important;
}
.request-a-quote-section .custom-col-cc .forminator-ui .forminator-field .forminator-input-with-prefix input {
  background-color: #fff !important;
  flex: 0;
}
.request-a-quote-section .custom-col-cc .forminator-ui .forminator-field .forminator-input-with-prefix .forminator-suffix {
  margin-left: 0;
}
.request-a-quote-section .custom-col-cc .forminator-ui .selection .select2-selection.select2-selection--single {
  background-color: #fff !important;
}
.request-a-quote-section .forminator-ui .forminator-field .forminator-input,
.request-a-quote-section .forminator-ui .forminator-field .forminator-textarea {
  font-weight: 600 !important;
}
.request-a-quote-section + .newsletter-section {
  padding-top: 10px;
}

@media (max-width: 1199.98px) {
  .request-a-quote-section {
    padding-bottom: 40px;
  }
}
@media (max-width: 767.98px) {
  .request-a-quote-section .custom-col-cc {
    padding: 20px;
  }
}
.newsletter-section .custom-col-cc {
  column-gap: 130px;
}
.newsletter-section .left-col {
  max-width: 690px;
}
.newsletter-section .right-col {
  max-width: 480px;
}
.newsletter-section .forminator-ui {
  position: relative;
  margin: 0 !important;
}
.newsletter-section .forminator-ui .forminator-row {
  margin: 0 !important;
}
.newsletter-section .forminator-ui .forminator-row .forminator-col {
  padding: 0 !important;
}
.newsletter-section .forminator-ui .forminator-field .forminator-input {
  max-width: calc(100% - 158px) !important;
  padding: 19px 20px 20px !important;
  border: none !important;
}
.newsletter-section .forminator-ui .forminator-button-submit {
  font-size: 16px !important;
  background-color: #312783 !important;
  border: solid 2px #312783 !important;
  color: #fff !important;
  padding: 20px 40px !important;
  border-radius: 0 !important;
  position: absolute !important;
  top: 0;
  right: 0;
  max-width: 158px !important;
  width: 100% !important;
}
.newsletter-section .forminator-ui .forminator-button-submit:before, .newsletter-section .forminator-ui .forminator-button-submit:after {
  border-radius: 0;
}
.newsletter-section .forminator-ui .forminator-button-submit:hover {
  color: #312783 !important;
  box-shadow: none !important;
}
.newsletter-section .forminator-ui .forminator-response-message {
  position: absolute !important;
  top: 65px;
  width: 100%;
  left: 0;
}

@media (max-width: 1399.98px) {
  .newsletter-section .left-col {
    max-width: 510px;
  }
  .newsletter-section .forminator-ui .forminator-field .forminator-input {
    max-width: calc(100% - 220px) !important;
    margin-right: 158px !important;
    margin-left: auto !important;
  }
}
@media (max-width: 1199.98px) {
  .newsletter-section .left-col .title,
  .newsletter-section .left-col .content {
    text-align: center;
  }
  .newsletter-section .forminator-ui {
    max-width: 500px;
    width: 100%;
    margin-top: 30px !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .newsletter-section .forminator-ui .forminator-field .forminator-input {
    max-width: 100% !important;
    margin-right: auto !important;
  }
}
@media (max-width: 575.98px) {
  .newsletter-section .forminator-ui .forminator-field .forminator-input {
    max-width: 100% !important;
  }
  .newsletter-section .forminator-ui .forminator-button-submit {
    position: relative !important;
    margin-top: 10px !important;
  }
  .newsletter-section .forminator-ui .forminator-row-last {
    text-align: center;
  }
}
.quick-links-section .custom-col-cc li.current-menu-item a {
  color: #e6332a;
}
.quick-links-section .left-col,
.quick-links-section .right-col {
  max-width: 255px;
  width: 100%;
}
.quick-links-section .left-col ul,
.quick-links-section .right-col ul {
  list-style: none;
  padding-left: 0;
}
.quick-links-section .left-col ul li:not(:last-child),
.quick-links-section .right-col ul li:not(:last-child) {
  margin-bottom: 20px;
}
.quick-links-section .left-col ul li a,
.quick-links-section .right-col ul li a {
  text-decoration: none;
}
.quick-links-section .left-col ul li a:hover,
.quick-links-section .right-col ul li a:hover {
  text-decoration: underline;
}
.quick-links-section .center-col {
  max-width: 775px;
  width: 100%;
  border-left: dotted 1px #959595;
  border-right: dotted 1px #959595;
  padding-right: 95px;
  padding-left: 95px;
}
.quick-links-section .center-col .content {
  margin-bottom: 60px;
}
.quick-links-section .center-col > p {
  margin-bottom: 4px;
}
.quick-links-section .center-col > p a {
  text-decoration: none;
}
.quick-links-section .center-col > p a:hover {
  text-decoration: underline;
}
.quick-links-section .center-col .working-hours {
  display: flex;
  align-items: center;
  max-width: 315px;
  width: 100%;
  margin-top: 25px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  border-radius: 4px;
  border: solid 1px #fff;
}
.quick-links-section .center-col .working-hours .icon {
  margin-right: 20px;
}
.quick-links-section .right-col {
  text-align: right;
}
.quick-links-section .right-col .featured-in-logo {
  max-width: 150px;
  margin-left: auto;
}
.quick-links-section .title {
  font-size: 24px;
  margin-bottom: 50px;
}
.quick-links-section .quick-links-logo {
  margin-bottom: 20px;
  max-width: 260px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.book-now-section {
  position: relative;
  z-index: 999;
}
.book-now-section .modal-body {
  padding-bottom: 0;
}
.book-now-section .modal-title {
  line-height: 1.2;
}
.book-now-section .btn-close {
  background-color: transparent !important;
  margin-top: -30px;
}
.book-now-section .btn-close:focus {
  box-shadow: none;
}

@media (max-width: 1199.98px) {
  .quick-links-section .custom-col-cc {
    flex-direction: row;
  }
  .quick-links-section .left-col,
  .quick-links-section .right-col {
    max-width: 25% !important;
  }
  .quick-links-section .center-col {
    max-width: 50% !important;
    padding-right: 35px;
    padding-left: 35px;
  }
  .quick-links-section .center-col .working-hours .icon {
    max-width: 35px;
    width: 100%;
  }
}
@media (max-width: 991.98px) {
  .quick-links-section .mobile-quick-links-content {
    border: none;
    border-bottom: solid 1px #959595;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 50px;
    padding-left: 0px;
    margin-bottom: 30px;
    max-width: 100% !important;
  }
}
@media (max-width: 767.98px) {
  .quick-links-section .quick-links-logo {
    max-width: 220px;
  }
  .quick-links-section .left-col,
  .quick-links-section .right-col {
    max-width: 50% !important;
  }
}
.credits-section {
  background-color: #353535;
  padding-top: 30px;
  padding-bottom: 30px;
}
.credits-section .left-col {
  max-width: 50%;
}
.credits-section .right-col {
  text-align: right;
  max-width: 50%;
}
.credits-section .right-col ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.credits-section .right-col ul li {
  display: inline-block;
}
.credits-section .right-col ul li:not(:last-child) {
  margin-right: 75px;
}
.credits-section .right-col ul li.current-menu-item a {
  color: #e6332a;
}
.credits-section .right-col ul li a {
  color: #fff;
  text-decoration: none;
}
.credits-section .right-col ul li a:hover {
  text-decoration: underline;
}

@media (max-width: 1199.98px) {
  .credits-section .custom-col-cc {
    flex-direction: row;
  }
  .credits-section .custom-col-cc .left-col {
    flex-shrink: initial;
  }
}
@media (max-width: 991.98px) {
  .credits-section .right-col ul li:not(:last-child) {
    margin-right: 30px;
  }
}
@media (max-width: 575.98px) {
  .credits-section .custom-col-cc {
    flex-direction: column-reverse;
    row-gap: 10px;
  }
  .credits-section .custom-col-cc .left-col,
  .credits-section .custom-col-cc .right-col {
    text-align: center;
  }
  .credits-section .custom-col-cc .left-col p {
    font-size: 14px;
  }
}

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