:root {
  --primary-color: #021623;
  --secondary-color: #ffffff;
  --bg-color: #f5f5f5;
  --text-color: #535353;
  --accent-color: #f9ba3099;
  --white-color: #ffffff;
  --divider-color: #0216231a;
  --dark-divider-color: #ffffff1a;
  --error-color: rgb(230, 87, 87);
  --default-font: "DM Sans", sans-serif;
  --accent-font: "Apfel Grotezk";
}
html,
body {
  width: 100%;
  overflow-x: clip;
}
body {
  font-family: var(--default-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1em;
  color: var(--text-color);
  background: var(--bg-color);
}
::-webkit-scrollbar-track {
  background-color: var(--primary-color);
  border-left: 1px solid var(--primary-color);
}
::-webkit-scrollbar {
  width: 7px;
  background-color: var(--accent-color);
}
::-webkit-scrollbar-thumb {
  background: var(--accent-color);
}
::selection {
  color: var(--white-color);
  background-color: var(--accent-color);
  filter: invert(1);
}
p {
  line-height: 1.6em;
  margin-bottom: 1.5em;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--accent-font);
  font-weight: 500;
  line-height: 1.2em;
  color: var(--primary-color);
  letter-spacing: -0.02em;
  margin: 0;
}
figure {
  margin: 0;
}
img {
  max-width: 100%;
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  outline: 0;
}
a:focus {
  text-decoration: none;
  outline: 0;
}
.container {
  max-width: 1300px;
}
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  padding-right: 15px;
  padding-left: 15px;
}
.image-anime {
  position: relative;
  overflow: hidden;
}
.image-anime:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}
.image-anime:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}
.reveal {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  visibility: hidden;
  overflow: hidden;
}
.reveal img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform-origin: left;
  transform-origin: left;
}
.row {
  margin-right: -15px;
  margin-left: -15px;
}
.row > * {
  padding-right: 15px;
  padding-left: 15px;
}
.row.no-gutters {
  margin-right: 0px;
  margin-left: 0px;
}
.row.no-gutters > * {
  padding-right: 0px;
  padding-left: 0px;
}
.btn-default {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1em;
  text-transform: capitalize;
  background: var(--accent-color);
  color: var(--white-color);
  border-radius: 100px;
  padding: 17px 55px 17px 20px;
  border: none;
  overflow: hidden;
  box-shadow: none;
  outline: none;
  transition: all 0.4s ease-in-out;
  z-index: 0;
}
.btn-default::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  width: 40px;
  height: 40px;
  transform: translateY(-50%);
  background-color: var(--white-color);
  background-image: url("../images/arrow-primary.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px auto;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
}
.btn-default::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  background: var(--primary-color);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
.btn-default:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}
.btn-default.btn-highlighted:hover {
  color: var(--primary-color);
}
.btn-default.btn-highlighted:hover:before {
  background-color: var(--primary-color);
  background-image: url("../images/arrow-white.svg");
}
.btn-default.btn-highlighted::after {
  background-color: var(--white-color);
}
.btn-submit-wrapper {
  position: relative;
  display: inline-block;
  text-transform: capitalize;
  background: var(--accent-color);
  border-radius: 100px;
  padding: 0 55px 0 20px;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  z-index: 0;
}
.btn-submit-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  width: 40px;
  height: 40px;
  transform: translateY(-50%);
  background-color: var(--white-color);
  background-image: url("../images/arrow-primary.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px auto;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
}
.btn-submit-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  background: var(--primary-color);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
.btn-submit-wrapper:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}
.zcwf_button:hover {
  color: var(--primary-color);
}
.btn-submit-wrapper:hover:before {
  background-color: var(--primary-color);
  background-image: url("../images/arrow-white.svg");
}
.btn-submit-wrapper::after {
  background-color: var(--white-color);
}
.zcwf_button {
  height: 52px;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 1em;
}
.readmore-btn {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25em;
  text-transform: capitalize;
  color: var(--primary-color);
  padding-right: 30px;
  transition: all 0.4s ease-in-out;
}
.readmore-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(-2px, -50%);
  right: 0px;
  width: 20px;
  height: 20px;
  background-image: url("../images/arrow-primary.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transition: all 0.4s ease-in-out;
}
.readmore-btn:hover::before {
  transform: translate(0, -50%);
}
.cb-cursor:before {
  background: var(--accent-color);
}
.preloader {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading-container,
.loading {
  height: 100px;
  position: relative;
  width: 100px;
  border-radius: 100%;
}
.loading-container {
  margin: 40px auto;
}
.loading {
  border: 1px solid transparent;
  border-color: transparent var(--white-color) transparent var(--white-color);
  animation: rotate-loading 1.5s linear 0s infinite normal;
  transform-origin: 50% 50%;
}
.loading-container:hover .loading,
.loading-container .loading {
  transition: all 0.5s ease-in-out;
}
#loading-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 66px;
  transform: translate(-50%, -50%);
}
@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.bg-section {
  width: 100%;
  max-width: 1820px;
  background-color: var(--secondary-color);
  border-radius: 20px;
  margin: 0 auto;
}
.bg-section .container-fluid {
  padding: 0;
}
.dark-section {
  background-color: var(--primary-color);
  background-image: url("../images/dark-section-bg-image.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.section-row {
  margin-bottom: 80px;
}
.section-row .section-title {
  margin-bottom: 0;
}
.section-row .section-title.section-title-center {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.section-btn {
  text-align: right;
}
.section-content-btn .section-btn {
  margin-top: 30px;
  text-align: left;
}
.section-title-content p {
  margin-bottom: 20px;
}
.section-title-content p:last-child {
  margin-bottom: 0;
}
.section-title {
  margin-bottom: 40px;
}
.section-title .section-sub-title {
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 1em;
  color: var(--primary-color);
  background: var(--white-color);
  border-radius: 100px;
  padding: 11px 20px 11px 44px;
  margin-bottom: 15px;
}
.section-title .section-sub-title::before {
  content: "\2a";
  position: absolute;
  font-family: "Font Awesome 7 Free";
  font-size: 18px;
  font-weight: 900;
  color: var(--primary-color);
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}
.section-title h1 {
  font-size: 60px;
  margin-bottom: 0;
  cursor: none;
}
.section-title h2 {
  font-size: 52px;
  line-height: 1.1em;
  margin-bottom: 0;
  cursor: none;
}
.section-title p {
  margin-top: 20px;
  margin-bottom: 0;
}
.bg-section .section-title .section-sub-title {
  background: var(--bg-color);
}
.dark-section .section-title .section-sub-title {
  color: var(--white-color);
  background: var(--dark-divider-color);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}
.dark-section .section-title .section-sub-title::before {
  color: var(--white-color);
}
.dark-section .section-title h1,
.dark-section .section-title h2,
.dark-section .section-title p,
.dark-section .section-title-content p {
  color: var(--white-color);
}
.help-block.with-errors ul {
  margin: 0;
  text-align: left;
}
.help-block.with-errors ul li {
  color: var(--error-color);
  font-weight: 500;
  font-size: 14px;
}

/* ===== BACK TO TOP BUTTON ===== */
.bop-back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  color: var(--primary-color);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  font-size: 18px;
}
.bop-back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.bop-back-to-top:hover {
  background: var(--primary-color);
  color: var(--accent-color);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}
.bop-back-to-top i {
  pointer-events: none;
  line-height: 1;
}
.testimonial-slider{pointer-events: none;}