/*!*********************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./css/style.scss ***!
  \*********************************************************************************************************/
body,
body * {
  margin: 0;
  padding: 0;
  vertical-align: top;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body.modal-is-open,
body *.modal-is-open {
  overflow-y: hidden;
}
body.fixed,
body *.fixed {
  overflow: hidden;
}

header.fixed {
  filter: blur(3px);
}

main.fixed {
  filter: blur(3px);
}

footer.fixed {
  filter: blur(3px);
}

html {
  font-family: "Rethink Sans", sans-serif;
  font-weight: 500;
  font-size: 20px;
  scroll-behavior: smooth;
}
@media (max-width: 1200px) {
  html {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
}
@media (max-width: 600px) {
  html {
    font-size: 14px;
  }
}

a {
  text-decoration: none;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

ul {
  list-style-type: none;
}

main {
  transition: 0.3s all ease-out;
}
header {
  background-color: transparent;
  position: fixed;
  z-index: 99999;
  width: 100%;
}
header.mobile {
  background-color: #3859fe;
}
header.active {
  background-color: #3859fe;
}
header.active .container .top {
  height: 0;
  padding: 0 !important;
  border-bottom: unset !important;
}
header.active .container .top .socials {
  display: none !important;
}
header.active .container .top .contacts {
  display: none !important;
}
header.active .container .bot {
  padding: 10px 0 !important;
}
header.active .container .bot .logo {
  max-width: 100px;
  width: 100%;
}
header .desktop-header {
  z-index: 1;
  position: relative;
}
header .desktop-header .container .top {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid #798ffc;
  transition: 0.3s all ease-out;
}
@media (max-width: 1024px) {
  header .desktop-header .container .top {
    display: none;
  }
}
header .desktop-header .container .top .socials {
  display: flex;
  gap: 30px;
}
header .desktop-header .container .top .socials .social {
  font-size: 13px;
  font-weight: normal;
  font-style: normal;
  text-align: left;
  color: #e6f0fe;
}
header .desktop-header .container .top .contacts {
  display: flex;
  gap: 30px;
}
header .desktop-header .container .top .contacts .contact {
  font-size: 13px;
  font-weight: normal;
  font-style: normal;
  text-align: left;
  color: #e6f0fe;
}
header .desktop-header .container .bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #798ffc;
}
@media (max-width: 1200px) {
  header .desktop-header .container .bot .logo {
    max-width: 100px;
  }
}
@media (max-width: 1024px) {
  header .desktop-header .container .bot .logo {
    max-width: unset;
  }
}
header .desktop-header .container .bot .main-menu {
  display: flex;
  gap: 60px;
  align-items: center;
}
@media (max-width: 1100px) {
  header .desktop-header .container .bot .main-menu {
    gap: 30px;
  }
}
@media (max-width: 1024px) {
  header .desktop-header .container .bot .main-menu {
    display: none;
  }
}
header .desktop-header .container .bot .main-menu ul {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 1100px) {
  header .desktop-header .container .bot .main-menu ul {
    gap: 0.8rem;
  }
}
header .desktop-header .container .bot .main-menu ul li {
  display: flex;
  align-items: center;
  line-height: 2rem;
}
header .desktop-header .container .bot .main-menu ul li.with-child {
  position: relative;
  margin-right: 10px;
}
header .desktop-header .container .bot .main-menu ul li.with-child:before {
  content: "";
  background: url(c6629f6e648287f5bb52.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  position: absolute;
  right: -20px;
  top: 10px;
  z-index: 99999;
  display: block;
  transform: rotate(90deg);
  transition: 0.3s all ease-out;
  transform-origin: center;
  filter: invert(1);
}
header .desktop-header .container .bot .main-menu ul li.with-child:hover:before {
  transform: rotate(270deg);
}
header .desktop-header .container .bot .main-menu ul li.with-child:hover .sub-menu {
  opacity: 1;
  pointer-events: unset;
}
header .desktop-header .container .bot .main-menu ul li .sub-menu {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 40px;
  transition: 0.3s all ease-out;
  z-index: 999;
  display: flex;
  flex-direction: column;
  background-color: #08f29d;
  padding: 20px;
  border-radius: 10px;
  width: max-content;
}
header .desktop-header .container .bot .main-menu ul li .sub-menu a {
  color: black;
  margin-top: 10px;
  line-height: normal;
}
header .desktop-header .container .bot .main-menu ul li .sub-menu .sub-menu-item {
  transition: 0.3s all ease-out;
}
header .desktop-header .container .bot .main-menu ul li .sub-menu .sub-menu-item:hover {
  transform: translateX(2.5%);
}
header .desktop-header .container .bot .main-menu ul li a {
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  text-align: left;
  color: #ffffff;
}
header .desktop-header .container .bot .burger {
  display: none;
  position: relative;
  cursor: pointer;
  z-index: 100000;
}
@media (max-width: 1024px) {
  header .desktop-header .container .bot .burger {
    display: inline-block;
  }
}
header .desktop-header .container .bot .burger .main-nav-toggle {
  display: block;
  width: 24px;
  height: 16px;
  right: 0;
  position: absolute;
  top: -8px;
}
header .desktop-header .container .bot .burger .main-nav-toggle:after, header .desktop-header .container .bot .burger .main-nav-toggle:before {
  content: "";
  position: absolute;
  top: 0;
  height: 0;
  border-bottom: 2px solid #fff;
  width: 100%;
  left: 0;
  right: 0;
  transition: all ease-out 0.3s;
}
header .desktop-header .container .bot .burger .main-nav-toggle:after {
  top: 100%;
}
header .desktop-header .container .bot .burger .main-nav-toggle i {
  display: block;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  height: 2px;
  background-color: #ffffff;
  width: 100%;
  position: absolute;
  top: 50%;
  transition: all ease-out 0.1s;
}
header .desktop-header .container .bot .burger.active-menu .main-nav-toggle:after {
  transform: rotate(-45deg);
  transform-origin: center;
  top: 50%;
}
header .desktop-header .container .bot .burger.active-menu .main-nav-toggle:before {
  transform: rotate(45deg);
  transform-origin: center;
  top: 50%;
}
header .desktop-header .container .bot .burger.active-menu .main-nav-toggle i {
  opacity: 0;
}

.mobile-menu {
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 1;
  background-color: #f3f3f3;
  box-shadow: 0px 10px 18px -2px rgba(0, 0, 0, 0.75);
  transform: translateY(-120%);
  transition: 0.3s all ease-in;
  padding: 80px 30px 40px;
  display: flex;
  flex-direction: column;
  z-index: 999;
}
.mobile-menu .menu {
  padding-top: 50px;
}
.mobile-menu .menu .menu-item {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid darkgray;
}
.mobile-menu .menu .menu-item:last-of-type {
  border-bottom: unset;
}
.mobile-menu .menu .menu-item.with-child {
  position: relative;
}
.mobile-menu .menu .menu-item.with-child:before {
  content: "";
  background: url(c6629f6e648287f5bb52.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 0;
  z-index: 99999;
  display: block;
  transform: rotate(90deg);
  transition: 0.3s all ease-out;
  transform-origin: center;
}
.mobile-menu .menu .menu-item.with-child .sub-menu {
  display: none;
}
.mobile-menu .menu .menu-item.with-child .sub-menu.active {
  display: flex;
  flex-direction: column;
  padding-left: 3rem;
  gap: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.mobile-menu .menu a {
  font-size: 0.8rem;
  font-weight: normal;
  font-style: normal;
  text-align: left;
  color: #6c6c6c;
}
@media (max-width: 600px) {
  .mobile-menu .menu a {
    font-size: 1.15rem;
  }
}
.mobile-menu .cta-green {
  margin-top: 2rem;
}
.mobile-menu .top {
  margin-top: auto;
}
.mobile-menu .top .socials {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.mobile-menu .top .socials .social {
  font-size: 1rem;
  font-weight: normal;
  font-style: normal;
  text-align: left;
  color: #6c6c6c;
}
.mobile-menu .top .contacts {
  display: flex;
  justify-content: space-between;
}
.mobile-menu .top .contacts .contact {
  font-size: 1rem;
  font-weight: normal;
  font-style: normal;
  text-align: left;
  color: #6c6c6c;
}
.mobile-menu.active-menu {
  transform: translateY(0);
}

.registration-wrapper {
  display: none;
  width: 50vw;
  height: 100vh;
  background-color: #08f29d;
  z-index: 9999999;
  position: fixed;
  right: 0;
  top: 0;
  padding: 4rem;
  justify-content: flex-end;
}
@media (min-width: 1440px) {
  .registration-wrapper {
    max-width: 800px;
  }
}
@media (max-width: 1024px) {
  .registration-wrapper {
    width: 100vw;
  }
}
@media (max-width: 768px) {
  .registration-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 500px) {
  .registration-wrapper {
    padding: 2rem 1rem 1rem 1rem;
  }
}
.registration-wrapper .right-side {
  max-width: 100%;
}
@media (max-width: 1024px) {
  .registration-wrapper .right-side {
    max-width: 100%;
  }
}
.registration-wrapper.active {
  display: flex;
}
@media (max-width: 1024px) {
  .registration-wrapper.active {
    display: block;
  }
}
.registration-wrapper .close-registration {
  width: 50px;
  height: 50px;
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transform: rotate(45deg);
  cursor: pointer;
  justify-self: flex-end;
  position: absolute;
  right: 1rem;
}
.registration-wrapper .title {
  font-family: "Rethink Sans";
  font-size: 2rem;
  font-weight: bold;
  line-height: 2.5rem;
  font-style: normal;
  text-align: left;
  color: #1c1c1c;
  text-transform: uppercase;
}
.registration-wrapper .subtitle {
  font-family: "Rethink Sans";
  font-size: 0.8rem;
  font-weight: normal;
  line-height: 1.5rem;
  font-style: normal;
  text-align: left;
  color: #1c1c1c;
  margin-top: 0.7rem;
}
@media (max-width: 600px) {
  .registration-wrapper .subtitle {
    font-size: 1.15rem;
  }
}
.registration-wrapper .internet-registration-form {
  margin-top: 2rem;
}
.registration-wrapper form h3 {
  color: #ffffff;
}
.registration-wrapper form h3 span {
  color: #ffffff;
}
.registration-wrapper form .selector-block p {
  padding-top: 0.5rem;
  font-family: "Rethink Sans";
  font-size: 0.8rem;
  font-weight: bold;
  font-style: normal;
  text-align: left;
  color: #1c1c1c;
}
@media (max-width: 600px) {
  .registration-wrapper form .selector-block p {
    font-size: 1.15rem;
  }
}
.registration-wrapper form .inputs-wrap {
  margin-top: 1rem;
}
.registration-wrapper form .inputs-wrap p {
  padding-top: 0.5rem;
  font-family: "Rethink Sans";
  font-size: 0.8rem;
  font-weight: bold;
  font-style: normal;
  text-align: left;
  color: #1c1c1c;
}
@media (max-width: 600px) {
  .registration-wrapper form .inputs-wrap p {
    font-size: 1.15rem;
  }
}
.registration-wrapper form .inputs-wrap .input-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}
.registration-wrapper form .inputs-wrap .input-wrapper .input-block {
  width: 100%;
}
.registration-wrapper form .inputs-wrap .input-block input {
  width: 100%;
  margin-top: 0.5rem;
  background-color: #fff;
  border: none;
  padding: 1em 1.5em;
  border-radius: 5px;
  font-size: 16px;
  color: #4b4a4a;
}
.registration-wrapper form .inputs-wrap .input-block input::placeholder {
  color: gray;
  opacity: 1;
}
.registration-wrapper form .inputs-wrap .input-block input.error {
  border: 1px solid #FF453A;
}
.registration-wrapper form .inputs-wrap .input-block label {
  display: block;
  padding-top: 0.5rem;
  font-size: 18px;
  font-weight: 300;
  color: #fff;
}
.registration-wrapper form .form-end {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 3rem;
}
@media (max-width: 1024px) {
  .registration-wrapper form .form-end {
    gap: 1rem;
  }
}
@media (max-width: 768px) {
  .registration-wrapper form .form-end {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media (max-width: 600px) {
  .registration-wrapper form .form-end {
    display: grid;
  }
}
@media (max-width: 1024px) {
  .registration-wrapper form .form-end__left {
    width: 100%;
  }
}
.registration-wrapper form .form-end__left .form-checkbox-wrapper:not(:first-of-type) {
  margin-top: 1rem;
}
.registration-wrapper form .form-end__left .form-checkbox-wrapper .checkbox-container {
  display: block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  user-select: none;
  font-family: "Rethink Sans";
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
  font-style: normal;
  text-align: left;
  color: #1c1c1c;
}
.registration-wrapper form .form-end__left .form-checkbox-wrapper .checkbox-container a {
  text-decoration: underline;
  color: #ffffff;
  font-weight: bold;
}
.registration-wrapper form .form-end__left .form-checkbox-wrapper .checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.registration-wrapper form .form-end__left .form-checkbox-wrapper .checkbox-container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border: 1px solid black;
  border-radius: 3px;
}
.registration-wrapper form .form-end__left .form-checkbox-wrapper .checkbox-container .checkmark.circle {
  border-radius: 50%;
}
.registration-wrapper form .form-end__left .form-checkbox-wrapper .checkbox-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.registration-wrapper form .form-end__left .form-checkbox-wrapper .checkbox-container input:checked ~ .checkmark {
  background-color: black;
}
.registration-wrapper form .form-end__left .form-checkbox-wrapper .checkbox-container input:checked ~ .checkmark:after {
  display: block;
}
.registration-wrapper form .form-end .submit-wrapper button {
  background-color: #231f20;
  font-size: 16px;
  color: #ffffff;
  text-align: center;
  border-radius: 6px;
  padding: 1rem 2rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  width: 100%;
}
.registration-wrapper form .form-end .submit-wrapper button:disabled {
  opacity: 0.5;
  cursor: initial;
}
.registration-wrapper form p.error-msg {
  font-size: 18px;
  color: #FF453A;
  padding-top: 0.2rem;
  font-weight: 300;
}
.registration-wrapper form .status {
  text-align: center;
  padding-top: 2rem;
  font-weight: 500;
  font-style: italic;
  font-size: 22px;
  color: #fff;
}

.cc-custom-selector {
  position: relative;
}
.cc-custom-selector select {
  width: 100%;
  margin-top: 0.5rem;
  background-color: #fff;
  border: none;
  color: gray;
  padding: 1em 1.5em;
  border-radius: 5px;
  font-size: 16px;
  color: #4b4a4a;
}
.cc-custom-selector .select-selected {
  background-color: #fff;
  border-radius: 5px;
  width: calc(100% - 3.5rem);
}
.cc-custom-selector .select-selected:after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 3rem;
  height: 100%;
  background-color: #ffffff;
  border-radius: 5px;
  z-index: 8;
}
.cc-custom-selector .select-selected:before {
  position: absolute;
  content: "";
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 1rem;
  height: 0.6rem;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  z-index: 9;
  transition: 0.7s all;
}
.cc-custom-selector .select-selected.select-arrow-active:before {
  transform: translateY(-50%) rotate(180deg);
}
.cc-custom-selector .select-selected {
  padding: 0.85em 1.5em;
  cursor: pointer;
}
.cc-custom-selector .select-items {
  position: absolute;
  border: 1px solid #AAA9A6;
  background-color: #fff;
  top: 100%;
  left: 0;
  right: 0;
  border-radius: 0.5rem;
  overflow: hidden;
  z-index: 99;
  font-size: 18px;
  box-shadow: 0 7px 10px #d5d5d5;
  max-height: 250px;
  overflow-y: scroll;
  overscroll-behavior: none;
}
.cc-custom-selector .select-items div {
  color: gray;
  padding: 0.5rem;
  cursor: pointer;
}
.cc-custom-selector .select-hide {
  display: none;
}
.cc-custom-selector .select-items div:hover, .cc-custom-selector .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}
.cc-custom-selector.error .select-selected {
  border: 1px solid red;
}

footer .main-footer {
  background-color: #3859fe;
  padding: 6rem 0 5rem;
  position: relative;
}
footer .main-footer:before {
  content: "";
  background: url(cf4dac7b86a1bec3c211.svg);
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 500px;
  height: 100%;
  background-repeat: no-repeat;
  z-index: 0;
}
@media (max-width: 1024px) {
  footer .main-footer {
    padding: 4rem 0 3rem;
  }
}
footer .main-footer .container {
  z-index: 1;
  position: relative;
}
footer .main-footer .container .top {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 900px) {
  footer .main-footer .container .top {
    flex-direction: column;
    gap: 2rem;
  }
}
footer .main-footer .container .top .left {
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 900px) {
  footer .main-footer .container .top .left {
    max-width: unset;
  }
}
footer .main-footer .container .top .left .paragraph {
  font-size: 0.8rem;
  font-weight: normal;
  line-height: 1.5rem;
  font-style: normal;
  text-align: left;
  color: #ffffff;
  margin-top: 1.5rem;
}
@media (max-width: 600px) {
  footer .main-footer .container .top .left .paragraph {
    font-size: 1.15rem;
  }
}
footer .main-footer .container .top .left .cta-green {
  margin-top: 3.5rem;
  justify-self: flex-start;
}
footer .main-footer .container .top .left .socials {
  margin-top: auto;
  display: flex;
  gap: 2rem;
}
@media (max-width: 900px) {
  footer .main-footer .container .top .left .socials {
    display: none;
  }
}
footer .main-footer .container .top .left .socials .social {
  font-size: 0.9rem;
  font-weight: normal;
  font-style: normal;
  text-align: left;
  color: #ffffff;
}
@media (max-width: 600px) {
  footer .main-footer .container .top .left .socials .social {
    font-size: 1.15rem;
  }
}
footer .main-footer .container .top .mid .title {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 3rem;
  font-style: normal;
  text-align: left;
  color: #ffffff;
}
footer .main-footer .container .top .mid .contacts {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 0.9rem;
  font-weight: normal;
  line-height: 1.5rem;
  font-style: normal;
  text-align: left;
  color: #ffffff;
}
@media (max-width: 600px) {
  footer .main-footer .container .top .mid .contacts {
    font-size: 1.15rem;
  }
}
footer .main-footer .container .top .mid .contacts a {
  color: #ffffff;
}
footer .main-footer .container .top .mid .work-time {
  margin-top: 5rem;
  font-size: 0.9rem;
  font-weight: normal;
  line-height: 1.5rem;
  font-style: normal;
  text-align: left;
  color: #ffffff;
}
@media (max-width: 600px) {
  footer .main-footer .container .top .mid .work-time {
    font-size: 1.15rem;
  }
}
@media (max-width: 900px) {
  footer .main-footer .container .top .mid .work-time {
    margin-top: 3rem;
  }
}
footer .main-footer .container .top .right .title {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 3rem;
  font-style: normal;
  text-align: left;
  color: #ffffff;
}
footer .main-footer .container .top .right .main-menu {
  margin-top: 2rem;
}
footer .main-footer .container .top .right .main-menu ul {
  display: flex;
  flex-direction: column-reverse;
  gap: 1.2rem;
}
footer .main-footer .container .top .right .main-menu ul li a {
  font-size: 0.8rem;
  font-weight: normal;
  font-style: normal;
  text-align: left;
  color: #ffffff;
}
@media (max-width: 600px) {
  footer .main-footer .container .top .right .main-menu ul li a {
    font-size: 1.15rem;
  }
}
footer .main-footer .container .bot {
  padding-top: 2rem;
  margin-top: 4rem;
  border-top: 1px solid #798ffc;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  font-size: 0.8rem;
  font-weight: normal;
  line-height: 1.5rem;
  font-style: normal;
  text-align: left;
  color: #ffffff;
}
@media (max-width: 768px) {
  footer .main-footer .container .bot {
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  footer .main-footer .container .bot {
    font-size: 1.15rem;
  }
}
footer .main-footer .container .bot .left {
  max-width: 700px;
}
footer .main-footer .container .bot .right a {
  color: #ffffff;
}
footer .footer-decoration {
  position: absolute;
  right: 0;
  top: 0;
}

.sub-menu {
  display: none;
}

.container {
  max-width: 1040px;
  width: calc(100% - 200px);
  margin: 0 auto;
}
@media (max-width: 1240px) {
  .container {
    width: calc(100% - 100px);
  }
}
@media (max-width: 768px) {
  .container {
    width: calc(100% - 60px);
  }
}
@media (max-width: 500px) {
  .container {
    width: calc(100% - 40px);
  }
}
.container.wide {
  max-width: 1240px;
}

.cta-green {
  background-color: #08f29d;
  padding: 17px 30px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  text-align: left;
  color: #0e0e0e;
  position: relative;
  transition: 0.5s all ease-out;
  overflow: hidden;
  cursor: pointer;
}
@media (max-width: 1100px) {
  .cta-green {
    padding: 12px 20px;
    font-size: 12px;
  }
}
.cta-green:hover {
  transform: scale(1.05);
}
.cta-green:hover:before {
  opacity: 1;
  transform: rotate(-45deg) translateY(300%);
}
.cta-green:before {
  display: block;
  content: "";
  position: absolute;
  top: -50%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: linear-gradient(0deg, transparent, transparent 30%, rgba(255, 255, 255, 0.4));
  transform: rotate(-45deg);
  transition: all 0.7s ease;
  opacity: 0;
}

.cta-gray {
  background-color: #414141;
  padding: 17px 30px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  text-align: left;
  color: #ffffff;
  position: relative;
  transition: 0.5s all ease-out;
  overflow: hidden;
  cursor: pointer;
}
@media (max-width: 1100px) {
  .cta-gray {
    padding: 12px 20px;
    font-size: 12px;
  }
}
.cta-gray:hover {
  transform: scale(1.05);
}
.cta-gray:hover:before {
  opacity: 1;
  transform: rotate(-45deg) translateY(300%);
}
.cta-gray:before {
  display: block;
  content: "";
  position: absolute;
  top: -50%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: linear-gradient(0deg, transparent, transparent 30%, rgba(255, 255, 255, 0.4));
  transform: rotate(-45deg);
  transition: all 0.7s ease;
  opacity: 0;
}

.cta-white {
  background-color: #ffffff;
  padding: 17px 30px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  text-align: left;
  color: #0e0e0e;
  position: relative;
  transition: 0.5s all ease-out;
  overflow: hidden;
  cursor: pointer;
}
@media (max-width: 1100px) {
  .cta-white {
    padding: 12px 20px;
    font-size: 12px;
  }
}
.cta-white:hover {
  transform: scale(1.05);
}
.cta-white:hover:before {
  opacity: 1;
  transform: rotate(-45deg) translateY(300%);
}
.cta-white:before {
  display: block;
  content: "";
  position: absolute;
  top: -50%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: linear-gradient(0deg, transparent, transparent 30%, rgba(255, 255, 255, 0.4));
  transform: rotate(-45deg);
  transition: all 0.7s ease;
  opacity: 0;
}

.cta-transparent {
  background-color: transparent;
  padding: 17px 30px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #797979;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  text-align: left;
  color: #797979;
  position: relative;
  transition: 0.5s all ease-out;
  overflow: hidden;
  cursor: pointer;
}
@media (max-width: 1100px) {
  .cta-transparent {
    padding: 12px 20px;
    font-size: 12px;
  }
}
.cta-transparent:hover {
  transform: scale(1.05);
}
.cta-transparent:hover:before {
  opacity: 1;
  transform: rotate(-45deg) translateY(300%);
}
.cta-transparent:before {
  display: block;
  content: "";
  position: absolute;
  top: -50%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: linear-gradient(0deg, transparent, transparent 30%, rgba(255, 255, 255, 0.4));
  transform: rotate(-45deg);
  transition: all 0.7s ease;
  opacity: 0;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

.beer-slider {
  display: inline-block;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.beer-slider *, .beer-slider:before, .beer-slider:after,
.beer-slider *:before,
.beer-slider *:after {
  box-sizing: border-box;
}
.beer-slider img, .beer-slider svg {
  vertical-align: bottom;
}
.beer-slider > img {
  max-width: 100%;
  height: auto;
}

.beer-reveal {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 50%;
  overflow: hidden;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.35s;
  border-right: 2px solid rgba(255, 255, 255, 0.5);
}
.beer-reveal > :first-child {
  width: 200%;
  max-width: none;
}
.beer-reveal > img:first-child {
  height: auto;
}

.beer-range {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  height: 100%;
  margin: 0;
  left: -1px;
  width: calc(100% + 2px);
  cursor: pointer;
  -webkit-appearance: slider-horizontal !important;
  -moz-appearance: none;
  opacity: 0;
  -ms-touch-action: auto;
  touch-action: auto;
}
.beer-range::slider-thumb {
  -webkit-appearance: none;
  height: 300vh;
}
.beer-range::-moz-range-thumb {
  -webkit-appearance: none;
  height: 300vh;
}
.beer-range::-ms-tooltip {
  display: none;
}

.beer-handle {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  color: #000;
  background: rgba(255, 255, 255, 0.8);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0);
  transition: background 0.3s, box-shadow 0.3s, opacity 0.5s 0.25s;
}
.beer-handle:before, .beer-handle:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 50%;
  border-top: solid 2px;
  border-left: solid 2px;
  transform-origin: 0 0;
}
.beer-handle:before {
  left: 10px;
  transform: rotate(-45deg);
}
.beer-handle:after {
  right: 0;
  transform: rotate(135deg);
}

.beer-range:focus ~ .beer-handle {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
}

.beer-slider[data-beer-label]:after {
  right: 1.5rem;
}

.beer-reveal[data-beer-label]:after {
  left: 1.5rem;
}

.beer-slider[data-beer-label=""]:after,
.beer-reveal[data-beer-label=""]:after {
  content: none;
}

.beer-ready .beer-reveal, .beer-ready .beer-handle {
  opacity: 1;
}

section.main-hero {
  background-color: #3859fe;
  padding: 12rem 0 7.5rem;
  position: relative;
  z-index: 0;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow-y: hidden;
}
@media (max-width: 1200px) {
  section.main-hero {
    min-height: 600px;
  }
}
@media (max-width: 1024px) {
  section.main-hero {
    min-height: unset;
  }
}
@media (max-width: 768px) {
  section.main-hero {
    padding: 8rem 0 4rem;
  }
}
section.main-hero:before {
  content: "";
  background: url(5d16fd6e8528b9f8cc5a.svg);
  width: 760px;
  height: 640px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-repeat: no-repeat;
}
section.main-hero.home {
  padding: 10rem 0 4rem;
}
@media (max-width: 768px) {
  section.main-hero.home {
    padding: 8rem 0 2rem;
  }
}
section.main-hero.home .left-side .paragraph {
  max-width: unset;
}
section.main-hero.home .right-side {
  max-width: 420px !important;
}
@media (min-width: 1440px) {
  section.main-hero.home .right-side {
    right: -100px !important;
    bottom: -80px !important;
    top: unset !important;
    height: unset !important;
    max-width: 640px !important;
  }
}
@media (max-width: 900px) {
  section.main-hero.home .right-side {
    position: relative;
    margin-left: auto;
    margin-right: -50px;
    margin-bottom: -4rem !important;
  }
}
@media (max-width: 768px) {
  section.main-hero.home .right-side {
    margin-bottom: -2rem !important;
  }
}
section.main-hero.home .right-side img {
  max-height: unset !important;
}
section.main-hero.single-doctor {
  padding: 10rem 0 6rem;
}
section.main-hero.single-doctor .container {
  align-items: center;
}
@media (max-width: 900px) {
  section.main-hero.single-doctor .container {
    align-items: unset;
  }
}
section.main-hero.single-doctor .container .right-side {
  width: 480px;
  height: 600px;
  background: #f2eee8;
  border-radius: 50%/50%;
  overflow: hidden;
  position: relative;
  transform: skew(-10deg, -1deg);
  right: unset !important;
  bottom: unset !important;
}
@media (max-width: 768px) {
  section.main-hero.single-doctor .container .right-side {
    max-width: 300px;
    max-height: 400px;
  }
}
section.main-hero.single-doctor .container .right-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 15%;
  display: block;
  transform: skew(10deg, 1deg);
  max-height: unset;
}
section.main-hero.contacts {
  padding: 10rem 0 7.5rem;
}
@media (max-width: 1024px) {
  section.main-hero.contacts {
    align-items: unset;
    min-height: 800px;
  }
}
@media (max-width: 768px) {
  section.main-hero.contacts {
    padding: 10rem 0 4rem;
  }
}
@media (min-width: 1440px) {
  section.main-hero.contacts .container {
    position: unset;
  }
}
section.main-hero.contacts .container .right-side {
  max-width: 635px;
}
@media (max-width: 1200px) {
  section.main-hero.contacts .container .right-side {
    max-width: 572px;
  }
}
@media (max-width: 1024px) {
  section.main-hero.contacts .container .right-side {
    max-width: 510px;
  }
}
section.main-hero .container {
  display: flex;
  justify-content: space-between;
}
@media (min-width: 1440px) {
  section.main-hero .container {
    position: relative;
  }
}
@media (max-width: 900px) {
  section.main-hero .container {
    flex-direction: column;
    gap: 2rem;
  }
}
section.main-hero .container .left-side {
  max-width: 500px;
}
@media (max-width: 1000px) {
  section.main-hero .container .left-side {
    max-width: 350px;
  }
}
@media (max-width: 900px) {
  section.main-hero .container .left-side {
    max-width: unset;
  }
}
section.main-hero .container .left-side .title {
  font-size: 3rem;
  font-weight: bold;
  line-height: 3.5rem;
  font-style: normal;
  text-align: left;
  color: #ffffff;
}
section.main-hero .container .left-side .paragraph {
  font-size: 0.8rem;
  font-weight: normal;
  line-height: 1.5rem;
  font-style: normal;
  text-align: left;
  color: #ffffff;
  max-width: 450px;
  margin-top: 1rem;
}
@media (max-width: 600px) {
  section.main-hero .container .left-side .paragraph {
    font-size: 1.15rem;
  }
}
section.main-hero .container .left-side .paragraph h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
section.main-hero .container .left-side .cta-wrapper {
  display: flex;
  margin-top: 2rem;
  gap: 0.8rem;
}
section.main-hero .container .left-side .partners-wrapper {
  margin-top: 3.5rem;
}
@media (max-width: 768px) {
  section.main-hero .container .left-side .partners-wrapper {
    margin-top: 2rem;
  }
}
section.main-hero .container .left-side .partners-wrapper .subtitle {
  font-size: 0.8rem;
  font-weight: normal;
  line-height: 1.5rem;
  font-style: normal;
  text-align: left;
  color: #ffffff;
  margin-bottom: 16px;
}
@media (max-width: 600px) {
  section.main-hero .container .left-side .partners-wrapper .subtitle {
    font-size: 1.15rem;
  }
}
section.main-hero .container .left-side .partners-wrapper img {
  margin-right: 1.5rem;
  max-width: 150px;
}
section.main-hero .container .right-side {
  width: 100%;
  max-width: 640px;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (min-width: 1440px) {
  section.main-hero .container .right-side {
    bottom: 20px;
    height: 210px;
  }
}
@media (max-width: 1200px) {
  section.main-hero .container .right-side {
    max-width: 500px;
  }
}
@media (max-width: 900px) {
  section.main-hero .container .right-side {
    position: relative;
    margin-left: auto;
    margin-right: -50px;
    margin-bottom: -7.5rem;
  }
}
@media (max-width: 768px) {
  section.main-hero .container .right-side {
    margin-bottom: -4rem;
  }
}
@media (max-width: 500px) {
  section.main-hero .container .right-side {
    max-width: 250px;
  }
}
section.main-hero .container .right-side img {
  width: 100%;
  height: auto;
  transition: 0.3s all ease-out;
  border-top-left-radius: 20px;
  max-height: 420px;
  object-fit: cover;
}
@media (min-width: 1440px) {
  section.main-hero .container .right-side img {
    border-top-right-radius: 20px;
  }
}
section.main-hero .container .mapsFrame {
  width: 100%;
  max-width: 540px;
  max-height: 450px;
  height: 100%;
  aspect-ratio: 1;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 1200px) {
  section.main-hero .container .mapsFrame {
    max-height: 400px;
  }
}
section.main-hero .container .mapsFrame iframe {
  border-top-left-radius: 10px;
}

section.services-block {
  padding: 6rem 0 4rem;
}
@media (max-width: 1024px) {
  section.services-block {
    padding: 4rem 0;
  }
}
@media (max-width: 768px) {
  section.services-block {
    padding: 2rem 0;
  }
}
section.services-block .container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 768px) {
  section.services-block .container {
    justify-content: center;
  }
}
section.services-block .container .title {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 3rem;
  font-style: normal;
  text-align: left;
  color: #3859fe;
  word-wrap: break-word;
  max-width: 400px;
}
section.services-block .container .paragraph {
  font-size: 0.8rem;
  font-weight: normal;
  line-height: 1.5rem;
  font-style: normal;
  text-align: left;
  color: #6e6e6e;
  max-width: 600px;
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  section.services-block .container .paragraph {
    max-width: unset;
  }
}
@media (max-width: 600px) {
  section.services-block .container .paragraph {
    font-size: 1.15rem;
  }
}
section.services-block .container .background-decoration-mobile {
  display: none;
  max-width: 200px;
  margin: 0 auto;
  margin-top: 2rem;
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  section.services-block .container .background-decoration-mobile {
    display: block;
  }
}
section.services-block .container .services-wrapper {
  margin-top: 1.5rem;
  max-width: 600px;
}
@media (max-width: 768px) {
  section.services-block .container .services-wrapper {
    max-width: unset;
  }
}
section.services-block .container .services-wrapper .service {
  padding: 26px 20px 26px 0;
  font-size: 0.9rem;
  font-weight: bold;
  line-height: normal;
  font-style: normal;
  text-align: left;
  color: #3859fe;
  border-bottom: 1px solid #efefef;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 600px) {
  section.services-block .container .services-wrapper .service {
    font-size: 1.15rem;
  }
}
section.services-block .container .cta-wrapper {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
}
section.services-block .container .right-side {
  display: block;
}
@media (max-width: 768px) {
  section.services-block .container .right-side {
    display: none;
  }
}
section.services-block .container .right-side img {
  position: relative;
}
@media (max-width: 1024px) {
  section.services-block .container .right-side img {
    max-width: 270px;
    width: 100%;
    height: auto;
  }
}

section.doctors-block {
  padding: 4rem 0;
  position: relative;
}
section.doctors-block.outside .container .doctors-wrapper {
  margin-top: unset;
}
section.doctors-block:before {
  content: "";
  background: url(ce8516f95a9bb1cb48fd.svg);
  width: 430px;
  height: 470px;
  position: absolute;
  bottom: 40px;
  left: 0;
  z-index: -1;
  background-repeat: no-repeat;
}
section.doctors-block .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
section.doctors-block .container .title {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 3rem;
  font-style: normal;
  text-align: center;
  color: #3859fe;
  max-width: 300px;
}
section.doctors-block .container .paragraph {
  font-size: 0.8rem;
  font-weight: normal;
  line-height: 1.5rem;
  font-style: normal;
  text-align: center;
  color: #6e6e6e;
  margin-top: 1.5rem;
  max-width: 475px;
}
@media (max-width: 600px) {
  section.doctors-block .container .paragraph {
    font-size: 1.15rem;
  }
}
section.doctors-block .container .cta-wrapper {
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
}
section.doctors-block .container .doctors-wrapper {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3rem;
}
@media (max-width: 768px) {
  section.doctors-block .container .doctors-wrapper {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    flex-direction: column;
  }
}
section.doctors-block .container .doctors-wrapper .doctor .doc-image {
  width: 280px;
  height: 400px;
  background: #f2eee8;
  border-radius: 50%/50%;
  overflow: hidden;
  position: relative;
  transform: skew(-10deg, -1deg);
}
@media (max-width: 1024px) {
  section.doctors-block .container .doctors-wrapper .doctor .doc-image {
    width: 180px;
    height: 260px;
  }
}
@media (max-width: 768px) {
  section.doctors-block .container .doctors-wrapper .doctor .doc-image {
    width: unset;
    height: unset;
    max-width: 280px;
  }
}
section.doctors-block .container .doctors-wrapper .doctor .doc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 15%;
  display: block;
  transform: skew(10deg, 1deg);
}
section.doctors-block .container .doctors-wrapper .doctor .doc-name {
  font-size: 0.9rem;
  font-weight: bold;
  line-height: 1rem;
  font-style: normal;
  text-align: center;
  color: #3859fe;
  margin-top: 2rem;
}
@media (max-width: 600px) {
  section.doctors-block .container .doctors-wrapper .doctor .doc-name {
    font-size: 1.15rem;
  }
}
section.doctors-block .container .doctors-wrapper .doctor .doc-title {
  font-size: 0.8rem;
  font-weight: normal;
  line-height: 1rem;
  font-style: normal;
  text-align: center;
  color: #6e6e6e;
  margin-top: 0.5rem;
}
@media (max-width: 600px) {
  section.doctors-block .container .doctors-wrapper .doctor .doc-title {
    font-size: 1.15rem;
  }
}
section.doctors-block .container .doctors-wrapper .doctor .doc-years {
  font-size: 0.7rem;
  font-weight: normal;
  line-height: 1rem;
  font-style: normal;
  text-align: center;
  color: #6e6e6e;
  margin-top: 1.7rem;
  position: relative;
}
@media (max-width: 600px) {
  section.doctors-block .container .doctors-wrapper .doctor .doc-years {
    font-size: 0.9rem;
  }
}
section.doctors-block .container .doctors-wrapper .doctor .doc-years:before {
  display: block;
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  background-color: #3859fe;
  border-radius: 50%;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
}

section.offer-banner {
  padding: 4rem 0;
  position: relative;
}
section.offer-banner.home {
  background: linear-gradient(180deg, rgba(14, 14, 14, 0.06) 80%, rgba(14, 14, 14, 0) 100%);
}
@media (max-width: 768px) {
  section.offer-banner.home {
    background: linear-gradient(180deg, rgba(14, 14, 14, 0.06) 90%, rgba(14, 14, 14, 0) 100%);
  }
}
section.offer-banner.home:before {
  background-color: #3859fe;
  width: 100%;
  height: 60%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  z-index: -1;
}
section.offer-banner.home .container .title {
  color: #ffffff;
}
section.offer-banner.home .container .paragraph {
  color: #ffffff;
}
section.offer-banner.home .offer {
  filter: unset !important;
}
section.offer-banner .container .new {
  padding: 10px 20px;
  background-color: #08f29d;
  border-radius: 50px;
  max-width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-bottom: 1rem;
}
section.offer-banner .container .title {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 3rem;
  font-style: normal;
  text-align: left;
  color: #3859fe;
}
section.offer-banner .container .paragraph {
  font-size: 0.8rem;
  font-weight: normal;
  line-height: 1.5rem;
  font-style: normal;
  text-align: left;
  color: #6e6e6e;
  max-width: 670px;
  margin-top: 1.2rem;
}
@media (max-width: 600px) {
  section.offer-banner .container .paragraph {
    font-size: 1.15rem;
  }
}
section.offer-banner .container .offers-wrapper {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
section.offer-banner .container .offers-wrapper .offer {
  padding: 1rem;
  background-color: #ffffff;
  display: flex;
  border-radius: 10px;
  gap: 3rem;
  filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.06));
  position: relative;
}
section.offer-banner .container .offers-wrapper .offer:last-of-type:before {
  display: none;
}
section.offer-banner .container .offers-wrapper .offer:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #e0e0e0;
  bottom: -4rem;
  left: 0;
}
@media (max-width: 900px) {
  section.offer-banner .container .offers-wrapper .offer {
    gap: 1rem;
  }
}
@media (max-width: 600px) {
  section.offer-banner .container .offers-wrapper .offer {
    flex-direction: column-reverse;
  }
}
section.offer-banner .container .offers-wrapper .offer .left-side {
  padding: 1rem;
}
section.offer-banner .container .offers-wrapper .offer .left-side .top .title {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.6rem;
  font-style: normal;
  text-align: left;
  color: #3859fe;
}
section.offer-banner .container .offers-wrapper .offer .left-side .mid {
  padding-top: 30px;
  margin-top: 25px;
  border-top: 1px solid #efefef;
  display: flex;
  gap: 2rem;
}
@media (max-width: 1024px) {
  section.offer-banner .container .offers-wrapper .offer .left-side .mid {
    padding-top: 20px;
    margin-top: 15px;
  }
}
section.offer-banner .container .offers-wrapper .offer .left-side .mid .left-side, section.offer-banner .container .offers-wrapper .offer .left-side .mid .right-side {
  padding: unset;
}
section.offer-banner .container .offers-wrapper .offer .left-side .mid .left-side .title, section.offer-banner .container .offers-wrapper .offer .left-side .mid .right-side .title {
  font-size: 0.7rem;
  font-weight: normal;
  line-height: 1rem;
  font-style: normal;
  text-align: left;
  color: #0e0e0e;
}
section.offer-banner .container .offers-wrapper .offer .left-side .mid .left-side .price, section.offer-banner .container .offers-wrapper .offer .left-side .mid .right-side .price {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5rem;
  font-style: normal;
  text-align: left;
  color: #0e0e0e;
  margin-top: 0.5rem;
}
section.offer-banner .container .offers-wrapper .offer .left-side .mid .left-side .monthly-price, section.offer-banner .container .offers-wrapper .offer .left-side .mid .right-side .monthly-price {
  display: flex;
  align-items: center;
  margin-top: 0.8rem;
  font-size: 0.7rem;
  font-weight: normal;
  font-style: normal;
  text-align: left;
  color: #0e0e0e;
}
section.offer-banner .container .offers-wrapper .offer .left-side .mid .left-side .monthly-price img, section.offer-banner .container .offers-wrapper .offer .left-side .mid .right-side .monthly-price img {
  filter: invert(1);
  max-width: 40px;
  width: 100%;
  height: auto;
  margin-right: 8px;
  margin-top: 2px;
}
section.offer-banner .container .offers-wrapper .offer .left-side .mid .right-side .price {
  color: #f70000;
}
section.offer-banner .container .offers-wrapper .offer .left-side .mid .left-side {
  width: 50%;
}
section.offer-banner .container .offers-wrapper .offer .left-side .bot {
  padding-top: 30px;
  margin-top: 25px;
  border-top: 1px solid #efefef;
}
@media (max-width: 1024px) {
  section.offer-banner .container .offers-wrapper .offer .left-side .bot {
    padding-top: 20px;
    margin-top: 15px;
  }
}
section.offer-banner .container .offers-wrapper .offer .left-side .bot .paragraph {
  font-size: 0.7rem;
  font-weight: normal;
  line-height: 1.2rem;
  font-style: normal;
  text-align: left;
  color: #6e6e6e;
  margin-top: unset;
}
@media (max-width: 768px) {
  section.offer-banner .container .offers-wrapper .offer .left-side .bot .paragraph {
    font-size: 0.8rem;
  }
}
@media (max-width: 600px) {
  section.offer-banner .container .offers-wrapper .offer .left-side .bot .paragraph {
    font-size: 1.15rem;
    line-height: 1.8rem;
  }
}
section.offer-banner .container .offers-wrapper .offer .left-side .bot .paragraph strong {
  color: #000000;
}
section.offer-banner .container .offers-wrapper .offer .left-side .bot .cta-wrapper {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}
@media (max-width: 1024px) {
  section.offer-banner .container .offers-wrapper .offer .left-side .bot .cta-wrapper {
    margin-top: 1rem;
  }
}
@media (max-width: 768px) {
  section.offer-banner .container .offers-wrapper .offer .left-side .bot .cta-wrapper {
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  section.offer-banner .container .offers-wrapper .offer .left-side .bot .cta-wrapper {
    align-items: flex-start;
  }
}
section.offer-banner .container .offers-wrapper .offer .right-side {
  max-width: 450px;
  width: 100%;
  height: auto;
}
@media (max-width: 600px) {
  section.offer-banner .container .offers-wrapper .offer .right-side {
    max-width: unset;
  }
}
section.offer-banner .container .offers-wrapper .offer .right-side img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.offer-popup-form {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  z-index: 999;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}
.offer-popup-form.active {
  display: flex;
}
.offer-popup-form .offer-popup-form-wrapper {
  position: relative;
  background-color: #08f29d;
  border-radius: 0.5rem;
  overflow: hidden;
  padding: 3rem;
  max-width: 95%;
}
@media (max-width: 600px) {
  .offer-popup-form .offer-popup-form-wrapper {
    padding: 2rem;
  }
}
.offer-popup-form .offer-popup-form-wrapper .close-modal {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 1rem;
  height: 1rem;
  cursor: pointer;
}
.offer-popup-form .offer-popup-form-wrapper__title p {
  padding-top: 1rem;
}
.offer-popup-form .offer-popup-form-wrapper .offer-popup-form-wrapper__item form .inputs-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid #AAA9A6;
  border-bottom: 1px solid #AAA9A6;
}
@media (max-width: 800px) {
  .offer-popup-form .offer-popup-form-wrapper .offer-popup-form-wrapper__item form .inputs-wrapper {
    grid-template-columns: 1fr;
  }
}
.offer-popup-form .offer-popup-form-wrapper .offer-popup-form-wrapper__item form .inputs-wrapper .input-block {
  display: flex;
  flex-direction: column;
}
.offer-popup-form .offer-popup-form-wrapper .offer-popup-form-wrapper__item form .inputs-wrapper .input-block label {
  font-size: 1rem;
  color: black;
  font-weight: 500;
}
.offer-popup-form .offer-popup-form-wrapper .offer-popup-form-wrapper__item form .inputs-wrapper .input-block input {
  margin-top: 0.5rem;
  background-color: #fff;
  border: none;
  padding: 0.85em 1.5em;
  border-radius: 5px;
  line-height: 1;
  font-weight: 500;
}
.offer-popup-form .offer-popup-form-wrapper .offer-popup-form-wrapper__item form .inputs-wrapper .input-block input::placeholder {
  opacity: 1;
}
.offer-popup-form .offer-popup-form-wrapper .offer-popup-form-wrapper__item form .inputs-wrapper .input-block input.error {
  background-color: red;
}
.offer-popup-form .offer-popup-form-wrapper .offer-popup-form-wrapper__item form .inputs-wrapper .input-block p.error-msg {
  font-size: 0.8rem;
  color: red;
  font-weight: 700;
}
.offer-popup-form .offer-popup-form-wrapper .offer-popup-form-wrapper__item form .checkbox-confirm-section {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr max-content;
  gap: 1rem;
}
@media (max-width: 768px) {
  .offer-popup-form .offer-popup-form-wrapper .offer-popup-form-wrapper__item form .checkbox-confirm-section {
    grid-template-columns: 1fr;
  }
}
.offer-popup-form .offer-popup-form-wrapper .offer-popup-form-wrapper__item form .checkbox-confirm-section .form-checkbox-wrapper {
  width: 100%;
}
.offer-popup-form .offer-popup-form-wrapper .offer-popup-form-wrapper__item form .checkbox-confirm-section .form-checkbox-wrapper .checkbox-container {
  display: block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  user-select: none;
  color: black;
}
.offer-popup-form .offer-popup-form-wrapper .offer-popup-form-wrapper__item form .checkbox-confirm-section .form-checkbox-wrapper .checkbox-container a {
  text-decoration: underline;
  color: black;
  font-weight: 500;
}
.offer-popup-form .offer-popup-form-wrapper .offer-popup-form-wrapper__item form .checkbox-confirm-section .form-checkbox-wrapper .checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.offer-popup-form .offer-popup-form-wrapper .offer-popup-form-wrapper__item form .checkbox-confirm-section .form-checkbox-wrapper .checkbox-container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border: 1px solid black;
  border-radius: 50%;
}
.offer-popup-form .offer-popup-form-wrapper .offer-popup-form-wrapper__item form .checkbox-confirm-section .form-checkbox-wrapper .checkbox-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.offer-popup-form .offer-popup-form-wrapper .offer-popup-form-wrapper__item form .checkbox-confirm-section .form-checkbox-wrapper .checkbox-container input:checked ~ .checkmark {
  background-color: black;
}
.offer-popup-form .offer-popup-form-wrapper .offer-popup-form-wrapper__item form .checkbox-confirm-section .form-checkbox-wrapper .checkbox-container input:checked ~ .checkmark:after {
  display: block;
}
.offer-popup-form .offer-popup-form-wrapper .offer-popup-form-wrapper__item form .checkbox-confirm-section .submit-wrapper {
  align-self: end;
}
.offer-popup-form .offer-popup-form-wrapper .offer-popup-form-wrapper__item form .checkbox-confirm-section .submit-wrapper button {
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.7rem 1rem;
  border-radius: 5px;
  border: none;
  color: black;
  background-color: white;
}
.offer-popup-form .offer-popup-form-wrapper .offer-popup-form-wrapper__item form .status {
  padding-top: 1rem;
  font-weight: 700;
  font-style: italic;
}

section.cards-block {
  padding: 4rem 0;
}
section.cards-block .container .cards-wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
@media (max-width: 768px) {
  section.cards-block .container .cards-wrapper {
    grid-template-columns: 1fr;
  }
}
section.cards-block .container .cards-wrapper.count-4 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 768px) {
  section.cards-block .container .cards-wrapper.count-4 {
    grid-template-columns: 1fr;
  }
}
section.cards-block .container .cards-wrapper.count-4 .card {
  max-width: 490px;
}
@media (max-width: 768px) {
  section.cards-block .container .cards-wrapper.count-4 .card {
    max-width: unset;
  }
}
section.cards-block .container .cards-wrapper.count-4 .card:before {
  content: "";
  background: url(6aa6b6bd77e551ce8953.svg);
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  z-index: 0;
  left: 0;
  top: 0;
}
section.cards-block .container .cards-wrapper.count-4 .card:nth-of-type(2):before {
  background: url(d01ef1737fe2f28681a7.svg);
}
section.cards-block .container .cards-wrapper.count-4 .card:nth-of-type(3):before {
  background: url(a6411dfcd62ab94a8134.svg);
}
section.cards-block .container .cards-wrapper.count-4 .card:nth-of-type(4):before {
  background: url(64eb974229a6f24c5b6e.svg);
}
section.cards-block .container .cards-wrapper .card {
  border-radius: 10px;
  background-color: #3859fe;
  position: relative;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  max-width: 320px;
  overflow: hidden;
}
@media (max-width: 768px) {
  section.cards-block .container .cards-wrapper .card {
    max-width: unset;
  }
}
section.cards-block .container .cards-wrapper .card:before {
  content: "";
  background: url(e4a959efe07e48a2f7c2.svg);
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  z-index: 0;
  left: 0;
  bottom: -80px;
}
@media (max-width: 768px) {
  section.cards-block .container .cards-wrapper .card:before {
    background-size: cover !important;
  }
}
section.cards-block .container .cards-wrapper .card:nth-of-type(2):before {
  background: url(f213a19e9874b0161101.svg);
}
section.cards-block .container .cards-wrapper .card:nth-of-type(3):before {
  background: url(05cef762f7881f71f0a6.svg);
}
section.cards-block .container .cards-wrapper .card .title {
  margin-top: 3rem;
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1.6rem;
  font-style: normal;
  text-align: left;
  color: #ffffff;
  min-height: 64px;
  z-index: 1;
  position: relative;
  max-width: 300px;
}
@media (max-width: 1024px) {
  section.cards-block .container .cards-wrapper .card .title {
    max-width: 260px;
  }
}
@media (max-width: 900px) {
  section.cards-block .container .cards-wrapper .card .title {
    max-width: 170px;
  }
}
@media (max-width: 768px) {
  section.cards-block .container .cards-wrapper .card .title {
    margin-top: unset;
  }
}
@media (max-width: 600px) {
  section.cards-block .container .cards-wrapper .card .title {
    min-height: 40px;
  }
}
section.cards-block .container .cards-wrapper .card .logo-image {
  position: absolute;
  right: 0;
  top: 0;
  background: #13295f;
  width: 130px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
section.cards-block .container .cards-wrapper .card .index {
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5rem;
  font-style: normal;
  text-align: left;
  color: #a5b4ff;
  z-index: 1;
}
section.cards-block .container .cards-wrapper .card .paragraph {
  font-size: 0.8rem;
  font-weight: normal;
  line-height: 1.5rem;
  font-style: normal;
  text-align: left;
  color: #fefefe;
  margin-top: 2rem;
  margin-bottom: 2rem;
  z-index: 1;
  position: relative;
}
@media (max-width: 600px) {
  section.cards-block .container .cards-wrapper .card .paragraph {
    font-size: 1.15rem;
  }
}
section.cards-block .container .cards-wrapper .card .cta-green {
  margin-top: auto;
  align-self: flex-start;
}

section.about-block {
  padding: 4rem 0;
}
section.about-block .container .title {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 3rem;
  font-style: normal;
  text-align: center;
  color: #3859fe;
}
section.about-block .container .paragraph {
  font-size: 0.8rem;
  font-weight: normal;
  line-height: 1.5rem;
  font-style: normal;
  text-align: center;
  color: #6e6e6e;
  max-width: 420px;
  margin: 0 auto;
  margin-top: 1.5rem;
}
@media (max-width: 600px) {
  section.about-block .container .paragraph {
    font-size: 1.15rem;
  }
}
section.about-block .container .background-image {
  margin-left: -250px;
  margin-top: -240px;
  margin-bottom: -250px;
  position: relative;
  z-index: -1;
}
@media (max-width: 768px) {
  section.about-block .container .background-image {
    max-width: 700px;
    aspect-ratio: 2/1;
    object-fit: contain;
    min-height: 100vh;
    margin-top: -190px;
    margin-bottom: -250px;
    margin-left: 0;
  }
}
@media (max-width: 600px) {
  section.about-block .container .background-image {
    margin-left: -100px;
  }
}
section.about-block .container .second-par {
  max-width: 600px;
  margin: 0 auto;
  padding-top: 3rem;
}
section.about-block .container .points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-items: center;
  padding-bottom: 3rem;
  border-bottom: 1px solid #efefef;
  gap: 1rem;
}
@media (max-width: 768px) {
  section.about-block .container .points {
    grid-template-columns: 1fr;
  }
}
section.about-block .container .points .point {
  max-width: 230px;
}
section.about-block .container .points .point .title {
  font-size: 2rem;
  font-weight: normal;
  line-height: 2.5rem;
  font-style: normal;
  text-align: left;
  color: #3859fe;
}
section.about-block .container .points .point .paragraph {
  position: relative;
  font-size: 0.8rem;
  font-weight: normal;
  line-height: 1.5rem;
  font-style: normal;
  text-align: left;
  color: #6e6e6e;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
}
@media (max-width: 600px) {
  section.about-block .container .points .point .paragraph {
    font-size: 1.15rem;
  }
}
section.about-block .container .points .point .paragraph:before {
  content: "";
  display: block;
  width: 18px;
  height: 1px;
  left: 0;
  top: 0;
  position: absolute;
  background-color: #3859fe;
}

section.faq-block {
  padding: 4rem 0;
  position: relative;
}
section.faq-block .svgDecoration {
  position: absolute;
  right: 0;
  top: -250px;
  z-index: -1;
}
section.faq-block .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
section.faq-block .container .background-image {
  margin-left: -80px;
}
@media (max-width: 1024px) {
  section.faq-block .container .background-image {
    margin-left: unset;
    width: 100%;
    max-width: 300px;
  }
}
@media (max-width: 768px) {
  section.faq-block .container .background-image {
    display: none;
  }
}
section.faq-block .container .block-wrapper {
  max-width: 605px;
}
@media (max-width: 768px) {
  section.faq-block .container .block-wrapper {
    max-width: unset;
  }
}
section.faq-block .container .block-wrapper .background-image-mobile {
  display: none;
}
@media (max-width: 768px) {
  section.faq-block .container .block-wrapper .background-image-mobile {
    display: block;
    margin: 0 auto;
    margin-top: 2rem;
    max-width: 250px;
  }
}
section.faq-block .container .block-wrapper .title {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 3rem;
  font-style: normal;
  text-align: left;
  color: #3859fe;
}
section.faq-block .container .block-wrapper .paragraph {
  font-size: 0.8rem;
  font-weight: normal;
  line-height: 1.5rem;
  font-style: normal;
  text-align: left;
  color: #6e6e6e;
  margin-top: 1rem;
}
@media (max-width: 600px) {
  section.faq-block .container .block-wrapper .paragraph {
    font-size: 1.15rem;
  }
}
section.faq-block .container .block-wrapper .faq-wrapper {
  margin-top: 1.5rem;
}
section.faq-block .container .block-wrapper .faq-wrapper .faq {
  border-bottom: 1px solid #efefef;
}
section.faq-block .container .block-wrapper .faq-wrapper .faq:last-child {
  border-bottom: unset;
}
section.faq-block .container .block-wrapper .faq-wrapper .faq .question {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
}
section.faq-block .container .block-wrapper .faq-wrapper .faq .question img {
  max-width: 30%;
}
section.faq-block .container .block-wrapper .faq-wrapper .faq .question.active .handle-decoration {
  transform: rotate(45deg);
  border-radius: 50%;
}
section.faq-block .container .block-wrapper .faq-wrapper .faq .question:hover .handle-decoration {
  border-radius: 50%;
}
section.faq-block .container .block-wrapper .faq-wrapper .faq .question .service-name {
  padding: 26px 20px 26px 0;
  flex-grow: 1;
  font-size: 0.9rem;
  font-weight: bold;
  font-style: normal;
  text-align: left;
  color: #3859fe;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 600px) {
  section.faq-block .container .block-wrapper .faq-wrapper .faq .question .service-name {
    font-size: 1.15rem;
  }
}
@media (max-width: 768px) {
  section.faq-block .container .block-wrapper .faq-wrapper .faq .question .service-name {
    padding: 20px 0px;
  }
}
section.faq-block .container .block-wrapper .faq-wrapper .faq .answer {
  overflow: hidden;
  height: 0;
  transition: height 0.3s ease;
  padding: 0 40px 0 0;
}
section.faq-block .container .block-wrapper .faq-wrapper .faq .answer .paragraph {
  margin-top: unset;
}
@media (max-width: 768px) {
  section.faq-block .container .block-wrapper .faq-wrapper .faq .answer {
    padding: 0 70px 0 20px;
  }
}
@media (max-width: 600px) {
  section.faq-block .container .block-wrapper .faq-wrapper .faq .answer {
    padding: 0 20px 0 0;
  }
}
section.faq-block .container .block-wrapper .faq-wrapper .faq .answer p {
  font-size: 0.7rem;
  font-weight: normal;
  line-height: 1.5rem;
  font-style: normal;
  text-align: left;
  color: #6c6c6c;
  padding-bottom: 20px;
}
section.faq-block .container .block-wrapper .faq-wrapper .faq .answer .row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 25px 0;
  border-bottom: 1px solid #e0e0e0;
}
section.faq-block .container .block-wrapper .faq-wrapper .faq .answer .row .service-name, section.faq-block .container .block-wrapper .faq-wrapper .faq .answer .row .service-price {
  font-family: "Chillax Regular";
  font-size: 1rem;
  font-weight: 600;
  line-height: 1rem;
  font-style: normal;
  text-align: left;
  text-transform: uppercase;
}
section.faq-block .container .block-wrapper .faq-wrapper .faq .answer .row .service-name {
  color: #231f20;
}
section.faq-block .container .block-wrapper .faq-wrapper .faq .answer .row .service-price {
  color: #fc713a;
}
section.faq-block .container .block-wrapper .faq-wrapper .faq .answer .row:first-of-type {
  border-bottom: 1px solid #9d9d9d;
  padding: 30px 0;
}
section.faq-block .container .block-wrapper .faq-wrapper .faq .answer .row:first-of-type .service-name, section.faq-block .container .block-wrapper .faq-wrapper .faq .answer .row:first-of-type .service-price {
  font-family: "Chillax Regular";
  font-size: 1rem;
  font-weight: 600;
  line-height: 1rem;
  font-style: normal;
  text-align: left;
  text-transform: uppercase;
}
section.faq-block .container .block-wrapper .faq-wrapper .faq .answer .row:nth-last-child(2) {
  border-bottom: unset;
}
section.faq-block .container .block-wrapper .faq-wrapper .faq .answer .price-text-cta {
  display: flex;
  justify-content: space-between;
  padding: 30px 0 60px;
}
section.faq-block .container .block-wrapper .faq-wrapper .faq .answer .price-text-cta .text {
  max-width: 600px;
  font-family: "Inter";
  font-size: 0.9rem;
  font-weight: normal;
  line-height: 1.5rem;
  font-style: normal;
  text-align: left;
  color: #6c6c6c;
}
@media (max-width: 600px) {
  section.faq-block .container .block-wrapper .faq-wrapper .faq .answer .price-text-cta .text {
    font-size: 1.15rem;
  }
}
section.faq-block .container .block-wrapper .faq-wrapper .faq .answer .price-text-cta .cta-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

section.banner-block {
  background-color: #3859fe;
  padding: 5rem 0 0;
  z-index: 1;
  position: relative;
}
@media (max-width: 768px) {
  section.banner-block {
    padding: 3rem 0 0;
  }
}
section.banner-block .background-decoration {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
section.banner-block .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
@media (max-width: 768px) {
  section.banner-block .container {
    flex-direction: column;
  }
}
section.banner-block .container .left-side {
  max-width: 450px;
}
@media (max-width: 1024px) {
  section.banner-block .container .left-side {
    max-width: 420px;
  }
}
@media (max-width: 768px) {
  section.banner-block .container .left-side {
    max-width: unset;
  }
}
section.banner-block .container .left-side .title {
  font-size: 3rem;
  font-weight: bold;
  line-height: 3.5rem;
  font-style: normal;
  text-align: left;
  color: #ffffff;
}
section.banner-block .container .left-side .paragraph {
  font-size: 0.8rem;
  font-weight: normal;
  line-height: 1.5rem;
  font-style: normal;
  text-align: left;
  color: #ffffff;
  margin-top: 1rem;
}
@media (max-width: 600px) {
  section.banner-block .container .left-side .paragraph {
    font-size: 1.15rem;
  }
}
section.banner-block .container .left-side .cta-wrapper {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}
section.banner-block .container .right-side {
  margin-right: -200px;
}
@media (max-width: 768px) {
  section.banner-block .container .right-side {
    margin-right: -30px;
    max-width: 360px;
    align-self: flex-end;
  }
}
section.banner-block .container .right-side img {
  width: 100%;
  max-width: 500px;
  border-top-left-radius: 20px;
}
@media (min-width: 1440px) {
  section.banner-block .container .right-side img {
    border-top-right-radius: 20px;
  }
}

section.testimonials-block {
  padding: 4rem 0;
}
@media (max-width: 1024px) {
  section.testimonials-block {
    padding: 4rem 0;
  }
}
section.testimonials-block .container .title {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 3rem;
  font-style: normal;
  text-align: center;
  color: #3859fe;
}
section.testimonials-block .container .paragraph {
  font-size: 0.8rem;
  font-weight: normal;
  line-height: 1.5rem;
  font-style: normal;
  text-align: center;
  color: #6e6e6e;
  max-width: 420px;
  margin: 0 auto;
  margin-top: 1.5rem;
}
@media (max-width: 600px) {
  section.testimonials-block .container .paragraph {
    font-size: 1.15rem;
  }
}
section.testimonials-block .container .swiper-nav {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  justify-content: center;
}
section.testimonials-block .container .swiper-nav .button-next, section.testimonials-block .container .swiper-nav .button-prev {
  cursor: pointer;
}
section.testimonials-block .container .swiper {
  overflow: visible;
}
section.testimonials-block .container .swiper .swiper-slide {
  transition: 0.3s all ease-out;
}
section.testimonials-block .container .swiper .swiper-slide-prev {
  transform: scale(0.9);
  position: relative;
  transition: 0.3s all ease-out;
}
section.testimonials-block .container .swiper .swiper-slide-prev:before {
  background: linear-gradient(90deg, rgb(255, 255, 255) 20%, rgba(255, 255, 255, 0.5) 100%);
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s all ease-out;
}
section.testimonials-block .container .swiper .swiper-slide-next {
  transition: 0.3s all ease-out;
  transform: scale(0.9);
}
section.testimonials-block .container .swiper .swiper-slide-next:before {
  background: linear-gradient(270deg, rgb(255, 255, 255) 20%, rgba(255, 255, 255, 0.5) 100%);
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s all ease-out;
}
section.testimonials-block .container .testimonials-wrapper {
  margin-top: 2.5rem;
}
section.testimonials-block .container .testimonials-wrapper .testimonial {
  width: 100%;
  border-radius: 10px;
  filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.08));
  background: #ffffff;
  padding: 2.5rem;
}
section.testimonials-block .container .testimonials-wrapper .testimonial .name-date {
  display: flex;
  justify-content: space-between;
}
section.testimonials-block .container .testimonials-wrapper .testimonial .name-date .name {
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1.6rem;
  font-style: normal;
  text-align: left;
  color: #3859fe;
}
section.testimonials-block .container .testimonials-wrapper .testimonial .name-date .date {
  font-size: 0.7rem;
  font-weight: normal;
  line-height: 1.5rem;
  font-style: normal;
  text-align: right;
  color: #6e6e6e;
}
section.testimonials-block .container .testimonials-wrapper .testimonial .position {
  font-size: 0.7rem;
  font-weight: normal;
  line-height: 1.5rem;
  font-style: normal;
  text-align: left;
  color: #6e6e6e;
}
section.testimonials-block .container .testimonials-wrapper .testimonial .paragraph {
  font-size: 0.8rem;
  font-weight: normal;
  line-height: 1.5rem;
  font-style: normal;
  text-align: left;
  color: #6e6e6e;
  margin: 2rem 0 0;
  max-width: unset;
}
@media (max-width: 600px) {
  section.testimonials-block .container .testimonials-wrapper .testimonial .paragraph {
    font-size: 1.15rem;
  }
}

section.title-content {
  padding: 2rem 0;
}
section.title-content.first {
  padding: 4rem 0 2rem;
}
@media (max-width: 500px) {
  section.title-content {
    padding: 2rem 0;
  }
}
section.title-content .container .title {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 3rem;
  font-style: normal;
  text-align: left;
  color: #3859fe;
  margin-bottom: 1.5rem;
}
section.title-content .container .paragraph {
  font-size: 0.8rem;
  font-weight: normal;
  line-height: 1.5rem;
  font-style: normal;
  text-align: left;
  color: #6e6e6e;
}
@media (max-width: 600px) {
  section.title-content .container .paragraph {
    font-size: 1.15rem;
  }
}
section.title-content .container .paragraph h3 {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 2rem;
  font-style: normal;
  text-align: left;
  color: #3859fe;
  margin-bottom: 0.3rem;
}
section.title-content .container .paragraph h5 {
  color: black;
}
section.title-content .container .paragraph ul {
  padding-top: 1em;
  color: black;
  list-style-type: circle;
  list-style-position: inside;
}
section.title-content .container .paragraph ul li {
  margin: 0.5em 0;
  font-size: 0.8rem;
  font-weight: normal;
  line-height: 1.5rem;
  font-style: normal;
  text-align: left;
  color: #6e6e6e;
}
section.title-content .container .paragraph figure.wp-block-table {
  margin-top: 1em;
}
section.title-content .container .paragraph figure.wp-block-table table {
  color: black;
  border: 1px solid;
}
section.title-content .container .paragraph figure.wp-block-table table thead {
  border: 1px solid;
}
section.title-content .container .paragraph figure.wp-block-table table thead tr th {
  padding: 1em;
  border: 1px solid;
  font-size: 0.8rem;
  font-weight: normal;
  line-height: 1.5rem;
  font-style: normal;
  text-align: left;
  color: #6e6e6e;
}
section.title-content .container .paragraph figure.wp-block-table table thead tr th:nth-of-type(1) {
  width: 25%;
}
section.title-content .container .paragraph figure.wp-block-table table thead tr th:nth-of-type(2) {
  width: 30%;
}
section.title-content .container .paragraph figure.wp-block-table table thead tr th:nth-of-type(3) {
  width: 55%;
}
section.title-content .container .paragraph figure.wp-block-table table tbody tr td {
  padding: 1em;
  border: 1px solid;
}
section.title-content .container .paragraph p {
  padding: 0.3rem 0;
}
section.title-content .container .paragraph p img {
  max-width: 120px;
  width: 100%;
  height: auto;
  margin-right: 10px;
  object-fit: scale-down;
}
@media (max-width: 600px) {
  section.title-content .container .paragraph p img {
    max-width: 100px;
  }
}
section.title-content .container .paragraph p strong {
  font-size: 1rem;
  font-weight: bold;
  font-style: normal;
  text-align: left;
  color: #0e0e0e;
}
@media (max-width: 900px) {
  section.title-content .container .paragraph p.image-wrapper {
    grid-template-columns: repeat(3, 1fr) !important;
    display: grid !important;
    justify-content: space-between !important;
    align-items: center !important;
    justify-items: center !important;
  }
}
section.title-content .container .image-cards {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
@media (max-width: 768px) {
  section.title-content .container .image-cards {
    grid-template-columns: 1fr;
  }
}
section.title-content .container .image-cards .card {
  display: flex;
  flex-direction: column;
}
section.title-content .container .image-cards .card img {
  border-radius: 10px;
}
section.title-content .container .image-cards .card .title {
  font-size: 2rem;
  font-weight: bold;
  font-style: normal;
  line-height: normal;
  text-align: left;
  color: #3859fe;
  margin-top: 1rem;
  margin-bottom: unset;
}
section.title-content .container .image-cards .card .paragraph {
  font-size: 0.8rem;
  font-weight: normal;
  line-height: 1.5rem;
  font-style: normal;
  text-align: left;
  color: #6e6e6e;
  margin-top: 1rem;
}
@media (max-width: 600px) {
  section.title-content .container .image-cards .card .paragraph {
    font-size: 1.15rem;
  }
}
section.title-content .container .video-wrapper {
  height: 530px;
  width: 100%;
  background-color: #6c6c6c;
  border-radius: 10px;
  margin-top: 2.5rem;
}
section.title-content .container .cta-wrapper {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
}
section.title-content .container .dropdown {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
}
section.title-content .container .dropdown .dropdown-title svg {
  transition: 0.3s all ease-out;
}
section.title-content .container .dropdown .dropdown-title.active {
  background: #08f29d;
  color: #0e0e0e;
}
section.title-content .container .dropdown .dropdown-title.active svg {
  transform: rotate(45deg);
}
section.title-content .container .dropdown .dropdown-title.active svg path {
  stroke: #0e0e0e;
}
section.title-content .container .dropdown .dropdown-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #3859fe;
  padding: 25px 40px;
  border-radius: 6px;
  color: #ffffff;
  transition: 0.3s all ease-out;
  cursor: pointer;
}
section.title-content .container .dropdown .dropdown-content {
  margin: 0 2rem;
  font-size: 0.8rem;
  font-weight: normal;
  line-height: 1.5rem;
  font-style: normal;
  text-align: left;
  color: #6e6e6e;
  border-bottom: 1px solid #6e6e6e;
  display: flex;
  justify-content: space-between;
  height: 0;
  overflow: hidden;
  transition: 0.3s ease-out;
}
@media (max-width: 600px) {
  section.title-content .container .dropdown .dropdown-content {
    font-size: 1.15rem;
  }
}
section.title-content .container .dropdown .dropdown-content p {
  padding: 1.5rem 0;
}
section.title-content .container .dropdown .dropdown-content:last-child {
  border-bottom: unset;
}

section.split-content {
  padding: 2rem 0;
}
@media (max-width: 500px) {
  section.split-content {
    padding: 2rem 0;
  }
}
section.split-content.mirrored .container {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  section.split-content.mirrored .container {
    flex-direction: column;
  }
}
section.split-content .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 768px) {
  section.split-content .container {
    flex-direction: column;
  }
}
section.split-content .container .left-side {
  max-width: 400px;
}
@media (max-width: 768px) {
  section.split-content .container .left-side {
    max-width: unset;
  }
}
section.split-content .container .left-side .title {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 3rem;
  font-style: normal;
  text-align: left;
  color: #3859fe;
}
section.split-content .container .left-side .paragraph {
  font-size: 0.8rem;
  font-weight: normal;
  line-height: 1.5rem;
  font-style: normal;
  text-align: left;
  color: #6e6e6e;
  margin-top: 1.5rem;
}
@media (max-width: 600px) {
  section.split-content .container .left-side .paragraph {
    font-size: 1.15rem;
  }
}
section.split-content .container .left-side .cta-wrapper {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
}
section.split-content .container .right-side img {
  width: 100%;
  max-width: 540px;
  border-radius: 10px;
}

section.all-services {
  position: relative;
}
section.all-services .container .services-wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 30px;
  justify-self: center;
}
@media (max-width: 1400px) {
  section.all-services .container .services-wrapper {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 650px) {
  section.all-services .container .services-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-gap: 15px;
  }
}
@media (max-width: 500px) {
  section.all-services .container .services-wrapper {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    grid-gap: 15px;
  }
}
section.all-services .container .services-wrapper .service-card {
  background-color: #3859fe;
  padding: 2rem;
  border-radius: 10px;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  section.all-services .container .services-wrapper .service-card {
    padding: 30px;
    min-height: 300px;
  }
}
@media (max-width: 768px) {
  section.all-services .container .services-wrapper .service-card {
    padding: 30px 20px;
    min-height: unset;
  }
}
section.all-services .container .services-wrapper .service-card .index {
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5rem;
  font-style: normal;
  text-align: left;
  color: #a5b4ff;
}
section.all-services .container .services-wrapper .service-card .title {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.5rem;
  font-style: normal;
  text-align: left;
  color: #ffffff;
  margin-top: 1.5rem;
}
section.all-services .container .services-wrapper .service-card .paragraph {
  font-size: 0.8rem;
  font-weight: normal;
  line-height: 1.5rem;
  font-style: normal;
  text-align: left;
  color: #ffffff;
  margin-top: 2rem;
}
@media (max-width: 600px) {
  section.all-services .container .services-wrapper .service-card .paragraph {
    font-size: 1.15rem;
  }
}
section.all-services .container .services-wrapper .service-card .excerpt {
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: normal;
  line-height: 1.5rem;
  font-style: normal;
  text-align: left;
  color: #ffffff;
}
@media (max-width: 600px) {
  section.all-services .container .services-wrapper .service-card .excerpt {
    font-size: 1.15rem;
  }
}
section.all-services .container .services-wrapper .service-card .cta-green {
  margin-top: auto;
}
@media (max-width: 768px) {
  section.all-services .container .services-wrapper .service-card .cta-green {
    margin-top: 2rem;
  }
}
section.all-services .container .services-wrapper .service-card img {
  transition: 0.3s all ease-out;
}
@media (max-width: 1024px) {
  section.all-services .container .services-wrapper .service-card img {
    width: 40px;
  }
}

section.title-list {
  padding: 4rem 0;
}
section.title-list .container .title {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 3rem;
  font-style: normal;
  text-align: left;
  color: #3859fe;
}
section.title-list .container .item-wrapper {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
section.title-list .container .item-wrapper .item {
  font-size: 0.8rem;
  font-weight: normal;
  line-height: 1.5rem;
  font-style: normal;
  text-align: left;
  color: #6e6e6e;
  padding: 1rem 1.5rem;
  background-color: #f8f8f8;
  border-radius: 6px;
}
@media (max-width: 600px) {
  section.title-list .container .item-wrapper .item {
    font-size: 1.15rem;
  }
}

section.prices-block {
  padding: 4rem 0;
  display: flex;
  flex-direction: column;
}
section.prices-block .prices {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
section.prices-block .questioni svg {
  transition: 0.3s all ease-out;
}
section.prices-block .questioni.active .service-name {
  background: #08f29d;
  color: #0e0e0e;
}
section.prices-block .questioni.active svg {
  transform: rotate(45deg);
}
section.prices-block .questioni.active svg path {
  stroke: #0e0e0e;
}
section.prices-block .questioni .service-name {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #3859fe;
  padding: 25px 40px;
  border-radius: 6px;
  color: #ffffff;
  transition: 0.3s all ease-out;
  cursor: pointer;
}
section.prices-block .answer {
  padding: 1.5rem 0;
  margin: 0 2rem;
  font-size: 0.8rem;
  font-weight: normal;
  line-height: 1.5rem;
  font-style: normal;
  text-align: left;
  color: #6e6e6e;
  border-bottom: 1px solid #6e6e6e;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 600px) {
  section.prices-block .answer {
    font-size: 1.15rem;
  }
}
section.prices-block .answer .right {
  font-size: 0.8rem;
  font-weight: bold;
  line-height: 1.5rem;
  font-style: normal;
  text-align: right;
  color: #3859fe;
}
@media (max-width: 600px) {
  section.prices-block .answer .right {
    font-size: 1.15rem;
  }
}
section.prices-block .answer:last-child {
  border-bottom: unset;
}
section.prices-block .answer-wrapper {
  height: 0;
  overflow: hidden;
  transition: 0.3s ease-out;
}
section.prices-block .row {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}
section.prices-block .row .service-name {
  padding: 1.5rem 2rem;
  background-color: #f8f8f8;
  width: 100%;
  border-radius: 8px;
  font-family: "Chillax Semibold";
  font-size: 1rem;
  font-weight: 600;
  line-height: 1rem;
  font-style: normal;
  text-align: left;
  color: #231f20;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  section.prices-block .row .service-name {
    padding: 1.5rem 1rem;
  }
}
section.prices-block .row .service-price {
  padding: 1.5rem 2rem;
  background-color: #fc713a;
  min-width: 200px;
  border-radius: 8px;
  display: flex;
  justify-content: flex-end;
  font-family: "Chillax Semibold";
  font-size: 1rem;
  font-weight: 600;
  line-height: 1rem;
  font-style: normal;
  text-align: right;
  color: #ffffff;
  text-transform: uppercase;
  align-items: center;
}
@media (max-width: 900px) {
  section.prices-block .row .service-price {
    min-width: 140px;
  }
}
@media (max-width: 600px) {
  section.prices-block .row .service-price {
    min-width: 110px;
  }
}

section.price-single {
  padding: 4rem 0;
}
@media (max-width: 500px) {
  section.price-single {
    padding: 2rem 0;
  }
}
section.price-single .container .title {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 3rem;
  font-style: normal;
  text-align: left;
  color: #3859fe;
}
section.price-single .container .paragraph {
  font-size: 0.8rem;
  font-weight: normal;
  line-height: 1.5rem;
  font-style: normal;
  text-align: left;
  color: #6e6e6e;
  margin-top: 2rem;
}
@media (max-width: 600px) {
  section.price-single .container .paragraph {
    font-size: 1.15rem;
  }
}
section.price-single .container .price {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
}
section.price-single .container .price .questioni svg {
  transition: 0.3s all ease-out;
}
section.price-single .container .price .questioni.active .service-name {
  background: #08f29d;
  color: #0e0e0e;
}
section.price-single .container .price .questioni.active svg {
  transform: rotate(45deg);
}
section.price-single .container .price .questioni.active svg path {
  stroke: #0e0e0e;
}
section.price-single .container .price .questioni .service-name {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #3859fe;
  padding: 25px 40px;
  border-radius: 6px;
  color: #ffffff;
  transition: 0.3s all ease-out;
  cursor: pointer;
}
section.price-single .container .price .answer {
  padding: 1.5rem 0;
  margin: 0 2rem;
  font-size: 0.8rem;
  font-weight: normal;
  line-height: 1.5rem;
  font-style: normal;
  text-align: left;
  color: #6e6e6e;
  border-bottom: 1px solid #6e6e6e;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 600px) {
  section.price-single .container .price .answer {
    font-size: 1.15rem;
  }
}
section.price-single .container .price .answer .right {
  font-size: 0.8rem;
  font-weight: bold;
  line-height: 1.5rem;
  font-style: normal;
  text-align: right;
  color: #3859fe;
}
@media (max-width: 600px) {
  section.price-single .container .price .answer .right {
    font-size: 1.15rem;
  }
}
section.price-single .container .price .answer:last-child {
  border-bottom: unset;
}
section.price-single .container .price .answer-wrapper {
  height: 0;
  overflow: hidden;
  transition: 0.3s ease-out;
}
section.price-single .container .price .row {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}
section.price-single .container .price .row .service-name {
  padding: 1.5rem 2rem;
  background-color: #f8f8f8;
  width: 100%;
  border-radius: 8px;
  font-family: "Chillax Semibold";
  font-size: 1rem;
  font-weight: 600;
  line-height: 1rem;
  font-style: normal;
  text-align: left;
  color: #231f20;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  section.price-single .container .price .row .service-name {
    padding: 1.5rem 1rem;
  }
}
section.price-single .container .price .row .service-price {
  padding: 1.5rem 2rem;
  background-color: #fc713a;
  min-width: 200px;
  border-radius: 8px;
  display: flex;
  justify-content: flex-end;
  font-family: "Chillax Semibold";
  font-size: 1rem;
  font-weight: 600;
  line-height: 1rem;
  font-style: normal;
  text-align: right;
  color: #ffffff;
  text-transform: uppercase;
  align-items: center;
}
@media (max-width: 900px) {
  section.price-single .container .price .row .service-price {
    min-width: 140px;
  }
}
@media (max-width: 600px) {
  section.price-single .container .price .row .service-price {
    min-width: 110px;
  }
}

section.all-testimonials {
  padding: 4rem 0;
}
@media (max-width: 768px) {
  section.all-testimonials {
    padding: 4rem 0;
  }
}
@media (max-width: 500px) {
  section.all-testimonials {
    padding: 4rem 0 2rem;
  }
}
section.all-testimonials .container .title {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 3rem;
  font-style: normal;
  text-align: left;
  color: #3859fe;
  margin-bottom: 2rem;
}
section.all-testimonials .container .content {
  font-size: 0.8rem;
  font-weight: normal;
  line-height: 1.5rem;
  font-style: normal;
  text-align: left;
  color: #6e6e6e;
  max-width: 850px;
  margin-bottom: 3rem;
}
@media (max-width: 600px) {
  section.all-testimonials .container .content {
    font-size: 1.15rem;
  }
}
section.all-testimonials .container .testimonials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4rem;
}
@media (max-width: 600px) {
  section.all-testimonials .container .testimonials {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@media (max-width: 1024px) {
  section.all-testimonials .container .testimonials {
    gap: 1rem;
  }
}
section.all-testimonials .container .testimonials .testimonial {
  max-width: 470px;
  width: 100%;
  border-radius: 10px;
  height: auto;
}
@media (max-width: 1440px) {
  section.all-testimonials .container .testimonials .testimonial {
    max-width: unset;
  }
}
@media (max-width: 1024px) {
  section.all-testimonials .container .testimonials .testimonial {
    padding: 30px;
  }
}
@media (max-width: 768px) {
  section.all-testimonials .container .testimonials .testimonial {
    padding: 20px;
  }
}
section.all-testimonials .container .testimonials .testimonial .top {
  display: flex;
}
@media (max-width: 768px) {
  section.all-testimonials .container .testimonials .testimonial .top {
    gap: 1rem;
  }
}
section.all-testimonials .container .testimonials .testimonial .top .top-left {
  max-width: 100px;
  max-height: 100px;
  width: 100%;
  height: 100%;
  margin-right: 30px;
  position: relative;
}
@media (max-width: 768px) {
  section.all-testimonials .container .testimonials .testimonial .top .top-left {
    margin-right: unset;
  }
}
section.all-testimonials .container .testimonials .testimonial .top .top-left .testimonial-image {
  position: relative;
  width: 100%;
}
section.all-testimonials .container .testimonials .testimonial .top .top-right {
  display: flex;
  flex-direction: column;
}
section.all-testimonials .container .testimonials .testimonial .top .top-right .name {
  font-size: 0.8rem;
  font-weight: bold;
  line-height: 0.8rem;
  font-style: normal;
  text-align: left;
  color: #22333d;
  margin-top: 1rem;
}
@media (max-width: 600px) {
  section.all-testimonials .container .testimonials .testimonial .top .top-right .name {
    font-size: 1.15rem;
  }
}
section.all-testimonials .container .testimonials .testimonial .top .top-right .position {
  font-size: 0.7rem;
  font-weight: normal;
  line-height: 0.7rem;
  font-style: normal;
  text-align: left;
  color: #22333d;
  margin-top: 8px;
}
section.all-testimonials .container .testimonials .testimonial .bottom {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 1rem;
}
@media (max-width: 600px) {
  section.all-testimonials .container .testimonials .testimonial .bottom {
    min-height: unset;
  }
}
section.all-testimonials .container .testimonials .testimonial .bottom .date {
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.5rem;
  font-style: normal;
  text-align: left;
  color: #717171;
  margin-top: 2rem;
}
@media (max-width: 600px) {
  section.all-testimonials .container .testimonials .testimonial .bottom .date {
    font-size: 1.15rem;
  }
}
section.all-testimonials .container .testimonials .testimonial .bottom .testimonial-paragraph {
  font-size: 0.8rem;
  font-weight: normal;
  line-height: 1.5rem;
  font-style: normal;
  text-align: left;
  color: #6e6e6e;
}
@media (max-width: 600px) {
  section.all-testimonials .container .testimonials .testimonial .bottom .testimonial-paragraph {
    font-size: 1.15rem;
  }
}

section.all-faqs {
  padding: 1rem 0 4rem;
}
section.all-faqs .container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
section.all-faqs .container .service-wrapper .service-filter {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}
@media (max-width: 768px) {
  section.all-faqs .container .service-wrapper .service-filter {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  section.all-faqs .container .service-wrapper .service-filter a {
    text-align: center;
  }
}
section.all-faqs .container .service .service-name {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 2rem;
  font-style: normal;
  text-align: left;
  color: #3859fe;
}
section.all-faqs .container .service .service-excerpt {
  font-size: 0.8rem;
  font-weight: normal;
  line-height: 1.5rem;
  font-style: normal;
  text-align: left;
  color: #6e6e6e;
  margin-top: 1rem;
  max-width: 720px;
}
@media (max-width: 600px) {
  section.all-faqs .container .service .service-excerpt {
    font-size: 1.15rem;
  }
}
section.all-faqs .container .service .faqs {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
section.all-faqs .container .service .faqs .faq {
  display: flex;
  flex-direction: column;
}
section.all-faqs .container .service .faqs .faq .service-handle svg {
  transition: 0.3s all ease-out;
}
section.all-faqs .container .service .faqs .faq .service-handle.active {
  background: #08f29d;
  color: #0e0e0e;
}
section.all-faqs .container .service .faqs .faq .service-handle.active svg {
  transform: rotate(45deg);
}
section.all-faqs .container .service .faqs .faq .service-handle.active svg path {
  stroke: #0e0e0e;
}
section.all-faqs .container .service .faqs .faq .service-handle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #3859fe;
  padding: 25px 40px;
  border-radius: 6px;
  color: #ffffff;
  transition: 0.3s all ease-out;
  cursor: pointer;
}
section.all-faqs .container .service .faqs .faq .answer {
  margin: 0 2rem;
  font-size: 0.8rem;
  font-weight: normal;
  line-height: 1.5rem;
  font-style: normal;
  text-align: left;
  color: #6e6e6e;
  border-bottom: 1px solid #6e6e6e;
  display: flex;
  justify-content: space-between;
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}
@media (max-width: 600px) {
  section.all-faqs .container .service .faqs .faq .answer {
    font-size: 1.15rem;
  }
}
section.all-faqs .container .service .faqs .faq .answer p {
  padding: 1.5rem 0 1rem;
}
section.all-faqs .container .service .faqs .faq .answer:last-child {
  border-bottom: unset;
}

section.before-after {
  padding: 4rem 0;
}
section.before-after .container .title {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 3rem;
  font-style: normal;
  text-align: left;
  color: #3859fe;
}
section.before-after .container .paragraph {
  font-family: "Rethink Sans";
  font-size: 0.8rem;
  font-weight: normal;
  line-height: 1.5rem;
  font-style: normal;
  text-align: left;
  color: #6e6e6e;
  margin-top: 2rem;
}
@media (max-width: 600px) {
  section.before-after .container .paragraph {
    font-size: 1.15rem;
  }
}
section.before-after .container .before-after-wrapper {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}
@media (max-width: 600px) {
  section.before-after .container .before-after-wrapper {
    flex-direction: column;
  }
}
section.before-after .container .before-after-wrapper .before-after-slider {
  max-width: 50%;
  width: 100%;
}
@media (max-width: 600px) {
  section.before-after .container .before-after-wrapper .before-after-slider {
    max-width: 100%;
  }
}
section.before-after .container .before-after-wrapper .excerpt {
  margin-top: 1rem;
}
section.before-after .container .before-after-wrapper .excerpt p {
  font-size: 0.8rem;
  font-weight: normal;
  line-height: 1.5rem;
  font-style: normal;
  text-align: left;
  color: #6e6e6e;
}
@media (max-width: 600px) {
  section.before-after .container .before-after-wrapper .excerpt p {
    font-size: 1.15rem;
  }
}

section.all-articles {
  padding: 8rem 0;
}
@media (max-width: 768px) {
  section.all-articles {
    padding: 4rem 0;
  }
}
section.all-articles .container .articles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}
@media (max-width: 850px) {
  section.all-articles .container .articles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 500px) {
  section.all-articles .container .articles {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
section.all-articles .container .articles .article {
  width: 100%;
  position: relative;
}
section.all-articles .container .articles .article a {
  position: relative;
  display: flex;
  overflow: hidden;
  border-radius: 10px;
}
section.all-articles .container .articles .article a:before {
  background: linear-gradient(360deg, #0e0e0e 0%, rgba(14, 14, 14, 0) 100%);
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
section.all-articles .container .articles .article img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
section.all-articles .container .articles .article .date {
  font-size: 0.8rem;
  font-weight: normal;
  line-height: 1.5rem;
  font-style: normal;
  text-align: left;
  color: #6e6e6e;
  margin-top: 1.2rem;
}
@media (max-width: 600px) {
  section.all-articles .container .articles .article .date {
    font-size: 1.15rem;
  }
}
section.all-articles .container .articles .article .article-title {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.5rem;
  font-style: normal;
  text-align: left;
  color: #ffffff;
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  max-width: 92%;
}
section.all-articles .container .articles .article .article-excerpt {
  font-size: 0.8rem;
  font-weight: normal;
  line-height: 1.5rem;
  font-style: normal;
  text-align: left;
  color: #6e6e6e;
  margin-top: 1.2rem;
}
@media (max-width: 600px) {
  section.all-articles .container .articles .article .article-excerpt {
    font-size: 1.15rem;
  }
}
section.all-articles .container .pagination {
  margin-top: 4rem;
}
section.all-articles .container .pagination ul {
  display: flex;
  gap: 1rem;
}
section.all-articles .container .pagination ul li {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5rem;
  font-style: normal;
  text-align: left;
  color: #231f20;
}
section.all-articles .container .pagination ul li a {
  color: #231f20;
}
section.all-articles .container .pagination ul li .current {
  color: #fd713a;
}

section.all-comparisons {
  padding: 4rem 0;
}
section.all-comparisons .container .title {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 3rem;
  font-style: normal;
  text-align: left;
  color: #3859fe;
}
section.all-comparisons .container .paragraph {
  font-family: "Rethink Sans";
  font-size: 0.8rem;
  font-weight: normal;
  line-height: 1.5rem;
  font-style: normal;
  text-align: left;
  color: #6e6e6e;
  margin-top: 2rem;
}
@media (max-width: 600px) {
  section.all-comparisons .container .paragraph {
    font-size: 1.15rem;
  }
}
section.all-comparisons .container .before-after-wrapper {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}
section.all-comparisons .container .before-after-wrapper .before-after-slider {
  max-width: 50%;
  width: 100%;
}
section.all-comparisons .container .before-after-wrapper .excerpt {
  margin-top: 1rem;
}
section.all-comparisons .container .before-after-wrapper .excerpt p {
  font-size: 0.8rem;
  font-weight: normal;
  line-height: 1.5rem;
  font-style: normal;
  text-align: left;
  color: #6e6e6e;
}
@media (max-width: 600px) {
  section.all-comparisons .container .before-after-wrapper .excerpt p {
    font-size: 1.15rem;
  }
}
