@font-face {
  font-family: "Plus Jakarta Sans";
  src: url(../fonts/PlusJakartaSans-ExtraLight.ttf) format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url(../fonts/PlusJakartaSans-ExtraLightItalic.ttf) format("truetype");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url(../fonts/PlusJakartaSans-Light.ttf) format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url(../fonts/PlusJakartaSans-LightItalic.ttf) format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url(../fonts/PlusJakartaSans-Regular.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url(../fonts/PlusJakartaSans-Italic.ttf) format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url(../fonts/PlusJakartaSans-Medium.ttf) format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url(../fonts/PlusJakartaSans-MediumItalic.ttf) format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url(../fonts/PlusJakartaSans-SemiBold.ttf) format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url(../fonts/PlusJakartaSans-SemiBoldItalic.ttf) format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url(../fonts/PlusJakartaSans-Bold.ttf) format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url(../fonts/PlusJakartaSans-BoldItalic.ttf) format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url(../fonts/PlusJakartaSans-ExtraBold.ttf) format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url(../fonts/PlusJakartaSans-ExtraBoldItalic.ttf) format("truetype");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}
*,
:after,
:before {
  box-sizing: border-box;
}
a,
a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}
a,
button,
input[type="submit"],
a img {
  transition: all 0.3s linear;
}
iframe,
img {
  max-width: 100%;
}
img {
  vertical-align: middle;
}
a img {
  border: none;
}
:root {
  --hover_color: #f9ecc8;
  --active_color: #f9ecc8;
  --main_color_white: #f1f1f1;
  --main_color_black: #120c0c;
  --text_color_white: #e2e2e2;
  --text_color_gray: #a9a9a9;
  --text_color_black: #120c0c;
  --font: "Plus Jakarta Sans";
}
body.dark-mode {
  background-color: var(--main_color_white);
  color: var(--text_color_black);
}
body {
  margin: 0;
  padding: 0;
  background-color: var(--main_color_black);
  color: var(--text_color_white);
  font: 400 0.8333vw var(--font);
}
.post-thumbnail,
.post-thumbnail img{
  display: none;
}
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--main_color_black);
  z-index: 9999;
}
#loader {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60px;
  height: 60px;
  margin: -30px 0 0 -30px;
  border: 6px solid #ecc14c;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.links_wrap {
	position: relative;
  display: flex;
  z-index: 400;
}
.link_google_pay {
  margin-right: 1.6666vw;
  position: relative;
  z-index: 40;
}
.links_wrap a {
  position: relative;
  display: inline-flex;
}
.links_wrap img {
  width: 10.3125vw;
  height: 2.9687vw;
  object-fit: contain;
}
.links_wrap path.hover {
  transition: all 0.3s linear;
}
.links_wrap a:hover path.hover {
  fill: #f9ecc8;
}
.dark-mode .links_wrap .black_decor,
.links_wrap .white_decor {
  opacity: 0;
  display: none;
}
.dark-mode .links_wrap .white_decor,
.links_wrap .black_decor {
  opacity: 1;
  display: block;
}
.dark-mode .links_wrap a:hover {
  opacity: 0.75;
}
.links_wrap .decor_hover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
}
.links_wrap a:hover .decor_hover {
  opacity: 1;
}
.fixing .header_wrap {
  top: -70px;
  transition: top 0.3s;
}
.fixing.sticky .header_wrap {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  left: 0;
}
header.site-header {
  transition: top 0.3s;
}
.header_wrap {
  padding: 0.5025vw 3.9062vw;
  background-color: var(--main_color_black);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header_logo {
  flex-shrink: 0;
  display: inline-flex;
}
.header_logo a {
  display: inline-flex;
}
.header_logo a img {
  width: 10.2604vw;
  height: auto;
  object-fit: contain;
  object-position: center;
}
.header_menu {
  margin: 0 auto;
}
.header_menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.header_menu ul li:not(:last-child) {
  margin-right: 2.2916vw;
}
.header_menu ul li a {
  position: relative;
  display: inline-flex;
  font-weight: 500;
  font-size: 0.8333vw;
  line-height: normal;
  color: var(--text_color_white);
}
.header_menu ul li a:hover {
  color: var(--active_color);
}
.theme-toggle {
  margin: 0;
  padding: 0;
  width: 4.1666vw;
  height: 1.6666vw;
  border: none;
  background-color: transparent;
  position: relative;
  cursor: pointer;
}
.theme-toggle.theme-active .night_wrap,
.theme-toggle .day_wrap {
  opacity: 0;
}
.theme-toggle .night_wrap,
.theme-toggle.theme-active .day_wrap {
  opacity: 1;
}
.theme-toggle .night_wrap,
.theme-toggle .day_wrap {
  transition: all 0.6s linear;
}
.theme-toggle .night,
.theme-toggle .day {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.theme-toggle .night svg,
.theme-toggle .day svg {
  width: 4.1666vw;
  height: 1.6666vw;
}
.theme-toggle .stars {
  position: absolute;
  top: 0.1562vw;
  right: 0.3645vw;
  z-index: 2;
}
.theme-toggle .stars svg {
  width: 1.6145vw;
  height: 1.4062vw;
}
.theme-toggle .month {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -0.3125vw;
  z-index: 3;
  display: flex;
  opacity: 1;
  transition: all 0.5s ease-in;
}
.theme-toggle .month svg {
  width: 2.4479vw;
  height: 2.4479vw;
}
.theme-toggle.theme-active .month {
  left: 0.7812vw;
  opacity: 0;
}
.clouds {
  position: absolute;
  top: 0.3125vw;
  left: 0.3125vw;
  z-index: 2;
}
.clouds svg {
  width: 1.7708vw;
  height: 1.1458vw;
}
.sun {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.7812vw;
  z-index: 3;
  display: flex;
  opacity: 0;
  transition: all 0.5s ease-in;
}
.sun svg {
  width: 2.4479vw;
  height: 2.4479vw;
}
.theme-toggle.theme-active .sun {
  right: -0.3125vw;
  opacity: 1;
}
.download_link {
  margin-left: 2.0833vw;
}
.download_link a {
  padding: 0.5208vw 1.5104vw;
  background-color: #f1f1f1;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  font-size: 0.8333vw;
  color: #120c0c;
}
.download_link a:hover {
  background-color: var(--hover_color);
}
.download_link .arrow_right {
  margin-left: 0.625vw;
  width: 2.0833vw;
  height: 2.0833vw;
  border-radius: 8px;
  border: none;
  background-color: #ecc14c;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s linear;
}
.download_link a:hover .arrow_right {
  background-color: #2f2e2e;
}
.download_link svg {
  flex-shrink: 0;
  width: 1.0416vw;
  height: auto;
}
.download_link path {
  transition: all 0.3s linear;
}
.download_link a:hover path {
  stroke: #e2e2e2;
}
@media (min-width: 768px) {
  .theme-toggle.mob {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    overflow: hidden;
  }
  .header_logo.mob,
  .links_wrap.mob,
  .header_decor_fon.mob,
  .btn_open,
  .btn_close,
  .header_decor_one_mob {
    display: none;
  }
}
@media (max-width: 768px) {
  body.lock-scroll {
    overflow: hidden;
  }
  header.site-header {
    height: 16.7333vw;
  }
  .fixing .header_wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
  }
  .header_wrap {
    padding: 2.1333vw 4.2666vw;
    border-bottom: 1px solid #737373;
  }
  .header_logo {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header_logo a {
    margin-right: 13.3333vw;
  }
  .header_logo a img {
    width: 38.6666vw;
  }
  .download_link {
    display: none;
  }
  .theme-toggle.des {
    display: none;
  }
  .theme-toggle,
  .theme-toggle .night svg,
  .theme-toggle .day svg {
    width: 16vw;
    height: 6.4vw;
  }
  .theme-toggle .month {
    left: -1.3333vw;
  }
  .theme-toggle .month svg {
    width: 9.3333vw;
    height: 9.3333vw;
  }
  .theme-toggle.theme-active .month {
    left: 5.3333vw;
  }
  .theme-toggle .stars {
    top: 0.8vw;
    right: 2.1333vw;
  }
  .theme-toggle .stars svg {
    width: 5.3333vw;
    height: auto;
  }
  .theme-toggle.theme-active .sun {
    right: -1.3333vw;
  }
  .sun {
    right: 5.3333vw;
  }
  .sun svg {
    width: 9.3333vw;
    height: 9.3333vw;
  }
  .clouds {
    top: 0.8vw;
    left: 1.8666vw;
  }
  .clouds svg {
    width: 7.2vw;
    height: auto;
  }
  .header_menu {
    position: fixed;
    top: 0;
    z-index: 99;
    right: -100%;
    margin: 0;
    padding: 0 0 17.0666vw;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    -webkit-transition: right 0.5s;
    -moz-transition: right 0.5s;
    -ms-transition: right 0.5s;
    -o-transition: right 0.5s;
    transition: right 0.5s;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .header_menu.active {
    right: 0;
  }
  .header_menu .header_logo {
    padding: 8vw 4.2666vw 1.8666vw;
    background-color: var(--main_color_black);
    border-bottom: 1px solid #737373;
  }
  .btn_open,
  .btn_close {
    flex-shrink: 0;
    display: inline-flex;
  }
  .btn_open svg,
  .btn_close svg {
    width: 8.5333vw;
    height: 8.5333vw;
  }
  .header_nav {
    margin-top: 36.0666vw;
	  position: relative;
	  z-index: 20;
  }
  .header_menu {
    background-color: var(--main_color_black);
  }
  .dark-mode .header_menu {
    background-color: var(--main_color_white);
  }
  .header_menu ul {
    display: block;
    text-align: center;
  }
  .header_menu ul li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 10.6666vw;
  }
  .header_menu ul li a {
    font-size: 4.2666vw;
  }
  .dark-mode .header_menu ul li a {
    color: var(--text_color_black);
  }
  .header_menu .links_wrap.mob {
    padding: 30.6666vw 4.2666vw 0;
  }
  .links_wrap {
    justify-content: space-between;
  }
  .link_google_pay {
    margin-right: 0;
  }
  .links_wrap img {
    width: 43.4666vw;
    height: 12.5333vw;
  }
  .header_decor_fon {
    position: absolute;
    top: 79.5333vw;
    right: 0;
    z-index: -1;
  }
  .header_decor_fon .decor {
    position: absolute;
    top: 0;
    right: 0;
    width: 32.2666vw;
  }
  .header_decor_fon .decor img {
    width: 32.2666vw;
    height: auto;
    object-fit: contain;
  }
  .header_decor_one_mob {
    position: absolute;
    top: 22.6666vw;
    left: 0;
    width: 69.6vw;
    height: 62.9333vw;
    overflow: hidden;
  }
  .header_decor_one_mob .decor {
    position: absolute;
    top: -12.5333vw;
    left: 0;
  }
  .header_decor_one_mob .decor img {
    width: 69.6vw;
    height: 62.9333vw;
    object-fit: contain;
  }
}
footer.site-footer {
  background-color: #2f2e2e;
}
.dark-mode footer.site-footer {
  background-color: #120c0c;
}
.footer_wrap {
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding: 3.3333vw 7.2916vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer_decor {
  position: absolute;
  top: -9.8437vw;
  left: 7.6562vw;
  z-index: -1;
}
.footer_decor svg {
  width: 42.5625vw;
  height: auto;
}
.footer_logo {
  margin-bottom: 1.6666vw;
}
.footer_logo,
.footer_logo a {
  display: inline-flex;
}
.footer_logo a img {
  width: 10.2604vw;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.footer_logo_black{

}

.dark-mode .footer_logo_black,
.footer_logo_white{
  display: none;
}

.dark-mode .footer_logo_white{
  display: block;
}

.footer_text {
  margin-bottom: 1.6666vw;
  width: 20.2083vw;
  font-family: var(--font);
  font-weight: 600;
  font-size: 1.25vw;
  line-height: 1.4;
  color: #e2e2e2;
}
.footer_text p {
  margin: 0;
}
.footer_menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer_menu ul li:not(:last-child) {
  margin-bottom: 2.0833vw;
}
.footer_menu ul li a {
  display: inline-block;
  font-weight: 400;
  font-size: 0.8333vw;
  line-height: normal;
  color: #e2e2e2;
}
.footer_menu ul li a:hover {
  color: var(--hover_color);
}
.footer_socials {
  display: inline-flex;
  align-items: center;
  flex-direction: column;
}
.footer_socials a {
  display: inline-flex;
}
.footer_socials a:not(:last-child) {
  margin-bottom: 1.25vw;
}
.footer_socials a svg {
  width: 1.6666vw;
  height: 1.6666vw;
}
.footer_socials a svg path {
  transition: all 0.3s linear;
}
.footer_socials a.instagram:hover svg path,
.footer_socials a.x:hover svg path {
  fill: #f1f1f1;
}
.footer_socials a.facebook:hover svg path {
  stroke: #f1f1f1;
}
.footer_copyrights {
  padding: 0.8333vw 7.2916vw 1.6666vw;
  border-top: 1px solid #737373;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer_copyright {
  font-weight: 400;
  font-size: 0.7291vw;
  color: #737373;
}
.footer_copyright p {
  margin: 0;
}
.footer_link_page a {
  font-weight: 400;
  font-size: 0.7291vw;
  color: #737373;
  text-decoration: underline 1px;
  text-underline-offset: 0.1562vw;
}
.footer_link_page a:hover {
  color: var(--hover_color);
}
@media (max-width: 768px) {
  .footer_wrap {
    padding: 12.8vw 4.2666vw;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .footer_logo {
    margin-bottom: 8.5333vw;
  }
  .footer_logo a img {
    width: 52.5333vw;
  }
  .footer_text {
    margin-bottom: 8.5333vw;
    width: 100%;
    font-size: 4.8vw;
  }
  .footer_menu {
    margin-top: 10.6666vw;
  }
  .footer_menu ul li:not(:last-child) {
    margin-bottom: 10.6666vw;
  }
  .footer_menu ul li a {
    font-size: 4.2666vw;
  }
  .footer_socials {
    margin-top: 10.6666vw;
    flex-direction: initial;
  }
  .footer_socials a:not(:last-child) {
    margin-bottom: 0;
    margin-right: 6.4vw;
  }
  .footer_socials a svg {
    width: 8.5333vw;
    height: 8.5333vw;
  }
  .footer_copyrights {
    padding: 8.5333vw 4.2666vw 6.4vw;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    text-align: center;
  }
  .footer_copyright {
    margin: 0;
    font-size: 3.2vw;
  }
  .footer_link_page {
    margin-bottom: 5.3333vw;
  }
  .footer_link_page a {
    font-size: 3.2vw;
    text-underline-offset: 0.8vw;
  }
  .footer_decor {
    display: none;
  }
}
.all_text h1,
.all_text h2,
.all_text h3,
.all_text h4,
.all_text h5,
.all_text h6 {
  margin: 0 0 1.6666vw;
  line-height: 1.2;
}
.all_text p {
  margin: 0;
}
.all_text p:not(:last-child) {
  margin: 0 0 1.6666vw;
}
.all_text strong {
  font-weight: 600;
}
.all_text h1,
.all_text h2,
.all_text h3,
.all_text h4,
.all_text h5,
.all_text h6,
.all_text p,
.all_text {
  color: var(--text_color_white);
}
.all_text.gray p,
.all_text.gray {
  color: var(--text_color_gray);
}
.dark-mode .all_text h1,
.dark-mode .all_text h2,
.dark-mode .all_text h3,
.dark-mode .all_text h4,
.dark-mode .all_text h5,
.dark-mode .all_text h6,
.dark-mode .all_text p,
.dark-mode .all_text,
.dark-mode .all_text.gray p,
.dark-mode .all_text.gray {
  color: var(--text_color_black);
}
.all_text h1 {
  font-weight: 700;
  font-size: 3.9583vw;
}
.all_text h2 {
  font-weight: 700;
  font-size: 2.9166vw;
}
.all_text h3 {
  font-weight: 600;
  font-size: 1.4583vw;
}
.all_text h4 {
  font-weight: 600;
  font-size: 1.4583vw;
}
.all_text h5 {
  font-weight: 600;
  font-size: 1.4583vw;
}
.all_text h6 {
  font-weight: 600;
  font-size: 1.4583vw;
}
.all_text p,
.all_text {
  font-weight: 400;
  font-size: 1.25vw;
}
@media (max-width: 768px) {
  .all_text h1,
  .all_text h2,
  .all_text h3,
  .all_text h4,
  .all_text h5,
  w .all_text h6 {
    margin-bottom: 6.4vw;
    line-height: 1.2;
  }
  .all_text p:not(:last-child) {
    margin-bottom: 6.4vw;
  }
  .all_text h1 {
    font-size: 9.6vw;
  }
  .all_text h2 {
    font-size: 7.7333vw;
  }
  .all_text h3 {
    font-size: 5.8666vw;
  }
  .all_text h4 {
    font-size: 5.8666vw;
  }
  .all_text h5 {
    font-size: 5.8666vw;
  }
  .all_text h6 {
    font-size: 5.8666vw;
  }
  .all_text p,
  .all_text {
    font-size: 4.2666vw;
  }
}
.hero_section {
  position: relative;
  z-index: 1;
  padding-top: 5.5729vw;
  min-height: 44.5104vw;
}
.hero_wrap {
  padding: 0 7.2916vw;
}
.hero_content {
  width: 37.9687vw;
  position: relative;
	z-index: 50;
}
.hero_content_title {
  margin-bottom: 2.5vw;
}
.hero_content_subtitle {
  margin: 0 0 2.5vw;
  font-weight: 600;
  font-size: 1.4583vw;
}
.hero_content_text {
  margin-bottom: 2.5vw;
}
.hero_decor_and_image {
  position: absolute;
  top: 2.0833vw;
  right: 6.5104vw;
  width: 42.3958vw;
  height: 42.3958vw;
}
.hero_decor_and_image .decor {
  position: absolute;
  top: 0;
  right: 0;
}
.hero_decor_and_image .decor img {
  width: 42.3958vw;
  height: 42.3958vw;
}
.dark-mode .black_decor,
.white_decor {
  opacity: 0;
}
.dark-mode .white_decor,
.black_decor {
  opacity: 1;
}
.hero_images {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero_image_phone img {
  width: 18.9062vw;
  height: auto;
  object-fit: contain;
  object-position: center;
}
.hero_image_search {
  position: absolute;
  top: 3.8541vw;
  right: 85%;
  width: 14.427vw;
}
.hero_image_search img {
  width: 14.427vw;
  height: auto;
  object-fit: contain;
  object-position: center;
}
.hero_image_advantages {
  position: absolute;
  bottom: 4.427vw;
  left: 90%;
  width: 16.7187vw;
}
.hero_image_advantages svg,
.hero_image_advantages img {
  width: 16.7708vw;
  height: auto;
  object-fit: contain;
  object-position: center;
}
.hero_image_phone,
.hero_image_search,
.hero_image_advantages {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.hero_image_visible {
  opacity: 1;
  transform: translateY(0);
}
.hero_fon {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.3;
}
.dark-mode .hero_fon {
  opacity: 1;
}
.hero_fon .decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero_fon .decor img {
  width: 100%;
  height: auto;
}
.hero_line {
  position: absolute;
  top: 10.677vw;
  left: 23.4375vw;
  z-index: -1;
}
.hero_line .decor {
  position: absolute;
  top: 0;
  left: 0;
}
.hero_line .decor svg {
  width: 28.3333vw;
  height: 22.6562vw;
}
.problem_section {
  position: relative;
  padding-right: 5.9895vw;
  min-height: 33.0208vw;
}
.problem_wrap {
  display: flex;
}
.problem_image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.problem_image .decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 37.7604vw;
  height: 33.0208vw;
}
.problem_image .decor img {
  width: 37.7604vw;
  height: 33.0208vw;
}
.problem_content {
  padding-top: 11.8229vw;
  padding-left: 43.5937vw;
}
.problem_content_title {
  margin-bottom: 1.6666vw;
}
.problem_content_text p {
  font-size: 1.4583vw;
}
.problem_content_text img {
  width: 2.6041vw;
  height: 2.6041vw;
  object-fit: contain;
  object-position: center;
}
.problem_content_text .icon {
  opacity: 0;
  transform: scale(0.1);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.problem_content_text .icon.visible {
  opacity: 1;
  transform: scale(1);
}
.dark-mode .problem_content_text .black_decor,
.problem_content_text .white_decor {
  display: none;
  opacity: 1;
}
.dark-mode .problem_content_text .white_decor,
.problem_content_text .black_decor {
  display: inline-block;
  opacity: 1;
}
.decision_section {
  position: relative;
  padding: 4.5833vw 7.2916vw 10.4166vw;
}
.decision_line_one {
  position: absolute;
  top: 8.802vw;
  right: 7.5vw;
  z-index: -1;
  width: 12.5vw;
  height: 26.9791vw;
}
.decision_line_one .decor {
  position: absolute;
  top: 0;
  right: 0;
}
.decision_line_one .decor img {
  width: 12.5vw;
  height: 26.9791vw;
}
.decision_line_two {
  position: absolute;
  top: -5.2083vw;
  left: 34.5833vw;
  z-index: -1;
  width: 26.6145vw;
  height: 18.9062vw;
}
.decision_line_two .decor {
  position: absolute;
  top: 0;
  left: 0;
}
.decision_line_two .decor img {
  width: 26.6145vw;
  height: 18.9062vw;
  object-fit: contain;
}
.decision_line_three {
  position: absolute;
  top: 21.25vw;
  left: 50.8854vw;
  z-index: -1;
  width: 20.3125vw;
  height: 15.2083vw;
}
.decision_line_three .decor {
  position: absolute;
  top: 0;
  left: 0;
}
.decision_line_three .decor img {
  width: 20.3125vw;
  height: 15.2083vw;
  object-fit: contain;
}
.decision_line_four {
  position: absolute;
  bottom: -5.2083vw;
  left: -7.9687vw;
  z-index: -1;
  width: 28.2812vw;
  height: 23.4375vw;
}
.decision_line_four .decor {
  position: absolute;
  bottom: 0;
  left: 0;
}
.decision_line_four .decor img {
  width: 28.2812vw;
  height: 23.4375vw;
  object-fit: contain;
}
.decision_wrap {
  display: flex;
  align-items: center;
}
.decision_content {
  width: 34.7395vw;
  flex-shrink: 0;
}
.decision_content_title {
  margin: 0 0 1.6666vw;
  white-space: nowrap;
}
.decision_content_title h2 {
  display: flex;
}
.decision_content_title span {
  margin-left: 0.5208vw;
  display: inline-block;
  width: fit-content;
  white-space: nowrap;
  overflow: hidden;
}
.decision_content_title span.animate {
  animation: printed_text 4s steps(30) forwards;
}
@keyframes printed_text {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.decision_content_subtitle {
  margin: 0 0 2.5vw;
  padding-right: 3.9062vw;
}
.decision_content_text {
  margin: 0 0 1.25vw;
}
.decision_content_list {
  margin: 0 0 1.25vw;
  padding: 0;
  list-style: none;
}
.decision_content_item {
  display: flex;
  align-items: center;
  font-size: 0.9375vw;
}
.decision_content_item:not(:last-child) {
  margin-bottom: 0.8333vw;
}
.decision_content_item svg {
  margin-right: 0.625vw;
  width: 2.0833vw;
  height: 2.0833vw;
}
.decision_images {
  padding-left: 9.2708vw;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.decision_image_one {
  margin-bottom: 0.7291vw;
}
.decision_image_two {
  display: flex;
  justify-content: right;
}
.decision_image_one,
.decision_image_two {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.decision_image_one.visible,
.decision_image_two.visible {
  opacity: 1;
  transform: scale(1);
}
.decision_image_one img {
  width: 28.802vw;
  height: auto;
  object-fit: contain;
  object-position: center;
}
.decision_image_two img {
  width: 29.2187vw;
  height: auto;
  object-fit: contain;
  object-position: center;
}
.dark-mode .decision_image_one .black_decor,
.decision_image_one .white_decor,
.dark-mode .decision_image_two .black_decor,
.decision_image_two .white_decor {
  display: none;
  opacity: 1;
}
.dark-mode .decision_image_one .white_decor,
.decision_image_one .black_decor,
.dark-mode .decision_image_two .white_decor,
.decision_image_two .black_decor {
  display: inline-block;
  opacity: 1;
}
.carousel_section {
  position: relative;
}
.carousel_line {
  position: absolute;
  top: -10.1041vw;
  right: 0;
  z-index: -1;
  width: 21.6145vw;
  height: 22.1875vw;
}
.carousel_line .decor {
  position: absolute;
  top: 0;
  right: 0;
}
.carousel_line .decor img {
  width: 21.6145vw;
  height: 22.1875vw;
  object-fit: contain;
}
.carousel_content {
  padding: 0 7.2916vw;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.carousel_title {
  width: 38.0208vw;
}
.carousel_section .home-about-carousel-arrows {
  display: flex;
  align-items: center;
}
.carousel_section .owl-prev,
.carousel_section .owl-next {
  margin: 0 0.3125vw;
  width: 2.0833vw;
  height: 2.0833vw;
  border-radius: 8px;
  border: none;
  background-color: #737373;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.dark-mode .carousel_section .owl-prev,
.dark-mode .carousel_section .owl-next {
  background-color: #e2e2e2;
}
.carousel_section .owl-prev:hover,
.carousel_section .owl-next:hover {
  background-color: var(--hover_color);
}
.carousel_section .home-about-carousel-arrows div {
  display: flex;
}
.carousel_section .home-about-carousel-arrows div svg {
  flex-shrink: 0;
  width: 1.0416vw;
  height: auto;
}
.carousel_items {
  margin-top: 3.6458vw;
  padding-left: 7.2916vw;
}
.carousel_items_item {
  position: relative;
  z-index: 1;
  margin-right: 1.4583vw;
  padding: 2.5vw;
  width: 34.7395vw;
  height: 32.4479vw;
  border-radius: 12px;
  background-color: #2f2e2e;
}
.dark-mode .carousel_items_item {
  background-color: #fafafc;
}
.carousel_item_text p {
  font-weight: 500;
  font-size: 0.9375vw;
}
.carousel_items_item_one .carousel_item_text {
  position: absolute;
  top: 2.5vw;
  left: 2.5vw;
  width: 21.0937vw;
}
.carousel_items_item_one .carousel_item_image {
  position: absolute;
  left: 0;
  bottom: 0;
}
.carousel_items_item_one .carousel_item_image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.carousel_items_item_one .carousel_item_decor {
  position: absolute;
  top: 1.875vw;
  left: 0;
  z-index: -1;
}
.carousel_items_item_one .carousel_item_decor img {
  width: 23.6458vw;
  height: 24.8958vw;
}
.carousel_items_item_two .carousel_item_text {
  position: absolute;
  bottom: 2.5vw;
  left: 2.5vw;
  width: 22.3958vw;
}
.carousel_items_item_two .carousel_item_image {
  position: absolute;
  top: 0;
  right: 0;
}
.carousel_items_item_two .carousel_item_image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.carousel_items_item_two .carousel_item_decor {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.carousel_items_item_two .carousel_item_decor img {
  width: 30.3124vw;
  height: 32.4479vw;
}
.carousel_items_item_three .carousel_item_text {
  position: absolute;
  top: 2.5vw;
  right: 2.5vw;
  width: 22.3958vw;
  text-align: right;
}
.carousel_items_item_three .carousel_item_image {
  position: absolute;
  bottom: 0;
  right: 0;
}
.carousel_items_item_three .carousel_item_image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.carousel_items_item_three .carousel_item_decor {
  position: absolute;
  top: 4.5312vw;
  left: 0;
  z-index: -1;
}
.carousel_items_item_three .carousel_item_decor img {
  width: 22.3958vw;
  height: 20vw;
}
.carousel_items_item_four .carousel_item_text {
  position: absolute;
  bottom: 2.5vw;
  right: 2.5vw;
  width: 23.75vw;
  text-align: right;
}
.carousel_items_item_four .carousel_item_image {
  position: absolute;
  top: 0;
  right: 0;
}
.carousel_items_item_four .carousel_item_image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.carousel_items_item_four .carousel_item_decor {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.carousel_items_item_four .carousel_item_decor img {
  width: 26.25vw;
  height: 20.9895vw;
}
.carousel_items_item_one .carousel_item_decor img,
.carousel_items_item_two .carousel_item_decor img,
.carousel_items_item_three .carousel_item_decor img,
.carousel_items_item_four .carousel_item_decor img {
  object-fit: contain;
  object-position: center;
}
.dark-mode .carousel_items_item_one .carousel_item_decor img,
.dark-mode .carousel_items_item_two .carousel_item_decor img,
.dark-mode .carousel_items_item_three .carousel_item_decor img,
.dark-mode .carousel_items_item_four .carousel_item_decor img {
  opacity: 0.36;
}
.proposition_section {
  position: relative;
  z-index: 1;
  padding: 10.4166vw 0;
}
.proposition_fon {
  position: absolute;
  top: 23.2812vw;
  left: 0;
  width: 100%;
  height: 62.2395vw;
}
.proposition_fon .decor {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.proposition_fon .decor img {
  width: 100%;
  height: 62.2395vw;
  object-fit: contain;
  object-position: center;
}
.proposition_decor_two {
  position: absolute;
  bottom: -10.4166vw;
  left: 0;
  z-index: -1;
  width: 26.0416vw;
  height: 30.7291vw;
}
.proposition_decor_two .decor {
  position: absolute;
  bottom: 0;
  left: 0;
}
.proposition_decor_two .decor img {
  width: 26.0416vw;
  height: 30.7291vw;
  object-fit: contain;
}
.proposition_decor_three {
  position: absolute;
  top: 14.0625vw;
  left: 28.4375vw;
  z-index: -1;
  width: 31.1979vw;
  height: 30.8854vw;
}
.proposition_decor_three .decor {
  position: absolute;
  top: 0;
  left: 0;
}
.proposition_decor_three .decor img {
  width: 31.1979vw;
  height: 30.8854vw;
  object-fit: contain;
}
.proposition_line {
  position: absolute;
  top: -7.8125vw;
  left: 19.4791vw;
  z-index: -1;
  width: 30.5729vw;
  height: 24.4791vw;
}
.proposition_line .decor {
  position: absolute;
  top: 0;
  left: 0;
}
.proposition_line .decor img {
  width: 30.5729vw;
  height: 24.4791vw;
  object-fit: contain;
}
.proposition_wrap {
  padding: 0 7.2916vw;
}
.proposition_content {
  width: 38.2291vw;
  min-height: 45.3958vw;
}
.proposition_items {
  margin-top: 3.75vw;
  border-left: 0.1562vw dashed #e2e2e2;
}
.proposition_item {
  position: relative;
  z-index: 1;
  padding-left: 2.5vw;
}
.proposition_item:not(:last-child) {
  margin-bottom: 2.9166vw;
}
.proposition_item .point {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -0.8854vw;
  width: 1.7708vw;
  height: 1.7708vw;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.proposition_item .point::before {
  content: "";
  width: 0.8854vw;
  height: 0.8854vw;
  border-radius: 100px;
  background-color: #e2e2e2;
  display: block;
}
.proposition_item.active .point {
  background-color: #352a0c;
}
.proposition_item.active .point::before {
  background-color: #ecc14c;
}
.dark-mode .proposition_item .point::before {
  background-color: #ecc14c;
}
.dark-mode .proposition_item.active .point {
  background-color: #f9ecc8;
}
.proposition_item_title {
  margin: 0 !important;
  cursor: pointer;
  transition: all 0.3s linear;
}
.proposition_item.active .proposition_item_title,
.proposition_item_title:hover {
  color: #ecc14c;
}
.proposition_item.active .dark-mode .proposition_item_title,
.dark-mode .proposition_item_title:hover {
  color: #e67318;
}
.proposition_item.active .proposition_item_text {
  height: auto;
}
.proposition_item_text {
  padding-top: 0.8333vw;
  height: 0;
  overflow: hidden;
  font-size: 0.9375vw;
  line-height: 1.4;
}
.proposition_decor_and_image {
  position: absolute;
  top: 10.4166vw;
  right: 7.2916vw;
  width: 42.3958vw;
  height: 42.3958vw;
}
.proposition_decor_and_image .decor {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.proposition_decor_and_image .decor img {
  width: 42.3958vw;
  height: 42.3958vw;
}
.proposition_image {
  position: absolute;
  top: 0;
  right: 0;
}
.proposition_image img {
  width: 42.3958vw;
  height: 42.3958vw;
  object-fit: contain;
  object-position: center;
}
.works_section {
  position: relative;
  z-index: 1;
  padding: 0 7.2916vw 10.4166vw;
}
.works_wrap{
  display: flex;
}
.works_decor_one {
  position: absolute;
  top: 3.3333vw;
  right: 0;
  width: 24.6354vw;
  height: 22.2395vw;
  overflow: hidden;
}
.works_decor_one .decor {
  position: absolute;
  top: 0;
  right: -4.3229vw;
  z-index: -1;
}
.works_decor_one .decor img {
  width: 24.6354vw;
  height: 22.2395vw;
  object-fit: contain;
  object-position: center;
}
.works_content {
  margin-left: auto;
  width: 37.0625vw;
  min-height: 42.3958vw;
}
.works_title {
  margin-bottom: 3.6458vw;
}
.works_text {
  margin-bottom: 2.0833vw;
}
.works_decor_and_images {
  position: relative;
  width: 42.3958vw;
  height: 42.3958vw;
}
.works_decor_and_images .decor {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.works_decor_and_images .decor img {
  width: 42.3958vw;
  height: 42.3958vw;
}
.works_image_one {
  position: absolute;
  top: 0;
  left: 3.8541vw;
}
.works_image_one img {
  width: 17.2916vw;
  height: auto;
  object-fit: contain;
  object-position: center;
}
.works_image_two {
  position: absolute;
  bottom: 0;
  right: 3.8541vw;
}
.works_image_two img {
  width: 15.4687vw;
  height: auto;
  object-fit: contain;
  object-position: center;
}
.works_items {
  border-left: 0.1562vw dashed #737373;
}
.works_item {
  position: relative;
  z-index: 1;
  padding-left: 2.5vw;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}
.works_item.visible {
  opacity: 1;
  transform: translateY(0);
}
.works_item:not(:last-child) {
  margin-bottom: 2.9166vw;
}
.works_item h3.works_item_title {
  margin-bottom: 0.3645vw;
}
.works_item p.works_item_text {
  font-size: 0.9375vw;
}
.works_item_number {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -1.1458vw;
  width: 2.2916vw;
  height: 2.2916vw;
  border-radius: 8px;
  background-color: #ecc14c;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text_color_black);
}
.dark-mode .works_item_number {
  color: var(--text_color_white);
}
.benefits_section {
  position: relative;
  z-index: 1;
  padding: 1.9479vw 7.2916vw;
  min-height: 31.8229vw;
  background-color: #2f2e2e;
  display: flex;
  align-items: center;
  justify-content: left;
}
.dark-mode .benefits_section {
  background-color: #fafafc;
}
.benefits_wrap {
  width: 40.625vw;
}
.benefits_title {
  margin-bottom: 3.75vw;
  width: 31.5104vw;
}
.benefits_title h2 {
  color: #f1f1f1;
  display: flex;
  flex-wrap: wrap;
}
.benefits_title br {
  display: none;
}
.benefits_title span {
  margin-left: 0.5208vw;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  width: 0;
  color: #ecc14c;
}
.benefits_title span.animate {
  animation: printed_text_two 3s steps(30) forwards;
}
@keyframes printed_text_two {
  from {
    width: 0;
  }
  to {
    width: 8.5ch;
  }
}
.dark-mode .benefits_title h2 {
  color: #120c0c;
}
.benefits_content_list {
  margin: 0 0 3.75vw;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.benefits_content_item {
  padding-bottom: 0.4166vw;
  width: 50%;
  display: flex;
  align-items: center;
  font-size: 0.9375vw;
}
.benefits_content_item svg {
  margin-right: 0.4166vw;
  width: 2.0833vw;
  height: 2.0833vw;
}
.benefits_decor {
  position: absolute;
  top: 0;
  right: 4.1666vw;
  z-index: 1;
  width: 31.8229vw;
  height: 31.8229vw;
}
.benefits_decor .decor {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.benefits_decor .decor img {
  width: 31.8229vw;
  height: 31.8229vw;
  object-fit: contain;
}
.benefits_decor_one {
  position: absolute;
  bottom: 0;
  left: 24.5833vw;
  width: 40.3645vw;
  height: auto;
}
.benefits_decor_one .decor {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.benefits_decor_one .decor img {
  width: 40.3645vw;
  height: auto;
}
.benefits_decor_two {
  position: absolute;
  top: 0;
  left: 0;
  width: 20.7812vw;
  height: auto;
}
.benefits_decor_two .decor {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.benefits_decor_two .decor img {
  width: 20.7812vw;
  height: auto;
}
.benefits_decor_three {
  position: absolute;
  top: 0;
  left: 24.0625vw;
  width: 37.2916vw;
  height: auto;
}
.benefits_decor_three .decor {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.benefits_decor_three .decor img {
  width: 37.2916vw;
  height: auto;
}
.faqs_section {
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding: 10.4166vw 7.2916vw;
}
.faqs_decor {
  position: absolute;
  top: -6.5104vw;
  right: -6.5104vw;
  z-index: -1;
}
.faqs_decor .decor {
  position: absolute;
  top: 0;
  right: 0;
}
.faqs_decor .decor svg {
  width: auto;
  height: 30.8854vw;
}
.faqs_title {
  margin-bottom: 1.9791vw;
}
.faqs_items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.faqs_item {
  padding: 1.25vw;
  width: 49%;
  border-bottom: 0.1562vw dashed #ecc14c;
  transition: all 0.3s linear;
}
.faqs_section h3.faqs_item_title {
  position: relative;
  margin: 0;
  padding-right: 4.1666vw;
  display: flex;
  align-items: center;
  font-size: 1.25vw;
  line-height: normal;
  cursor: pointer;
  transition: all 0.3s linear;
}
.faqs_section .faqs_item.active h3.faqs_item_title,
.faqs_section .faqs_item.active .faqs_item_number,
.faqs_section .faqs_item:hover h3.faqs_item_title,
.faqs_section .faqs_item:hover .faqs_item_number {
  color: #f9ecc8;
}
.dark-mode .faqs_section .faqs_item.active h3.faqs_item_title,
.dark-mode .faqs_section .faqs_item.active .faqs_item_number,
.dark-mode .faqs_section .faqs_item:hover h3.faqs_item_title,
.dark-mode .faqs_section .faqs_item:hover .faqs_item_number {
  color: #e67318;
}
.faqs_item_number {
  margin-right: 0.8333vw;
  font-size: 1.4583vw;
  color: #737373;
  transition: all 0.3s linear;
}
.faqs_section .faqs_btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.25vw;
  margin: 0;
  padding: 0;
  width: auto;
  height: auto;
  background-color: transparent;
  border-radius: 0;
  border: none;
  cursor: pointer;
}
.faqs_section .faqs_btn svg {
  width: 2.0833vw;
  height: 2.0833vw;
  transition: all 0.3s linear;
}
.faqs_section .faqs_item .faqs_btn svg path {
  transition: all 0.3s linear;
}
.faqs_section .faqs_item.active .faqs_btn svg path,
.faqs_section .faqs_item:hover .faqs_btn svg path {
  fill: #f1f1f1;
}
.dark-mode .faqs_section .faqs_item.active .faqs_btn svg path,
.dark-mode .faqs_section .faqs_item:hover .faqs_btn svg path {
  fill: #737373;
}
.faqs_section .faqs_item.active .faqs_btn svg {
  transform: rotate(45deg);
}
.faqs_section p.faqs_item_text {
  margin-top: 0.8333vw;
}
@media (max-width: 1199px){
  .proposition_fon{
    display: none;
  }
} 
@media (min-width: 768px) {
  .decision_content_title.mob,
  .decision_content_subtitle.mob,
  .hero_fon_mob,
  .benefits_decor_four_mob {
    display: none;
  }
}
@media (max-width: 768px) {
  .decision_line_one,
  .decision_line_two,
  .decision_line_three,
  .decision_line_four,
  .carousel_line,
  .proposition_line,
  .proposition_decor_two,
  .proposition_decor_three,
  .works_decor_one {
    display: none;
  }
  .hero_section {
    padding-top: 5.3333vw;
    min-height: auto;
  }
  .hero_wrap {
    padding: 0 4.2666vw;
  }
  .hero_content {
    width: 100%;
    position: relative;
    z-index: 60;
  }
  .hero_content_title {
    margin-bottom: 4.2666vw;
  }
  .hero_content_title h1 {
    margin-bottom: 0;
    line-height: 1.1;
  }
  .hero_content_subtitle {
    margin-bottom: 4.2666vw;
    font-size: 4.8vw;
  }
  .hero_content_text {
    margin-bottom: 98.3333vw;
  }
  .hero_decor_and_image {
    top: auto;
    bottom: 11.2vw;
    right: 0;
    width: 100%;
    height: 100vw;
  }
  .hero_decor_and_image .decor {
    top: auto;
    bottom: 0;
  }
  .hero_decor_and_image .decor img {
    width: 100%;
    height: auto;
  }
  .hero_image_phone img {
    width: 42.4vw;
  }
  .hero_image_search {
    top: 13.6vw;
    width: 31.4666vw;
  }
  .hero_image_search img {
    width: 100%;
  }
  .hero_images {
    z-index: 2;
  }
  .hero_image_advantages {
    bottom: 9.3333vw;
    width: 30.6666vw;
  }
  .hero_image_advantages svg,
  .hero_image_advantages img {
    width: 100%;
  }
  .hero_line {
    top: auto;
    bottom: 0;
    left: auto;
    right: 0;
    z-index: 1;
  }
  .hero_line .decor {
    top: auto;
    left: auto;
    right: 0;
    bottom: 0;
  }
  .hero_line .decor svg {
    width: 92.8vw;
    height: auto;
  }
  .hero_fon {
    display: none;
  }
  .hero_fon_mob {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
  }
  .hero_fon_mob img {
    width: 100%;
    height: auto;
  }
  .hero_fon_mob .decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .problem_section {
    padding-top: 22.6666vw;
    padding-right: 0;
    min-height: auto;
  }
  .problem_wrap {
    flex-direction: column-reverse;
  }
  .problem_content {
    padding: 0 4.2666vw;
  }
  .problem_content_title {
    margin-bottom: 6.4vw;
  }
  .problem_content_text p {
    font-size: 4.2666vw;
  }
  .problem_content_text img {
    width: 7.4666vw;
    height: 7.4666vw;
  }
  .problem_image {
    position: relative;
    z-index: 1;
  }
  .problem_image .decor {
    position: relative;
    width: 95.4666vw;
    height: auto;
  }
  .problem_image .decor img {
    width: 95.4666vw;
    height: auto;
  }
  .dark-mode .problem_image .black_decor,
  .problem_image .white_decor {
    display: none;
  }
  .decision_section {
    padding: 22.6666vw 4.2666vw;
  }
  .decision_wrap {
    flex-direction: column-reverse;
    align-items: inherit;
  }
  .decision_content {
    width: 100%;
  }
  .decision_content_title.des,
  .decision_content_subtitle.des {
    display: none;
  }
  .decision_content_title {
    margin-bottom: 4.2666vw;
  }
  .decision_content_title span {
    margin-left: 2.6666vw;
  }
  .decision_content_subtitle {
    margin-bottom: 6.4vw;
    padding-right: 0;
  }
  .decision_images {
    margin-bottom: 6.4vw;
    padding-left: 0;
  }
  .decision_image_one img,
  .decision_image_two img {
    width: 86.1333vw;
  }
  .decision_image_one,
  .decision_image_two {
    display: flex;
    justify-content: center;
  }
  .decision_content_text {
    margin-bottom: 6.4vw;
  }
  .decision_content_list {
    margin-bottom: 6.6666vw;
  }
  .decision_content_item {
    font-size: 4.2666vw;
  }
  .decision_content_item:not(:last-child) {
    margin-bottom: 4.5333vw;
  }
  .decision_content_item svg {
    margin-right: 2.1333vw;
    width: 6.4vw;
    height: 6.4vw;
  }
  .carousel_content {
    padding: 0 4.2666vw;
    display: block;
  }
  .carousel_section .home-about-carousel-arrows {
    display: none;
  }
  .carousel_title {
    width: 100%;
  }
  .carousel_items {
    margin-top: 8.5333vw;
    padding-left: 4.2666vw;
  }
  .carousel_items_item {
    margin-right: 4.2666vw;
    width: 80.2666vw;
    height: 80.2666vw;
    border-radius: 8px;
  }
  .carousel_items_item_one .carousel_item_text {
    top: 4.2666vw;
    left: 4.2666vw;
    right: 4.2666vw;
    width: auto;
  }
  .carousel_item_text h3 {
    margin-bottom: 1.8666vw;
    font-size: 4.8vw;
  }
  .carousel_item_text p {
    font-weight: 400;
    font-size: 3.7333vw;
  }
  .carousel_items_item_one .carousel_item_decor {
    top: 24vw;
  }
  .carousel_items_item_one .carousel_item_decor img {
    width: 78.6666vw;
    height: 44vw;
  }
  .carousel_items_item_two .carousel_item_text {
    top: auto;
    bottom: 4.2666vw;
    left: 4.2666vw;
    right: 4.2666vw;
    width: auto;
  }
  .carousel_items_item_two .carousel_item_decor img {
    width: 69.3333vw;
    height: 52vw;
  }
  .carousel_items_item_three .carousel_item_text {
    top: 4.2666vw;
    left: 4.2666vw;
    right: 4.2666vw;
    width: auto;
  }
  .carousel_items_item_three .carousel_item_decor {
    top: 13.8666vw;
  }
  .carousel_items_item_three .carousel_item_decor img {
    width: 69.8666vw;
    height: 52.5333vw;
  }
  .carousel_items_item_four .carousel_item_text {
    bottom: 4.2666vw;
    left: auto;
    right: 4.2666vw;
    width: 63.2vw;
  }
  .carousel_items_item_four .carousel_item_decor img {
    width: 77.3333vw;
    height: 58.1333vw;
  }
  .carousel_items.owl-carousel .owl-dots {
    margin-top: 4.2666vw;
    padding-right: 4.2666vw;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .carousel_items.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 4px;
    background-color: #737373;
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  .carousel_items.owl-carousel .owl-dots .owl-dot.active {
    width: 2.1333vw;
    height: 2.1333vw;
    background-color: #e2e2e2;
  }
  .carousel_items.owl-carousel .owl-dots .owl-dot:nth-child(1):not(.active) {
    width: 2.1333vw;
    height: 2.1333vw;
  }
  .carousel_items.owl-carousel .owl-dots .owl-dot:nth-child(2):not(.active) {
    width: 1.8666vw;
    height: 1.8666vw;
  }
  .carousel_items.owl-carousel .owl-dots .owl-dot:nth-child(3):not(.active) {
    width: 1.6vw;
    height: 1.6vw;
  }
  .carousel_items.owl-carousel .owl-dots .owl-dot:nth-child(4):not(.active) {
    width: 1.3333vw;
    height: 1.3333vw;
  }
  .proposition_section {
    padding: 22.6666vw 0 0;
  }
  .proposition_wrap {
    padding: 0 4.2666vw 106.6666vw;
  }
  .proposition_content {
    width: 100%;
    min-height: auto;
  }
  .proposition_items {
    margin-top: 8.5333vw;
    border-width: 2px;
  }
  .proposition_item {
    padding-left: 10.1333vw;
  }
  .proposition_item:not(:last-child) {
    margin-bottom: 8.5333vw;
  }
  .proposition_item .point {
    left: -4vw;
    width: 7.4666vw;
    height: 7.4666vw;
  }
  .proposition_item .point::before {
    width: 3.2vw;
    height: 3.2vw;
  }
  .proposition_item_title {
    width: 100%;
  }
  .proposition_item_text {
    padding-top: 4.2666vw;
    width: 100%;
  }
  .proposition_decor_and_image {
    top: auto;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100vw;
  }
  .proposition_decor_and_image .decor img {
    width: 100%;
    height: 100%;
  }
  .proposition_image img {
    width: 100%;
    height: 100%;
  }
  .works_section {
    padding: 22.6666vw 4.2666vw 0;
  }
  .works_wrap{
    flex-direction: column-reverse;
  }
  .works_content {
    width: 100%;
    min-height: auto;
  }
  .works_title {
    margin-bottom: 8.5333vw;
  }
  .works_text {
    margin-bottom: 8.5333vw;
  }
  .works_items {
    margin-left: 4.2666vw;
    border-width: 2px;
  }
  .works_item {
    padding-left: 13.8666vw;
  }
  .works_item:not(:last-child) {
    margin-bottom: 8.5333vw;
  }
  .works_item_number {
    left: -5.3333vw;
    width: 9.6vw;
    height: 9.6vw;
    border-radius: 8px;
    font-weight: 600;
    font-size: 6.4vw;
  }
  .works_item h3.works_item_title {
    margin-bottom: 2.1333vw;
  }
  .works_item p.works_item_text {
    font-size: 3.7333vw;
  }
  .works_decor_and_images {
    margin: 13.3333vw -4.2666vw 0;
    width: 100vw;
    height: 100vw;
  }
  .works_decor_and_images .decor img {
    width: 100%;
    height: 100%;
  }
  .works_image_one {
    left: 4vw;
  }
  .works_image_one img {
    width: 42.6666vw;
  }
  .works_image_two {
    right: 4vw;
  }
  .works_image_two img {
    width: 42.6666vw;
  }
  .benefits_section {
    margin-top: 22.6666vw;
    padding: 6.4vw 4.2666vw;
    min-height: auto;
  }
  .benefits_wrap {
    width: 100%;
  }
  .benefits_title {
    margin-bottom: 6.4vw;
    width: 100%;
  }
  .benefits_title span {
    margin-left: 1.6666vw;
  }
  .benefits_content_list {
    margin-bottom: 61.3333vw;
    display: block;
  }
  .benefits_content_item {
    padding-bottom: 4.2666vw;
    width: 100%;
    font-size: 4.2666vw;
  }
  .benefits_content_item svg {
    margin-right: 2.1333vw;
    width: 6.4vw;
    height: 6.4vw;
  }
  .benefits_decor {
    top: auto;
    bottom: 23.4666vw;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 58.6666vw;
    height: 58.6666vw;
  }
  .benefits_decor .decor img {
    width: 58.6666vw;
    height: 58.6666vw;
  }
  .benefits_decor_one,
  .benefits_decor_two,
  .benefits_decor_three {
    display: none;
  }
  .benefits_decor_four_mob {
    position: absolute;
    bottom: -13.3333vw;
    right: 13.3333vw;
    z-index: 1;
    width: 100%;
    height: 66.6666vw;
  }
  .benefits_decor_four_mob .decor {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
  }
  .benefits_decor_four_mob .decor img {
    width: 100%;
    height: 66.6666vw;
    object-fit: contain;
  }
  .faqs_section {
    padding: 22.6666vw 4.2666vw;
  }
  .faqs_decor {
    display: none;
  }
  .faqs_title {
    margin-bottom: 8.5333vw;
  }
  .faqs_items {
    display: block;
  }
  .faqs_item {
    padding: 4.2666vw 0;
    width: 100%;
    border-width: 0.8vw;
  }
  .faqs_item:not(:last-child) {
    margin-bottom: 4.2666vw;
  }
  .faqs_section h3.faqs_item_title {
    padding-right: 19.2vw;
    font-weight: 500;
    font-size: 4.2666vw;
  }
  .faqs_section p.faqs_item_text {
    margin-top: 4.2666vw;
  }
  .faqs_item_number {
    margin: 0 4.2666vw;
    font-size: 5.8666vw;
  }
  .faqs_section .faqs_btn svg {
    width: 10.6666vw;
    height: 10.6666vw;
  }
}
.privacy-policy .entry-content {
  margin: 0.3472vw 7.2916vw 6.9444vw;
  padding: 0;
  width: 49.2187vw;
}
.privacy-policy .entry-content p{
  font-size: 1.0416vw;
}
.terms_of_service_section {
  margin: 0.3472vw 7.2916vw 6.9444vw;
  padding: 0;
}
.privacy-policy .entry-header {
  margin: 2.6041vw 7.2916vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.terms_of_service_wrap {
  margin: 2.6041vw 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.privacy-policy .all_text .entry-header h1 {
  margin: 0;
}
.privacy-policy .entry-content > ul,
.privacy-policy .entry-content > ol {
  margin-top: 0.6944vw;
  margin-left: 0;
  margin-bottom: 1.0416vw;
  padding-left: 1.3888vw;
  list-style-position: outside;
}
.privacy-policy .entry-content > ul li,
.privacy-policy .entry-content > ol li {
  margin: 0;
}
.privacy-policy .entry-content > ul li:not(:last-child),
.privacy-policy .entry-content > ol li:not(:last-child) {
  margin-bottom: 0.6944vw;
}
@media (max-width: 768px) {
  .terms_of_service_section {
    margin: 12vw 4.2666vw 6.4vw;
  }
  .terms_of_service_wrap {
    margin: 0 0 6.4vw;
    display: block;
  }
  .privacy-policy .entry-header {
    margin: 12vw 4.2666vw 6.4vw;
    display: block;
  }
  .privacy-policy .all_text .entry-header h1 {
    margin-bottom: 4.2666vw;
  }
  .privacy-policy .entry-content {
    margin: 0;
    padding: 0 4.2666vw 21.3333vw;
    width: 100%;
  }
  .privacy-policy .entry-content p{
    font-size: 4.2666vw;
  }
  .privacy-policy .entry-content > ul,
  .privacy-policy .entry-content > ol {
    margin-top: 6.25vw;
    margin-bottom: 6.25vw;
    padding-left: 6.25vw;
  }
  .privacy-policy .entry-content > ul li:not(:last-child),
  .privacy-policy .entry-content > ol li:not(:last-child) {
    margin-bottom: 3.125vw;
  }
}
.wavy_line {
  position: absolute;
  top: 13.802vw;
  left: 1.1979vw;
}
.wavy_line svg{
  width: 16.1458vw;
  height: auto;
}
.movingDotCore {
  animation: blink 1s infinite;
}
#linePath{
  opacity: 0;
}
.movingDotGlow {
  animation: blink 1s infinite;
}
@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0.3; }
  100% { opacity: 1; }
}
@media (max-width: 768px) {
  .wavy_line {
    top: 31.2vw;
    left: 2.6666vw;
  }
  .wavy_line svg{
    width: 36.1458vw;
    height: auto;
  }
}