* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  position: relative;
}

@font-face {
  font-family: "Monserat";
  src: url("fonts/Montserrat-Medium.ttf") format("woff2");
  font-weight: 400;
}
@font-face {
  font-family: "Raleway";
  src: url("fonts/Raleway-Regular.ttf") format("woff2");
  font-weight: 600;
}
h1, h2, h3, h4 {
  font-family: "Monserat";
}

h1 {
  font-size: 64px;
  line-height: 80px;
  font-weight: 600;
}

h2 {
  font-size: 48px;
  line-height: 60px;
  font-weight: 600;
}

h3 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 500;
}

h4 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
}

p, span, li {
  font-family: "Raleway";
  font-variant-numeric: lining-nums;
  font-size: 18px;
}

a {
  text-decoration: none;
  color: white;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Raleway";
  font-size: 20px;
  line-height: 25px;
  letter-spacing: 5px;
  width: 280px;
  height: 56px;
  border-radius: 4px;
  padding: 0 32px;
  cursor: pointer;
  text-transform: uppercase;
  z-index: 2;
}

.white_btn {
  background-color: white;
  color: var(--primary);
  border: none;
}

.white_btn:hover {
  border: solid 2px white;
  background-color: transparent;
  color: white;
}

.white_btn:active {
  background-color: #E7EDF9;
}

.blue_btn {
  background-color: var(--primary);
  border: none;
  color: white;
}

.blue_btn:hover {
  background-color: var(--deep_primary);
}

.blue_btn:active {
  background-color: var(--bright_primary);
}

:root {
  --primary: #10326E;
  --bright_primary: #1B54B8;
  --deep_primary:#154393;
  --dark-primary: #0A1F44;
  --light_primary: #E7EDF9;
  --light_gray: #AEAEAE;
  --medium_gray: #7C7C7C;
  --black: #051125;
  --error: #D73D3D;
  --orange: #F3972D;
  --success: #35A169;
}

.dec {
  color: var(--bright_primary);
  font-style: normal;
}

.dec2 {
  color: var(--primary);
  font-style: normal;
}

.container {
  display: flex;
  max-width: 1224px;
  width: 100%;
}

section {
  padding: 104px 0;
  display: flex;
  justify-content: center;
}

header {
  border-bottom: solid 1px white;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.mob_menu {
  display: none;
}

.lang_switcher {
  display: flex;
  gap: 8px;
}
.lang_switcher button {
  width: 30px;
  background-color: transparent;
  border: none;
  font-size: 16px;
  border-radius: 31px;
  color: black;
  padding: 0;
  height: auto;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
}
.lang_switcher button.active {
  background-color: var(--primary);
  color: white;
}

.top_header {
  display: flex;
  justify-content: center;
  padding: 8px 0;
}
.top_header .container {
  justify-content: space-between;
}
.top_header .container .header_contacts {
  display: flex;
  gap: 16px;
}
.top_header .container .header_contacts div {
  display: flex;
  align-items: center;
  gap: 16px;
}
.top_header .container .header_contacts div p a {
  color: black;
}
.top_header .container .header_contacts div span {
  font-size: 18px;
}
.top_header .container .header_contacts img {
  width: 24px;
}

.bottom_header {
  display: flex;
  justify-content: center;
  background-color: var(--primary);
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.bottom_header .container {
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}
.bottom_header menu ul {
  list-style: none;
  display: flex;
  gap: 16px;
}
.bottom_header menu ul li a {
  color: white;
  text-decoration: none;
}
.bottom_header menu ul li a:hover {
  text-decoration: underline;
}

.hero {
  background-color: var(--primary);
  display: flex;
  justify-content: center;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%, 0 100%);
  background-image: url(img/hero.png);
  background-repeat: no-repeat;
  background-position: 85% 50%;
  background-size: 749px 617px;
}
.hero .hero_mob_img {
  display: none;
}
.hero .hero_wrapper {
  display: flex;
  flex-direction: column;
  max-width: 553px;
  color: white;
  gap: 32px;
  padding-top: 153px;
  padding-bottom: 220px;
}
.hero .hero_wrapper button {
  margin-top: 32px;
}

.about {
  display: flex;
  justify-content: center;
  position: relative;
  padding: 104px 0;
}
.about .container {
  flex-direction: column;
}
.about .container h2 {
  margin-bottom: 64px;
}
.about .about_wrapper {
  display: flex;
  gap: 32px;
}
.about .about_wrapper div {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about::before {
  content: "";
  background-image: url(img/about-us-pattern.png);
  background-repeat: no-repeat;
  background-position: bottom;
  position: absolute;
  top: -60px;
  right: 0;
  width: 50%;
  height: 330px;
}

.why_we {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 104px 0;
  background-color: var(--light_primary);
}
.why_we .container {
  flex-direction: column;
}
.why_we .why_we_wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-top: 64px;
  gap: 32px;
}
.why_we .why_we_wrapper .why_we_container {
  display: flex;
  gap: 32px;
  width: 100%;
  max-width: 596px;
}
.why_we .why_we_wrapper .why_we_container div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.why_we .why_we_wrapper .why_we_container img {
  width: 64px;
  height: 64px;
}
.why_we .button {
  margin-top: 64px;
  align-self: center;
}

.how_we_work {
  display: flex;
  justify-content: center;
  width: 100%;
  position: relative;
  padding-top: 104px;
  padding-bottom: 104px;
}
.how_we_work .container {
  flex-direction: column;
}
.how_we_work .container .button {
  align-self: center;
  margin-top: 64px;
}
.how_we_work .container .under_how {
  max-width: 650px;
  margin-top: 64px;
}
.how_we_work .container .bottom_how {
  max-width: 650px;
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 2;
}
.how_we_work .container .bottom_how .dec {
  font-size: 24px;
  font-weight: 500;
}
.how_we_work .container .bottom_how ul {
  margin-left: 22px;
}
.how_we_work .container .bottom_how ul li {
  font-size: 20px;
}
.how_we_work .container .bottom_how p {
  font-size: 20px;
}
.how_we_work .how_we_work_wrapper {
  display: flex;
  padding-top: 64px;
  gap: 32px;
}
.how_we_work .how_we_work_wrapper .left, .how_we_work .how_we_work_wrapper .right {
  width: 500px;
}
.how_we_work .how_we_work_wrapper .right {
  padding-top: 350px;
}
.how_we_work .how_we_work_wrapper .how_we_item {
  position: relative;
}
.how_we_work .how_we_work_wrapper .how_we_item img {
  position: absolute;
  z-index: -1;
}
.how_we_work .how_we_work_wrapper .how_we_item div {
  padding-left: 114px;
  padding-top: 80px;
}
.how_we_work .how_we_work_wrapper .how_we_item div h4 {
  margin-bottom: 8px;
}
.how_we_work .how_we_work_wrapper .n3 {
  margin-top: 500px;
}
.how_we_work .how_we_work_wrapper .n5 {
  margin-top: 200px;
}
.how_we_work .how_we_work_wrapper .n4 {
  margin-top: 250px;
}
.how_we_work .how_we_work_wrapper .n6 {
  margin-top: 250px;
}

.how_we_work_wrapper_mobile {
  display: none;
}

.how_we_work::before {
  content: "";
  background-image: url(img/how-it-works-pattern-1.png);
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  width: 36%;
  height: 450px;
}

.how_we_work::after {
  content: "";
  background-image: url(img/how-it-works-pattern-2.png);
  background-repeat: no-repeat;
  background-position: bottom;
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 37%;
  height: 616px;
}

.testemonials {
  width: 100%;
  justify-content: center;
  display: flex;
  background-color: var(--light_primary);
  padding: 104px 0 120px 0;
}
.testemonials .container {
  flex-direction: column;
  justify-content: center;
}

.sk_testimonials {
  display: flex;
  flex-direction: column;
  overflow-x: clip;
  align-items: flex-end;
  margin: 0 -15px;
}

.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
  display: flex;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background-color: var(--main-color);
  width: 35px;
  transition: 0.5s;
}

.owl-theme .owl-dots .owl-dot span {
  width: 25px;
  height: 6px;
  transition: 0.5s;
}

.owl-carousel .owl-stage-outer {
  overflow: unset;
}

.owl-stage {
  overflow-x: clip;
}

.owl-theme .owl-nav {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
}

.owl-next {
  position: absolute;
  top: 155px;
  right: -35px;
  background: url(img/right.svg) !important;
}
.owl-next span {
  display: none;
}

.owl-prev {
  position: absolute;
  top: 155px;
  left: -50px;
  background: url(img/left.svg) !important;
}
.owl-prev span {
  display: none;
}

.owl-item + .active {
  opacity: 1;
}

.owl-item-active {
  opacity: 0;
}

.sk_testi {
  padding-top: 64px;
}
.sk_testi .item {
  max-width: 596px;
  display: flex;
  gap: 32px;
  background-color: white;
  border-radius: 4px;
  padding: 32px;
  margin: 10px;
}
.sk_testi .item .user_img {
  width: 100px;
  display: none;
}
.sk_testi .item .user_img img {
  width: auto;
}
.sk_testi .item .item_wrapper {
  border-radius: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 182px;
  transition: height 0.3s ease;
  gap: 32px;
}
.sk_testi .item .item_wrapper .testi_user {
  display: flex;
  justify-content: space-between;
}
.sk_testi .item .item_wrapper .testi_user div {
  display: flex;
  align-items: center;
}
.sk_testi .item .item_wrapper .testi_user div img {
  width: 70px;
  height: 70px;
  border-radius: 40px;
}
.sk_testi .item .item_wrapper .testi_user div p {
  margin-left: 10px;
}
.sk_testi .item .item_wrapper .testi_text {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sk_testi .item .item_wrapper .testi_text .testi_name {
  font-size: 20px;
  line-height: 25px;
  font-weight: 600;
}
.sk_testi .item .item_wrapper .testi_bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sk_testi .item .item_wrapper .testi_bottom img {
  width: 100px;
  height: 20px;
}
.sk_testi .item .item_wrapper .testi_btn {
  text-align: right;
}
.sk_testi .item .item_wrapper .testi_btn button {
  background: none;
  color: var(--primary);
  border: none;
  text-transform: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 400;
  position: relative;
  width: auto;
  font-size: 18px;
  height: auto;
  padding: 0;
  letter-spacing: 2px;
}
.sk_testi .item .item_wrapper .hide {
  display: none;
}
.sk_testi .item .expanded {
  height: auto !important;
}

.owl-nav button {
  width: 38px;
  height: 48px;
}

.owl-theme .owl-dots .owl-dot {
  width: auto;
}

.owl-theme .owl-dots .owl-dot.active span {
  width: 10px;
  background-color: var(--primary) !important;
}

.owl-theme .owl-dots .owl-dot:hover span {
  width: 10px;
}

.promo {
  display: flex;
  justify-content: center;
  background-image: url(img/promo2.png);
  background-repeat: no-repeat;
  background-position: 99% 94%;
}
.promo .container {
  gap: 64px;
}
.promo .container img {
  max-width: 554px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.promo .container .promo_wrapper {
  max-width: 580px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.form_op {
  padding: 0;
  background: linear-gradient(to left, var(--primary) 40%, var(--light_primary) 40%);
}
.form_op .form_wrapper {
  max-width: 888px;
  width: 100%;
  padding: 104px 108px 174px 0;
}
.form_op .form_wrapper h2 {
  margin-bottom: 64px;
}
.form_op .form_wrapper p {
  font-size: 20px;
  margin-bottom: 32px;
  max-width: 580px;
}
.form_op .form_wrapper form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.form_op .form_wrapper form div {
  display: flex;
  gap: 32px;
}
.form_op .form_wrapper form fieldset {
  border: none;
}
.form_op .form_wrapper form .comment_box {
  flex-direction: column;
  gap: 0;
}
.form_op .form_wrapper form legend {
  font-family: "Raleway";
  font-size: 18px;
  line-height: 23px;
  color: var(--light_gray);
  margin: 0 0 4px 4px;
}
.form_op .form_wrapper form input, .form_op .form_wrapper form select {
  width: 320px;
  height: 40px;
  border: solid 1px rgb(174, 174, 174);
  border-radius: 4px;
  padding: 8px 14px;
  font-size: 20px;
  transition: border-color 0.3s, color 0.3s;
  color: rgb(5, 17, 37);
}
.form_op .form_wrapper form select {
  color: var(--primary);
}
.form_op .form_wrapper form textarea {
  width: 100%;
  height: 124px;
  border: solid 1px rgb(174, 174, 174);
  border-radius: 4px;
  padding: 8px 14px;
  font-size: 20px;
  transition: border-color 0.3s, color 0.3s;
}
.form_op .form_wrapper form ::-moz-placeholder {
  color: var(--light_gray);
  font-size: 20px;
}
.form_op .form_wrapper form ::placeholder {
  color: var(--light_gray);
  font-size: 20px;
}
.form_op .form_wrapper form input:hover, .form_op .form_wrapper form textarea:hover {
  border-color: rgb(124, 124, 124);
}
.form_op .form_wrapper form input:focus, .form_op .form_wrapper form textarea:focus {
  color: var(--primary);
  border-color: var(--primary) !important;
}
.form_op .form_wrapper form input:valid {
  border: 1px solid var(--success);
  color: var(--primary);
}
.form_op .form_wrapper #result_form {
  display: none;
}
.form_op .form_contacts {
  display: flex;
  flex-direction: column;
  gap: 64px;
  max-width: 552px;
  background-color: var(--primary);
  color: white;
  padding: 104px 108px;
}
.form_op .form_contacts .form_contacts_wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.form_op .form_contacts .form_contacts_wrapper .form_container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 20px;
}
.form_op .form_contacts .form_contacts_wrapper .form_container p {
  display: flex;
  gap: 8px;
}
.form_op .form_contacts .form_contacts_wrapper .form_social div {
  margin-top: 16px;
  display: flex;
  gap: 16px;
}
.form_op .form_contacts .form_logo img {
  max-width: 344px;
}

.faq .container {
  flex-direction: column;
}

.faq_container {
  display: flex;
  padding-top: 64px;
}
.faq_container .accordion {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}
.faq_container .accordion-item {
  border-bottom: solid 1px var(--primary);
}
.faq_container .accordion-header {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  font-size: clamp(14px, 1.3020833333vw, 25px);
  font-weight: 400;
  transition: 0.3s;
  transition: background-color 0.3s;
  margin-left: 32px;
}
.faq_container .accordion-header p {
  display: flex;
  align-items: center;
}
.faq_container .accordion-header svg {
  transition: 0.3s ease;
  margin-right: 20px;
}
.faq_container .accordion-header svg path {
  fill: #051125;
}
.faq_container .accordion-header:hover {
  transition: 0.3s;
  color: var(--main-color);
}
.faq_container .accordion-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s;
  margin: 16px 0;
  max-width: 650px;
  margin-left: 32px;
}
.faq_container .accordion-content ul {
  margin-left: 68px;
}
.faq_container .accordion-content ul li {
  margin: 13px 0 20px 0;
}
.faq_container .accordion-item.active .accordion-header {
  color: var(--main-color);
}
.faq_container .active .accordion-header p {
  color: var(--primary);
}
.faq_container .active svg {
  transition: 0.3s ease;
  transform: rotate(-180deg);
}
.faq_container .active svg path {
  fill: #1B54B8;
}

.shop {
  width: 100%;
  background-color: var(--light_primary);
}
.shop .container {
  flex-direction: column;
}
.shop .container h2 {
  margin-bottom: 64px;
}
.shop .container h4 {
  margin-bottom: 32px;
}
.shop .owl-carousel2 {
  display: flex;
}
.shop .shop_wrapper .item {
  max-width: 386px;
  width: 100%;
  height: 628px;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  gap: 32px;
  border-radius: 4px;
  box-shadow: 0px 0px 8px 0px rgba(16, 50, 110, 0.25);
}
.shop .shop_wrapper .item .item_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.shop .shop_wrapper .item .item_wrapper .testi_text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.shop .shop_wrapper .item .item_wrapper .testi_text p {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}
.shop .shop_wrapper .item .item_wrapper .testi_text span {
  color: var(--medium_gray);
}
.shop .shop_wrapper .shop_link {
  margin-top: auto;
}
.shop .shop_wrapper .owl-stage-outer {
  padding-left: 10px;
}
.shop .shop_wrapper .owl-prev, .shop .shop_wrapper .owl-next {
  top: 250px;
}

.insta_block .container {
  flex-direction: column;
  overflow: hidden;
}

.form_op .cf_mob {
  display: none;
}

.map_wrapper {
  position: relative;
  width: 100%;
  height: 615px;
}
.map_wrapper .info_block {
  position: absolute;
  z-index: 1;
  top: 135px;
  left: 18%;
}
.map_wrapper .info_block a {
  color: black;
}
.map_wrapper iframe {
  position: absolute;
  width: 100%;
  height: 770px;
}

.info_block {
  background-color: var(--light_primary);
  max-width: 392px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 64px;
}
.info_block .footer_contacts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.info_block .footer_contacts p {
  display: flex;
  align-items: center;
  gap: 8px;
}
.info_block .footer_social {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.info_block .footer_social div {
  display: flex;
  gap: 16px;
}
.info_block .footer_social2 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.info_block .footer_social2 div {
  display: flex;
  gap: 16px;
}

.bottom_footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: var(--primary);
  padding-top: 212px;
  padding-bottom: 104px;
  clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%, 0 100%);
}
.bottom_footer .container {
  gap: 195px;
}
.bottom_footer .container > div {
  max-width: 33%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.bottom_footer .container .left {
  max-width: 344px;
}
.bottom_footer .container .left img {
  max-width: 344px;
}
.bottom_footer .container .left p {
  color: white;
  font-size: 20px;
  line-height: 25px;
}
.bottom_footer .container .middle ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.bottom_footer .container .middle ul a {
  text-decoration: none;
  color: white;
  font-size: 24px;
  line-height: 30px;
  font-family: "Monserat";
}
.bottom_footer .container .middle ul a:hover {
  text-decoration: underline;
}
.bottom_footer .container .middle ul .privacy {
  font-size: 15px;
  padding-top: 32px;
}
.bottom_footer .container .right .info_block {
  background-color: transparent;
  padding: 0;
  color: #E7EDF9;
}

#scrollToTopButton {
  width: 64px;
  height: 64px;
  display: none;
  position: fixed;
  bottom: 10%;
  right: 44px;
  padding: 0 10px;
  background-color: var(--bright_primary);
  color: #fff;
  border: none;
  border-radius: 4px;
  transition: 0.4s;
  z-index: 99;
  cursor: pointer;
}
#scrollToTopButton svg {
  fill: white;
}

#scrollToTopButton.show {
  display: block;
  border: solid 1px rgb(174, 174, 174);
  border-radius: 50px;
  box-shadow: 0px 0px 8px 0px rgba(16, 50, 110, 0.25);
}

#scrollToTopButton.show:hover {
  background-color: var(--primary);
  transition: 0.4s;
}

.privacy .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.privacy .container .privacy_block {
  max-width: 48%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.privacy .container .privacy_block ul {
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.privacy .container .privacy_block a {
  color: black;
}

@media (max-width: 1200px) {
  .top_header, .bottom_header {
    display: none;
  }
  .mob_menu {
    display: flex;
    flex-direction: column;
    z-index: 6;
    position: relative;
    background-color: var(--primary);
  }
  .mob_menu .mob_wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .mob_menu .mob_wrapper img {
    max-width: 165px;
  }
  .mob_menu .mob_wrapper .contacts_wrapper {
    display: flex;
    flex-direction: column;
  }
  .mob_menu .mob_wrapper .contacts_wrapper span a {
    color: black;
  }
  .mob_menu .mob_wrapper .contacts_wrapper span svg {
    fill: var(--main-color);
  }
  .mob_menu .menu {
    position: sticky;
    top: 1px;
  }
  .mob_menu .menu p {
    font-size: 14px;
  }
  .mob_menu .top-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    color: black;
    height: 50px;
    padding: 12px;
  }
  .mob_menu .top-nav div {
    display: flex;
    align-items: center;
  }
  .mob_menu .top-nav div div {
    display: flex;
    flex-direction: column;
  }
  .mob_menu .top-nav div div p:first-child {
    font-size: 20px;
  }
  .mob_menu .top-nav .menu-button-container {
    display: flex;
  }
  .mob_menu .top-nav body {
    margin: 0;
    padding: 0;
  }
  .mob_menu .top-nav .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    display: none;
  }
  .mob_menu .top-nav .menu-button {
    z-index: 2;
    cursor: pointer;
  }
  .mob_menu .top-nav .mobile-menu {
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: space-between;
    top: 0;
    right: -500px;
    width: 400px;
    height: 100%;
    background-color: var(--primary);
    z-index: 2;
    transition: 0.4s;
    overflow-y: auto;
    padding: 20px;
  }
  .mob_menu .top-nav .mobile-menu ul {
    list-style: none;
    padding: 0;
  }
  .mob_menu .top-nav .mobile-menu li {
    margin-bottom: 15px;
  }
  .mob_menu .top-nav .mobile-menu li span {
    display: flex;
    align-items: center;
  }
  .mob_menu_container ul li a {
    text-decoration: none;
    color: #E7EDF9;
  }
  .hero {
    background-size: 524px 465px;
  }
  .container {
    display: flex;
    width: 100%;
    padding: 0% 5%;
  }
  .why_we .why_we_wrapper .why_we_container {
    max-width: 48%;
  }
  .form_op .form_wrapper {
    max-width: 60%;
    padding: 104px 100px 174px 0;
  }
  .form_op .form_contacts {
    max-width: 47%;
  }
  .form_op .form_wrapper form input, .form_op .form_wrapper form select {
    width: 250px;
  }
  .bottom_footer .container {
    gap: 100px;
  }
  .close-button {
    width: 24px;
  }
}
@media (max-width: 1199px) {
  h1 {
    font-size: 48px;
    line-height: 60px;
    font-weight: 600;
  }
  h2 {
    font-size: 32px;
    line-height: 40px;
    font-weight: 600;
  }
  h3 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
  }
  h4 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
  }
  p, span, li {
    font-family: "Raleway";
    font-size: 18px;
  }
  button {
    font-family: "Raleway";
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 0;
    width: 143px;
    height: 40px;
    border-radius: 4px;
    padding: 0;
    cursor: pointer;
    text-transform: uppercase;
  }
  .form_op .form_contacts .form_logo img {
    width: 100%;
  }
  .form_op {
    flex-direction: column;
    background: var(--light_primary);
  }
  .form_op .form_contacts {
    display: none;
  }
  .form_op .container .form_contacts {
    padding: 104px 50px;
  }
  .form_op .form_wrapper {
    padding: 104px 20px 174px 0;
  }
  section {
    padding: 64px 0;
  }
  .hero .hero_wrapper {
    padding-top: 0;
    padding-bottom: 0;
    max-width: 410px;
  }
  .why_we_container img {
    -o-object-fit: contain;
       object-fit: contain;
  }
  .promo {
    background-position: 100% 94%;
  }
  .sk_testi .item {
    max-width: 427px;
  }
  .shop .shop_wrapper .item {
    max-width: 288px;
  }
  .promo .container img {
    max-width: 45%;
  }
  .bottom_footer .container .middle ul a {
    font-size: 20px;
  }
  .bottom_footer .container {
    gap: 60px;
  }
  .bottom_footer {
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0% 100%, 0 100%);
  }
  .bottom_footer .container {
    flex-direction: column;
  }
  .map_wrapper .info_block {
    left: 0%;
  }
  .lang_switcher .container {
    display: flex;
    flex-direction: row !important;
    gap: 16px;
  }
  .lang_switcher button {
    color: white;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0% 16px;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
  .hero {
    background-image: none;
    padding-bottom: 140px;
  }
  .hero .container {
    flex-direction: column;
    align-items: center;
  }
  .hero .hero_mob_img {
    display: flex;
  }
  .hero .hero_mob_img img {
    -o-object-fit: contain;
       object-fit: contain;
    width: 100%;
  }
  .hero .hero_wrapper {
    align-items: center;
    text-align: center;
  }
  .about {
    padding: 64px 0;
  }
  .about .container {
    align-items: center;
  }
  .about::before {
    content: "";
    background-image: none;
  }
  .about .container h2 {
    margin-bottom: 32px;
  }
  .about .about_wrapper {
    gap: 16px;
    flex-direction: column;
  }
  .about .about_wrapper div {
    gap: 16px;
  }
  .why_we {
    padding: 64px 0;
  }
  .why_we .container {
    align-items: center;
  }
  .why_we .why_we_wrapper {
    justify-content: center;
  }
  .why_we .why_we_wrapper .why_we_container {
    max-width: -moz-max-content;
    max-width: max-content;
  }
  .why_we button {
    margin-top: 32px;
  }
  .how_we_work::before, .how_we_work::after {
    content: "";
    background-image: none;
  }
  .how_we_work .how_we_work_wrapper {
    display: none;
  }
  .how_we_work .container {
    justify-content: center;
    align-items: center;
  }
  .how_we_work_wrapper_mobile div img {
    height: 1700px;
  }
  .how_we_work_wrapper_mobile {
    padding-top: 32px;
    display: flex;
    gap: 16px;
  }
  .how_we_work_wrapper_mobile .how_we_work_mob_wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .how_we_work_wrapper_mobile .how_we_work_mob_wrapper .how_we_item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 318px;
  }
  .how_we_work_wrapper_mobile .how_we_work_mob_wrapper .how_we_item h4 {
    margin-bottom: 8px;
  }
  .how_we_work .container button {
    align-self: center;
    margin-top: 32px;
  }
  .testemonials {
    padding: 64px 0 64px 0;
  }
  .testemonials .container {
    align-items: center;
  }
  .testemonials .container .sk_testi .item {
    max-width: 713px;
  }
  .promo {
    background-image: none;
  }
  .promo .container {
    gap: 32px;
    flex-direction: column;
    align-items: center;
  }
  .promo .container .promo_wrapper {
    gap: 16px;
    align-items: center;
  }
  .promo .container .promo_wrapper h2 {
    text-align: center;
  }
  .form_op .container {
    flex-direction: column;
  }
  .form_op .container .form_wrapper, .form_op .container .form_contacts {
    max-width: 100%;
    padding: 64px 0;
    align-items: center;
  }
  form button {
    align-self: center;
  }
  .form_op .form_wrapper h2 {
    margin-bottom: 32px;
  }
  .bottom_footer .container {
    gap: 34px;
    flex-direction: column;
  }
  .bottom_footer .container > div {
    max-width: 100%;
  }
  .owl-theme .owl-nav {
    display: none;
  }
  .privacy .container {
    justify-content: center;
  }
  .privacy .container .privacy_block {
    width: 45%;
  }
  .button {
    font-size: 16px;
    line-height: 23px;
    letter-spacing: 0px;
    width: 143px;
    height: 40px;
    padding: 0 12px;
  }
  .faq_container .accordion-header {
    margin-left: 15px;
  }
  .promo_wrapper .button {
    margin-top: 16px;
  }
  .form_op .cf_mob {
    display: flex;
    max-width: 100%;
    padding: 64px;
  }
}
@media (max-width: 666px) {
  .hero {
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 94%, 0 100%);
  }
  .about {
    padding: 0 0 64px 0;
  }
  .sk_testi .item {
    padding: 16px;
  }
  .sk_testi .item .item_wrapper .testi_text {
    gap: 8px;
  }
  .sk_testi .item .user_img img {
    width: 64px;
  }
  .form_op .form_wrapper form div {
    flex-direction: column;
    gap: 32px;
  }
  .form_op .form_wrapper form input, .form_op .form_wrapper form select {
    width: 100%;
  }
  .promo .container img {
    max-width: 80%;
  }
  .info_block {
    max-width: 274px;
    padding: 15px;
    align-items: center;
  }
  .info_block img {
    max-width: 165px;
  }
  .info_block .info_block .footer_social {
    align-items: center;
  }
  .info_block .info_block .footer_social2 {
    align-items: center;
  }
  .shop .shop_wrapper .item {
    max-width: 175px;
  }
  .bottom_footer {
    padding-top: 100px;
    clip-path: polygon(0 3%, 100% 0, 100% 100%, 0% 100%, 0 100%);
  }
  .info_block .footer_social {
    align-items: center;
  }
  .info_block .footer_social2 {
    align-items: center;
  }
  .privacy .container .privacy_block {
    width: 100%;
    max-width: 100%;
  }
  .map_wrapper .info_block {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */