@font-face {
  font-family: "IBM";
  src: url("/fonts/Ibmplexsansbold.woff2") format("woff2");
  font-weight: 400;
}
@font-face {
  font-family: "Manrope";
  src: url("/fonts/Manrope-Regular.woff2") format("woff2");
  font-weight: 400;
}
[popover] {
  border-color: var(--main-color);
}

:root {
  --main-color: #1976d2;
}

svg {
  margin-right: 10px;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
  display: none;
}

::-webkit-scrollbar-track {
  background: white;
}

::-webkit-scrollbar-thumb {
  background: var(--main-color);
}

::-webkit-scrollbar-thumb:hover {
  background: black;
}

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

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a:visited {
  color: initial;
}

hr {
  border-color: var(--main-color);
  margin: 24px 0;
}

h3 {
  position: relative;
  font-size: clamp(40px, 4.1666666667vw, 80px);
  font-weight: 700;
  margin-bottom: 80px;
}

.hidden {
  display: none;
}

ul {
  list-style: none;
}

.ibm {
  font-family: "IBM" !important;
}

section {
  margin-bottom: 250px !important;
  display: flex;
}

body {
  font-family: "Manrope";
}

.mob_menu {
  display: none;
}

.top-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  padding: 1em;
}
.top-nav .menu {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.top-nav .menu > li {
  margin: 0 1rem;
  overflow: hidden;
}
.top-nav .menu-button-container {
  display: none;
  height: 100%;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.top-nav #menu-toggle {
  display: none;
}

.top_header {
  background-color: var(--main-color);
  padding: 10px 0;
  color: white;
}

.contacts_wrapper span {
  margin-right: 20px;
}
.contacts_wrapper span a {
  color: white;
}

.top_header .sk_container,
.bottom_header .sk_container {
  justify-content: space-between;
}

header {
  background-color: white;
  z-index: 3;
  padding-bottom: 20px;
}
header #lang_select {
  font-size: clamp(14px, 1.3020833333vw, 25px);
  border: none;
}
header select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  border: none;
  padding: 5px;
  font-size: inherit;
  background-image: url("/img/social/arrow.svg");
  background-repeat: no-repeat;
  background-position: right center;
  background-origin: content-box;
  cursor: pointer;
}
header select::-ms-expand {
  display: none;
}
header select.opened {
  background-image: url("/img/social/arrow.svg");
  transform: rotate(180deg);
}
header .header_contacts {
  display: flex;
  flex-direction: column;
  margin-right: 160px;
  padding-top: 10px;
}
header .header_contacts div {
  display: flex;
}
header .header_contacts div span {
  font-size: clamp(14px, 1.3020833333vw, 25px);
  display: flex;
  align-items: center;
  margin: 5px 0;
}
header .header_contacts div span:last-child {
  margin-top: 10px;
}
header .header_contacts .header_phones {
  justify-content: flex-end;
  gap: 30px;
}
header .header_contacts .header_phones span {
  font-size: 18px;
}
header .header_contacts .header_menu ul {
  display: flex;
  gap: 70px;
  font-size: clamp(14px, 1.3020833333vw, 25px);
  align-items: center;
}
header .header_contacts .header_menu ul li a:hover {
  color: #1976d2;
}
header .header_contacts .dropdown {
  position: relative;
  display: flex;
  flex-direction: row;
}
header .header_contacts .dropdown__toggle {
  background-color: transparent;
  border: none;
  padding: 8px 8px 4px 8px;
  cursor: pointer;
  text-align: center;
  font-size: clamp(14px, 1.3020833333vw, 25px);
  outline: none;
}
header .header_contacts .dropdown__menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 1;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
header .header_contacts .dropdown__item {
  background: none;
  border: none;
  padding: 4px 8px;
  cursor: pointer;
  text-align: left;
  font-size: clamp(14px, 1.3020833333vw, 25px);
  outline: none;
  width: 100%;
}
header .header_contacts .dropdown.open .dropdown__menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
  margin-left: 24px;
}
header .header_contacts img {
  transition: 0.3s ease;
  width: 24px;
}
header .header_contacts .open img {
  transition: 0.3s ease;
  transform: rotate(-180deg);
}

.bottom_header {
  border-bottom: 3px solid var(--main-color);
}
.bottom_header .logo {
  display: flex;
  align-items: center;
}
.bottom_header .logo img {
  width: 150px;
  height: 150px;
}
.bottom_header .logo p {
  font-size: clamp(15px, 1.5625vw, 30px);
  font-weight: 700;
  line-height: 150%;
}
.bottom_header .logo span {
  font-size: clamp(14px, 1.3020833333vw, 25px);
  line-height: 150%;
}
.bottom_header .slogan {
  display: flex;
  align-items: center;
}
.bottom_header nav ul {
  list-style: none;
  display: flex;
  cursor: pointer;
}
.bottom_header nav ul li {
  line-height: 100px;
  height: 100px;
  padding: 0px 9px 0px 9px;
  width: auto;
  display: block;
}
.bottom_header nav ul li:hover {
  color: var(--main-color);
}

.reveal-button {
  display: none;
}

#scrollToTopButton {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 0 10px;
  background-color: #96d0ff;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
#scrollToTopButton svg {
  rotate: -90deg;
  fill: white;
  margin: 5px 0px;
  transform: translateX(-4px);
}

#scrollToTopButton.show {
  display: block;
}

bold {
  font-weight: bold;
  color: var(--main-color);
}

.sk_container {
  max-width: 1440px;
  display: flex;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  width: 100%;
}

.sk2_container {
  padding: 0 90px;
  display: flex;
  justify-content: space-between;
}

#d {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  max-width: 1000px;
  width: 100%;
  height: 1000px;
  border: none;
  box-shadow: 0px 0px 11px 0px rgba(46, 36, 93, 0.15);
  border-radius: 20px;
}
#d .sk_button {
  padding: 15px 35px 20px 35px;
}
#d form {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 80px 145px;
}
#d form p {
  font-size: clamp(14px, 1.5625vw, 30px);
  font-weight: 600;
  text-align: center;
  margin-bottom: 80px;
}
#d form input {
  margin: 15px 0;
}
#d form .form-control {
  display: block;
  width: 100%;
  height: 80px;
  padding: 17px 23px 18px 20px;
  font-size: clamp(14px, 1.5625vw, 30px);
  font-weight: 400;
  line-height: 1.5;
  color: #96d0ff;
  background-color: #fff;
}
#d form textarea {
  color: #96d0ff;
  padding: 30px 23px 30px 20px;
  border-radius: 10px;
  font-size: clamp(14px, 1.5625vw, 30px);
  border: 2px solid #1976d2;
  resize: none;
  margin: 15px 0 30px;
}
#d form textarea:focus-visible {
  outline-color: var(--main-color);
}
#d form .new_btn {
  max-width: 100%;
}
#d form input::-moz-placeholder, #d form textarea::-moz-placeholder {
  color: #96d0ff;
}
#d form input::placeholder,
#d form textarea::placeholder {
  color: #96d0ff;
}
#d #success-block {
  flex-direction: column;
  align-items: center;
  margin: auto;
  width: 70%;
  text-align: center;
}
#d #success-block p {
  font-size: clamp(14px, 1.5625vw, 30px);
}
#d #success-block img {
  width: 150px;
  height: 150px;
  margin-bottom: 50px;
}

#ajax_form .new_btn {
  margin-top: 20px;
}

.new_btn {
  display: flex;
  max-width: 588px;
  width: 100%;
  height: 80px;
  background-color: #ee9135;
  padding-bottom: 18px;
  padding-top: 17px;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  box-shadow: 0px 10px 40px 0px rgba(25, 118, 210, 0.2);
  font-size: clamp(14px, 1.5625vw, 30px);
  font-style: normal;
  font-weight: 600;
  border: none;
  margin-top: 80px;
  cursor: pointer;
  border: 2px solid #ee9135;
  transition: 0.3s ease;
  font-family: IBM;
  color: black;
}

.new_btn:hover {
  background-color: white;
  border: 2px solid #ee9135;
}

.new_btn:active {
  background-color: #fdf7eb;
  border: 2px solid #fdf7eb;
}

.modal_btn {
  position: sticky;
  top: 15px;
  right: 30px;
  background: none;
  font-size: 18px;
  cursor: pointer;
}

.modal_btn2 {
  position: absolute;
  top: 15px;
  right: 30px;
  background: none;
  font-size: 18px;
  cursor: pointer;
}

.modal_btn:hover {
  color: orangered;
}

dialog::backdrop {
  background-image: rgba(0, 0, 255, 0.2);
}

dialog {
  opacity: 0;
  scale: 0;
  display: block;
  transition: all 0.6s;
}

dialog[open] {
  opacity: 1;
  scale: 1;
}

body.no-scroll {
  overflow: hidden;
}

.sk_call_wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.sk_call_wrapper .new_btn {
  align-self: flex-end;
}

.sk_for_wrapper {
  margin-bottom: 250px !important;
}
.sk_for_wrapper .sk_container {
  display: flex;
  flex-direction: column;
}
.sk_for_wrapper .sk_container .for_container_mobile {
  display: none;
}
.sk_for_wrapper .sk_container .for_container .top_img {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 20px;
}
.sk_for_wrapper .sk_container .for_container .top_img div {
  position: relative;
  overflow: hidden;
}
.sk_for_wrapper .sk_container .for_container .top_img .img_overlay {
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 0;
  border-radius: 10px;
  background: linear-gradient(179deg, rgba(255, 255, 255, 0) 37.06%, #3077dc 79.26%);
  opacity: 0;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: height 0.3s, opacity 0.3s;
}
.sk_for_wrapper .sk_container .for_container .top_img .img_overlay p {
  font-size: clamp(14px, 1.5625vw, 30px);
  font-family: IBM;
}
.sk_for_wrapper .sk_container .for_container .top_img div:hover .img_overlay {
  height: 40%;
  opacity: 1;
}

.sk_clients .sk_container {
  flex-direction: column;
  gap: 20px;
}
.sk_clients .sk_container .clients_container {
  display: flex;
  justify-content: space-around;
}
.sk_clients .sk_container .clients_container div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sk_clients .sk_container .clients_container div img {
  width: 200px;
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
}
.sk_clients .sk_container .clients_container div .grey_mask {
  opacity: 0.3;
  filter: grayscale(100%);
}
.sk_clients .sk_container .clients_container p {
  font-family: "IBM";
  color: #b9b9b9;
  font-size: clamp(14px, 1.5625vw, 30px);
  font-weight: 700;
}

.sk_offer .sk_container {
  flex-direction: column;
}
.sk_offer .offer_wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.sk_offer .offer_wrapper .offer_item {
  display: flex;
  flex-direction: column;
  height: 775px;
  max-width: 467px;
  align-items: center;
  overflow: hidden;
  flex-grow: 1;
  padding-top: 20px;
  padding-bottom: 40px;
  transition: height 0.5s ease;
}
.sk_offer .offer_wrapper .offer_item img {
  height: 220px;
  align-self: center;
}
.sk_offer .offer_wrapper .offer_item div {
  padding: 57px 15px 27px 23px;
  flex-grow: 2;
  max-width: 410px;
  width: 100%;
}
.sk_offer .offer_wrapper .offer_item div h4 {
  font-size: clamp(12px, 1.5625vw, 30px);
  font-weight: 700;
}
.sk_offer .offer_wrapper .offer_item div p {
  margin-top: 20px;
  font-size: clamp(12px, 1.3020833333vw, 25px);
}
.sk_offer .offer_wrapper .offer_btn {
  opacity: 0;
  font-size: clamp(14px, 1.5625vw, 30px);
  font-weight: 600;
  background: white;
  border-radius: 20px;
  border: 2px #1976d2 solid;
  width: 367px;
  align-self: center;
  padding: 6px 0;
  transition: 0.3s ease;
  cursor: pointer;
}
.sk_offer .offer_wrapper .offer_btn:hover {
  background: #1976d2;
  color: white;
}
.sk_offer .offer_wrapper .offer_item:hover {
  height: 775px;
  box-shadow: 0px 10px 40px rgba(48, 119, 220, 0.2);
  border-radius: 20px;
}
.sk_offer .offer_wrapper .offer_item:hover .offer_btn {
  opacity: 1;
}

#offer {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  border-radius: 20px;
  border: 0px;
  max-width: 1440px;
  width: 100%;
}

.modal_offer_container {
  padding: 200px 98px;
  width: 100%;
  height: 100%;
}
.modal_offer_container .offer_item {
  display: flex;
  justify-content: center;
  gap: 27px;
  margin-bottom: 80px;
}
.modal_offer_container .offer_item .img_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30%;
}
.modal_offer_container .offer_item .img_wrapper img {
  max-width: 100%;
  height: auto;
}
.modal_offer_container .offer_item .text_wrapper {
  width: 70%;
}
.modal_offer_container .offer_item .text_wrapper h4 {
  font-size: clamp(16px, 1.5625vw, 30px);
  font-weight: 700;
  margin-bottom: 20px;
}
.modal_offer_container .offer_item .text_wrapper p {
  font-size: clamp(14px, 1.3020833333vw, 25px);
}
.modal_offer_container .offer_item .text_wrapper ul li {
  font-size: clamp(14px, 1.3020833333vw, 25px);
  list-style: initial;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: clamp(14px, 0.9375vw, 18px);
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.swiper-slide .swiper_text {
  position: absolute;
  top: 13%;
  left: 16%;
  z-index: 2;
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
  background: var(--main-color);
  color: white;
  padding: 25px;
}
.swiper-slide .swiper_text h3 {
  padding-bottom: 0;
}
.swiper-slide .swiper_text p {
  font-size: clamp(15px, 1.6666666667vw, 32px);
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 100vh;
  -o-object-fit: contain;
     object-fit: contain;
}

.author_block .author_wrapper .con_form {
  padding-top: 100px;
}

.author_bg {
  background: url(img/author/author_bg-min.png);
  background-repeat: no-repeat;
  background-size: contain;
  max-height: 865px;
}
.author_bg img {
  margin-left: 100px;
  max-height: 860px;
  max-width: 700px !important;
  transform: translateY(-10px);
}

.author_container {
  display: flex;
  flex-direction: column;
}
.author_container div {
  align-self: end;
}
.author_container h3 {
  margin-bottom: 10px;
}
.author_container .author-text {
  max-height: 145px;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
  display: flex;
}
.author_container .expanded {
  max-height: none;
}
.author_container .new_btn {
  max-width: 588px !important;
  align-self: end;
}

.sk_banner_wrapper {
  margin-top: 40px;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sk_banner_wrapper .sk_container {
  z-index: 2;
  position: unset;
  align-items: center;
}
.sk_banner_wrapper .sk_banner {
  display: flex;
  flex-direction: column;
  max-width: 710px;
}
.sk_banner_wrapper .sk_banner h1 {
  font-size: clamp(60px, 5.7291666667vw, 110px);
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
.sk_banner_wrapper .sk_banner h2 {
  font-size: 1.5625vw;
  font-weight: 400;
}
.sk_banner_wrapper .sk_banner_img {
  background-color: #96d0ff;
  width: 50%;
  border-radius: 400px 0px 0px 400px;
  position: absolute;
  z-index: -1;
  right: 0;
}
.sk_banner_wrapper .sk_banner_img img {
  max-height: 700px;
  height: 100%;
}

.sk_why_wrapper .sk_container {
  flex-direction: column;
}
.sk_why_wrapper .sk_container .why_item {
  display: flex;
  margin: 10px 0;
  align-items: center;
}
.sk_why_wrapper .sk_container .why_item svg {
  width: 102px;
  height: 102px;
}
.sk_why_wrapper .sk_container .why_item p {
  font-size: clamp(14px, 1.5625vw, 30px);
  margin-left: 20px;
  max-width: 1;
}
.sk_why_wrapper .gears path:first-child,
.sk_why_wrapper .gears path:nth-child(2) {
  transition: transform 0.3s ease;
}
.sk_why_wrapper #appico path {
  transition: fill 0.3s ease-in-out;
}
.sk_why_wrapper .diogram {
  transition: transform 0.9s ease-in-out;
}
.sk_why_wrapper .diogram path {
  transition: transform 0.5s ease-in-out;
  transform-origin: center center;
}
.sk_why_wrapper .wifi {
  transition: transform 0.3s ease-in-out;
}
.sk_why_wrapper .why_item:hover p {
  font-weight: 600;
}
.sk_why_wrapper .why_item:hover .gears path:first-child,
.sk_why_wrapper .why_item:hover .gears path:nth-child(2) {
  transform-origin: center center;
  transform-box: fill-box;
  animation: rotateBox 0.6s linear;
}
.sk_why_wrapper .why_item:hover .diogram {
  animation: switch 0.3s linear;
}
.sk_why_wrapper .why_item:hover .diogram path:first-child {
  transition: transform 0.3s ease;
  transform: rotate(70deg);
  transform-origin: center center;
  transform-box: fill-box;
}
.sk_why_wrapper .why_item:hover .diogram path:nth-child(2) {
  transition: transform 0.3s ease;
  transform: rotate(90deg) translate(5px, -5px);
  transform-origin: center center;
}
.sk_why_wrapper .why_item:hover .diogram path:nth-child(3) {
  transition: transform 0.3s ease;
  transform: rotate(-90deg) translate(5px, -10px);
  transform-origin: center center;
}
.sk_why_wrapper .why_item:hover #appico path {
  fill: #1976d2;
}
.sk_why_wrapper .why_item:hover .svg_card {
  transition: transform 0.3s ease;
}
.sk_why_wrapper .why_item:hover .svg_card #Vector {
  transition: transform 0.3s ease;
  d: path("M51 70.205H25.5M30 57.375H25.5");
}
.sk_why_wrapper .why_item:hover .svg_card #blue {
  transition: transform 0.3s ease;
  transform: rotateY(180deg);
  transform-origin: center center;
  transform-box: fill-box;
}
.sk_why_wrapper .why_item:hover .wifi {
  transition: transform 0.3s ease;
  animation: bounce 0.5s infinite;
}
.sk_why_wrapper .why_item:hover .wifi #wifi {
  d: path("M52 82L52.021 81.9771M31 58.0289C43.6 48.657 60.4 48.657 73 58.0289M37.3 66.3594C45.7 60.1115 58.3 60.1115 66.7 66.3594M44.65 73.6486C49.375 70.733 54.625 70.733 59.35 73.6486");
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes rotateBox {
  from {
    transform: rotate(-360deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.sk_advantages .sk_container .sk_adv_img {
  width: 50%;
}
.sk_advantages .sk_container .sk_adv_img img {
  width: 90%;
}
.sk_advantages .sk_container .sk_adv_tabo {
  width: 50%;
}

video {
  border-radius: 20px;
  width: 100%;
}

.sk_profit_wrapper .sk_container {
  flex-direction: column;
}
.sk_profit_wrapper .sk_container .sk_profit {
  display: flex;
}
.sk_profit_wrapper .sk_container .sk_profit .profit_item {
  width: 33%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 3px solid var(--main-color);
  border-radius: 3%;
  padding: 25px;
}
.sk_profit_wrapper .sk_container .sk_profit .profit_item img {
  width: 150px;
  margin-bottom: 25px;
}
.sk_profit_wrapper .sk_container .sk_profit .profit_item:nth-child(2) {
  margin: 0 20px;
}

.sk_steps_wrapper .sk_container {
  flex-direction: column;
}
.sk_steps_wrapper .sk_container .steps_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
.sk_steps_wrapper .sk_container .steps_container .steps_item {
  display: flex;
  max-width: 588px;
  height: 250px;
  border-radius: 20px;
  background-color: #1976d2;
}
.sk_steps_wrapper .sk_container .steps_container .steps_item div {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  padding: 35px 36px 35px 152px;
}
.sk_steps_wrapper .sk_container .steps_container .steps_item div .number {
  position: absolute;
  left: 0;
  top: -55px;
  font-family: "IBM";
  font-size: clamp(30px, 5.7291666667vw, 110px);
  font-weight: 700;
}
.sk_steps_wrapper .sk_container .steps_container .steps_item div span {
  color: white;
  font-size: clamp(14px, 1.5625vw, 30px);
}
.sk_steps_wrapper .sk_container .steps_container .steps_item:first-child::after {
  content: "";
  background-image: url(/img/deco/1-2.png);
  width: 304px;
  height: 245px;
  position: absolute;
  right: 40%;
  top: 8%;
}
.sk_steps_wrapper .sk_container .steps_container .steps_item:nth-child(2)::after {
  content: "";
  background-image: url(/img/deco/2-3.png);
  width: 304px;
  height: 245px;
  position: absolute;
  right: 40%;
  top: 40%;
  background-repeat: no-repeat;
}
.sk_steps_wrapper .sk_container .steps_container .steps_item:nth-child(3)::after {
  content: "";
  background-image: url(/img/deco/3-4.png);
  width: 304px;
  height: 245px;
  position: absolute;
  right: 40%;
  top: 70%;
  background-repeat: no-repeat;
}
.sk_steps_wrapper .sk_container .steps_container .steps_item:nth-child(2n) {
  margin-top: 190px;
}
.sk_steps_wrapper .steps_item .number {
  color: #fdf7eb !important;
}
.sk_steps_wrapper .steps_item:hover .number {
  color: #ee9135 !important;
}

.sk_consultation .sk_container {
  position: unset;
  justify-content: flex-end;
}
.sk_consultation .sk_container .sk_con_wrapper {
  display: flex;
  justify-content: space-between;
}
.sk_consultation .sk_container .sk_con_wrapper .con_img {
  position: absolute;
  padding-top: 45px;
  width: 60%;
  left: 0;
  z-index: -1;
}
.sk_consultation .sk_container .sk_con_wrapper .con_form {
  display: flex;
  max-width: 710px;
}
.sk_consultation .sk_container .sk_con_wrapper .con_form p {
  font-size: clamp(14px, 1.5625vw, 30px);
  padding-bottom: 60px;
}
.sk_consultation .sk_container .sk_con_wrapper .con_form .new_btn {
  max-width: 100%;
}
.sk_consultation .sk_container .author_wrapper p {
  font-size: clamp(14px, 1.3020833333vw, 25px) !important;
  max-width: 85%;
}

.con_img img {
  width: 70%;
}

.sk_price_wrapper {
  overflow: hidden;
}
.sk_price_wrapper .sk_container {
  padding-top: 60px;
  padding-bottom: 30px;
}
.sk_price_wrapper .sk_container .sk_price {
  width: 100%;
}
.sk_price_wrapper .sk_container .sk_price h3 {
  margin-bottom: 30px;
}
.sk_price_wrapper .sk_container .sk_price .text {
  margin-bottom: 30px;
  font-size: clamp(14px, 1.5625vw, 30px);
}
.sk_price_wrapper .sk_container .sk_price .price_wrapper {
  display: flex;
  gap: 20px;
}
.sk_price_wrapper .sk_container .sk_price .new_btn {
  width: 506px;
  align-self: center;
  margin-top: 0;
  margin-bottom: 80px;
}
.sk_price_wrapper .sk_container .price_item {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  background: white;
  box-shadow: 0px 10px 40px 0px rgba(48, 119, 220, 0.05);
  padding: 50px 51px;
}
.sk_price_wrapper .sk_container .price_item .price_h {
  margin-bottom: 68px;
  position: relative;
}
.sk_price_wrapper .sk_container .price_item .price_h span {
  position: absolute;
}
.sk_price_wrapper .sk_container .price_item .price_hh {
  margin-bottom: 40px;
}
.sk_price_wrapper .sk_container .price_item h4 {
  font-size: 2.6041666667vw;
  font-weight: 700;
  color: #1976d2;
}
.sk_price_wrapper .sk_container .price_item .items_wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.sk_price_wrapper .sk_container .price_item .items_wrapper .mt40 {
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sk_price_wrapper .sk_container .price_item .items_wrapper h5 {
  font-size: clamp(14px, 1.5625vw, 30px);
  margin-bottom: 20px;
}
.sk_price_wrapper .sk_container .price_item .item_container {
  display: flex;
  align-items: center;
  gap: 25px;
}
.sk_price_wrapper .sk_container .price_item .item_container img {
  width: 48px;
  height: 48px;
}
.sk_price_wrapper .sk_container .price_item .item_container p {
  font-size: clamp(14px, 1.3020833333vw, 25px);
}
.sk_price_wrapper .sk_container .price_item:hover {
  transition: 0.5s;
  box-shadow: 0px 10px 20px 0px rgba(48, 119, 220, 0.3);
}
.sk_price_wrapper .sk_container .price_notes {
  margin-top: 20px;
}
.sk_price_wrapper .sk_container .price_notes span {
  font-size: 14px;
}
.sk_price_wrapper .sk_container .sk_price_img {
  display: flex;
  width: 50%;
}
.sk_price_wrapper .sk_container .sk_price_img img {
  width: -moz-max-content;
  width: max-content;
  height: 100%;
  padding: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}

.sk_testimonials_wrapper .sk_container {
  flex-direction: column;
}
.sk_testimonials_wrapper .new_btn {
  width: 588px;
  margin-top: 40px;
}

.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 {
  width: 100px;
  height: 100px;
  background: url(img/deco/Arrow.png) !important;
}
.owl-next span {
  display: none;
}

.stars_wrapper {
  display: flex;
  max-width: 100px;
}

.owl-prev {
  width: 100px;
  height: 100px;
  background: url(img/deco/Arrow.png) !important;
  rotate: 180deg;
}
.owl-prev span {
  display: none;
}

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

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

.sk_testi .item {
  max-width: 467px;
  padding: 0 0 0 15px;
}
.sk_testi .item .item_wrapper {
  border-radius: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 20px 15px;
  height: 400px;
  transition: height 0.3s ease;
}
.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;
  font-size: clamp(14px, 1.3020833333vw, 25px);
}
.sk_testi .item .item_wrapper .testi_user .testi_logo {
  width: 52px;
  height: 52px;
}
.sk_testi .item .item_wrapper .testi_text {
  margin-top: 13px;
  margin-bottom: 43px;
  overflow: hidden;
  font-size: clamp(14px, 1.3020833333vw, 25px);
}
.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: black;
  border: none;
  cursor: pointer;
  font-size: clamp(14px, 1.3020833333vw, 25px);
  font-weight: 400;
  position: relative;
}
.sk_testi .item .item_wrapper .testi_btn button:after {
  content: "";
  width: 120px;
  transition: 0.5s ease;
  height: 2px;
  position: absolute;
  right: 0;
  display: block;
  background-color: #1976d2;
}
.sk_testi .item .item_wrapper .testi_btn button:hover:after {
  content: "";
  width: 160px;
  position: absolute;
}
.sk_testi .item .item_wrapper .hide {
  display: none;
}
.sk_testi .item .expanded {
  height: auto !important;
}

.for_container_mobile .sk_testi {
  overflow: hidden;
}

.for_container_mobile .sk_testi .item .item_wrapper::before {
  box-shadow: none;
  display: none;
}

.sk_testi .item .item_wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0px 5px 40px 0px rgba(48, 119, 220, 0.1);
  z-index: -1;
  border-radius: 10px;
}

.expand-btn {
  background: none;
  color: black;
  border: none;
  cursor: pointer;
  font-size: clamp(14px, 1.3020833333vw, 25px);
  font-weight: 400;
  position: relative;
}

.expand-btn:after {
  content: "";
  width: 120px;
  transition: 0.5s ease;
  height: 2px;
  position: absolute;
  right: 0;
  display: block;
  background-color: #1976d2;
}

.expand-btn:hover:after {
  content: "";
  width: 160px;
  position: absolute;
}

.sk_partners_wrapper {
  display: flex;
  width: 100%;
}
.sk_partners_wrapper .sk_container {
  flex-direction: column;
}
.sk_partners_wrapper .sk_partners {
  display: flex;
  flex-wrap: wrap;
}
.sk_partners_wrapper .sk_partners .partners_text {
  width: 50%;
}
.sk_partners_wrapper .sk_partners .partners_text h3 {
  margin-bottom: 30px;
}
.sk_partners_wrapper .sk_partners .partners_text p {
  font-size: clamp(14px, 1.5625vw, 30px);
  font-weight: 300;
  margin: auto;
  color: #232323;
  line-height: 150%;
  margin: 12px 0;
}
.sk_partners_wrapper .sk_partners .partners_text p:first-child {
  margin-top: 0;
}
.sk_partners_wrapper .sk_partners .partners_text div {
  margin-top: 50px;
  display: flex;
  gap: 20px;
}
.sk_partners_wrapper .sk_partners .form {
  width: 50%;
}
.sk_partners_wrapper .sk_partners .new_btn {
  max-width: 100%;
}

#result_form, #result_form2 {
  display: none;
  color: #EE9135;
  font-size: 20px;
}

.lumex_form {
  display: flex;
  flex-direction: column;
}
.lumex_form ::-moz-placeholder {
  color: #96d0ff;
}
.lumex_form ::placeholder {
  color: #96d0ff;
}

input,
textarea {
  font-size: clamp(14px, 0.9375vw, 18px);
  font-family: "Manrope";
}

.form-control {
  font-size: clamp(14px, 0.9375vw, 18px);
  width: 100%;
  color: #96d0ff;
  display: block;
  margin: 0 0 60px;
  padding: 17px 23px 18px 20px;
  border-radius: 10px;
  width: 100%;
  line-height: 1.83333;
  background: inherit;
  border: 2px solid #1976d2;
  box-shadow: 0px 5px 10px 0px rgba(48, 119, 220, 0.1);
}

.form-control:focus {
  outline: none;
}

#f_textarea {
  width: 100%;
  resize: none;
  color: #96d0ff;
  border: 2px solid #1976d2;
  border-radius: 10px;
  display: flex;
  padding: 52px 23px 53px 20px;
}

#f_textarea:active {
  border: 2px solid #1976d2;
}

.sk_pop {
  margin: auto;
  max-height: 700px;
  margin-top: 6%;
}
.sk_pop .close-btn {
  display: flex;
  align-self: end;
  position: sticky;
  top: 15px;
  transform: translateX(40px);
  border: none;
  background: none;
  cursor: pointer;
}
.sk_pop .close-btn svg {
  fill: black;
}
.sk_pop .sk_container {
  flex-direction: column;
  padding: 90px;
}
.sk_pop .sk_container p {
  margin: 12px 0;
}
.sk_pop .sk_container p span {
  font-weight: 700;
}
.sk_pop .sk_container ol {
  display: block;
  list-style-type: decimal;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 40px;
}
.sk_pop .sk_container ol li {
  margin: 12px 0;
  font-size: 15px;
}

.sk_faq .sk_container {
  flex-direction: column;
}
.sk_faq .sk_container .faq_container {
  display: flex;
}
.sk_faq .sk_container .faq_container .accordion-header {
  cursor: pointer;
  display: flex;
  font-size: clamp(14px, 1.3020833333vw, 25px);
  font-weight: 400;
  margin-bottom: 24px;
  transition: 0.3s;
  transition: background-color 0.3s;
}
.sk_faq .sk_container .faq_container .accordion-header p {
  display: flex;
  align-items: center;
}
.sk_faq .sk_container .faq_container .accordion-header img {
  transition: 0.3s ease;
  margin-right: 20px;
}
.sk_faq .sk_container .faq_container .accordion-header:hover {
  transition: 0.3s;
  color: var(--main-color);
}
.sk_faq .sk_container .faq_container .accordion-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s;
  margin: 13px 0 20px 0;
}
.sk_faq .sk_container .faq_container .accordion-content p {
  margin-left: 68px;
}
.sk_faq .sk_container .faq_container .accordion-content ul {
  margin-left: 68px;
}
.sk_faq .sk_container .faq_container .accordion-content ul li {
  margin: 13px 0 20px 0;
}
.sk_faq .sk_container .faq_container .accordion-item.active .accordion-header {
  color: var(--main-color);
}
.sk_faq .sk_container .faq_container .active img {
  transition: 0.3s ease;
  transform: rotate(-180deg);
}

footer {
  display: flex;
  background-color: black;
  width: 100%;
  height: 800px;
  color: white;
}
footer a {
  text-decoration: none;
  color: white;
}
footer a:visited {
  color: white;
}

.sk_footer {
  display: flex;
  flex-direction: column;
}
.sk_footer li {
  font-size: clamp(14px, 1.3020833333vw, 25px);
  font-weight: 400;
  padding-bottom: 10px;
}
.sk_footer .sk_footer_top {
  display: flex;
  justify-content: space-between;
  padding-top: 90px;
  height: 100%;
}
.sk_footer .sk_footer_top .sk_f_left {
  display: flex;
  flex-direction: column;
}
.sk_footer .sk_footer_top .sk_f_left .logo {
  display: flex;
  align-items: center;
}
.sk_footer .sk_footer_top .sk_f_left .logo h4 {
  font-size: clamp(14px, 1.3020833333vw, 25px);
  font-weight: 700;
}
.sk_footer .sk_footer_top .sk_f_left .cont {
  margin-top: 180px;
  font-size: clamp(14px, 1.3020833333vw, 25px);
}
.sk_footer .sk_footer_top .sk_f_left .cont h4 {
  margin-bottom: 20px;
}
.sk_footer .sk_footer_top .sk_f_left .cont .fo_mail {
  margin-top: 20px;
  display: flex;
  align-items: center;
}
.sk_footer .sk_footer_top .sk_f_left .cont .fo_mail img {
  margin-right: 10px;
}
.sk_footer .sk_footer_top .sk_f_right .sk_f_social {
  margin-top: 45px;
  margin-bottom: 166px;
}
.sk_footer .sk_footer_top .sk_f_right .sk_f_social ul {
  text-align: right;
}
.sk_footer .foo_btns {
  text-align: right;
}
.sk_footer .foo_btns button {
  background: none;
  color: white;
  border: none;
  cursor: pointer;
  font-size: clamp(14px, 1.3020833333vw, 25px);
  font-weight: 400;
  position: relative;
}
.sk_footer .foo_btns button:after {
  content: "";
  width: 130px;
  transition: 0.5s ease;
  height: 2px;
  position: absolute;
  right: 0;
  display: block;
  background-color: #1976d2;
}
.sk_footer .foo_btns button:hover:after {
  content: "";
  width: 160px;
  position: absolute;
}
.sk_footer .sk_footer_bottom {
  display: flex;
  justify-content: center;
  font-size: clamp(14px, 1.3020833333vw, 25px);
}
.payment {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.policy_wrapper {
  height: 100%;
  max-height: 100%;
  margin: 0;
}

.privacy_page {
  display: flex;
  flex-direction: column;
  padding-bottom: 150px;
}

@media (max-width: 1440px) {
  .sk2_container {
    padding: 0 40px;
  }
  .sk_container {
    margin: 0 50px;
    max-width: 1340px;
  }
  .sk_offer .offer_wrapper .offer_item {
    height: 560px;
  }
  .sk_offer .offer_wrapper .offer_item:hover {
    height: 650px;
  }
  section {
    margin-bottom: 150px !important;
  }
  .sk_banner_wrapper {
    margin-top: 0;
  }
  .sk_banner_wrapper .sk_banner_img {
    width: 48%;
  }
  .sk_banner_wrapper .sk_banner_img img {
    width: 100%;
  }
  .sk_partners_wrapper .sk_partners .partners_text {
    width: 49%;
  }
  .sk_for_wrapper .sk_container .for_container .top_img div {
    display: flex;
  }
  .sport_img_small {
    width: calc(15% - 0px);
  }
  .sport_img_medium {
    width: calc(24% - 7px);
  }
  .sport_img_big {
    width: calc(32% - 7px);
  }
  .top_img img {
    width: 100%;
  }
  .con_img img {
    width: 70%;
  }
  .sk_steps_wrapper .sk_container .steps_container .steps_item:first-child::after {
    content: "";
    width: 260px;
    height: 245px;
  }
  .sk_steps_wrapper .sk_container .steps_container .steps_item:nth-child(2)::after {
    content: "";
    width: 270px;
    height: 230px;
  }
  .sk_steps_wrapper .sk_container .steps_container .steps_item:nth-child(3)::after {
    content: "";
    background-image: url(/img/deco/3-4.png);
    width: 260px;
    height: 245px;
  }
  .sk_partners .partners_text p {
    width: 90%;
  }
  .sk_for_wrapper .sk_container .for_container .top_img .img_overlay {
    bottom: 0px;
  }
  .author_block .author_wrapper .author_bg {
    width: 50% !important;
  }
}
@media (max-width: 1200px) {
  .sk_container {
    max-width: 1080px;
  }
  .author_container .author-text {
    max-height: 143px;
  }
  .sk_consultation .sk_container .sk_con_wrapper .con_form {
    max-width: 600px;
  }
  .sk_testi .item {
    max-width: 360px;
    padding: 0 0 0 15px;
  }
  .sk_steps_wrapper .sk_container .steps_container .steps_item {
    display: flex;
    max-width: 500px;
  }
  .sk_price_wrapper .sk_container .price_item {
    padding: 20px 20px;
  }
  .sk_offer .offer_wrapper .offer_btn {
    width: 300px;
  }
  .sk_offer .offer_wrapper .offer_item img {
    width: auto;
  }
}
@media (max-width: 1024px) {
  .sk_container {
    max-width: 924px;
  }
  span {
    font-size: 18px !important;
  }
  h3 {
    font-size: 60px;
  }
  header .header_contacts {
    margin-right: 50px;
  }
  section {
    margin-bottom: 100px !important;
  }
  .sk_banner_wrapper .sk_banner {
    max-width: 460px;
  }
  .sk_banner_wrapper .sk_banner h1 {
    font-size: 80px;
  }
  .sk_banner_wrapper .sk_banner h2 {
    font-size: 20px;
  }
  .sk_offer .offer_wrapper .offer_btn {
    font-size: 20px;
    width: 260px;
  }
  .sk_offer .offer_wrapper .offer_item img {
    height: 190px;
    align-self: center;
  }
  .sk_consultation .sk_container .sk_con_wrapper .con_form {
    max-width: 470px;
  }
  .sk_steps_wrapper .sk_container .steps_container .steps_item {
    max-width: 460px;
  }
  .sk_steps_wrapper .sk_container .steps_container .steps_item div .number {
    font-size: 110px !important;
  }
  .sk_steps_wrapper .sk_container .steps_container .steps_item div span {
    font-size: 24px !important;
  }
  .sk_price_wrapper .sk_container .sk_price .new_btn {
    width: 370px;
  }
  .sk_price_wrapper .sk_container .price_item .item_container p {
    font-size: 20px;
  }
  .sk_faq,
  .sk_partners_wrapper,
  .sk_price_wrapper {
    display: flex;
  }
  .modal_offer_container {
    min-height: 80vh;
  }
  .sk_steps_wrapper .sk_container .steps_container .steps_item:first-child::after {
    content: "";
    display: none;
  }
  .sk_steps_wrapper .sk_container .steps_container .steps_item:nth-child(2)::after {
    content: "";
    display: none;
  }
  .sk_steps_wrapper .sk_container .steps_container .steps_item:nth-child(3)::after {
    content: "";
    display: none;
  }
  .sk_con_wrapper .con_img img {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  body.menu-open {
    overflow: hidden;
  }
  .bottom_header {
    display: none;
  }
  .sk_container {
    max-width: 760px;
  }
  .mob_menu {
    display: flex;
    flex-direction: column;
    z-index: 6;
    position: relative;
    padding-bottom: 18px;
  }
  .mob_menu .mob_wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .mob_menu .mob_wrapper img {
    width: 75px;
    height: 75px;
  }
  .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;
  }
  .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 {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 2;
    cursor: pointer;
  }
  .mob_menu .top-nav .mobile-menu {
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: white;
    z-index: 2;
    transition: 0.4s;
    overflow-y: auto;
    padding: 20px;
  }
  .mob_menu .top-nav .mobile-menu ul {
    list-style: none;
    padding: 0;
    margin-top: 150px;
    margin-left: 20px;
  }
  .mob_menu .top-nav .mobile-menu li {
    margin-bottom: 15px;
  }
  .mob_menu .top-nav .mobile-menu li span {
    display: flex;
    align-items: center;
  }
  .sk_offer .offer_wrapper .offer_item {
    max-width: 245px;
  }
  .sk_offer .offer_wrapper .offer_btn {
    width: 220px !important;
  }
  .for_container {
    display: none;
  }
  .sk_for_wrapper .sk_container .for_container_mobile {
    display: flex;
  }
  .for_container_mobile .sk_testi {
    overflow: hidden;
  }
  .for_container_mobile .sk_testi .item {
    padding: 0;
  }
  .for_container_mobile .sk_testi .item {
    max-width: 336px;
    padding: 0;
  }
  .for_container_mobile .sk_testi .item .item_wrapper {
    height: 300px;
  }
  .sk_for_wrapper .for_container {
    display: none;
  }
  .sk_for_wrapper .sk_testi .item .item_wrapper {
    box-shadow: none;
    position: relative;
    padding: 0;
  }
  .sk_for_wrapper .sk_testi .item .item_wrapper img {
    display: flex;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 10px;
  }
  .sk_for_wrapper .sk_testi .item .item_wrapper .img_overlay {
    opacity: 0;
    position: absolute;
    bottom: 0;
    background-color: #3077dc;
    width: 100%;
    height: 0;
    transition: height 1s ease;
    border-radius: 0 0 10px 10px;
  }
  .sk_for_wrapper .active .item .item_wrapper .img_overlay {
    opacity: 1;
    position: absolute;
    bottom: 0;
    background: linear-gradient(179deg, rgba(255, 255, 255, 0) 1.06%, #3077dc 79.26%);
    width: 100%;
    height: 50px;
    text-align: center;
  }
  .sk_for_wrapper .active .item .item_wrapper .img_overlay p {
    padding-top: 10px;
    font-family: IBM;
    color: white;
    font-size: 20px;
  }
  .sk_steps_wrapper .sk_container .steps_container .steps_item {
    max-width: 295px;
    height: 140px;
  }
  .sk_steps_wrapper .sk_container .steps_container .steps_item div {
    padding: 35px 10px 35px 80px;
  }
  .sk_steps_wrapper .sk_container .steps_container .steps_item:nth-child(2n) {
    margin-top: 0;
    margin-left: 60px;
  }
  .sk_steps_wrapper .sk_container .steps_container .steps_item {
    margin-bottom: 30px;
  }
  .sk_steps_wrapper .sk_container .steps_container .steps_item div span {
    color: white;
    font-size: 14px !important;
  }
  .sk_steps_wrapper .sk_container .steps_container .steps_item div .number {
    position: absolute;
    left: 0;
    top: -20px;
    font-family: "IBM";
    font-size: 60px !important;
    font-weight: 700;
  }
  .sk_consultation .sk_container .sk_con_wrapper .con_form {
    max-width: 390px;
  }
  .sk_testi .item {
    max-width: 375px;
    padding: 0 0 0 15px;
  }
  .sk_price_wrapper .sk_container .price_item .item_container p {
    font-size: 16px;
  }
  .left-block {
    flex: 1;
    z-index: 2;
    transition: transform 0.5s ease;
    transform: translateX(0); /* Initially, the left block is not moved */
  }
  .price_wrapper.revealed .left-block {
    transform: translateX(-50%); /* Move the left block off the screen */
  }
  .right-block {
    transform: translateX(0); /* Initially off-screen */
    transition: transform 0.5s ease;
    padding: 0;
  }
  .price_wrapper.revealed .right-block {
    transform: translateX(-50%); /* Reveal the right block */
  }
  .reveal-button {
    display: block;
    height: 48px;
    width: 48px;
    position: absolute;
    top: 40%;
    left: 95%;
    z-index: 2;
    background-color: #1976d2;
    border: none;
    border-radius: 40px;
  }
  .reveal-button svg {
    fill: white;
    transform: translateY(0px);
    margin-right: 10px;
    transition: transform 0.3s ease;
  }
  .revealed .reveal-button svg {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
  }
}
@media (max-width: 768px) {
  body.menu-open {
    overflow: hidden;
  }
  .mob_menu {
    display: flex;
    flex-direction: column;
    z-index: 6;
    position: relative;
    padding-bottom: 18px;
  }
  .mob_menu .mob_wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .mob_menu .mob_wrapper img {
    width: 75px;
    height: 75px;
  }
  .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;
  }
  .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 {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 2;
    cursor: pointer;
  }
  .mob_menu .top-nav .mobile-menu {
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: white;
    z-index: 2;
    transition: 0.4s;
    overflow-y: auto;
    padding: 20px;
  }
  .mob_menu .top-nav .mobile-menu ul {
    list-style: none;
    padding: 0;
    margin-top: 150px;
    margin-left: 20px;
  }
  .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 .top-nav .close-button {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    background: none;
    border: none;
    cursor: pointer;
  }
  .mob_menu .top-nav .lang_switcher {
    margin-bottom: 40px;
  }
  .mob_menu .top-nav .lang_switcher .container {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-around;
  }
  .mob_menu .top-nav .dropdown__item {
    border: none;
    background-color: transparent;
    font-size: 18px;
  }
  .mob_menu .top-nav .header__btn_active {
    color: #1976d2;
    font-weight: 700;
    font-size: 20px;
  }
  .new_btn {
    display: flex;
    max-width: 374px;
    height: 60px;
    background-color: #ee9135;
    padding: 15px 2px 16px 1px;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    box-shadow: 0px 10px 40px 0px rgba(25, 118, 210, 0.2);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    border: none;
    margin-top: 80px;
    cursor: pointer;
  }
  h3 {
    position: relative;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  .top_header {
    display: none;
  }
  header {
    display: none;
  }
  section {
    margin-bottom: 90px !important;
  }
  .sk_container {
    padding: 0px;
    max-width: 674px;
  }
  #d {
    top: 100%;
    margin: auto;
  }
  #d form p {
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 40px;
  }
  #d form .form-control {
    height: 60px;
    font-size: 15px;
    font-weight: 400;
  }
  #d form textarea {
    font-size: 15px;
  }
  .sk_banner_wrapper {
    margin-top: 0;
    height: 100vh;
    margin-bottom: 0 !important;
  }
  .sk_banner_wrapper .sk_container {
    min-height: auto;
  }
  .sk_banner_wrapper .sk_banner {
    max-width: 370px;
  }
  .sk_banner_wrapper .sk_banner h1 {
    font-size: 58px;
    line-height: 120%;
  }
  .sk_banner_wrapper .sk_banner h2 {
    font-size: 18px;
  }
  .sk_banner_img {
    top: 0;
    width: 390px;
    height: 775px;
    border-radius: 0 !important;
    background-color: transparent !important;
    background-image: url("/img/mob/Picture.png"), url("/img/mob/Figure.png");
    background-position: 0 150px, 100% 32%;
    background-repeat: no-repeat;
    z-index: -2;
  }
  .sk_banner_img img {
    display: none;
  }
  .author_bg {
    background: none;
  }
  .sk_call_wrapper .new_btn {
    width: 275px;
    height: 48px;
    font-size: 16px;
    background-color: white;
    border: 2px solid #ee9135;
  }
  .swiper {
    height: 635px;
  }
  .swiper-slide img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .swiper-slide .swiper_text {
    top: 10%;
    left: 0%;
  }
  .swiper-slide .swiper_text h3 {
    font-size: 24px;
  }
  .sk_call_to_action_wrapper .sk_container .sk_call_wrapper .sk_call_items {
    width: 100%;
  }
  .sk_call_to_action_wrapper .sk_container .sk_call_wrapper .sk_call_items .items_wrapper div {
    max-width: 375px;
    margin: 20px 0;
  }
  video {
    width: 100%;
    border-radius: 20px;
  }
  .sk_call_to_action_wrapper .sk_container .sk_for {
    padding-top: 90px;
    width: 100%;
  }
  .sk_call_to_action_wrapper .sk_container .sk_for .img_wrapper .img {
    max-width: 410px;
    width: auto;
    margin: 20px 0;
  }
  .sk_offer .sk_container {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .sk_offer h3 {
    width: 100%;
  }
  .sk_offer .offer_wrapper {
    display: inline-block;
  }
  .sk_offer .offer_wrapper .offer_item {
    max-width: 320px;
    height: 300px;
    box-shadow: 0px 10px 40px rgba(48, 119, 220, 0.2);
    border-radius: 20px;
    padding-bottom: 20px;
    margin-right: 10px;
    margin-bottom: 10px;
  }
  .sk_offer .offer_wrapper .offer_item img {
    align-self: center;
    height: 77px;
  }
  .sk_offer .offer_wrapper .offer_item div {
    padding: 15px 10px;
  }
  .sk_offer .offer_wrapper .offer_item div h4 {
    font-size: 12px;
  }
  .sk_offer .offer_wrapper .offer_item div p {
    font-size: 12px;
  }
  .sk_offer .offer_wrapper .offer_item:hover {
    height: 375px;
  }
  .sk_offer .offer_wrapper .offer_btn {
    opacity: 1;
    font-size: 12px;
    font-weight: 600;
    background: white;
    border-radius: 12px;
    border: 2px #1976d2 solid;
    width: 157px;
    align-self: center;
    padding: 6px 0;
  }
  .author_block .author_wrapper .author_bg {
    width: 70% !important;
  }
  .sk_testimonials_wrapper .new_btn {
    display: none;
  }
  .sk_why_wrapper .sk_container .why_item p {
    font-size: 14px;
    margin-left: 10px;
  }
  .sk_why_wrapper .sk_container .why_item img {
    width: 48px;
  }
  .sk_for_wrapper {
    margin-bottom: 90px !important;
  }
  .sk_for_wrapper .sk_container .for_container_mobile {
    display: flex;
  }
  .sk_for_wrapper .for_container {
    display: none;
  }
  .sk_for_wrapper .sk_testi .item .item_wrapper {
    box-shadow: none;
    position: relative;
    padding: 0;
  }
  .sk_for_wrapper .sk_testi .item .item_wrapper img {
    display: flex;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 10px;
  }
  .sk_for_wrapper .sk_testi .item .item_wrapper .img_overlay {
    opacity: 0;
    position: absolute;
    bottom: 0;
    background-color: #3077dc;
    width: 100%;
    height: 0;
    transition: height 1s ease;
    border-radius: 0 0 10px 10px;
  }
  .sk_for_wrapper .active .item .item_wrapper .img_overlay {
    opacity: 1;
    position: absolute;
    bottom: 0;
    background: linear-gradient(179deg, rgba(255, 255, 255, 0) 1.06%, #3077dc 79.26%);
    width: 100%;
    height: 50px;
    text-align: center;
  }
  .sk_for_wrapper .active .item .item_wrapper .img_overlay p {
    padding-top: 10px;
    font-family: IBM;
    color: white;
    font-size: 20px;
  }
  .author_block {
    position: relative;
    margin-top: 250px;
    background-image: url(img/author/mob_bg.png);
    overflow: visible !important;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
  .author_block .author_bg {
    background: url(img/author/fullsize.png) !important;
    background-size: cover !important;
    border-radius: 50px;
    z-index: 1 !important;
    max-width: 290px !important;
    width: 100% !important;
    height: 344px !important;
    right: 0 !important;
    left: unset;
    top: 75px !important;
  }
  .author_block .author_wrapper .author_bg {
    width: 100% !important;
  }
  .sk_con_wrapper .con_img img {
    width: 100%;
  }
  .sk_consultation .sk_container .sk_con_wrapper .con_img {
    width: 45%;
  }
  .author_block .author_wrapper .con_form {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .author_container .new_btn {
    max-width: 275px !important;
    align-self: end;
  }
  .sk_clients .clients_container div img {
    max-width: 79px;
    height: 79px !important;
  }
  .sk_clients .sk_container .clients_container p {
    font-size: 14px;
  }
  .sk_why_wrapper .sk_container .why_item {
    align-items: center;
  }
  .sk_why_wrapper .sk_container .why_item svg {
    width: 48px;
    height: 100%;
  }
  .sk_consultation .sk_container .sk_con_wrapper .con_form {
    max-width: 350px;
  }
  .sk_consultation .sk_container .sk_con_wrapper .con_form p {
    font-size: 14px;
    padding-bottom: 30px;
  }
  .con_img img {
    width: 45%;
  }
  .sk_testi .item .item_wrapper {
    height: 250px;
  }
  .sk_testi .item {
    padding: 0 15px;
  }
  .sk_testi .item .item_wrapper .testi_text {
    margin-top: 13px;
    margin-bottom: 43px;
    overflow: hidden;
    font-size: 14px;
  }
  .sk_testi .item .item_wrapper .testi_btn button {
    font-size: 14px;
  }
  .owl-next {
    width: 50px;
    height: 50px;
    background: url(img/mob/Arrow.svg) !important;
  }
  .owl-next span {
    display: none;
  }
  .owl-prev {
    width: 50px;
    height: 50px;
    background: url(img/mob/Arrow.svg) !important;
    rotate: 180deg;
  }
  .owl-prev span {
    display: none;
  }
  .sk_steps_wrapper .sk_container .steps_container .steps_item {
    max-width: 295px;
    height: 140px;
  }
  .sk_steps_wrapper .sk_container .steps_container .steps_item div {
    padding: 35px 10px 35px 80px;
  }
  .sk_steps_wrapper .sk_container .steps_container .steps_item:nth-child(2n) {
    margin-top: 0;
    margin-left: 60px;
  }
  .sk_steps_wrapper .sk_container .steps_container .steps_item {
    margin-bottom: 30px;
  }
  .sk_steps_wrapper .sk_container .steps_container .steps_item div span {
    color: white;
    font-size: 14px !important;
  }
  .sk_steps_wrapper .sk_container .steps_container .steps_item div .number {
    position: absolute;
    left: 0;
    top: -20px;
    font-family: "IBM";
    font-size: 60px !important;
    font-weight: 700;
  }
  .sk_price_wrapper .sk_container {
    padding-top: 0px;
  }
  .sk_price_wrapper .sk_container .price_item {
    padding: 20px 9px;
    box-shadow: 0px 10px 20px 0px rgba(48, 119, 220, 0.3);
  }
  .sk_price_wrapper .sk_container .price_item .item_container {
    gap: 10px;
  }
  .sk_price_wrapper .sk_container .price_item .price_h {
    margin-bottom: 30px;
  }
  .sk_price_wrapper .sk_container .sk_price .new_btn {
    width: 290px;
    margin-top: 0;
    margin-bottom: 0;
  }
  .sk_price_wrapper .sk_container .price_item .items_wrapper {
    width: 340px;
  }
  .sk_price_wrapper .sk_container .sk_price .text {
    margin-bottom: 20px;
    font-size: 18px;
  }
  .sk_price_wrapper .sk_container .price_item h4 {
    font-size: 40px;
    font-weight: 700;
  }
  .sk_price_wrapper .sk_container .price_item .items_wrapper .mt40 {
    margin: 30px 0;
  }
  .sk_price_wrapper .sk_container .price_item .item_container img {
    width: 24px;
    height: 24px;
  }
  .sk_price_wrapper .sk_container .price_item .item_container p {
    font-size: 14px;
  }
  .sk_pop .sk_container {
    padding: 30px;
  }
  .sk_pop .close-btn {
    transform: translateX(25px);
  }
  .sk_partners .form {
    width: 100%;
  }
  .left-block {
    flex: 1;
    z-index: 2;
    transition: transform 0.5s ease;
    transform: translateX(0); /* Initially, the left block is not moved */
  }
  .price_wrapper.revealed .left-block {
    transform: translateX(-100%); /* Move the left block off the screen */
  }
  .right-block {
    transform: translateX(0); /* Initially off-screen */
    transition: transform 0.5s ease;
    padding: 0;
  }
  .price_wrapper.revealed .right-block {
    transform: translateX(-100%); /* Reveal the right block */
  }
  .reveal-button {
    display: block;
    height: 48px;
    width: 48px;
    position: absolute;
    top: 40%;
    left: 95%;
    z-index: 2;
    background-color: #1976d2;
    border: none;
    border-radius: 40px;
  }
  .reveal-button svg {
    fill: white;
    transform: translateY(0px);
    margin-right: 10px;
    transition: transform 0.3s ease;
  }
  .revealed .reveal-button svg {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
  }
  .sk_faq .sk_container .faq_container {
    flex-wrap: wrap;
  }
  .sk_faq .sk_container .faq_container .accordion-header {
    cursor: pointer;
    display: flex;
    font-size: 18px;
  }
  .sk_partners .partners_text {
    width: 100%;
  }
  .sk_partners .partners_text div {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
  }
  .sk_partners .partners_text div img {
    width: 48px;
  }
  .sk_partners .partners_text p {
    font-size: 18px;
  }
  .sk_price_wrapper .sk_container .sk_price .price_wrapper {
    display: flex;
    flex: 1;
    gap: 20px;
  }
  .modal_offer_container {
    padding: 80px 6px;
    margin: 0 6px;
    width: 100%;
    min-height: 80vh;
  }
  .modal_offer_container .offer_item {
    gap: 5px;
  }
  .modal_offer_container .offer_item .img_wrapper {
    width: 40%;
  }
  .modal_offer_container .offer_item .img_wrapper img {
    height: 100px;
  }
  .modal_offer_container .offer_item .text_wrapper {
    width: 60%;
  }
  .modal_offer_container .offer_item .text_wrapper h4 {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .modal_offer_container .offer_item .text_wrapper p {
    font-size: 14px;
  }
  .modal_btn {
    position: absolute;
    right: 10px;
  }
  .modal_btn svg {
    width: 40px;
    height: 40px;
  }
  footer {
    height: 100%;
  }
  footer .sk_f_left img {
    width: 50px;
  }
  .sk_footer li {
    font-size: 14px;
  }
  .sk_footer .sk_footer_top .sk_f_left .logo h4 {
    font-size: 14px;
  }
  .sk_footer .sk_footer_top .sk_f_left .cont {
    margin-top: 55px;
    font-size: 20px;
  }
  .sk_footer .sk_footer_top .sk_f_right .sk_f_social ul {
    display: flex;
    gap: 30px;
  }
  .sk_footer .sk_footer_top .sk_f_right .sk_f_social ul img {
    width: 48px;
  }
  .sk_footer .foo_btns {
    text-align: left;
  }
  .sk_footer .foo_btns button {
    font-size: 14px;
  }
  .sk_footer .sk_footer_top {
    flex-wrap: wrap;
    padding: 30px 0;
  }
  .sk_footer .sk_footer_bottom {
    display: flex;
    justify-content: flex-start;
    font-size: 14px;
  }
  .sk_footer .foo_btns button:after {
    content: "";
    width: 85px;
    left: 0;
  }
}
@media (max-width: 500px) {
  #d {
    max-width: 375px;
    margin: auto;
  }
  #d form {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 90px 30px;
  }
  .sk_container {
    padding: 0px;
    margin: auto;
    max-width: 375px;
  }
  .modal_offer_container .offer_item .img_wrapper {
    align-items: flex-start;
  }
  #offer {
    width: 95%;
    height: 100%;
  }
  .author_block {
    margin-top: 220px;
  }
  .sk_call_to_action_wrapper {
    margin-top: 150px;
  }
  .sk_banner_wrapper .sk_banner_img {
    width: 93%;
  }
  .sk_banner_wrapper {
    background: linear-gradient(to bottom, #f9fbfe, white 20%);
    margin-top: 0;
    height: 800px;
    margin-bottom: 0 !important;
  }
  .sk_banner_wrapper .sk_container {
    min-height: auto;
  }
  .sk_banner_wrapper .sk_banner {
    margin-top: 415px;
    max-width: 370px;
    align-items: center;
  }
  .sk_banner_wrapper .sk_banner h1 {
    font-size: 60px;
    line-height: 120%;
  }
  .sk_banner_wrapper .sk_banner h2 {
    font-size: 18px;
  }
  .sk_banner_wrapper .sk_banner a {
    font-size: 16px;
  }
  .sk_banner_img {
    top: 0;
    width: 390px;
    height: 775px;
    border-radius: 0 !important;
    background-color: transparent !important;
    background-image: url("/img/mob/Picture.png"), url("/img/mob/Figure.png");
    background-position: 0 50px, 100% 32%;
  }
  .sk_call_to_action_wrapper,
  .sk_why_wrapper,
  .sk_clients,
  .sk_steps_wrapper {
    display: flex;
  }
  .sk_clients .clients_container {
    flex-wrap: wrap;
  }
  .sk_clients .clients_container div {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 186px;
    gap: 20px;
  }
  .sk_consultation {
    display: flex;
    overflow: hidden;
  }
  .con_img img {
    display: none;
  }
  .sk_con_wrapper {
    position: relative;
    margin-top: 170px;
  }
  .sk_consultation .sk_container .sk_con_wrapper .con_img {
    position: absolute;
    background: url(/img/mob/mobtable.png);
    background-repeat: no-repeat;
    width: 190px;
    height: 200px;
    right: -45px;
    left: unset;
    top: -110px;
  }
  .sk_consultation .sk_container .sk_con_wrapper .con_img img {
    width: 221px;
    display: none;
  }
  .sk_price_wrapper .sk_container .price_item .items_wrapper {
    width: auto;
  }
  .author_block .author_bg {
    top: -255px !important;
  }
  .author_container .new_btn {
    background-color: white;
    border: 2px solid #EE9135;
  }
  .sk_offer .sk_container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .sk_offer .offer_wrapper {
    display: inline-block;
  }
  .sk_offer .offer_wrapper .offer_item {
    max-width: 177px;
    height: 375px;
    box-shadow: 0px 10px 40px rgba(48, 119, 220, 0.2);
    border-radius: 20px;
    padding-bottom: 20px;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .sk_offer .offer_wrapper .offer_item img {
    display: flex;
    width: 100%;
    height: 100%;
    max-height: 77px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .sk_offer .offer_wrapper .offer_item div {
    padding: 15px 10px;
  }
  .sk_offer .offer_wrapper .offer_item div h4 {
    font-size: 12px;
  }
  .sk_offer .offer_wrapper .offer_item div p {
    font-size: 12px;
    margin-top: 10px;
  }
  .sk_offer .offer_wrapper .offer_btn {
    opacity: 1;
    font-size: 12px;
    font-weight: 600;
    background: white;
    border-radius: 12px;
    border: 2px #1976d2 solid;
    width: 157px;
    align-self: center;
    padding: 6px 0;
  }
  .sk_partners_wrapper .sk_partners {
    flex-direction: column;
  }
  .sk_partners_wrapper .sk_partners .partners_text {
    width: 100%;
  }
  .sk_partners_wrapper .sk_partners .form {
    width: 100%;
  }
  .form-control {
    height: 60px;
  }
  #f_textarea {
    height: 90px;
    padding: 15px 20px 15px 20px;
  }
  .sk_faq,
  .sk_partners_wrapper,
  .sk_price_wrapper {
    width: 100%;
  }
  .sk_steps_wrapper .sk_container .steps_container .steps_item:first-child::after {
    content: "";
    background-image: url(/img/deco/1.png);
    background-repeat: no-repeat;
    width: 65px;
    height: 120px;
    position: absolute;
    right: 10%;
    top: 10%;
    display: block;
  }
  .sk_steps_wrapper .sk_container .steps_container .steps_item:nth-child(2)::after {
    content: "";
    background-image: url(/img/deco/2.png);
    width: 50px;
    height: 175px;
    position: absolute;
    left: 15%;
    top: 35%;
    background-repeat: no-repeat;
    display: block;
  }
  .sk_steps_wrapper .sk_container .steps_container .steps_item:nth-child(3)::after {
    content: "";
    background-image: url(/img/deco/3.png);
    width: 60px;
    height: 120px;
    position: absolute;
    right: 0%;
    top: 60%;
    background-repeat: no-repeat;
    display: block;
  }
  .sk_consultation .sk_container {
    position: unset;
    justify-content: center;
  }
  .new_btn {
    width: 100%;
    margin-top: 35px;
    font-size: 16px;
  }
  .modal_btn2 svg {
    width: 25px;
  }
  .price_hh span {
    font-size: 12px !important;
  }
  #success-block p {
    font-size: 20px !important;
    font-weight: 700;
  }
  .sk_price_wrapper .sk_container .price_item .items_wrapper {
    max-width: auto;
  }
  .sk_for_wrapper {
    display: flex;
    width: 100%;
    overflow: hidden;
  }
  .sk_footer .sk_footer_top .sk_f_left .cont h4 {
    font-size: 18px;
  }
  .sk_footer .sk_footer_top .sk_f_left .cont .fo_mail a {
    font-size: 18px;
  }
  .sk_footer .sk_footer_top .sk_f_right .sk_f_social {
    margin-bottom: 137px;
  }
}
@media (max-width: 375px) {
  .sk_container {
    padding: 0px;
    margin: 0 12px;
    max-width: 350px;
  }
  .sk_price_wrapper .sk_container .price_item h4 {
    font-size: 36px;
  }
  .sk_offer .offer_wrapper .offer_item {
    max-width: 170px;
    height: 359px;
  }
  .sk_offer .sk_container {
    justify-content: space-between;
  }
  .sk_offer .offer_wrapper:last-child .offer_item {
    margin-right: 0;
  }
}
@media (max-width: 325px) {
  .sk_container {
    padding: 0px;
    margin: 0 6px;
    max-width: 290px;
  }
}/*# sourceMappingURL=style.css.map */