@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
body,
div,
dl,
dt,
dd,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img,
abbr {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ul li {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

legend {
  color: #000;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

*:focus {
  outline: none;
}

* {
  font-family: "Ubuntu", sans-serif;
}

body {
  font-size: 16px;
}

.title-primary {
  font-size: 2.2rem;
  text-align: center;
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: 30px;
}
.title-primary span {
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .title-primary {
    font-size: 26px;
  }
}

.subtitle-primary {
  font-size: 14px;
  color: #292929;
  opacity: 0.6;
  text-align: center;
  padding: 0 10%;
  font-weight: 400;
}

.title-secondary {
  font-size: 28px;
  font-weight: 500;
  text-align: center;
}
.title-secondary span {
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .title-secondary {
    font-size: 20px;
  }
}

.subtitle-secondary {
  color: silver;
  opacity: 0.6;
  line-height: 1.38;
  text-align: center;
  font-size: 14px;
  font-weight: 100;
}

.btn-primary {
  display: inline-block;
  padding: 1.5rem 3rem;
  color: #000;
  background-color: #ffd900;
  font-size: 16px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.btn-primary::before {
  margin-left: -30px;
  content: " ";
  width: 1.5rem;
  height: 300px;
  background: #fff;
  animation-delay: 0.05s;
  position: absolute;
  left: -40px;
  top: -70px;
  animation-timing-function: ease-in-out;
  transition: all 0.1s;
  animation-name: slideme;
  animation-duration: 3.5s;
  animation-iteration-count: infinite;
  transform: rotate(45deg);
  z-index: 5;
}
@keyframes slideme {
  0% {
    left: -60px;
    margin-left: 0px;
    opacity: 1;
  }
  30% {
    left: 110%;
    margin-left: 80px;
    opacity: 1;
  }
  100% {
    left: 110%;
    margin-left: 80px;
    opacity: 1;
  }
}
.btn-primary .icon {
  display: inline-block;
  margin-left: 5px;
}
.btn-primary .icon img {
  width: 25px;
  max-width: 25px;
  max-height: 20px;
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  .btn-primary {
    font-size: 18px;
  }
}

.btn-secondary {
  display: inline-block;
  padding: 1.5rem 3rem;
  color: #fff;
  background-color: #2ea885;
  font-size: 16px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.btn-secondary::before {
  margin-left: -30px;
  content: " ";
  width: 1.5rem;
  height: 300px;
  background: #fff;
  animation-delay: 0.05s;
  position: absolute;
  left: -40px;
  top: -70px;
  animation-timing-function: ease-in-out;
  transition: all 0.1s;
  animation-name: slideme;
  animation-duration: 3.5s;
  animation-iteration-count: infinite;
  transform: rotate(45deg);
  z-index: 5;
}
@keyframes slideme2 {
  0% {
    left: -60px;
    margin-left: 0px;
    opacity: 1;
  }
  30% {
    left: 110%;
    margin-left: 80px;
    opacity: 1;
  }
  100% {
    left: 110%;
    margin-left: 80px;
    opacity: 1;
  }
}
.btn-secondary .icon {
  display: inline-block;
  margin-left: 5px;
}
.btn-secondary .icon img {
  width: 25px;
  max-width: 25px;
  max-height: 20px;
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  .btn-secondary {
    font-size: 18px;
  }
}

@keyframes pulse-primary {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 213, 26, 0.8);
  }
  40% {
    box-shadow: 0 0 0px 5px rgba(255, 213, 26, 0.5);
  }
  80% {
    box-shadow: 0 0 3px 10px rgba(255, 213, 26, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 213, 26, 0);
  }
}
.container {
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 10%;
}
@media screen and (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
}

.overhidden {
  overflow: hidden;
}

.container-mini {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.show-xs {
  display: none !important;
}
@media screen and (max-width: 576px) {
  .show-xs {
    display: block !important;
  }
}

.show-sm {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .show-sm {
    display: block !important;
  }
}

@media screen and (max-width: 768px) {
  .hide-sm {
    display: none !important;
  }
}

@media screen and (max-width: 576px) {
  .hide-xs {
    display: none !important;
  }
}

a {
  text-decoration: none;
}

img, video {
  max-width: 100%;
  height: auto;
}

.nowrap {
  white-space: nowrap;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.text-center {
  text-align: center;
}

.text-center-md {
  text-align: initial;
}
@media screen and (max-width: 1024px) {
  .text-center-md {
    text-align: center;
  }
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.pulse {
  animation: pulse-pulse-primary 2s linear infinite;
}
@keyframes pulse-pulse-primary {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
  }
  10% {
    transform: scale(1.05);
  }
  20% {
    transform: scale(1.05);
  }
  25% {
    transform: scale(1);
  }
  40% {
    box-shadow: 0 0 0px 5px rgba(255, 255, 255, 0.5);
  }
  100% {
    box-shadow: 0 0 0px 10px rgba(255, 255, 255, 0);
  }
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgb(46, 168, 133);
  transition: all 700ms ease;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0);
  z-index: 100;
}
nav.scrolled {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
nav.scrolled .nav_inner::after {
  display: none;
}
nav .nav_inner {
  display: flex;
  align-items: center;
  padding: 30px 0 15px;
  position: relative;
}
@media screen and (max-width: 768px) {
  nav .nav_inner {
    padding: 15px 0;
  }
}
nav .nav_inner::after {
  content: "";
  width: 100%;
  height: 2px;
  border-radius: 10px;
  background-color: #fff;
  opacity: 0.5;
  position: absolute;
  bottom: 0;
  left: 0;
}
nav .nav_inner .logo a {
  font-size: 30px;
  font-weight: bold;
  color: #fff;
}
@media screen and (max-width: 768px) {
  nav .nav_inner .logo a {
    font-size: 25px;
  }
}
nav .nav_inner .nav_contacts {
  margin-left: auto;
  text-align: right;
  display: flex;
  align-items: flex-end;
}
nav .nav_inner .nav_contacts .tg a {
  display: inline-flex;
  padding: 10px 15px;
  background-color: #229ED9;
  color: #fff;
  border-radius: 5px;
  font-size: 20px;
  padding-left: 30px;
  position: relative;
  flex-grow: 0;
}
@media screen and (max-width: 768px) {
  nav .nav_inner .nav_contacts .tg a .to-hide {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  nav .nav_inner .nav_contacts .tg a {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    padding: 0;
  }
}
nav .nav_inner .nav_contacts .tg a::before {
  content: "";
  width: 7px;
  height: 7px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  animation: fadeOff 1s linear infinite;
}
@media screen and (max-width: 768px) {
  nav .nav_inner .nav_contacts .tg a::before {
    display: none;
  }
}
@keyframes fadeOff {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  to {
    opacity: 1;
  }
}
nav .nav_inner .nav_contacts .tg a img {
  width: 20px;
  vertical-align: bottom;
  display: inline-block;
  margin-right: 5px;
}
@media screen and (max-width: 768px) {
  nav .nav_inner .nav_contacts .tg a img {
    margin-right: 0;
    width: 30px;
  }
}
nav .nav_inner .nav_contacts .phone_number {
  margin-left: 20px;
}
nav .nav_inner .nav_contacts .phone_number a {
  font-size: 29px;
  font-weight: 600;
  color: #fff;
}
@media screen and (max-width: 768px) {
  nav .nav_inner .nav_contacts .phone_number a {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    padding: 0;
  }
}
nav .nav_inner .nav_contacts .phone_number a .icon {
  display: none;
}
@media screen and (max-width: 768px) {
  nav .nav_inner .nav_contacts .phone_number a .icon {
    display: inline-block;
  }
}
nav .nav_inner .nav_contacts .phone_number a .icon img {
  width: 30px;
  vertical-align: bottom;
}
nav .nav_inner .nav_contacts .work_hours {
  font-size: 14px;
  color: #fff;
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  nav .nav_inner .nav_contacts .work_hours {
    display: none;
  }
}

header {
  min-height: 70vh;
  padding-bottom: 50px;
  background: url("../images/dotted-bg.svg") 96% 56%/36% no-repeat;
  background-color: rgb(46, 168, 133);
}
@media screen and (max-width: 768px) {
  header {
    min-height: auto;
  }
}
header .header_title {
  font-size: 50px;
  color: #fff;
  font-weight: 600;
  padding-right: 20%;
  margin-top: 10vh;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  header .header_title {
    font-size: 38px;
  }
}
@media screen and (max-width: 768px) {
  header .header_title {
    padding-right: 0;
    font-size: 32px;
  }
}
header .header_preferences {
  margin-bottom: 30px;
}
header .header_preferences li {
  display: flex;
  align-items: center;
  color: #fff;
  margin-bottom: 15px;
  font-size: 18px;
}
@media screen and (max-width: 1024px) {
  header .header_preferences li {
    font-size: 16px;
  }
}
header .header_preferences li .icon {
  display: inline-block;
  width: 15px;
  margin-right: 15px;
}
header .header_preferences li .icon img {
  vertical-align: middle;
  transform: translateY(-2px);
}
header .header_row {
  display: flex;
}
header .left {
  width: calc(100% - 25rem);
}
@media screen and (max-width: 1024px) {
  header .left {
    width: calc(100% - 15rem);
  }
}
@media screen and (max-width: 768px) {
  header .left {
    width: 100%;
  }
}

.order {
  padding: 60px 0;
}
@media screen and (max-width: 1024px) {
  .order {
    padding: 80px 30px;
  }
}
@media screen and (max-width: 768px) {
  .order {
    padding: 60px 0;
  }
}
.order .swiper-button-next:after,
.order .swiper-button-prev:after,
.order .swiper-button-prev:after,
.order .swiper-button-next:after {
  content: none;
}
.order .swiper-button-prev,
.order .swiper-button-next {
  transform: translateY(-30px);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2ea885;
  border-radius: 50%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  top: 330px;
}
.order .left {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: calc(41.6666666667% - 30px);
}
@media screen and (max-width: 1024px) {
  .order .left {
    width: calc(50% - 30px);
  }
}
@media screen and (max-width: 768px) {
  .order .left {
    width: calc(100% - 30px);
  }
}
@media screen and (max-width: 768px) {
  .order .left {
    margin-bottom: 15px;
  }
}
.order .left .product-gallery {
  display: flex;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .order .left .product-gallery {
    flex-direction: column-reverse;
  }
}
.order .left .product-gallery .gallery-items {
  width: 15%;
  margin-right: 30px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .order .left .product-gallery .gallery-items {
    width: 100%;
    display: flex;
    align-items: center;
  }
}
.order .left .product-gallery .gallery-items .gallery-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 2.5px solid transparent;
  transition: all 300ms ease;
  cursor: pointer;
  padding: 5px 15px;
  width: 100%;
}
.order .left .product-gallery .gallery-items .gallery-item.active {
  border-color: #2ea885;
}
.order .left .product-gallery .gallery-items .gallery-item img {
  max-height: 100%;
  border-radius: 3px;
}
.order .left .product-gallery .img {
  width: 75%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .order .left .product-gallery .img {
    width: 100%;
    padding: 0;
  }
}
.order .left .product-gallery .img img {
  width: 100%;
  vertical-align: bottom;
  max-height: 100%;
  border-radius: 5px;
}
.order .right {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: calc(58.3333333333% - 30px);
  color: #212121;
}
@media screen and (max-width: 1024px) {
  .order .right {
    width: calc(50% - 30px);
  }
}
@media screen and (max-width: 768px) {
  .order .right {
    width: calc(100% - 30px);
  }
}
.order .right .product-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 37.5px;
  margin-bottom: 15px;
}
.order .right .product-price {
  font-size: 24px;
  font-weight: 700;
  line-height: 28.13px;
  color: #2ea885;
  margin-bottom: 15px;
}
.order .right h5 {
  font-size: 24px;
  font-weight: 400;
  line-height: 28.13px;
  margin-bottom: 20px;
}
.order .right ul {
  margin-bottom: 30px;
}
.order .right ul li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 500;
}
.order .right ul li span {
  width: 300px;
  display: inline-block;
  color: #1a1a1a;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .order .right ul li span {
    display: inline-block;
    width: unset;
    margin-right: 15px;
  }
}
.order .specifications {
  margin-top: 50px;
}
.order .specifications table {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.order .specifications thead tr {
  background: #212121;
  color: #fff;
  font-size: 13px;
}
.order .specifications thead tr th {
  text-align: center;
  padding: 15px;
  width: 33.333%;
}
.order .specifications thead tr th:first-of-type {
  padding: 15px 50px;
}
@media screen and (max-width: 768px) {
  .order .specifications thead tr th:first-of-type {
    padding: 0;
  }
}
.order .specifications tbody tr {
  text-align: center;
  color: #212121;
}
.order .specifications tbody tr:nth-of-type(odd) {
  background: #F9F9F9;
}
.order .specifications tbody tr:nth-of-type(even) {
  background: #F2F3F5;
}
.order .specifications tbody th {
  text-align: center;
  padding: 15px;
  font-size: 13px;
}
.order .specifications tbody th.none {
  border: 2px solid #fe4543;
  border-radius: 3px;
}
.order .specifications tbody th span {
  font-weight: 500;
  display: inline-block;
  margin-left: 15px;
}

.steps {
  padding: 60px 0;
}
@media screen and (max-width: 1024px) {
  .steps {
    padding: 80px 30px;
  }
}
@media screen and (max-width: 768px) {
  .steps {
    padding: 60px 0;
  }
}
.steps .subtitle-primary {
  margin-bottom: 50px;
}
.steps .title-secondary {
  margin-bottom: 50px;
}
.steps .subtitle-secondary {
  margin-top: 50px;
}
.steps .item {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: calc(16.6666666667% - 30px);
  position: relative;
}
@media screen and (max-width: 1024px) {
  .steps .item {
    width: calc(16.6666666667% - 30px);
  }
}
@media screen and (max-width: 768px) {
  .steps .item {
    width: calc(33.3333333333% - 30px);
  }
}
@media screen and (max-width: 576px) {
  .steps .item {
    width: calc(50% - 30px);
  }
}
@media screen and (max-width: 768px) {
  .steps .item {
    margin-bottom: 50px;
  }
}
.steps .item .num {
  position: absolute;
  right: 50%;
  top: -1.25rem;
  transform: translateX(-25px);
  font-size: 5.5rem;
  line-height: 1;
  color: #f0faf7;
  color: rgba(75, 35, 135, 0.06);
  z-index: -1;
}
.steps .item .icon {
  width: 5.25rem;
  height: 5.25rem;
  border-radius: 50%;
  background: #2ea885;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 0.75rem;
}
.steps .item p {
  text-align: center;
  line-height: 1.38;
  opacity: 0.6;
  font-weight: 400;
  font-size: 12px;
}
.steps .steps_btn {
  text-align: center;
  margin-top: 100px;
}

.points_block {
  padding: 60px 0;
}
@media screen and (max-width: 1024px) {
  .points_block {
    padding: 80px 30px;
  }
}
@media screen and (max-width: 768px) {
  .points_block {
    padding: 60px 0;
  }
}
.points_block .row {
  justify-content: space-evenly;
}
.points_block .title-secondary {
  margin-bottom: 50px;
}
.points_block .item {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: calc(25% - 30px);
  position: relative;
}
@media screen and (max-width: 768px) {
  .points_block .item {
    width: calc(50% - 30px);
  }
}
@media screen and (max-width: 576px) {
  .points_block .item {
    width: calc(100% - 30px);
  }
}
@media screen and (max-width: 768px) {
  .points_block .item {
    padding-left: 30px;
    margin-bottom: 30px;
  }
}
.points_block .item .check {
  width: 18px;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-150%);
}
@media screen and (max-width: 768px) {
  .points_block .item .check {
    left: 25px;
  }
}
.points_block .item h3 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
}
.points_block .item p {
  font-size: 15px;
  color: rgb(102, 102, 102);
  font-weight: 400;
  line-height: 1.4;
}

.whoweare {
  padding: 60px 0;
  background-color: #2ea885;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .whoweare {
    padding: 80px 30px;
  }
}
@media screen and (max-width: 768px) {
  .whoweare {
    padding: 60px 0;
  }
}
.whoweare .subtitle-primary {
  margin-bottom: 50px;
  color: #fff;
}
.whoweare .title-secondary {
  margin-bottom: 50px;
}
.whoweare .row {
  justify-content: space-evenly;
}
.whoweare .item {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: calc(33.3333333333% - 30px);
  background: rgb(255, 255, 255);
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 0px 2.5rem 0px;
  height: 100%;
  padding: 2.5rem 3.5rem;
  color: #000;
}
@media screen and (max-width: 768px) {
  .whoweare .item {
    width: calc(100% - 30px);
  }
}
@media screen and (max-width: 768px) {
  .whoweare .item {
    margin-bottom: 30px;
  }
}
.whoweare .item h3 {
  font-size: 19.5px;
  font-weight: 500;
  margin-bottom: 30px;
}
.whoweare .item ul li {
  position: relative;
  margin-bottom: 20px;
  font-size: 14px;
}
.whoweare .item ul li .icon {
  display: inline-block;
  width: 14px;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateX(-200%);
}

.clients {
  padding: 60px 0;
  background-color: #f4f7ff;
}
@media screen and (max-width: 1024px) {
  .clients {
    padding: 80px 30px;
  }
}
@media screen and (max-width: 768px) {
  .clients {
    padding: 60px 0;
  }
}
.clients .subtitle-primary {
  margin-bottom: 50px;
}
.clients .row {
  justify-content: center;
}
.clients .item {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: calc(29.1666666667% - 30px);
  background-color: #fff;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .clients .item {
    width: calc(33.3333333333% - 30px);
  }
}
@media screen and (max-width: 768px) {
  .clients .item {
    width: calc(50% - 30px);
  }
}
@media screen and (max-width: 576px) {
  .clients .item {
    width: calc(100% - 30px);
  }
}
.clients .item .item_img {
  height: 300px;
  background-position: center center;
  background-size: cover;
}
.clients .item p {
  padding: 15px;
  text-align: center;
  font-weight: bold;
}

.advantages {
  padding: 60px 0;
}
@media screen and (max-width: 1024px) {
  .advantages {
    padding: 80px 30px;
  }
}
@media screen and (max-width: 768px) {
  .advantages {
    padding: 60px 0;
  }
}
.advantages .subtitle-primary {
  margin-bottom: 50px;
}
.advantages .row {
  justify-content: center;
}
.advantages .item {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: calc(20% - 30px);
  text-align: center;
  background-color: #2ea885;
  color: #fff;
  padding: 30px;
  background-size: cover;
  background-position: center center;
  border-radius: 4px;
}
@media screen and (max-width: 1024px) {
  .advantages .item {
    width: calc(33.3333333333% - 30px);
  }
}
@media screen and (max-width: 768px) {
  .advantages .item {
    width: calc(50% - 30px);
  }
}
@media screen and (max-width: 576px) {
  .advantages .item {
    width: calc(100% - 30px);
  }
}
.advantages .item .num {
  font-size: 43px;
  font-weight: bold;
  margin-bottom: 10px;
}
.advantages .item h4 {
  margin-bottom: 60px;
  font-size: 14px;
}
.advantages .item p {
  font-size: 14px;
}

.stickers_advantages {
  padding: 60px 0;
  background-color: #2ea885;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .stickers_advantages {
    padding: 80px 30px;
  }
}
@media screen and (max-width: 768px) {
  .stickers_advantages {
    padding: 60px 0;
  }
}
.stickers_advantages .title-primary {
  margin-bottom: 100px;
}
.stickers_advantages .row {
  justify-content: center;
}
.stickers_advantages .stickers_btn {
  text-align: center;
  margin-top: 50px;
}
.stickers_advantages .item {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: calc(50% - 30px);
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .stickers_advantages .item {
    width: calc(100% - 30px);
  }
}
.stickers_advantages .item .icon {
  width: 50px;
  margin-right: 15px;
  flex-shrink: 0;
}
.stickers_advantages .item .icon img {
  vertical-align: bottom;
}
.stickers_advantages .item p {
  font-size: 20px;
  font-weight: 100;
}

.news {
  padding: 60px 0;
}
@media screen and (max-width: 1024px) {
  .news {
    padding: 80px 30px;
  }
}
@media screen and (max-width: 768px) {
  .news {
    padding: 60px 0;
  }
}
.news .swiper-button-next:after,
.news .swiper-button-prev:after,
.news .swiper-button-prev:after,
.news .swiper-button-next:after {
  content: none;
}
.news .swiper-button-prev,
.news .swiper-button-next {
  transform: translateY(-30px);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2ea885;
  border-radius: 50%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.news .swiper-wrapper {
  padding-bottom: 30px;
}
.news .swiper-slide {
  display: flex;
  justify-content: center;
}
.news .item {
  display: block;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  overflow: hidden;
  padding-bottom: 15px;
  color: #000;
  max-width: 350px;
}
.news .item .img {
  height: 200px;
  background-color: #2ea885;
}
.news .item .date {
  padding: 10px 30px;
  font-size: 12px;
  font-weight: 500;
  color: #292929;
  opacity: 0.6;
}
.news .item h3 {
  padding: 10px 20px;
  padding-top: 0;
  font-size: 18px;
  font-weight: bold;
}
.news .item p {
  padding: 10px 20px;
}

footer {
  padding: 60px 0;
  background-color: #f4f7ff;
  color: rgb(128, 128, 128);
}
@media screen and (max-width: 1024px) {
  footer {
    padding: 80px 30px;
  }
}
@media screen and (max-width: 768px) {
  footer {
    padding: 60px 0;
  }
}
footer .col {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
}
footer .col_logo {
  width: calc(33.3333333333% - 30px);
}
@media screen and (max-width: 768px) {
  footer .col_logo {
    width: calc(50% - 30px);
  }
}
@media screen and (max-width: 576px) {
  footer .col_logo {
    width: calc(104.1666666667% - 30px);
  }
}
@media screen and (max-width: 768px) {
  footer .col_logo {
    margin-bottom: 30px;
  }
}
footer .col_logo .footer_logo {
  font-size: 30px;
  font-weight: bold;
  color: #000;
}
footer .col_logo .footer_sublogo {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 30px;
}
footer .col_logo .copy {
  font-size: 13px;
}
footer .col_menu {
  width: calc(22.2222222222% - 30px);
}
@media screen and (max-width: 768px) {
  footer .col_menu {
    width: calc(50% - 30px);
  }
}
@media screen and (max-width: 768px) {
  footer .col_menu.col_menu_1 {
    width: calc(100% - 30px);
  }
}
@media screen and (max-width: 768px) {
  footer .col_menu {
    margin-bottom: 30px;
  }
}
footer .col_menu .col_title {
  font-size: 15px;
  margin-bottom: 20px;
  color: #000;
  font-weight: 600;
}
footer .col_menu li {
  margin-bottom: 20px;
}
footer .col_menu li a {
  color: rgb(128, 128, 128);
  font-size: 14px;
  opacity: 0.7;
}

.modal-calc {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(38, 38, 38, 0.337254902);
  z-index: 111;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 10vh 0;
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease;
  perspective: 1000px;
}
@media screen and (max-width: 768px) {
  .modal-calc {
    align-items: center;
    padding: 0;
  }
}
.modal-calc.active {
  opacity: 1;
  visibility: visible;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.modal-calc.active .content {
  transform: translateY(0px) scale(1);
}
.modal-calc .title {
  font-size: 24px;
  font-weight: 500;
  margin: 0 30px;
  margin-bottom: 30px;
  text-align: center;
  color: #fff;
}
.modal-calc .content {
  width: 550px;
  max-width: calc(100% - 30px);
  padding: 50px;
  background-color: #1a1a1a;
  border-radius: 3rem;
  position: relative;
  transform: translateY(60px) scale(1.1);
  transition: transform 300ms ease;
}
@media screen and (max-width: 768px) {
  .modal-calc .content {
    padding: 30px 15px;
    padding-top: 60px;
    border-radius: 1rem;
  }
}
.modal-calc .content .close_btn {
  position: absolute;
  top: 20px;
  right: 40px;
}
@media screen and (max-width: 768px) {
  .modal-calc .content .close_btn {
    right: 20px;
  }
}
.modal-calc .content .close_btn button {
  border: none;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  width: 40px;
  height: 40px;
  padding: 10px;
  cursor: pointer;
}
.modal-calc .content .close_btn button img {
  width: 20px;
}
.modal-calc .content label.input {
  display: block;
  position: relative;
  height: 50px;
  margin-bottom: 30px;
}
.modal-calc .content label.input p {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  font-size: 16px;
  color: #fff;
  background-color: #1a1a1a;
  z-index: 10;
  padding: 0 5px;
  line-height: 1;
  transition: left 300ms ease, top 300ms ease, color 300ms ease, font-size 300ms ease;
}
.modal-calc .content label.input span {
  color: red;
}
.modal-calc .content label.input input {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 10;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background-color: transparent;
  border: 1px solid red;
  padding-left: 20px;
  border-radius: 3px;
  color: #fff;
  transition: border-color 300ms ease;
}
.modal-calc .content label.input textarea {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 10;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background-color: transparent;
  border-bottom: 1px solid #fff;
  padding-left: 15px;
  color: #fff;
  resize: none;
}
.modal-calc .content label.input textarea::-moz-placeholder {
  color: #fff;
  font-size: 14px;
}
.modal-calc .content label.input textarea::placeholder {
  color: #fff;
  font-size: 14px;
}
.modal-calc .content label.input:focus-within p {
  top: 0;
  left: 15px;
  color: #fff;
  font-size: 12px;
}
.modal-calc .content label.input.focused p, .modal-calc .content label.input.filled p {
  transition: none;
  top: 0;
  left: 15px;
  font-size: 12px;
}
.modal-calc .content .btn {
  text-align: center;
}
.modal-calc .content .btn button {
  display: inline-flex;
  align-items: center;
}
.modal-calc .content .btn button .inner {
  position: relative;
}
.modal-calc .content .btn button .loader {
  position: absolute;
  top: 50%;
  left: 100%;
  width: 15px;
  margin-left: 5px;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 300ms ease;
}
.modal-calc .content .btn button .loader svg path,
.modal-calc .content .btn button .loader svg rect {
  fill: #fff;
}

.alert {
  position: fixed;
  bottom: 30px;
  right: 0;
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  padding: 10px 15px;
  font-weight: bold;
  width: 350px;
  transform: translateX(100%);
  transition: all 700ms ease;
  z-index: 160;
}
@media screen and (max-width: 768px) {
  .alert {
    text-align: center;
    transform: translateX(50%) translateY(150px);
    right: 50%;
  }
}

.alert.show {
  transform: translateX(-50px);
}
@media screen and (max-width: 768px) {
  .alert.show {
    transform: translateX(50%) translateY(0px);
  }
}/*# sourceMappingURL=style.css.map */