footer {
  padding: 100px 0 50px;
  background: #2E2E2E;
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
footer .container .logo_wrapper {
  width: 260px;
}
footer .container .logo_wrapper img {
  width: 100%;
  height: auto;
  filter: invert(100%) brightness(100%) contrast(100%);
}
footer .container .copyright {
  display: flex;
  flex-direction: column;
}
footer .container .copyright .links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  color: #FFFFFF;
  margin-bottom: 26px;
}
footer .container .copyright .links a {
  font-size: 16px;
  text-decoration: none;
  color: white;
  opacity: 0.8;
  transition: opacity 0.3s;
}
footer .container .copyright .links a:hover {
  opacity: 1;
}
footer .container .copyright .copyright {
  text-align: center;
  font-size: 16px;
  color: white;
  opacity: 0.5;
}
footer .container .social_links {
  width: 260px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
footer .container .social_links a {
  transition: opacity 0.3s;
}
footer .container .social_links a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1024px) {
  footer .container {
    flex-wrap: wrap;
    gap: 30px;
  }
  footer .container .copyright {
    width: 100%;
    order: 3;
  }
}
@media screen and (max-width: 600px) {
  footer {
    padding: 50px 30px;
  }
  footer .container {
    flex-direction: column;
  }
  footer .container .logo_wrapper {
    width: 200px;
    margin: 0 auto;
  }
  footer .container .social_links {
    width: 100%;
    justify-content: center;
  }
}
footer.footer--v2 {
  padding: 60px 0 30px;
  background: #050505;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
}
footer.footer--v2 .container {
  display: block;
  flex-wrap: nowrap;
  gap: 0;
}
footer.footer--v2 .foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
footer.footer--v2 .foot-col-title {
  margin: 0 0 16px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
footer.footer--v2 ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}
footer.footer--v2 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s ease;
}
footer.footer--v2 a:hover {
  color: #B29B51;
}
footer.footer--v2 .foot-brand .logo_wrapper {
  display: block;
  width: auto;
  max-width: 220px;
  margin: 0 0 16px;
}
footer.footer--v2 .foot-brand .logo_wrapper img {
  width: 100%;
  height: auto;
  filter: invert(100%) brightness(100%) contrast(100%);
}
footer.footer--v2 .foot-brand p {
  max-width: 50ch;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}
footer.footer--v2 .foot-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 24px;
  font-size: 14px;
}
footer.footer--v2 .foot-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 1020px) {
  footer.footer--v2 .container {
    flex-wrap: nowrap;
  }
  footer.footer--v2 .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 680px) {
  footer.footer--v2 {
    padding: 48px 0 24px;
  }
  footer.footer--v2 .container {
    flex-direction: column;
  }
  footer.footer--v2 .foot-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 32px;
  }
  footer.footer--v2 .foot-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
footer.footer--updated {
  padding: 80px 0 32px;
  background: #0c0c0d;
}
footer.footer--updated .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 0;
}
footer.footer--updated .container .logo_wrapper {
  display: block;
  width: auto;
  max-width: 240px;
  margin: 0 auto 40px;
}
footer.footer--updated .container .logo_wrapper img {
  width: 100%;
  height: auto;
  filter: invert(100%) brightness(100%) contrast(100%);
}
footer.footer--updated .container .footer-nav {
  width: 100%;
  margin-bottom: 48px;
}
footer.footer--updated .container .footer-nav .footer-nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
footer.footer--updated .container .footer-nav .footer-nav-list a {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: #98a2b3;
  text-decoration: none;
  transition: color 0.3s;
}
footer.footer--updated .container .footer-nav .footer-nav-list a:hover {
  color: #ffffff;
}
footer.footer--updated .container .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 32px;
  border-top: 1px solid #1f242f;
  gap: 16px;
}
footer.footer--updated .container .copyright {
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #98a2b3;
  text-align: left;
  opacity: 1;
}
footer.footer--updated .container .footer-legal {
  display: flex;
  align-items: center;
  gap: 16px;
}
footer.footer--updated .container .footer-legal a {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #98a2b3;
  text-decoration: none;
  transition: color 0.3s;
}
footer.footer--updated .container .footer-legal a:hover {
  color: #ffffff;
}
@media screen and (max-width: 1024px) {
  footer.footer--updated .container {
    flex-wrap: nowrap;
    gap: 0;
  }
  footer.footer--updated .container .copyright {
    width: auto;
    order: 0;
  }
}
@media screen and (max-width: 700px) {
  footer.footer--updated {
    padding: 56px 0 24px;
  }
  footer.footer--updated .container .logo_wrapper {
    max-width: 200px;
    margin: 0 auto 32px;
  }
  footer.footer--updated .container .footer-nav {
    margin-bottom: 36px;
  }
  footer.footer--updated .container .footer-nav .footer-nav-list {
    gap: 10px 24px;
  }
  footer.footer--updated .container .footer-nav .footer-nav-list a {
    font-size: 15px;
  }
  footer.footer--updated .container .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  footer.footer--updated .container .copyright {
    text-align: center;
  }
}

.contact_form {
  position: relative;
  padding-top: 60px;
}
.contact_form:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: #2E2E2E;
}
.contact_form .container .wrapper_box {
  position: relative;
  background: white;
  padding: 70px 80px;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}
.contact_form .container .wrapper_box .form_wrapper {
  width: 525px;
  padding: 40px 62px;
  background: #FFFFFF;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
.contact_form .container .wrapper_box .form_wrapper .wpcf7 form .inputs_row {
  display: flex;
  gap: 10px;
}
.contact_form .container .wrapper_box .form_wrapper .wpcf7 form .wpcf7-not-valid-tip,
.contact_form .container .wrapper_box .form_wrapper .wpcf7 form .wpcf7-spinner {
  display: none;
}
.contact_form .container .wrapper_box .form_wrapper .wpcf7 form .wpcf7-response-output {
  margin: 30px 0 0;
  border-radius: 3px;
  text-align: center;
}
.contact_form .container .wrapper_box .form_wrapper .wpcf7 form input:not([type=submit]) {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  border: 1px solid #B8BBD0;
  border-radius: 3px;
  font-size: 16px;
  line-height: 20px;
  padding: 14px 20px;
  margin: 0 0 15px;
  outline: none;
  transition: border-color 0.3s;
}
.contact_form .container .wrapper_box .form_wrapper .wpcf7 form input:not([type=submit]).wpcf7-not-valid {
  border-color: #dc3232;
}
.contact_form .container .wrapper_box .form_wrapper .wpcf7 form input[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: 42px;
  background: #B29B51;
  color: white;
  border-radius: 5px;
  font-size: 16px;
  line-height: 1.2em;
  border: none;
  margin: 0;
  text-align: center;
  cursor: pointer;
  transition: background 0.3s;
}
.contact_form .container .wrapper_box .form_wrapper .wpcf7 form input[type=submit]:hover {
  background: rgb(63.4778532927%, 55.0871025701%, 28.0907741583%);
}
.contact_form .container .wrapper_box .form_wrapper .wpcf7 form textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: 75px;
  border: 1px solid #B8BBD0;
  border-radius: 3px;
  font-size: 16px;
  line-height: 20px;
  padding: 14px 20px;
  margin: 0 0 15px;
  resize: none;
  outline: none;
}
.contact_form .container .wrapper_box .form_wrapper .wpcf7 form label span.label_text {
  background: white;
  font-size: 15px;
  line-height: 18px;
  display: flex;
  color: #000000;
  margin: 0 0 -9px 9px;
  z-index: 3;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 5px;
}
.contact_form .container .wrapper_box .contact_text {
  width: 416px;
  flex-shrink: 0;
  margin: 0 auto;
}
.contact_form .container .wrapper_box .contact_text .contact_links {
  display: flex;
  gap: 40px;
}
.contact_form .container .wrapper_box .contact_text .contact_links a {
  display: flex;
  align-items: center;
  color: #444242;
  font-weight: 500;
  font-size: 16px;
  gap: 5px;
  text-decoration: none;
  transition: all 0.3s;
}
.contact_form .container .wrapper_box .contact_text .contact_links a:hover {
  color: #B29B51;
}
.contact_form .container .wrapper_box .contact_text .contact_links a:hover svg * {
  fill: #B29B51;
}
.contact_form .container .wrapper_box .contact_text .contact_links a svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
  display: flex;
}
.contact_form .container .wrapper_box .contact_text .contact_links a svg * {
  transition: fill 0.3s;
}
@media screen and (max-width: 1200px) {
  .contact_form .container .wrapper_box {
    padding: 40px;
  }
  .contact_form .container .wrapper_box .form_wrapper {
    min-width: 455px;
    padding: 30px 40px;
  }
}
@media screen and (max-width: 998px) {
  .contact_form .container .wrapper_box {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    flex-direction: column-reverse;
  }
  .contact_form .container .wrapper_box .contact_text {
    margin: 0;
    width: 525px;
  }
}
@media screen and (max-width: 700px) {
  .contact_form .container .wrapper_box .form_wrapper {
    width: 100%;
    max-width: 525px;
    min-width: auto;
  }
  .contact_form .container .wrapper_box .form_wrapper .wpcf7 form .inputs_row {
    flex-direction: column;
    gap: 0;
  }
  .contact_form .container .wrapper_box .contact_text {
    max-width: 525px;
    width: 100%;
    min-width: auto;
  }
}
@media screen and (max-width: 600px) {
  .contact_form .container .wrapper_box {
    padding: 40px 15px 25px;
  }
  .contact_form .container .wrapper_box .form_wrapper {
    padding: 25px 20px;
  }
  .contact_form .container .wrapper_box .contact_text .contact_links {
    flex-direction: column;
    gap: 10px;
  }
}

.contact_form--updated {
  background: #ffffff;
  padding: 120px 0;
}
.contact_form--updated::before {
  display: none;
}
.contact_form--updated .contact-updated-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: stretch;
}
.contact_form--updated .contact-form-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.contact_form--updated .contact-form-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b5a264;
  margin-bottom: 10px;
}
.contact_form--updated .contact-form-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 36px;
  width: 100%;
  border: 1px solid #d8d8d8;
}
.contact_form--updated .contact-form-card .contact-form-label {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: #6E6E6E;
  margin-bottom: 24px;
  text-transform: inherit;
  letter-spacing: 0;
}
.contact_form--updated .contact-form-card .contact-form-title {
  font-size: clamp(18px, 5vw, 28px);
  font-weight: 500;
  color: #1B1B1B;
  margin: 0 0 16px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.contact_form--updated .contact-form-card .contact-form-after {
  margin-top: 18px;
  font-size: 16px;
  color: #777;
  line-height: 1.5;
}

.contact_form--updated .wpcf7 form,
.get-started .form-card .wpcf7 form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: filter 0.2s ease;
}
.contact_form--updated .wpcf7 form.submitting,
.get-started .form-card .wpcf7 form.submitting {
  filter: blur(2px);
  pointer-events: none;
}
.contact_form--updated .wpcf7 form .wpcf7-spinner,
.get-started .form-card .wpcf7 form .wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  background: #b5a264;
  width: 32px;
  height: 32px;
}
.contact_form--updated .wpcf7 form .wpcf7-spinner:before,
.get-started .form-card .wpcf7 form .wpcf7-spinner:before {
  top: 8px;
  left: 4px;
  width: 6px;
  height: 6px;
  border: none;
  border-radius: 100%;
  transform-origin: 14px 8px;
}
.contact_form--updated .wpcf7 form .inputs_row,
.get-started .form-card .wpcf7 form .inputs_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact_form--updated .wpcf7 form .wpcf7-not-valid-tip,
.get-started .form-card .wpcf7 form .wpcf7-not-valid-tip {
  display: none;
}
.contact_form--updated .wpcf7 form .wpcf7-response-output,
.get-started .form-card .wpcf7 form .wpcf7-response-output {
  margin: 16px 0 0;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
}
.contact_form--updated .wpcf7 form input:not([type=submit]),
.contact_form--updated .wpcf7 form textarea,
.get-started .form-card .wpcf7 form input:not([type=submit]),
.get-started .form-card .wpcf7 form textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s ease;
  background: #ffffff;
}
.contact_form--updated .wpcf7 form input:not([type=submit]):focus,
.contact_form--updated .wpcf7 form textarea:focus,
.get-started .form-card .wpcf7 form input:not([type=submit]):focus,
.get-started .form-card .wpcf7 form textarea:focus {
  border-color: #b5a264;
}
.contact_form--updated .wpcf7 form input:not([type=submit]).wpcf7-not-valid, .contact_form--updated .wpcf7 form input:not([type=submit]).is-invalid,
.contact_form--updated .wpcf7 form textarea.wpcf7-not-valid,
.contact_form--updated .wpcf7 form textarea.is-invalid,
.get-started .form-card .wpcf7 form input:not([type=submit]).wpcf7-not-valid,
.get-started .form-card .wpcf7 form input:not([type=submit]).is-invalid,
.get-started .form-card .wpcf7 form textarea.wpcf7-not-valid,
.get-started .form-card .wpcf7 form textarea.is-invalid {
  border-color: #dc3232;
  box-shadow: 0 0 0 3px rgba(220, 50, 50, 0.08);
}
.contact_form--updated .wpcf7 form textarea,
.get-started .form-card .wpcf7 form textarea {
  min-height: 120px;
  resize: vertical;
}
.contact_form--updated .wpcf7 form label:has(.wpcf7-not-valid) span.label_text,
.contact_form--updated .wpcf7 form label:has(.is-invalid) span.label_text,
.contact_form--updated .wpcf7 form label.is-invalid span.label_text,
.get-started .form-card .wpcf7 form label:has(.wpcf7-not-valid) span.label_text,
.get-started .form-card .wpcf7 form label:has(.is-invalid) span.label_text,
.get-started .form-card .wpcf7 form label.is-invalid span.label_text {
  color: #dc3232;
}
.contact_form--updated .wpcf7 form input[type=submit],
.get-started .form-card .wpcf7 form input[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: 48px;
  background: #b5a264;
  color: #ffffff;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}
.contact_form--updated .wpcf7 form input[type=submit]:hover,
.get-started .form-card .wpcf7 form input[type=submit]:hover {
  background: rgb(67.7489511088%, 59.4682763935%, 32.4471273225%);
}
.contact_form--updated .wpcf7 form label,
.get-started .form-card .wpcf7 form label {
  display: flex;
  flex-direction: column;
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  color: #333;
}
.contact_form--updated .wpcf7 form label span.label_text,
.contact_form--updated .wpcf7 form label .wpcf7-form-control-wrap,
.get-started .form-card .wpcf7 form label span.label_text,
.get-started .form-card .wpcf7 form label .wpcf7-form-control-wrap {
  position: static;
  z-index: auto;
}
.contact_form--updated .wpcf7 form label span.label_text,
.get-started .form-card .wpcf7 form label span.label_text {
  background: transparent;
  display: block;
  margin: 0 0 6px;
  padding: 0;
  width: auto;
}
.contact_form--updated .wpcf7 form label .wpcf7-form-control-wrap,
.get-started .form-card .wpcf7 form label .wpcf7-form-control-wrap {
  display: block;
}
.contact_form--updated .wpcf7 form > p,
.get-started .form-card .wpcf7 form > p {
  margin: 0;
}
.contact_form--updated .wpcf7 form.invalid .wpcf7-response-output,
.contact_form--updated .wpcf7 form.unaccepted .wpcf7-response-output,
.contact_form--updated .wpcf7 form.payment-required .wpcf7-response-output,
.get-started .form-card .wpcf7 form.invalid .wpcf7-response-output,
.get-started .form-card .wpcf7 form.unaccepted .wpcf7-response-output,
.get-started .form-card .wpcf7 form.payment-required .wpcf7-response-output {
  display: none;
}

.contact_form--updated .contact-info {
  background: #1c1c1e;
  border-radius: 16px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  color: #ffffff;
}
.contact_form--updated .contact-info h2 {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 24px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.contact_form--updated .contact-info .contact-info-text {
  font-size: 16px;
  color: #b5b5b5;
  line-height: 1.6;
}
.contact_form--updated .contact-info .contact-info-text p {
  margin: 0 0 16px;
  color: #b5b5b5;
  font-size: 16px;
  line-height: 1.6;
}
.contact_form--updated .contact-info .contact-info-text p:last-child {
  margin-bottom: 0;
}
.contact_form--updated .contact-info .contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.contact_form--updated .contact-info .contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #e0e0e0;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.2s ease;
}
.contact_form--updated .contact-info .contact-links a:hover {
  color: #b5a264;
}
.contact_form--updated .contact-info .contact-links a svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
@media screen and (max-width: 998px) {
  .contact_form--updated .contact-updated-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact_form--updated .contact-info {
    align-items: center;
    text-align: center;
    padding: 40px 32px;
  }
}
@media screen and (max-width: 600px) {
  .contact_form--updated {
    padding: 60px 0;
  }
  .contact_form--updated .contact-form-title {
    font-size: 28px;
  }
  .contact_form--updated .contact-form-card {
    padding: 24px;
  }
  .contact_form--updated .wpcf7 form .inputs_row {
    grid-template-columns: 1fr;
  }
  .contact_form--updated .contact-info {
    padding: 32px 24px;
  }
  .contact_form--updated .contact-info h2 {
    font-size: 28px;
  }
}

.get-started .form-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 36px;
  width: 100%;
  border: 1px solid #d8d8d8;
  color: #1B1B1B;
  box-sizing: border-box;
}
@media screen and (max-width: 600px) {
  .get-started .form-card {
    padding: 24px;
  }
  .get-started .form-card .wpcf7 form .inputs_row {
    grid-template-columns: 1fr;
  }
}

.swal-footer {
  display: none !important;
}

.swal-text {
  max-width: 320px;
  text-align: center;
  line-height: 1.4;
  color: #151617;
  margin-bottom: 24px;
}

.swal-modal {
  border: 1px solid #eeeeee;
  border-radius: 8px;
  padding: 16px;
  background: #fafafa;
}

.swal-overlay {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
}

section {
  width: 100%;
}
section.regular_section {
  padding: 80px 0;
}
section.gray_bg {
  background: #F7F7F9;
}
section h2.section_title {
  font-size: 40px;
  line-height: 1.2em;
  font-weight: 500;
  color: #0b0b0b;
  margin: 0 0 20px;
}
@media screen and (max-width: 600px) {
  section.regular_section {
    padding: 60px 0;
  }
  section h2.section_title {
    font-size: 30px;
  }
}

p {
  font-size: 18px;
  line-height: 1.2em;
  color: #727272;
  margin-bottom: 1.2em;
}
@media screen and (max-width: 600px) {
  p {
    font-size: 16px;
  }
}

.service_card {
  transition: all 0.3s !important;
}
.service_card:hover {
  transform: translateY(-10px);
}

.service_card {
  padding: 23px 20px 20px;
  background: white;
  transition: box-shadow 0.3s;
  text-decoration: none;
}
.service_card:hover {
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}
.service_card:hover .icon_wrapper {
  background-color: #B29B51;
}
.service_card:hover .icon_wrapper img {
  filter: brightness(0) invert(1); /* This will turn the icon white */
}
.service_card .icon_wrapper {
  border: 1px solid #B29B51;
  width: 60px;
  height: 60px;
  padding: 10px;
  border-radius: 60px;
  margin-bottom: 30px;
  transition: background 0.3s;
}
.service_card .icon_wrapper img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: filter 0.3s;
}
.service_card .title {
  font-size: 24px;
  line-height: 1.2em;
  color: #272727;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 15px;
}
.service_card .description {
  font-size: 18px;
  line-height: 1.2em;
  color: #727272;
  text-decoration: none;
}

body.single-post .post_thumb {
  width: 100%;
  height: 440px;
}
body.single-post .post_thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.8);
}
body.single-post .post_content_wrapper .container {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}
body.single-post .post_content_wrapper .left_part {
  margin: 24px 0;
}
body.single-post .post_content_wrapper .left_part img {
  max-width: 100%;
  height: auto;
}
body.single-post .post_content_wrapper .left_part .breadcrumbs {
  color: #727272;
  font-size: 16px;
  margin-bottom: 24px;
}
body.single-post .post_content_wrapper .left_part .breadcrumbs a {
  color: #727272;
  font-size: 16px;
  text-decoration: none;
  transition: opacity 0.3s;
}
body.single-post .post_content_wrapper .left_part .breadcrumbs a:hover {
  opacity: 0.7;
}
body.single-post .post_content_wrapper .left_part h1 {
  font-size: 38px;
  line-height: 44px;
  color: #272727;
  margin: 0 0 24px;
  font-weight: 500;
}
body.single-post .post_content_wrapper .left_part p.published_date {
  color: #727272;
  font-size: 16px;
  font-weight: 300;
}
body.single-post .post_content_wrapper .left_part hr {
  background: #E6E6E9;
  height: 1px;
  width: 100%;
  border: none;
  margin: 0 0 32px;
}
body.single-post .post_content_wrapper .left_part h2, body.single-post .post_content_wrapper .left_part h3, body.single-post .post_content_wrapper .left_part h4, body.single-post .post_content_wrapper .left_part h5, body.single-post .post_content_wrapper .left_part h6 {
  line-height: 1.2em;
  margin: 1em 0 0.5em;
  color: #272727;
  font-weight: 500;
}
body.single-post .post_content_wrapper .left_part h2 {
  font-size: 26px;
}
body.single-post .post_content_wrapper .left_part h3 {
  font-size: 24px;
}
body.single-post .post_content_wrapper .left_part h4 {
  font-size: 22px;
}
body.single-post .post_content_wrapper .left_part h5 {
  font-size: 20px;
}
body.single-post .post_content_wrapper .left_part h6 {
  font-size: 18px;
}
body.single-post .post_content_wrapper .sidebar {
  width: 430px;
  min-width: 430px;
  position: sticky;
  margin-top: 70px;
}
body.single-post .post_content_wrapper .sidebar h2 {
  margin: 0 0 15px;
  font-size: 24px;
  color: #272727;
}
body.single-post .post_content_wrapper .sidebar a.post {
  margin-bottom: 23px;
  display: flex;
  gap: 16px;
  text-decoration: none;
}
body.single-post .post_content_wrapper .sidebar a.post .img {
  width: 126px;
  height: 90px;
  min-width: 126px;
}
body.single-post .post_content_wrapper .sidebar a.post .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body.single-post .post_content_wrapper .sidebar a.post .info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
body.single-post .post_content_wrapper .sidebar a.post .info .title {
  color: #272727;
  font-size: 16px;
  line-height: 1.2em;
}
body.single-post .post_content_wrapper .sidebar a.post .info .published_date {
  font-size: 16px;
  color: #727272;
  margin: 0;
}
@media screen and (max-width: 1100px) {
  body.single-post .post_content_wrapper .sidebar {
    min-width: 350px;
  }
}
@media screen and (max-width: 998px) {
  body.single-post .post_content_wrapper .container {
    flex-direction: column;
    max-width: 700px;
    width: 100%;
  }
  body.single-post .post_content_wrapper .sidebar {
    width: 100%;
    margin: 0;
  }
}
@media screen and (max-width: 600px) {
  body.single-post .post_content_wrapper .left_part h1 {
    font-size: 32px;
    line-height: 1.2em;
  }
  body.single-post .post_content_wrapper .left_part hr {
    margin: 0 0 24px;
  }
}

.welcome_banner {
  position: relative;
  height: 600px;
  overflow: hidden;
}
.welcome_banner .bg_gradient {
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  background: linear-gradient(334.8deg, rgba(178, 155, 81, 0.56) 15.08%, rgba(178, 155, 81, 0) 85.93%), linear-gradient(106.7deg, rgba(177, 188, 194, 0.7) 0%, rgba(177, 188, 194, 0) 63.82%), linear-gradient(248.64deg, rgba(232, 214, 200, 0.5) 0%, rgba(232, 214, 200, 0) 61.47%), #FFFFFF;
  animation: 15s linear 0s infinite alternate none running granimate;
  background-size: 150vw 150vh;
  animation-play-state: running;
}
.welcome_banner .container {
  height: inherit;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
}
.welcome_banner .container h1 {
  text-align: center;
  margin: 0;
  font-size: 58px;
  line-height: 1.2em;
  color: #0b0b0b;
  font-weight: 500;
}
.welcome_banner .container .subtitle {
  max-width: 500px;
  text-align: center;
  margin-bottom: 12px;
}
.welcome_banner .container .buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}
@media screen and (max-width: 768px) {
  .welcome_banner {
    height: 620px;
  }
  .welcome_banner .container {
    gap: 16px;
    align-items: flex-start;
  }
  .welcome_banner .container h1 {
    text-align: left;
    font-size: 38px;
  }
  .welcome_banner .container .subtitle {
    text-align: left;
    max-width: 340px;
  }
}
@media screen and (max-width: 500px) {
  .welcome_banner .container .buttons {
    flex-direction: column;
    width: 100%;
    gap: 9px;
  }
  .welcome_banner .container .buttons a {
    width: 100%;
  }
}

@keyframes granimate {
  0%, 100% {
    background-position: 0 25%;
  }
  25%, 75% {
    background-position: 50% 50%;
  }
  50% {
    background-position: 100% 100%;
  }
}
@keyframes granimateSafari {
  0% {
    background-position: 0 25%;
  }
  25%, 50% {
    background-position: 50% 50%;
  }
  60%, 100% {
    background-position: 75% 75%;
  }
}
.page_header {
  position: relative;
  min-height: 466px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.page_header .bg_gradient {
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  background: linear-gradient(334.8deg, rgba(178, 155, 81, 0.56) 15.08%, rgba(178, 155, 81, 0) 85.93%), linear-gradient(106.7deg, rgba(177, 188, 194, 0.7) 0%, rgba(177, 188, 194, 0) 63.82%), linear-gradient(248.64deg, rgba(232, 214, 200, 0.5) 0%, rgba(232, 214, 200, 0) 61.47%), #FFFFFF;
  animation: 15s linear 0s infinite alternate none running granimate;
  background-size: 150vw 150vh;
  animation-play-state: running;
}
.page_header .container {
  height: inherit;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 100px;
}
.page_header .container h1 {
  text-align: center;
  margin: 0;
  font-size: 58px;
  line-height: 1.2em;
  color: #0b0b0b;
  font-weight: 500;
}
.page_header .container .subtitle {
  max-width: 763px;
  text-align: center;
  margin-bottom: 12px;
}
.page_header .container .buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}
@media screen and (max-width: 768px) {
  .page_header {
    height: 420px;
  }
  .page_header .container {
    gap: 16px;
    align-items: flex-start;
  }
  .page_header .container h1 {
    text-align: left;
    font-size: 38px;
  }
  .page_header .container .subtitle {
    text-align: left;
    max-width: 340px;
  }
}
@media screen and (max-width: 500px) {
  .page_header .container .buttons {
    flex-direction: column;
    width: 100%;
    gap: 9px;
  }
  .page_header .container .buttons a {
    width: 100%;
  }
}

@keyframes granimate {
  0%, 100% {
    background-position: 0 25%;
  }
  25%, 75% {
    background-position: 50% 50%;
  }
  50% {
    background-position: 100% 100%;
  }
}
@keyframes granimateSafari {
  0% {
    background-position: 0 25%;
  }
  25%, 50% {
    background-position: 50% 50%;
  }
  60%, 100% {
    background-position: 75% 75%;
  }
}
.why_choose_us .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.why_choose_us .container .left_part {
  width: 580px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.why_choose_us .container .left_part .cards_wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.why_choose_us .container .left_part .card_with_icon {
  width: 280px;
  min-width: 280px;
  aspect-ratio: 1/1;
  height: auto;
  background: white;
  filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.15));
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  padding: 28px 20px;
}
.why_choose_us .container .left_part .card_with_icon img {
  width: 90px;
  height: 90px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 16px;
}
.why_choose_us .container .left_part .card_with_icon .title {
  text-align: center;
  font-size: 16px;
  line-height: 1.2em;
  color: #0b0b0b;
  font-weight: 500;
}
.why_choose_us .container .left_part .card_with_icon .subtitle {
  text-align: center;
  font-size: 14px;
  line-height: 20px;
  color: #727272;
}
.why_choose_us .container .right_part {
  max-width: 430px;
  margin: 0 auto;
}
.why_choose_us .container .right_part .description *:last-child {
  margin-bottom: 0;
}
@media (max-width: 1100px) {
  .why_choose_us .container .left_part {
    flex-direction: column;
    max-width: 280px;
    margin: 0 auto;
  }
}
@media (max-width: 998px) {
  .why_choose_us .container {
    flex-direction: column-reverse;
  }
  .why_choose_us .container .left_part {
    max-width: 100%;
    flex-direction: row;
  }
}
@media (max-width: 650px) {
  .why_choose_us .container .left_part {
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .why_choose_us .container {
    gap: 40px;
  }
  .why_choose_us .container .left_part {
    flex-direction: column;
  }
}

.how_it_works .container {
  display: flex;
  flex-direction: column;
}
.how_it_works .container h2 {
  text-align: center;
  margin-bottom: 60px;
}
.how_it_works .container .cards_wrapper {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.how_it_works .container .card_with_icon {
  width: 280px;
  min-width: 280px;
  aspect-ratio: 1/1;
  height: auto;
  background: white;
  filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.15));
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  padding: 28px 20px;
}
.how_it_works .container .card_with_icon img {
  width: 90px;
  height: 90px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 16px;
}
.how_it_works .container .card_with_icon .title {
  text-align: center;
  font-size: 16px;
  line-height: 1.2em;
  color: #0b0b0b;
  font-weight: 500;
}
.how_it_works .container .card_with_icon .subtitle {
  text-align: center;
  font-size: 14px;
  line-height: 20px;
  color: #727272;
}
@media screen and (max-width: 1280px) {
  .how_it_works .container .cards_wrapper {
    gap: 20px;
  }
  .how_it_works .container .cards_wrapper .card_with_icon {
    width: 100%;
    min-width: auto;
  }
}
@media screen and (max-width: 998px) {
  .how_it_works .container .cards_wrapper {
    flex-wrap: wrap;
    width: 700px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
  .how_it_works .container .cards_wrapper .card_with_icon {
    width: calc(50% - 10px);
    max-width: 280px;
    min-width: auto;
  }
}
@media screen and (max-width: 500px) {
  .how_it_works .container .cards_wrapper .card_with_icon {
    width: 100%;
  }
}

.services .container {
  display: flex;
  flex-direction: column;
}
.services .container h2 {
  margin-bottom: 20px;
}
.services .container .subtitle {
  margin: 0 0 30px;
  max-width: 462px;
  width: 100%;
}
.services .container .services_cards_wrapper {
  display: flex;
  gap: 20px;
  padding: 40px;
  margin: -40px;
}
.services .container .services_cards_wrapper .service_card {
  min-height: 345px;
  aspect-ratio: auto;
}
.services .container .services_cards_wrapper {
  scroll-snap-type: x mandatory;
  justify-content: flex-start;
  display: flex;
  flex-wrap: nowrap;
  overflow: auto;
  scrollbar-width: none;
  margin-right: -15px;
  padding-right: 15px;
  scroll-padding-inline-start: 50px;
}
.services .container .services_cards_wrapper .service_card {
  width: 33.3333333333vw;
  min-width: 310px;
  max-width: 320px;
  scroll-snap-align: start;
}
.services .container a.button {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  margin: 60px auto 0;
}
@media screen and (max-width: 1024px) {
  .services .container h2 {
    text-align: center;
  }
  .services .container .subtitle {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .services .container h2 {
    text-align: left;
  }
  .services .container .subtitle {
    margin-left: 0;
    margin-right: 0;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .services .container h2 {
    text-align: left;
  }
  .services .container .subtitle {
    text-align: left;
    margin: 0 0 40px;
  }
}
@media screen and (max-width: 600px) {
  .services a.button {
    margin: 40px auto 0;
  }
}

.services_archive .container .services_grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.services_archive .container .services_grid .service_card {
  display: flex;
  flex-direction: column;
  width: calc(25% - 15px);
  min-height: 345px;
  aspect-ratio: auto;
}
.services_archive .container a.button {
  width: -moz-fit-content;
  width: fit-content;
  margin: 45px auto 0;
}
@media screen and (max-width: 1200px) {
  .services_archive .container .services_grid .service_card {
    width: calc(33.3% - 15px);
  }
}
@media screen and (max-width: 900px) {
  .services_archive .container .services_grid {
    max-width: 700px;
    margin: 0 auto;
  }
  .services_archive .container .services_grid .service_card {
    width: calc(50% - 15px);
  }
}
@media screen and (max-width: 600px) {
  .services_archive .container .services_grid {
    max-width: 420px;
    margin: 0 auto;
  }
  .services_archive .container .services_grid .service_card {
    width: 100%;
  }
}

.testimonials .container h2 {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.testimonials .container .testimonials_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.testimonials .container .testimonials_wrapper .slider_arrow {
  display: flex;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 23px;
  height: 23px;
  padding: 0;
  margin: 0;
  transition: opacity 0.3s;
  background: transparent;
  border: none;
}
.testimonials .container .testimonials_wrapper .slider_arrow:hover {
  opacity: 0.7;
}
.testimonials .container .testimonials_wrapper .slider_arrow#nextBtn {
  transform: rotate(180deg);
}
.testimonials .container .testimonials_wrapper .testimonials_slider {
  max-width: 560px;
  width: 100%;
  overflow: hidden;
}
.testimonials .container .testimonials_wrapper .testimonials_slider_slides {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  overflow: visible;
  gap: 80px;
  padding: 0;
}
.testimonials .container .testimonials_wrapper .testimonials_slider_slides .testimonial_item {
  flex: 0 0 100%;
  max-width: 520px;
  padding: 26px 20px;
  background: #FFFFFF;
  box-shadow: 0px 10px 20px 1px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin: 20px 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonials .container .testimonials_wrapper .testimonials_slider_slides .testimonial_item .quote_icon {
  position: absolute;
  left: 12px;
  top: -17px;
  width: 42px;
  height: 34px;
}
.testimonials .container .testimonials_wrapper .testimonials_slider_slides .testimonial_item_text {
  font-size: 16px;
  line-height: 1.2em;
  color: #434242;
  margin-bottom: 32px;
}
.testimonials .container .testimonials_wrapper .testimonials_slider_slides .testimonial_item .testimonial_details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.testimonials .container .testimonials_wrapper .testimonials_slider_slides .testimonial_item .testimonial_details .stars {
  display: flex;
  gap: 5px;
}
.testimonials .container .testimonials_wrapper .testimonials_slider_slides .testimonial_item .testimonial_details .stars img {
  width: 16px;
  height: 16px;
}
.testimonials .container .testimonials_wrapper .testimonials_slider_slides .testimonial_item .testimonial_details .name {
  font-size: 18px;
  font-weight: 500;
  color: #272727;
}
.testimonials .container .testimonials_wrapper .testimonials_slider_slides .testimonial_item .testimonial_details .position {
  font-size: 16px;
  color: #A1A1A1;
  font-style: italic;
}
.testimonials .container .dots {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 40px;
}
.testimonials .container .dots .dot {
  border: 1px solid #B29B51;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  cursor: pointer;
  transition: background 0.3s;
}
.testimonials .container .dots .dot.active {
  background: #B29B51;
}
@media screen and (max-width: 768px) {
  .testimonials .container .dots {
    margin-top: 25px;
  }
  .testimonials .container .testimonials_wrapper {
    gap: 0;
    justify-content: space-between;
  }
  .testimonials .container .testimonials_wrapper .slider_arrow {
    position: relative;
    z-index: 3;
  }
  .testimonials .container .testimonials_wrapper .testimonials_slider {
    width: 100%;
    margin: 0 -20px 0;
  }
  .testimonials .container .testimonials_wrapper .testimonials_slider .testimonials_slider_slides .testimonial_item {
    margin: 30px 0;
    max-width: calc(100% - 40px);
  }
}

section.text_with_image {
  padding: 50px 0;
}
section.text_with_image .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
section.text_with_image .container .left_part {
  width: 53%;
  max-width: 520px;
  margin: 0 34px;
}
section.text_with_image .container .left_part .subtitle {
  color: #272727;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 16px;
}
section.text_with_image .container .left_part h2 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 16px;
}
section.text_with_image .container .right_part {
  margin: 0 34px;
  width: 47%;
  min-width: 350px;
}
section.text_with_image .container .right_part img {
  width: 100%;
  height: auto;
  aspect-ratio: 620/410;
}
section.text_with_image.reversed .container {
  flex-direction: row-reverse;
}
@media screen and (max-width: 992px) {
  section.text_with_image .container {
    gap: 40px;
  }
  section.text_with_image .container .left_part {
    margin: 0;
    width: 40%;
  }
  section.text_with_image .container .right_part {
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  section.text_with_image .container {
    gap: 20px;
    flex-direction: column !important;
  }
  section.text_with_image .container .left_part {
    width: 100%;
  }
  section.text_with_image .container .right_part {
    width: 100%;
    max-width: 520px;
  }
}
@media screen and (max-width: 600px) {
  section.text_with_image {
    padding: 30px 0;
  }
}

.working_process .container h2 {
  margin: 0 auto 60px;
  text-align: center;
}
.working_process .container .process-flow {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  max-width: 1175px;
  margin: 0 auto;
}
.working_process .container .process-flow.second_row {
  justify-content: center;
  gap: 12.5%;
  margin-top: -58px;
}
.working_process .container .process-flow.second_row .step {
  justify-content: flex-start;
}
.working_process .container .process-flow.second_row .step:nth-child(odd) {
  display: none;
}
.working_process .container .process-flow.second_row .step:nth-child(even) {
  display: flex;
}
.working_process .container .process-flow:not(.second_row) {
  position: relative;
}
.working_process .container .process-flow:not(.second_row):after {
  content: "";
  position: absolute;
  left: 12.5%;
  bottom: 28px;
  height: 2px;
  width: 75%;
  background: #CED5D9;
}
.working_process .container .process-flow:not(.second_row) .step .number {
  order: 3;
}
.working_process .container .process-flow:not(.second_row) .step * {
  order: 2;
}
.working_process .container .process-flow .step:nth-child(even) {
  display: none;
}
.working_process .container .process-flow .step {
  width: 25%;
  display: flex;
  text-align: center;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.working_process .container .process-flow .step * {
  max-width: 277px;
}
.working_process .container .process-flow .step .number {
  font-size: 28px;
  border: 1px solid #B29B51;
  color: #B29B51;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  background: white;
}
.working_process .container .process-flow .step h3 {
  font-size: 24px;
  color: #555;
  margin: 19px 0 10px;
}
.working_process .container .process-flow .step p {
  margin: 0 0 20px;
}
@media screen and (max-width: 998px) {
  .working_process .process_wrapper {
    display: flex;
    justify-content: center;
  }
  .working_process .process_wrapper .process-flow {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    margin: 0 53px;
  }
  .working_process .process_wrapper .process-flow .step {
    width: 100%;
  }
  .working_process .process_wrapper .process-flow .step:after {
    content: "";
    background: #ced5d9;
    top: 0;
    right: -54px;
    height: 100%;
    width: 2px;
    position: absolute;
  }
  .working_process .process_wrapper .process-flow:not(.second_row) .step {
    opacity: 1;
    position: relative;
  }
  .working_process .process_wrapper .process-flow:not(.second_row) .step:nth-child(even) {
    display: flex;
    opacity: 0;
  }
  .working_process .process_wrapper .process-flow:not(.second_row) .step .number {
    position: absolute;
    right: -29px;
    top: 50%;
    transform: translate(53px, -50%);
  }
  .working_process .process_wrapper .process-flow:not(.second_row) .step:first-child:after {
    height: 50%;
    top: 50%;
  }
  .working_process .process_wrapper .process-flow:not(.second_row) .step:last-child:after {
    height: 50%;
    bottom: 50%;
  }
  .working_process .process_wrapper .process-flow:not(.second_row):after {
    content: none;
  }
  .working_process .process_wrapper .process-flow.second_row {
    margin-top: 0;
  }
  .working_process .process_wrapper .process-flow.second_row .step {
    position: relative;
  }
  .working_process .process_wrapper .process-flow.second_row .step .number {
    position: absolute;
    left: -29px;
    top: 50%;
    transform: translate(-53px, -50%);
  }
  .working_process .process_wrapper .process-flow.second_row .step:nth-child(odd) {
    display: flex;
    opacity: 0;
  }
  .working_process .process_wrapper .process-flow.second_row .step:nth-child(even) {
    display: flex;
    opacity: 1;
  }
  .working_process .process_wrapper .process-flow.second_row .step:after {
    right: auto;
    left: -54px;
  }
}
@media screen and (max-width: 700px) {
  .working_process .container h2 {
    margin-bottom: 30px;
  }
  .working_process .process_wrapper {
    align-items: flex-start;
  }
  .working_process .process_wrapper .process-flow.second_row {
    display: none;
  }
  .working_process .process_wrapper .process-flow:not(.second_row) {
    margin: 0 0 0 90px;
  }
  .working_process .process_wrapper .process-flow:not(.second_row) .step {
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px 0;
    opacity: 1 !important;
  }
  .working_process .process_wrapper .process-flow:not(.second_row) .step .number {
    right: auto;
    left: -29px;
    transform: translate(-53px, -50%);
  }
  .working_process .process_wrapper .process-flow:not(.second_row) .step:after {
    right: auto;
    left: -54px;
  }
}

.faq .container .faq_items {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.faq .container .faq_items .faq_item {
  display: flex;
  align-items: flex-start;
  padding: 6px 4px;
  gap: 16px;
  box-sizing: border-box;
  width: calc(50% - 15px);
  cursor: pointer;
}
.faq .container .faq_items .faq_item .icon {
  height: 47px;
  width: 47px;
  min-width: 47px;
  border: 1px solid #E2E2E2;
  border-radius: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.faq .container .faq_items .faq_item .icon svg {
  width: 15px;
  height: 15px;
  transition: transform 0.3s;
}
.faq .container .faq_items .faq_item .texts {
  padding-right: 26px;
}
.faq .container .faq_items .faq_item .texts .question {
  font-size: 20px;
  line-height: 21px;
  color: #000000;
  font-weight: 500;
  margin: 13px 0;
}
.faq .container .faq_items .faq_item .texts .answer {
  display: none;
  font-size: 16px;
  line-height: 22px;
  color: #54545C;
  font-weight: 400;
}
.faq .container .faq_items .faq_item.active .icon svg {
  transform: rotate(135deg);
}
@media screen and (max-width: 768px) {
  .faq .container .faq_items {
    max-width: 500px;
    margin: 0 auto;
    flex-direction: column;
  }
  .faq .container .faq_items .faq_item {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .faq .container .faq_items {
    gap: 20px;
  }
  .faq .container .faq_items .faq_item .texts {
    padding: 0;
  }
  .faq .container .faq_items .faq_item .texts .question {
    font-size: 18px;
  }
}

.cta .container .cta_wrapper {
  width: 100%;
  max-width: 956px;
  padding: 33px;
  box-sizing: border-box;
  background: #FFFFFF;
  border: 1px solid #D1D1D3;
  border-radius: 10px;
  display: flex;
  align-items: center;
  margin: 0 auto;
  gap: 28px;
}
.cta .container .cta_wrapper .manager_photo {
  display: flex;
  width: 65px;
  min-width: 65px;
  height: 65px;
  border-radius: 50%;
  overflow: hidden;
}
.cta .container .cta_wrapper .manager_photo img {
  display: flex;
  width: 100%;
  height: 100%;
}
.cta .container .cta_wrapper .cta_text .title {
  font-size: 20px;
  line-height: 1.1em;
  color: black;
  font-weight: 500;
  margin-bottom: 8px;
}
.cta .container .cta_wrapper .cta_text .subtitle {
  font-size: 18px;
  line-height: 22px;
  color: #54545C;
}
.cta .container .cta_wrapper a.button {
  margin-left: auto;
  min-width: -moz-max-content;
  min-width: max-content;
}
.cta .container .cta_wrapper a.button.mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .cta .container .cta_wrapper {
    flex-wrap: wrap;
  }
  .cta .container .cta_wrapper .cta_text {
    width: calc(100% - 65px - 28px);
  }
  .cta .container .cta_wrapper a.button {
    display: none;
  }
  .cta .container .cta_wrapper a.button.mobile {
    margin: 20px 0 0;
    max-width: -moz-max-content;
    max-width: max-content;
    display: flex;
  }
}
@media screen and (max-width: 600px) {
  .cta .container .cta_wrapper {
    padding: 30px 15px;
    flex-direction: column;
    justify-self: center;
    align-items: center;
    gap: 15px;
  }
  .cta .container .cta_wrapper .cta_text {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-self: center;
    align-items: center;
    gap: 10px;
  }
  .cta .container .cta_wrapper .cta_text .title {
    margin: 0;
  }
  .cta .container .cta_wrapper .cta_text .subtitle {
    text-align: center;
  }
  .cta .container .cta_wrapper .cta_text a.button.mobile {
    margin: 15px auto;
  }
}

.blog-archive {
  margin: 78px 0;
}
.blog-archive .container .articles {
  display: flex;
  gap: 70px 20px;
  flex-wrap: wrap;
}
.blog-archive .container .articles article {
  width: calc(33.3% - 13.3333333333px);
}
.blog-archive .container .articles article a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.blog-archive .container .articles article a:hover img {
  transform: scale(1.05);
}
.blog-archive .container .articles article a .image_wrapper {
  display: flex;
  overflow: hidden;
}
.blog-archive .container .articles article a .image_wrapper img {
  width: 100%;
  height: auto;
  aspect-ratio: 430/414;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s;
}
.blog-archive .container .articles article a .article-content {
  display: flex;
  flex-direction: column;
}
.blog-archive .container .articles article a .article-content h3 {
  color: #0b0b0b;
  font-size: 24px;
  line-height: 1.2em;
  margin: 16px 0 12px;
  font-weight: 400;
}
.blog-archive .container .articles article a .article-content p.published_date {
  font-size: 14px;
  line-height: 20px;
  color: #8B8B95;
  margin: 0 0 12px;
}
.blog-archive .container .articles article a .article-content p:not(.published_date) {
  font-size: 16px;
  line-height: 22px;
  color: #5F5F61;
  margin: 0 0;
}
.blog-archive .container a.button {
  width: -moz-max-content;
  width: max-content;
  margin: 70px auto 0;
}
@media screen and (max-width: 1024px) {
  .blog-archive .container .articles {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
  }
  .blog-archive .container .articles article {
    width: calc(50% - 20px);
  }
}
