@import url(../fonts/Arial/stylesheet.css);
@import url(../fonts/MyriadPro/stylesheet.css);
:root {
  --color1: yellow;
  --color2: rgb(0, 163, 211);
  --color3: #ff1e48;
  --Arial: "Arial", sans-serif;
  --Myriad: "Myriad Pro", sans-serif;
}

* {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  list-style: none;
  font-family: var(--Arial);
  background: var(--color2);
}

a {
  text-decoration: none;
  color: black;
  font-size: 21px;
}

.container {
  max-width: 1024px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .container {
    max-width: 95%;
  }
}

.mid-container {
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1199px) {
  .mid-container {
    zoom: 0.8;
  }
}

.high-container {
  max-width: 1600px;
  margin: 0 auto;
}

header {
  position: fixed;
  margin: auto;
  background: var(--color2);
  width: 100%;
  z-index: 5;
}
header .container {
  transform: translateY(25px);
  display: flex;
  flex-direction: column;
  transition: 0.3s ease;
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  header .container {
    transform: translateY(8px);
    height: 52px;
    padding-bottom: 0;
  }
}
header .container * {
  transition: 0.3s ease;
}
header .container .logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
header .container .logo .logo-img {
  transition: 0.3s ease;
  transform-origin: top left;
  max-width: 416px;
}
@media (max-width: 767px) {
  header .container .logo .logo-img {
    max-width: 200px;
  }
}
header .container .logo .lang {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 60px;
  border: 2px white solid;
  border-radius: 50px;
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  header .container .logo .lang {
    border: none;
    padding: 0 20px;
    padding-top: 10px;
    padding-left: 0;
    scale: 0.8;
    transform-origin: top right;
    flex-shrink: 0;
  }
}
header .container .logo .lang span {
  color: white;
}
header .container .logo .lang img {
  width: 35px;
}
header .container .logo .lang2 {
  transform: translateY(-3px);
  display: flex;
  align-items: center;
}
header .container .logo .lang2 > :not(:first-child) {
  padding-left: 20px;
}
@media (max-width: 767px) {
  header .container .logo .lang2 {
    justify-content: space-between;
    width: 100%;
  }
  header .container .logo .lang2 > :first-child {
    flex-grow: 1;
  }
}
header .container .logo .lang2 a img {
  width: 40px;
}
header .container .logo .lang2 * {
  color: white;
}
header .container .logo .lang2 * :hover {
  transition: 0.5s;
  transform: scale(1.2);
}
header .container nav {
  background: white;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 8px 11px;
  transform: translateY(20px);
}
@media (max-width: 767px) {
  header .container nav {
    display: none;
  }
}
header .container li {
  display: flex;
  justify-content: center;
}
header .container li * {
  flex-grow: 2;
}
header .container li :first-child {
  border: none;
}
header .container li ul {
  display: flex;
  align-items: center;
  border-left: 1px rgb(213, 213, 213) solid;
}
header .container li ul :hover {
  background: rgb(213, 213, 213);
  transition: 0.5s;
}
header .container li ul a {
  padding: 25px 20px;
}

main {
  background: white;
  transform: translateY(120px);
}
@media (max-width: 767px) {
  main {
    transform: none;
  }
}

.premain {
  padding-top: 60px;
  padding-bottom: 40px;
  background: url(../img/bg/bg-first.jpg);
  background-size: cover;
}
@media (max-width: 767px) {
  .premain {
    background: url(../img/bg/bg1-mob.jpg);
    background-size: cover;
    padding-top: 50px;
    width: 100%;
  }
}

.call {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 5px 20px;
  background: var(--color2);
}
.call * {
  color: white;
}
.call_btn {
  padding: 5px 60px;
  border: none;
  border-radius: 0;
  background: red;
  cursor: pointer;
  font-size: 21px;
}
.call p {
  color: white;
  font-size: 20px;
}
.call a {
  cursor: pointer;
}
.call a img {
  width: 40px;
}
.call a :hover {
  transition: 0.5s;
  transform: scale(1.2);
}
@media (max-width: 767px) {
  .call {
    display: none;
  }
}

.consult {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--Myriad);
  line-height: 1.2;
  text-align: left;
  margin: 20px auto;
}
@media (max-width: 767px) {
  .consult {
    gap: 0;
  }
  .consult .left {
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .consult {
    gap: 10px;
  }
}
.consult b {
  color: var(--color1);
  font-weight: 700;
}
.consult article {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 50%;
  height: 320px;
  background-color: var(--color2);
  padding: 10px 5px;
}
.consult article p {
  color: white;
  font-size: 20px;
}
.consult article h2, .consult article label, .consult article h3 {
  color: white;
  text-align: center;
}
.consult article h2, .consult article h3 {
  font-weight: 700;
}
.consult article h2 {
  font-size: 25px;
}
.consult article h3 {
  font-size: 12px;
}
.consult article form {
  display: flex;
  flex-direction: column;
  width: 90%;
}
.consult article form input, .consult article form button {
  color: gray;
  border-radius: 10px;
  font-family: var(--Myriad);
  font-size: 21px;
  padding: 10px 25px;
  border-radius: 10px;
  border: none;
  outline: 0;
  margin-top: 10px;
}
@media (max-width: 399px) {
  .consult article form input, .consult article form button {
    font-size: 18px !important;
  }
}
.consult article form button {
  cursor: pointer;
  background: rgb(0, 184, 0);
  color: white;
  border: none;
}
.consult .left {
  box-sizing: border-box;
  padding: 10px 60px;
}
.consult .right {
  box-sizing: border-box;
  align-items: center;
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .consult {
    flex-direction: column;
  }
  .consult .left, .consult .right {
    width: 100%;
    height: 100%;
    padding: 10px;
    gap: 20px;
  }
}

.title-block {
  height: 120px;
  background: rgb(217, 217, 217);
  color: black;
  font-family: var(--Arial);
  font-size: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .title-block {
    line-height: 1;
    text-align: center;
  }
}

.instack {
  margin: 15px auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.instack h2 {
  font-family: var(--Arial);
  font-weight: 700;
}
.instack > :hover {
  box-shadow: 0 8px 11px rgba(0, 0, 0, 0.1490196078);
}
.instack_item-pc {
  line-height: 1;
  display: flex;
  justify-content: space-between;
  border: 1px rgb(217, 217, 217) solid;
}
@media (max-width: 767px) {
  .instack_item-pc {
    display: none;
  }
}
.instack_item-pc_photo {
  width: 185px;
  height: 120px;
  display: flex;
  margin-right: 10px;
}
.instack_item-pc_desc {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  gap: 10px;
  margin: 10px;
}
.instack_item-pc_desc_name, .instack_item-pc_desc_metr, .instack_item-pc_desc_quality, .instack_item-pc_desc_city {
  display: flex;
  align-items: end;
  gap: 10px;
}
.instack_item-pc_desc_name img, .instack_item-pc_desc_metr img, .instack_item-pc_desc_quality img, .instack_item-pc_desc_city img {
  width: 18px;
  height: 18px;
}
.instack_item-pc_price {
  flex-basis: 260px;
  text-align: right;
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.instack_item-pc_price_always {
  color: green;
  font-weight: 700;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: end;
}
.instack_item-pc_price_always img {
  width: 20px;
  margin-right: 5px;
}
.instack_item-pc_price_sum {
  font-weight: 700;
  margin-right: 15px;
  font-size: 22px;
}
.instack_item-pc_price_call {
  cursor: pointer;
  width: 260px;
  border: 1px var(--color3) solid;
  text-align: center;
  padding: 5px;
}
.instack_item-pc_price :last-child:hover {
  background: var(--color3);
  color: white;
}
.instack_item-mob {
  display: flex;
  flex-direction: column;
  line-height: 1;
  border: 1px rgb(217, 217, 217) solid;
}
@media (min-width: 767px) {
  .instack_item-mob {
    display: none;
  }
}
.instack_item-mob > *:not(:first-child) {
  margin-top: 10px;
}
.instack_item-mob_name {
  padding: 5px;
}
.instack_item-mob_content {
  display: flex;
}
.instack_item-mob_content_photo {
  width: 50%;
}
.instack_item-mob_content_photo img {
  max-width: 100%;
}
.instack_item-mob_content_desc {
  margin-left: 10px;
  display: flex;
  flex-direction: column;
}
.instack_item-mob_content_desc > :last-child {
  flex-grow: 1;
  align-items: end;
}
.instack_item-mob_content_desc_metr, .instack_item-mob_content_desc_quality, .instack_item-mob_content_desc_city, .instack_item-mob_content_desc_price {
  display: flex;
  align-items: center;
  padding-bottom: 5px;
}
.instack_item-mob_content_desc_metr :first-child, .instack_item-mob_content_desc_quality :first-child, .instack_item-mob_content_desc_city :first-child, .instack_item-mob_content_desc_price :first-child {
  margin-right: 10px;
}
.instack_item-mob_content_desc_metr img, .instack_item-mob_content_desc_quality img, .instack_item-mob_content_desc_city img, .instack_item-mob_content_desc_price img {
  width: 18px;
  height: 18px;
}
.instack_item-mob_content_desc_price {
  font-weight: 700;
}
.instack_item-mob_ok {
  color: #51A351;
  font-weight: 700;
  display: flex;
  align-items: center;
  margin-left: 5px;
}
.instack_item-mob_ok img {
  width: 20px;
  margin-right: 10px;
}
.instack_item-mob_call {
  color: white;
  background: var(--color3);
  padding: 5px;
  text-align: center;
}

.arrownext {
  display: flex;
  justify-content: center;
  margin: 20px auto;
}
.arrownext img {
  width: 66px;
}

.cta {
  background-image: url(../img/bg/bg2.jpg);
  background-size: cover;
}
@media (max-width: 767px) {
  .cta {
    background: url(../img/bg/bg2-mob.jpg);
    background-size: cover;
    width: 100%;
  }
}
.cta > .high-container {
  line-height: 1;
  color: white;
}
.cta > .high-container .cta-wrapper {
  display: flex;
  justify-content: center;
  gap: 100px;
}
@media (max-width: 767px) {
  .cta > .high-container .cta-wrapper {
    gap: 0;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .cta > .high-container .cta-wrapper {
    justify-content: space-around;
  }
}
@media (min-width: 1024px) and (max-width: 1150px) {
  .cta > .high-container .cta-wrapper {
    scale: 0.9;
  }
}
.cta > .high-container .cta-wrapper b {
  color: var(--color1);
}
.cta > .high-container .cta-wrapper a {
  color: white;
}
.cta > .high-container .cta-wrapper .left, .cta > .high-container .cta-wrapper .right {
  display: flex;
  flex-direction: column;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .cta > .high-container .cta-wrapper .left, .cta > .high-container .cta-wrapper .right {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.cta > .high-container .cta-wrapper .left {
  font-size: 33px;
  text-align: center;
  align-items: center;
  gap: 60px;
}
@media (max-width: 1023px) {
  .cta > .high-container .cta-wrapper .left {
    font-size: 26px;
    gap: 0;
  }
  .cta > .high-container .cta-wrapper .left h2 {
    margin-bottom: 60px;
  }
}
.cta > .high-container .cta-wrapper .left form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 600px;
}
@media (max-width: 1023px) {
  .cta > .high-container .cta-wrapper .left form {
    width: 90%;
  }
}
.cta > .high-container .cta-wrapper .left form div {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1023px) {
  .cta > .high-container .cta-wrapper .left form div {
    flex-direction: column;
  }
}
.cta > .high-container .cta-wrapper .left form input, .cta > .high-container .cta-wrapper .left form button {
  border-radius: 10px;
  font-family: var(--Arial);
  font-size: 21px;
  padding: 17.5px 15px;
  border-radius: 10px;
  border: none;
  outline: 0;
  gap: 10px;
}
.cta > .high-container .cta-wrapper .left form input {
  width: 265px;
}
@media (max-width: 1023px) {
  .cta > .high-container .cta-wrapper .left form input, .cta > .high-container .cta-wrapper .left form button {
    margin-top: 10px;
    width: 100%;
    box-sizing: border-box;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .cta > .high-container .cta-wrapper .left form input:not(:last-child) {
    margin-bottom: 10px;
  }
}
.cta > .high-container .cta-wrapper .left form button {
  cursor: pointer;
  background: var(--color3);
  color: white;
  border: 1px var(--color3) solid;
  border-radius: 0;
}
@media (max-width: 767px) {
  .cta > .high-container .cta-wrapper .left form button {
    margin-top: 0;
  }
}
.cta > .high-container .cta-wrapper .left form .cta-btn:hover {
  background: none;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .cta > .high-container .cta-wrapper .left form {
    width: 120%;
  }
  .cta > .high-container .cta-wrapper .left form div {
    flex-direction: column;
  }
}
.cta > .high-container .cta-wrapper .right {
  font-size: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cta > .high-container .cta-wrapper .right .telephone, .cta > .high-container .cta-wrapper .right .answer {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media (max-width: 767px) {
  .cta > .high-container .cta-wrapper .right .telephone, .cta > .high-container .cta-wrapper .right .answer {
    gap: 0px;
  }
  .cta > .high-container .cta-wrapper .right .telephone *, .cta > .high-container .cta-wrapper .right .answer * {
    margin-bottom: 10px;
  }
}
.cta > .high-container .cta-wrapper .right h2 {
  font-size: 33px;
}
.cta > .high-container .cta-wrapper .right a {
  font-size: 38px;
}
@media (max-width: 767px) {
  .cta > .high-container .cta-wrapper .right a {
    font-size: 30px;
  }
}
.cta > .high-container .cta-wrapper .right h3 {
  font-size: 25px;
}
.cta > .high-container .cta-wrapper .right h4 {
  margin-bottom: 15px;
}
.cta > .high-container .cta-wrapper .right button {
  margin-top: 15px;
  margin-bottom: 30px;
  color: white;
  width: 370px;
  height: 45px;
  background: var(--color3);
  border: none;
  font-size: 25px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .cta > .high-container .cta-wrapper .right button {
    width: 100%;
    margin-bottom: 35px !important;
    margin-top: 0;
  }
}
.cta > .high-container .cta-wrapper .right .ctar-btn:hover {
  background: none;
  border: 1px var(--color3) solid;
}
.cta > .high-container .cta-wrapper .right .messengers {
  display: flex;
  gap: 60px;
  height: 80px;
}
@media (max-width: 767px) {
  .cta > .high-container .cta-wrapper .right .messengers {
    gap: 0;
  }
}
.cta > .high-container .cta-wrapper .right .messengers_wa, .cta > .high-container .cta-wrapper .right .messengers_tg {
  cursor: pointer;
  background: black;
  border-radius: 100%;
}
@media (max-width: 767px) {
  .cta > .high-container .cta-wrapper .right .messengers_wa, .cta > .high-container .cta-wrapper .right .messengers_tg {
    background: none;
    margin-right: 60px;
  }
}
.cta > .high-container .cta-wrapper .right .messengers img {
  transition: 0.5s;
  width: 80px;
  opacity: 0.6;
}
@media (max-width: 767px) {
  .cta > .high-container .cta-wrapper .right .messengers img {
    opacity: 1;
  }
}
.cta > .high-container .cta-wrapper .right .messengers :hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cta > .high-container .cta-wrapper .right {
    width: 90%;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .cta > .high-container .cta-wrapper {
    flex-direction: column;
  }
}

.spheres {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.spheres_item {
  margin: 10px auto;
}
.spheres_item .wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid lightgray;
  z-index: 1;
}
@media (max-width: 767px) {
  .spheres_item .wrapper {
    flex-direction: column-reverse;
  }
}
.spheres_item .wrapper span {
  margin: 40px auto;
  font-size: 25px;
}
.spheres_item .wrapper img {
  width: 500px;
  height: 280px;
}
@media (max-width: 767px) {
  .spheres_item .wrapper img {
    width: 300px;
    width: 100%;
    height: auto;
  }
}
.spheres_item .item_wrapper {
  position: relative;
}
.spheres_item .spheres_link {
color: white;
padding: 20px 20px;
border: 2px var(--color3) solid;
position: absolute;
top: 50%;
left: 50%;
background: var(--color3);
transform: translate(-50%, -50%);
width: 250px;
text-align: center;
}
	@media (max-width: 767px) {
  .spheres_item .spheres_link {
    display: none;
  }
}
.spheres :hover {
  background: rgba(0, 0, 0, 0.4);
}
.spheres :hover .wrapper {
  z-index: -1;
}
@media (max-width: 1023px) {
  .spheres :hover {
    background: none;
  }
  .spheres :hover .wrapper {
    z-index: 1;
  }
}

.variants {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .variants {
    flex-direction: column;
    width: 90%;
  }
}
.variants_item {
  display: flex;
  flex-direction: column;
  flex-basis: 30%;
  margin: 20px auto;
  line-height: 24px;
  gap: 15px;
}
@media (max-width: 767px) {
  .variants_item {
    gap: 0;
  }
  .variants_item :not(:last-child) {
    margin-bottom: 15px;
  }
}
.variants_item img {
  width: 90px;
  height: 90px;
}
.variants_item strong {
  font-weight: 700;
}
.variants_item h2 {
  font-size: 27px;
  font-weight: 700;
  line-height: 35px;
}
.variants_item p {
  font-size: 15px;
}

.primers {
  overflow: hidden;
  scale: 0.95;
}

.slick-track {
  margin: 20px 0;
  display: flex;
}
.slick-track a img {
  overflow: hidden;
  width: 300px;
}
@media (max-width: 1440px) {
  .slick-track a img {
    width: 270px;
  }
}
@media (max-width: 767px) {
  .slick-track a img {
    width: 70vw;
  }
}
.slick-track * {
  margin: 0 2.5px;
  overflow-x: hidden;
}

footer {
  transform: translateY(120px);
  background: var(--color2);
  padding-bottom: 1px;
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  footer {
    transform: none;
  }
}
footer .bg {
  display: flex;
  justify-content: start;
  font-size: 22px;
  margin: 30px;
  border: 5px solid white;
  color: white;
  gap: 50px;
  width: 950px;
}
footer .bg img {
  background: white;
}
@media (max-width: 767px) {
  footer .bg {
    font-size: 18px;
    flex-direction: column-reverse;
    gap: 0px;
  }
}
footer .bg .left, footer .bg .right {
  line-height: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: 0.3;
}
footer .bg .left a, footer .bg .right a {
  color: white;
  font-size: 22px;
}
@media (max-width: 767px) {
  footer .bg .left a, footer .bg .right a {
    font-size: 15px;
  }
}
footer .bg .left {
  cursor: default;
}
footer .bg .left img {
  width: 250px;
  padding: 20px 100px;
}
@media (max-width: 1023px) {
  footer .bg .left img {
    padding: 20px;
    width: auto;
    height: 176px;
    background: white;
  }
}
footer .bg .right {
  gap: 20px;
  justify-content: center;
  font-size: 15px;
}
@media (max-width: 1023px) {
  footer .bg .right {
    padding: 10px;
    gap: 0;
  }
  footer .bg .right div:not(:last-child) {
    margin-bottom: 20px;
  }
}
footer .bg .right div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
footer .bg .right a:hover {
  opacity: 0.5;
}

.swal-modal {
  background: var(--color2);
}

.swal-button {
  background: var(--color3);
}

.swal-button:not([disabled]):hover {
  background: var(--color3);
}

.swal-overlay--show-modal .swal-modal {
  background: var(--color2);
  border-radius: 0;
}

.swal-title, .swal-text {
  color: white;
}

.swal-icon--success:before, .swal-icon--success:after, .swal-icon--success__hide-corners {
  background: var(--color2);
}

.swal-icon--success__ring {
  border: 4px solid #25D366;
}

.swal-icon--success__line {
  background-color: #25D366;
}

.active {
  transition: 0.3s ease;
  gap: 0 !important;
  padding-bottom: 0 !important;
}
.active nav {
  transform: none !important;
}
.active .logo {
  margin-top: 5px !important;
  transform: translateY(-10px);
  margin-bottom: 5px !important;
  transition: 0.3s ease;
  transform-origin: top left;
  gap: 0 !important;
}
@media (max-width: 767px) {
  .active .logo {
    transform: translateY(-5px) !important;
  }
  .active .logo-img {
    display: none;
  }
}
.active .logo img {
  max-width: 250px !important;
}
.active .logo a {
  transition: 0.3s ease;
}

.hidden {
  display: none !important;
}

@media (max-width: 399px) {
  .modal {
    width: inherit;
  }
}
#ex1 {
  background-color: var(--color2);
  padding: 20px;
  font-family: var(--Myriad);
  line-height: 1.2;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border-radius: 0;
}
#ex1 b {
  color: var(--color1);
  font-weight: 700;
}
#ex1 h2, #ex1 label, #ex1 h3 {
  color: white;
  text-align: center;
}
#ex1 h2 {
  font-size: 25px;
  margin-bottom: 10px;
}
#ex1 form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 767px) {
  #ex1 form {
    gap: 0;
  }
}
#ex1 form input, #ex1 form button {
  border-radius: 10px;
  font-family: var(--Myriad);
  font-size: 21px;
  padding: 10px 25px;
  border-radius: 10px;
  border: none;
  outline: 0;
}
@media (max-width: 767px) {
  #ex1 form input, #ex1 form button {
    margin-bottom: 10px;
  }
}
@media (max-width: 399px) {
  #ex1 form input, #ex1 form button {
    font-size: 18px !important;
  }
}
#ex1 form button {
  cursor: pointer;
  background: rgb(0, 184, 0);
  color: white;
}
@media (max-width: 399px) {
  #ex1 form button {
    padding: 10px 0px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #ex1 {
    transform: translateY(40px);
  }
}

.modal a.close-modal {
  display: none;
}

@media (min-width: 768px) and (max-width: 1023px) {
  header .container .logo {
    justify-content: space-around;
  }
  header .container nav li ul a {
    font-size: 15px;
    word-wrap: normal;
    padding: 25px 15px;
  }
  .consult .left {
    padding: 10px 20px;
  }
  .cta-wrapper {
    scale: 0.8;
  }
  .spheres_item {
    width: 48%;
  }
  .spheres_item .wrapper img {
    width: 100%;
  }
  footer .bg {
    scale: 0.8;
    gap: 50px;
  }
  footer .bg .right {
    line-height: 1.3;
  }
}/*# sourceMappingURL=style.css.map */
