.nav-bar {
  position: absolute;
  background-color: #F4F4F8;
  top: 0;
  right: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  justify-content: center;
  display: none;
  align-items: center;
  translate: -100%;
  transition: all 0.9s;
}
@media only screen and (max-width: 900px) {
  .nav-bar {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 5px;
  }
}

@media only screen and (max-width: 900px) {
  .nav-adaptive {
    gap: 50px;
  }
}

.toggle {
  translate: 0%;
  box-shadow: 1px 0 15px 2px #ffba08;
}

.toggle-menu {
  background-color: transparent;
  position: fixed;
  top: 25px;
  right: 20px;
  width: 40px;
  height: 30px;
  display: none;
  flex-direction: column;
  justify-content: space-around;
  padding: 2px 2px 2px 3px;
  border-radius: 5px;
  cursor: pointer;
  z-index: 200;
}
@media only screen and (max-width: 900px) {
  .toggle-menu {
    display: flex;
  }
}

.line {
  width: 100%;
  height: 3px;
  border-radius: 5px;
  background-color: white;
  transition: transform 0.2s ease-out;
}

.toggle-btn .line1 {
  background-color: #3f88c5;
  transform: scale(0.9) rotateZ(-45deg) translate(-6px, 6px);
}

.toggle-btn .line2 {
  display: none;
}

.toggle-btn .line3 {
  background-color: #3f88c5;
  transform: scale(0.9) rotateZ(45deg) translate(-6px, -6px);
}

.toggle-btn.toggle-menu {
  background-color: white;
}

.nav-list {
  list-style: none;
}

.nav-list-item {
  text-align: center;
  padding: 10px 0;
}

.nav-link {
  color: black;
  font-size: 22px;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
}
.nav-link:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: white;
  transform: scaleX(0);
  transition: transform 0.4s ease-in-out;
  transform-origin: left;
}
.nav-link:before:hover {
  transform: scaleX(1);
}

.modal {
  z-index: 300;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  display: none;
  justify-content: center;
  align-items: center;
}
.modal h3 {
  color: black;
}
.modal__form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 25px;
}
.modal__form input {
  padding: 20px;
  border-radius: 10px;
  border: 2px solid #ffba08;
}
.modal__content {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 400px;
  max-height: 400px;
  width: 100%;
  height: 100%;
  background-color: #F4F4F8;
  padding: 60px 30px;
  position: relative;
  animation: visible 1s 1;
  animation-fill-mode: forwards;
  border-radius: 20px;
  border: 2px solid white;
  margin: 20px;
}
.modal__wrapper {
  opacity: 0;
  animation: toRight 1s 500ms;
  animation-fill-mode: forwards;
}

@keyframes visible {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes toRight {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.close {
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  font-size: 30px;
  padding: 30px;
  cursor: pointer;
  transition: all 0.3s;
  color: black;
}
.close:hover {
  transform: rotate(-90deg) scale(1.3);
}

.submit {
  display: block;
  margin: 30px auto 0;
}

.button-82-pushable {
  position: relative;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  outline-offset: 4px;
  transition: filter 250ms;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-82-shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: t(0deg 0% 0%/0.25);
  will-change: transform;
  transform: translateY(2px);
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

.button-82-edge {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: linear-gradient(#3f88c5, #ffba08);
}

.button-82-front {
  display: block;
  position: relative;
  padding: 12px 27px;
  border-radius: 12px;
  font-size: 1.1rem;
  color: white;
  background: #3f88c5;
  will-change: transform;
  transform: translateY(-4px);
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

@media (min-width: 768px) {
  .button-82-front {
    font-size: 1.25rem;
    padding: 12px 42px;
  }
}
.button-82-pushable:hover {
  filter: brightness(110%);
  -webkit-filter: brightness(110%);
}

.button-82-pushable:hover .button-82-front {
  transform: translateY(-2px);
  transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
}

.button-82-pushable:active .button-82-front {
  transform: translateY(-2px);
  transition: transform 34ms;
}

.button-82-pushable:hover .button-82-shadow {
  transform: translateY(4px);
  transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
}

.button-82-pushable:active .button-82-shadow {
  transform: translateY(1px);
  transition: transform 34ms;
}

.button-82-pushable:focus:not(:focus-visible) {
  outline: none;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: black;
  overflow-x: hidden;
}

.icon-size {
  font-size: 25px;
  margin-right: 10px;
}

.container {
  box-sizing: border-box;
  max-width: 1200px;
  padding: 10px 10px;
  margin: 0 auto;
}

.title {
  font-weight: 300;
  font-size: 220%;
  text-align: center;
}
.title :after {
  display: block;
  width: 15%;
  background-color: #3f88c5;
  height: 2px;
  content: " ";
  margin-left: 42.5%;
  margin-top: 30px;
}
.title--color {
  color: white;
}

.logo {
  -o-object-fit: cover;
     object-fit: cover;
  width: 300px;
  height: 80px;
}
@media only screen and (max-width: 1050px) {
  .logo {
    width: 200px;
    height: 60px;
  }
}
@media only screen and (max-width: 900px) {
  .logo {
    width: 300px;
    height: 60px;
  }
}
@media only screen and (max-width: 500px) {
  .logo {
    width: 200px;
  }
}
.logo--bg {
  background: #000;
  border-radius: 20px;
}
.logo--size {
  width: 300px;
}

.header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 111;
  background-color: rgba(0, 0, 0, 0.466);
  color: rgb(255, 255, 255);
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 50px;
}

.intro {
  position: relative;
  height: 100%;
  justify-content: center;
  background-image: url(/assets/intro.jpg);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}
.intro::after {
  content: "";
  position: absolute;
  background: black;
  opacity: 0.5;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.intro__content {
  min-height: calc(77vh - 103px);
  position: relative;
  z-index: 1;
  margin: 0 auto;
  margin-top: 103px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgb(255, 255, 255);
  padding: 0 50px;
}
@media only screen and (max-width: 1000px) {
  .intro__content {
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    padding: 0 0 70px 0;
  }
}
@media only screen and (max-width: 600px) {
  .intro__content {
    padding: 0 0 70px 0;
    gap: 25px;
  }
}
.intro__content--title {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media only screen and (max-width: 600px) {
  .intro__content--title {
    text-align: center;
  }
}
.intro__content--title h1 {
  max-width: 400px;
  font-size: 60px;
}
@media only screen and (max-width: 1000px) {
  .intro__content--title h1 {
    text-align: center;
  }
}
@media only screen and (max-width: 600px) {
  .intro__content--title h1 {
    font-size: 42px;
    display: block;
    align-items: center;
  }
}
.intro__content--title p {
  max-width: 400px;
  font-size: 16px;
}
@media only screen and (max-width: 1000px) {
  .intro__content--title p {
    text-align: center;
  }
}
@media only screen and (max-width: 600px) {
  .intro__content--title p {
    font-size: 16px;
  }
}
.intro__content--form {
  max-width: 400px;
  width: 100%;
}
.intro__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}
@media only screen and (max-width: 600px) {
  .intro__form {
    text-align: center;
    gap: 10px;
  }
}
.intro__form h2 {
  font-size: 30px;
}
.intro__input {
  font-size: 18px;
  padding: 17px 20px;
  max-width: 400px;
  width: 100%;
  border-radius: 10px;
  box-sizing: border-box;
  border: 1px solid #ffba08;
}
@media only screen and (max-width: 600px) {
  .intro__input {
    padding: 13px 20px;
  }
}
@media only screen and (max-width: 600px) {
  .intro__button {
    margin-top: 20px;
  }
}

.counters {
  min-height: 23vh;
  height: 100%;
}

.wrapper {
  width: 100%;
  max-width: 980px;
  margin: 30px auto;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.counter {
  background-color: transparent;
  padding: 20px 0;
  border-radius: 5px;
  width: 100%;
  max-width: 230px;
}

.count-title {
  font-size: 50px;
  font-weight: normal;
  margin-top: 10px;
  margin-bottom: 0;
  text-align: center;
  color: white;
}

.count-text {
  font-size: 16px;
  font-weight: normal;
  margin-top: 15px;
  margin-bottom: 0;
  text-align: center;
  color: white;
}

.questions {
  background: #F4F4F8;
  padding: 50px 0;
}
.questions__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.questions__title {
  font-size: 30px;
  margin-bottom: 50px;
}
.questions__items {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 50px;
  margin-top: 50px;
}
@media only screen and (max-width: 1000px) {
  .questions__items {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media only screen and (max-width: 600px) {
  .questions__items {
    flex-direction: column;
  }
}
.questions__item {
  width: calc(25% - 15px);
  position: relative;
  background: #3f88c5;
  border-radius: 10px;
  padding: 35px;
  color: black;
}
@media only screen and (max-width: 600px) {
  .questions__item {
    align-items: center;
    width: 80%;
    padding: 30px;
    height: 100%;
  }
}
.questions__item-icon {
  position: absolute;
  top: -23px;
  left: 35px;
  background: #ffba08;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.questions__item-icon img {
  height: 17px;
  -o-object-fit: cover;
     object-fit: cover;
}
.questions__item-descr {
  font-size: 14px;
}
.questions__item-name {
  font-size: 24px;
  margin-bottom: 10px;
}

.services {
  padding: 50px 0;
  background-color: #F4F4F8;
  height: 100%;
}
.services__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 1000px) {
  .services__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 800px) {
  .services__cards {
    grid-template-columns: repeat(1, 1fr);
  }
}
.services__card {
  margin-top: 30px;
  width: 90%;
  margin-left: 5%;
  background-color: white;
  border-radius: 10px;
  box-shadow: 3px 3px 5px 1px #E6E6EA;
  transition: box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.services__card:hover {
  box-shadow: 4px 4px 10px 2px #E6E6EA;
}
.services__card ul li {
  margin-bottom: 10px;
}
.services__card i {
  display: inline-block;
  color: #3f88c5;
  padding-right: 10px;
}

.service__card-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  border-bottom: 1px solid #F4F4F8;
}
.service__card-list {
  margin-bottom: auto;
  margin-top: 0;
  padding: 5%;
}
.service__card-list:first-child {
  background-color: white;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.service__card-list:last-child {
  border: 0;
  text-align: center;
}
.service__card-price {
  color: #3f88c5;
  font-weight: 100;
  font-size: 350%;
}
.service__card-price span {
  font-size: 30%;
  font-weight: 300;
}
.service__card-description {
  padding: 0 5px;
  text-align: center;
  display: block;
  font-size: 100%;
}

.icon-small {
  font-size: 150%;
  line-height: 120%;
  vertical-align: middle;
}

.button-wrapper {
  margin: auto auto 25px;
  border-top: 1px solid #F4F4F8;
  width: 100%;
  padding-top: 20px;
  display: flex;
  justify-content: center;
}

.feedback {
  position: relative;
  padding: 50px 0;
}
.feedback__wrapper {
  display: flex;
  position: relative;
  z-index: 4;
  justify-content: center;
  margin: 30px 0;
}
@media only screen and (max-width: 1000px) {
  .feedback__wrapper {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}
.feedback__images {
  padding-right: 150px;
}
@media only screen and (max-width: 1000px) {
  .feedback__images {
    padding-right: 0;
  }
}
.feedback__images img {
  max-width: 600px;
  max-height: 600px;
  width: 100%;
  height: 100%;
}
.feedback__info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 30px;
  gap: 30px;
}
@media only screen and (max-width: 1080px) {
  .feedback__info {
    justify-content: center;
  }
}
@media only screen and (max-width: 670px) {
  .feedback__info {
    justify-content: flex-start;
  }
}
.feedback__box {
  padding: 20px;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.feedback__box--icon {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  min-width: 40px;
  min-height: 40px;
  border: 2px solid white;
  border-radius: 50%;
}
.feedback__box--icon:hover {
  color: #ffba08;
}
.feedback__box--text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.feedback__box--title {
  display: flex;
  flex-direction: column;
  font-size: 18px;
}
.feedback__box--description {
  font-size: 18px;
  display: block;
  color: white;
}
.feedback__box--description:hover {
  color: #ffba08;
}
@media only screen and (max-width: 600px) {
  .feedback__box--description {
    font-size: 16px;
    text-align: start;
  }
}

.steps {
  padding: 50px 0;
}
.steps__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
}
@media only screen and (max-width: 1000px) {
  .steps__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 800px) {
  .steps__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}
.steps__item {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
}
.steps__item-number {
  top: 20%;
  transform: translateY(-40%);
  position: relative;
  color: #ffba08;
  opacity: 0.3;
  font-size: 132px;
}
.steps__item-name {
  color: white;
  margin-bottom: 15px;
  font-size: 25px;
  max-width: 80%;
}
.steps__item-descr {
  color: white;
  line-height: 1.352;
  width: 80%;
  font-size: 16px;
}

.check {
  padding: 50px 0;
  background: white;
}
.check__inner {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  box-sizing: border-box;
}
.check__inner img {
  max-width: 800px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.check__text {
  color: black;
  font-size: 24px;
  right: 15px;
  bottom: 65px;
  z-index: 2;
}
.check__info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.check__title {
  font-size: 18px;
}

.check-parametr {
  position: absolute;
}
.check-parametr.active .check-parametr__circle::before {
  width: 30px;
  height: 30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='43' height='43' viewBox='0 0 43 43' fill='none'%3E%3Ccircle cx='21.0993' cy='21.0993' r='21.0993' fill='%233f88c5'/%3E%3Ccircle cx='21.0993' cy='21.0991' r='12' fill='white'/%3E%3C/svg%3E");
}
.check-parametr.active .check-parametr__info {
  display: block;
  z-index: 2;
}
.check-parametr__info {
  display: none;
  background: #131313;
  opacity: 0.8;
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 10px 20px;
  max-width: 350px;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  left: 70px;
  top: 50%;
  translate: 0 -50%;
}
@media only screen and (max-width: 1000px) {
  .check-parametr__info {
    max-width: 150px;
  }
}
@media only screen and (max-width: 830px) {
  .check-parametr__info {
    max-width: 200px;
    left: -50px;
    top: 50%;
    translate: 0;
  }
}
@media only screen and (max-width: 600px) {
  .check-parametr__info {
    max-width: 130px;
    padding: 10px 10px;
  }
}
.check-parametr__info .show {
  display: block;
}
.check-parametr__circle {
  cursor: pointer;
  width: 50px;
  height: 50px;
  position: relative;
}
.check-parametr__circle:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='70' height='70' viewBox='0 0 70 70' fill='none'%3E%3Ccircle cx='35' cy='35.0002' r='21.0993' fill='%23FFC530'/%3E%3Ccircle cx='35' cy='35.0002' r='21.0993' fill='%23FFC530'/%3E%3Ccircle cx='35' cy='35' r='27.3032' stroke='%23ffba08' stroke-width='0.5'/%3E%3Ccircle cx='35' cy='35' r='34.75' stroke='%23ffba08' stroke-width='0.5'/%3E%3C/svg%3E");
}
@media only screen and (max-width: 600px) {
  .check-parametr__circle:before {
    width: 40px;
    height: 40px;
    top: 25%;
  }
}
@media only screen and (max-width: 500px) {
  .check-parametr__circle:before {
    width: 30px;
    height: 30px;
    top: 10%;
  }
}
@media only screen and (max-width: 400px) {
  .check-parametr__circle:before {
    width: 25px;
    height: 25px;
    top: -10%;
  }
}
.check-parametr__name {
  color: white;
  font-size: 24px;
  font-family: "montserrat-v18-latin_cyrillic-ext_cyrillic-700";
  margin-bottom: 5px;
  white-space: nowrap;
}
@media only screen and (max-width: 830px) {
  .check-parametr__name {
    font-size: 16px;
    font-weight: 700;
  }
}
@media only screen and (max-width: 600px) {
  .check-parametr__name {
    font-size: 14px;
    font-weight: 700;
  }
}
.check-parametr__descr {
  color: white;
  font-size: 14px;
  line-height: 1.552;
}
@media only screen and (max-width: 830px) {
  .check-parametr__descr {
    font-size: 13px;
    font-weight: 500;
  }
}
@media only screen and (max-width: 600px) {
  .check-parametr__descr {
    font-size: 12px;
  }
}

.parametr-1 {
  left: 15%;
  top: 56%;
}

.parametr-2 {
  left: 7%;
  top: 68%;
}

.parametr-3 {
  left: 36%;
  top: 60%;
}

.parametr-4 {
  left: 25%;
  top: 50%;
}

.parametr-5 {
  left: 45%;
  top: 40%;
}

.parametr-6 {
  left: 22%;
  top: 66%;
}

.parametr-7 {
  left: 34%;
  top: 42%;
}

.parametr-8 {
  left: 34%;
  top: 27%;
}

.parametr-9 {
  left: 53%;
  top: 15%;
}

.parametr-10 {
  left: 60%;
  top: 60%;
}

.parametr-11 {
  left: 75%;
  top: 42%;
}

.parametr-12 {
  left: 68%;
  top: 33%;
}

.we {
  padding: 50px 0;
  background: #F4F4F8;
}
.we__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.we__items {
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  padding: 20px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 800px) {
  .we__items {
    flex-direction: column;
  }
}
.we__item {
  position: relative;
  display: flex;
  gap: 10px;
  flex-direction: column;
  justify-content: space-between;
  max-width: 31%;
  width: 100%;
}
@media only screen and (max-width: 800px) {
  .we__item {
    max-width: 100%;
    margin-bottom: 30px;
  }
}
.we__img {
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 4px;
}
.we__num {
  position: absolute;
  top: 0%;
  right: 10%;
  color: #ffba08;
  opacity: 0.3;
  font-size: 122px;
}
.we__icon {
  max-width: 150px;
  max-height: 150px;
  width: 100%;
  height: 100%;
}
.we__button {
  padding-top: 30px;
}

.guarantee {
  padding: 50px 0;
}
.guarantee__list {
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  gap: 30px;
}
@media only screen and (max-width: 800px) {
  .guarantee__list {
    flex-direction: column;
  }
}
.guarantee__item {
  position: relative;
  display: flex;
  gap: 20px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  max-width: 31%;
  width: 100%;
  background: #F4F4F8;
  border-radius: 10px;
}
@media only screen and (max-width: 800px) {
  .guarantee__item {
    max-width: 800px;
    width: 95%;
  }
}
@media only screen and (max-width: 600px) {
  .guarantee__item {
    max-width: 600px;
    width: 95%;
  }
}
.guarantee__title {
  font-size: 18px;
}
.guarantee__img {
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 4px;
}
.guarantee__num {
  position: absolute;
  top: 30%;
  left: 30%;
  color: #ffba08;
  opacity: 0.3;
  font-size: 122px;
}
.guarantee__icon {
  max-width: 150px;
  max-height: 150px;
  width: 100%;
  height: 100%;
}

.nav {
  font-size: 16px;
  line-height: 20px;
}
.nav__container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media only screen and (max-width: 900px) {
  .nav__container {
    display: none;
  }
}
.nav__work--time {
  text-align: center;
  color: white;
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 20px;
}
@media only screen and (max-width: 1000px) {
  .nav__work--time {
    justify-content: center;
    gap: 10px;
  }
}
.nav__items {
  gap: 10px;
  font-size: 18px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1000px) {
  .nav__items {
    gap: 5px;
  }
}
.nav__item {
  padding: 10px 10px;
}
.nav__link {
  display: flex;
  font-size: 16px;
  transition: all 0.4s ease;
  color: white;
}
.nav__link:hover {
  color: #3f88c5;
}
.nav__link--size {
  display: none;
  text-align: center;
  margin-top: 30px;
  font-size: 26px;
  color: white;
}
@media only screen and (max-width: 900px) {
  .nav__link--size {
    display: block;
  }
}
.nav__link--color {
  color: black;
}
.nav__link--social {
  font-size: 50px;
  color: white;
}
.nav__link--social:hover {
  color: #3f88c5;
  cursor: pointer;
}
.nav__link--social-color {
  color: black;
}
.nav__link--phone {
  padding: 15px 35px;
  border-radius: 12px;
  font-size: 1.1rem;
  color: black;
  background: #F4F4F8;
  transition: all 0.5s ease;
}
@media only screen and (max-width: 1000px) {
  .nav__link--phone {
    padding: 15px 20px;
  }
}
.nav__link--phone:hover {
  background: linear-gradient(#3f88c5, #3f88c5);
  color: white;
}
.nav__link-color {
  background: #ffba08;
}
.nav__contacts {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media only screen and (max-width: 900px) {
  .nav__contacts {
    display: none;
  }
  .nav__contacts--mobile {
    display: flex;
    flex-direction: column;
  }
}

.accordions {
  background: #F4F4F8;
  padding: 50px 0;
}

.accordion {
  margin-top: 30px;
  font-size: "Montserrat", sans-serif;
}
.accordion .accordion-item {
  border-bottom: 1px solid #E6E6EA;
}
.accordion .accordion-item button[aria-expanded=true] {
  border-bottom: 1px solid #3f88c5;
}
.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 16px 0;
  color: black;
  font-size: 18px;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}
.accordion button:hover, .accordion button:focus {
  cursor: pointer;
  color: #3f88c5;
}
.accordion button:hover::after, .accordion button:focus::after {
  cursor: pointer;
  color: #3f88c5;
  border: 1px solid #3f88c5;
}
.accordion button .accordion-title {
  padding-right: 40px;
  display: block;
}
.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}
.accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 10px;
  left: 6px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 6px;
  left: 10px;
  width: 2px;
  height: 10px;
  background: currentColor;
}
.accordion button[aria-expanded=true] {
  color: #3f88c5;
}
.accordion button[aria-expanded=true] .icon::after {
  width: 0;
}
.accordion button[aria-expanded=true] + .accordion-content {
  opacity: 1;
  max-height: 1000px;
  transition: all 700ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content p {
  font-size: 16px;
  font-weight: 300;
  margin: 32px 0;
}

.slider {
  padding: 50px 0;
}

.testimonials-slider {
  width: 95%;
  position: relative;
  max-width: 800px;
  margin: auto;
  background: #fff;
  box-shadow: 0px 14px 80px #E6E6EA;
  padding: 25px;
  border-radius: 25px;
  height: 400px;
  transition: all 0.3s;
  margin-top: 25px;
}
@media only screen and (max-width: 992px) {
  .testimonials-slider {
    max-width: 600px;
    height: 400px;
  }
}
@media only screen and (max-width: 768px) {
  .testimonials-slider {
    min-height: 500px;
    height: auto;
    margin: 180px auto;
    max-width: 375px;
    width: 80%;
  }
}
@media only screen and (max-width: 768px) and (max-width: 600px) {
  .testimonials-slider {
    margin: 90px auto;
  }
}
.testimonials-slider__item {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .testimonials-slider__item {
    flex-direction: column;
  }
}
.testimonials-slider__item.swiper-slide-active .testimonials-slider__img img {
  opacity: 1;
  transition-delay: 0.3s;
}
.testimonials-slider__item.swiper-slide-active .testimonials-slider__content > * {
  opacity: 1;
  transform: none;
}
.testimonials-slider__item.swiper-slide-active .testimonials-slider__content > *:nth-child(1) {
  transition-delay: 0.3s;
}
.testimonials-slider__item.swiper-slide-active .testimonials-slider__content > *:nth-child(2) {
  transition-delay: 0.4s;
}
.testimonials-slider__item.swiper-slide-active .testimonials-slider__content > *:nth-child(3) {
  transition-delay: 0.5s;
}
.testimonials-slider__item.swiper-slide-active .testimonials-slider__content > *:nth-child(4) {
  transition-delay: 0.6s;
}
.testimonials-slider__item.swiper-slide-active .testimonials-slider__content > *:nth-child(5) {
  transition-delay: 0.7s;
}
.testimonials-slider__item.swiper-slide-active .testimonials-slider__content > *:nth-child(6) {
  transition-delay: 0.8s;
}
.testimonials-slider__item.swiper-slide-active .testimonials-slider__content > *:nth-child(7) {
  transition-delay: 0.9s;
}
.testimonials-slider__item.swiper-slide-active .testimonials-slider__content > *:nth-child(8) {
  transition-delay: 1s;
}
.testimonials-slider__item.swiper-slide-active .testimonials-slider__content > *:nth-child(9) {
  transition-delay: 1.1s;
}
.testimonials-slider__item.swiper-slide-active .testimonials-slider__content > *:nth-child(10) {
  transition-delay: 1.2s;
}
.testimonials-slider__item.swiper-slide-active .testimonials-slider__content > *:nth-child(11) {
  transition-delay: 1.3s;
}
.testimonials-slider__item.swiper-slide-active .testimonials-slider__content > *:nth-child(12) {
  transition-delay: 1.4s;
}
.testimonials-slider__item.swiper-slide-active .testimonials-slider__content > *:nth-child(13) {
  transition-delay: 1.5s;
}
.testimonials-slider__item.swiper-slide-active .testimonials-slider__content > *:nth-child(14) {
  transition-delay: 1.6s;
}
.testimonials-slider__item.swiper-slide-active .testimonials-slider__content > *:nth-child(15) {
  transition-delay: 1.7s;
}
.testimonials-slider__img {
  width: 300px;
  flex-shrink: 0;
  height: 300px;
  background-image: linear-gradient(147deg, #ffba08 0%, #3f88c5 74%);
  box-shadow: 4px 13px 30px 1px rgba(63, 136, 197, 0.4);
  border-radius: 20px;
  transform: translateX(-80px);
  overflow: hidden;
}
.testimonials-slider__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  opacity: 0;
  border-radius: 20px;
  transition: all 0.3s;
}
@media only screen and (max-width: 992px) {
  .testimonials-slider__img {
    width: 45%;
    height: 270px;
  }
}
@media only screen and (max-width: 768px) {
  .testimonials-slider__img {
    transform: translateY(-50%);
    width: 90%;
  }
}
@media only screen and (max-width: 576px) {
  .testimonials-slider__img {
    width: 95%;
  }
}
.testimonials-slider__content {
  padding-right: 25px;
}
@media only screen and (max-width: 768px) {
  .testimonials-slider__content {
    margin-top: -80px;
    text-align: center;
    padding: 0 30px;
  }
}
@media only screen and (max-width: 576px) {
  .testimonials-slider__content {
    padding: 0;
  }
}
.testimonials-slider__content > * {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.4s;
}
.testimonials-slider__code {
  color: #3f88c5;
  margin-bottom: 15px;
  display: block;
  font-weight: 500;
  margin-top: 15px;
}
.testimonials-slider__title {
  font-size: 24px;
  font-weight: 700;
  color: black;
  margin-bottom: 20px;
}
.testimonials-slider__text {
  color: black;
  margin-bottom: 30px;
  line-height: 1.5em;
}
.testimonials-slider .swiper-container-horizontal > .swiper-pagination-bullets,
.testimonials-slider .swiper-pagination-custom,
.testimonials-slider .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}
.testimonials-slider__pagination {
  position: absolute;
  z-index: 21;
  right: 20px;
  width: 11px !important;
  text-align: center;
  left: auto !important;
  top: 50%;
  bottom: auto !important;
  transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  .testimonials-slider__pagination {
    transform: translateX(-50%);
    left: 50% !important;
    top: 205px;
    width: 100% !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.testimonials-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 8px 0;
}
@media screen and (max-width: 768px) {
  .testimonials-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
  }
}
.testimonials-slider__pagination .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  display: block;
  border-radius: 10px;
  background: #3f88c5;
  opacity: 0.2;
  transition: all 0.3s;
}
.testimonials-slider__pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #3f88c5;
  height: 30px;
  box-shadow: 0px 0px 20px #3f88c5;
}
@media only screen and (max-width: 768px) {
  .testimonials-slider__pagination .swiper-pagination-bullet-active {
    height: 11px;
    width: 30px;
  }
}

.about {
  position: relative;
  padding: 50px 0;
}
.about__wrapper {
  display: flex;
  justify-content: center;
  z-index: 4;
  position: relative;
  margin: 30px 0;
  align-items: center;
}
@media only screen and (max-width: 1000px) {
  .about__wrapper {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}
.about__images {
  padding-right: 150px;
}
@media only screen and (max-width: 1000px) {
  .about__images {
    padding-right: 0;
  }
}
.about__images img {
  max-width: 600px;
  max-height: 600px;
  width: 100%;
  height: 100%;
}

.overlay-guarantee {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 20;
  transition: 0.3s all;
}

.modal-guarantee {
  opacity: 0;
  visibility: hidden;
  width: 80%;
  max-width: 500px;
  position: fixed;
  height: -moz-max-content;
  height: max-content;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 300;
  box-shadow: 0 3px 10px -0.5px rgba(0, 0, 0, 0.8);
  text-align: center;
  padding: 20px;
  border-radius: 20px;
  background-color: #F4F4F8;
  transition: 0.3s all;
}
@media only screen and (max-width: 600px) {
  .modal-guarantee {
    padding: 10px;
  }
}
.modal-guarantee__title {
  margin: 20px;
  text-align: start;
}
.modal-guarantee__title h2 {
  font-size: 20px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 600px) {
  .modal-guarantee__title h2 {
    font-size: 16px;
  }
}
.modal-guarantee__title h3 {
  font-size: 18px;
  margin-bottom: 5px;
}
@media only screen and (max-width: 600px) {
  .modal-guarantee__title h3 {
    font-size: 14px;
  }
}
.modal-guarantee__title h3 {
  font-size: 18px;
  margin-bottom: 5px;
}
@media only screen and (max-width: 600px) {
  .modal-guarantee__title h3 {
    font-size: 16px;
  }
}
.modal-guarantee__title p {
  font-size: 18px;
  margin-bottom: 5px;
}
@media only screen and (max-width: 600px) {
  .modal-guarantee__title p {
    font-size: 14px;
  }
}
.modal-guarantee__title ul {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.modal-guarantee__title li {
  font-size: 16px;
  margin-bottom: 5px;
  list-style-type: square;
}
@media only screen and (max-width: 600px) {
  .modal-guarantee__title li {
    font-size: 14px;
  }
}

.modal-guarantee.active,
.overlay-guarantee.active {
  opacity: 1;
  visibility: visible;
}

.modal__cross {
  width: 15px;
  height: 15px;
  position: absolute;
  top: 20px;
  right: 20px;
  fill: #444;
  cursor: pointer;
}
.modal__cross:hover {
  transform: rotate(-90deg) scale(1.3);
}

.backwrap {
  background: #6ab3ee;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
}

.back-shapes {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.back-shapes img {
  opacity: 0.1;
  position: absolute;
  width: 1.5%;
}

.floating {
  position: absolute;
  animation-name: floating;
  -webkit-animation-name: floating;
  animation-duration: 5s;
  -webkit-animation-duration: 5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
.floating.circle {
  display: inline-block;
  width: 39px;
  height: 39px;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAYAAACMo1E1AAAABHNCSVQICAgIfAhkiAAAA0pJREFUWIXdmL1O40AQx8fZ5BxQCqRrLqKxqKjAOl0JvMHxBIjHyCu4dGkJ+khpQNa9QeTyZIkihbtYCKWwbC1KFXbtvYJxbrIYMOBD1o20UhDe//x2dnb2w1BKQVut25SQYRhG+Vs1NGLjvToI0yHNwKawFWV7L+yb4AhQFwC6QRB8tyzrxDTN3V6vN2SMfc3zPBVCLFar1d18Pp8eHR2FACCxvQ1UKfVqg8eIMADo+75/kKbphRDiVtUwIcRtmqYXvu8fAEAfdYxafmuC9TzPs5IkuSyK4qEOlG5FUTwkSXLpeZ4FAL06gHXA+mEYnkops1f851LKe6VU/tJHUsosDMNTjOKLgK+CxXE8KopCVDjhWZZNZrPZ2Xg83rdtewcABrZt74zH4/3ZbHaWZdlESskroijiOB69BvgSmBnH8ahq9JzzK8dxLBTvweZqLRdNDwD6juNYnPOrKh0ENJ8DfDbHwjA81SMmpUyiKDoHgO06iU0W0nYURedSykSPIE5xZQ5WCTLP8yw9x5bL5dR13b26yVw1YNd195bL5VQbcIaLhL0IV+ZZkiSXesQQrPtWME2767runh7BJEkuq/LvSdR83z/QywVO5Zf3gmmAX6IoOtem9wHr4Eb09M5mmqYXtCPn/AoAtgCg8xEw4qMDAFv6IknT9AIAzEo4HNWAVn4pJcdV+SQfPgjIHMexaJkRQtwCwIDOzkaHIAiO6WiyLJvUKZbvnN5+lmUT6i8IgmMaiA7ZZpllWSd0310sFr8AIFeo2JShXo76a0P/rPybwhmmae7Sj29ubn4DQN4kGLEc9deG/tfnwo0wc86vSZRz3JIanVI6tbZt7yiyF3POr4Gk0QYcLZBSynvQEvQf5N0ADwtKqcdCT+HotEKe52n5mzE2sG27sWN8ldm23WWMDar8A2DOYYIqIcSC/m80Gn0DmgPNmoH66wChf1UuQBo5tVqt7mjvw8PDH0BWT8PGUH9t6H9dGShcPp/Pp/Tj4XD4EwAYvVk1YajHUH9t6P9vddATtJU7BHZq595ajqjNp5L2nufK6LXyJEyFWnmHIKLtu31pgO27t+qArbvxa4DteyvRAD/9lanV73P/z8tmDVgAaMGb8GfYHwpq7kYvpXclAAAAAElFTkSuQmCC");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0.2;
}
.floating.square {
  display: inline-block;
  width: 35px;
  height: 35px;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAjCAYAAAAe2bNZAAAABHNCSVQICAgIfAhkiAAAAUNJREFUWIXt2DFugzAUBuD/EVMGJMyQsZ3aA+QQ3ZjrIzKQgYWD5ACVOjRjBkBiSHF4XRJEIzmBCgiD/83Ysj9ZxrJNzIylRHQLREQAaMbxmTuz0WKUUk9Zlj0XRbHSWk8OEkKwlPKklNonSfLTYojISdP0JYqiz6kR16nr+o2Ivpi5cS4fy7JczQ25Hte51XDuCFOF1vpQVdWOiEb73ZiZfN/fCCHWgzBVVe3CMPwAcAQwBogAeHmeb6WU74Mw5xk5jozBrZk2Yjr5sxf8W0L3d4tFLWCLMcViTLEYUyzGFIsxxWJMsRhTFoXpc7iiPgejPv3ca2DEMDMB8C7FkTDeud9hGN/3N3meb6e4HQzGCCHWplP8VFnUAm4xQRCcHgHojisAgJkbpdS367qvc79CxHG8Z+YGAKh7JXr0+wwt6eXqFzNGfAM6wJFPAAAAAElFTkSuQmCC");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0.2;
}
.floating.triangle {
  display: inline-block;
  width: 35px;
  height: 35px;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACkAAAAjCAYAAAAJ+yOQAAAABHNCSVQICAgIfAhkiAAABARJREFUWIXNVj2IGlsU/sa/3XWDRWCICyFNTF4Rq7AQSJUmiKRN2rAuBlKlM03gRV4lj9hYmSLwigQMCA9iZcAmNrIpDLurNiNKoiiODE+HmXXezNz7ird3ubvPdf17cQ9MMXfunPud75zvniNQSnHZzbFqANPYUkEKguDY3t52C4Kw3OAppUt5ADjC4bBP1/U/w+GwD4Bjab6XBFAAsNZqtV5RSmmr1XoFYA2AcJlAOlOp1E3btgeUUmrb9iCVSt0E4LwUII9Z3FAU5T3lTFGU9wA2lsHmMkC6isXiA0qpTU+bXSwWHwBwrRQk/r0dNnVd/0rHmK7rXwFsLiqiRUF66vX6cx7Y0dGRxL/X6/XnADwrAQnAEYvF/KZpdhkgwzB+7O7u/mIYxg+2ZppmNxaL+Rdhc16AAoD1Xq+X4lmr1Wo7ADZrtdoOv97r9VIA1ucV0bwgnblc7i4hxGBANE0rHtefE8CmpmlF9o0QYuRyubvzXklzpRmAV1XVzxwIq1Ao3GdKBuAqFAr3CSEW26Oq6mcA3nnSPg9Id6VSecKns9/vv+PTycqh3++/4/dVKpUnANz/K0gAjlAodNUwjBMFW5alJBKJG2cZAuBIJBI3LMtS2F7DMKRQKHR1VjZnFctau91+zbPTbDZj510xADzNZjPG72+3269n7esziSWdTt+ybVtlB45Go0ogEDh34gHgCAQCvtFoVGH/2LatptPpW7OIaBYWNxRF+cizUi6XH13U9gC4yuXyI/4/RVE+ztLXpwXpKpVKDymlhB00GAw+TXMQC3AwGHzicJJSqfRw2r4+lVhEUbyi6/q3kxMIOcpkMsFpUwbAmclkgoSQI+ZD1/VvoihemUZE0xzgaTQaL/h0dTqdN7MUPxNdp9N5w/tpNBovpunrF7IYj8evW5YlM8emabaj0ei1ma8RwBGNRq+ZptlmvizLkuPx+PWLfF0U/bosy2/56CVJejbvVAPAI0nSM96fLMtvL+rrE8WSz+fvEUJM5lDTtL1F5kM2f2qatsd8EkLMfD5/b5KIJjpTVfULF/RSJu1xk7yqql8mBX+eI3e1Wn3Kp0VRlA+z3G0TQLI79wPvv1qtPj2vr49lMRKJiIZhfD+h0LaHyWTyNgDP8Si26ONJJpO3bdsesjMMw/geiUTEcWyyqQUAIAiCAMDT6XR+8/v9L9m6LMvZw8PDP3w+n4kl2XA4dAeDwR1RFB+ztW63+/vW1tavAP6mPLAzLDqz2ewdQohOV2CEED2bzd7BmSbxn1o5075+uo1rt6dYlCQpvEqAzCRJCvNsurgyIfv7+3sHBwcBXdcdlmUJy6q/ac3lclGv10sopX8BIGx9nHB+OrgxRikH7BTIy2r/AAlu0j5Iy8AaAAAAAElFTkSuQmCC");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0.2;
}
.floating.cross {
  display: inline-block;
  width: 35px;
  height: 35px;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACUAAAAlCAYAAADFniADAAAABHNCSVQICAgIfAhkiAAAAgJJREFUWIXN2MFO4zAQBuDfbSpaiUOvvTRS3w6EoEChwAvsZS9IvAnwOK5rV5V7Se8cNrOHNVXWpMk4caEj5dDInvkySeMkgohwbNH5aUBZJP4OIYQA0HU//9ABWllXo+MN7gDobzab+/V6fQbgxCWIDTqx1k6ttdPSGkQEBxUABsaYJ/oXuZTyGkAfgPgc12ZzNfpa6zkR5USUa63nfo3ihMRae0f/Ry6lvIkBKwHtalhrZwCSz7H+hU5u23V7Mpn8llKel7Y58JRpra/G4/EvB9wfjCMhIsoXi8Vtk47V5a08fZwEy+UyCNYE9AUVE9YUVIpiwmZVsDagvag2sLagShQTdlcsEANUiwqEJTFALBSzA/cAhjFAbBQHlmXZWwxQEIoB86MRKBhVgA2UUg8VsFwp9QBgEApqhHKwLoBhlmXvZaLtdvsKYAig2yj/ATs1/5ZOhV5T/n0sOorx73sv298EFgXk/mV771N1a2UwKmDpqLyjh8BigVhrH/uxJxaIO48Diwrizq97tI4O4uapeks6CKgt7GAgbl6l1NTPW5ycWGtnMUFc2Gq1ukTFy6gfZIx5TNP0GcAHuQqh4eZ9pGn6bIx5hPfC2+v1Tv0J+46mdYc4HTPGPMFbuEXx4AtfRC4AYDQavbTpUFl4NUShRr4b49c7hu9TX1DHEEf5efEvSKr5qd+QqggAAAAASUVORK5CYII=");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0.2;
}

@keyframes floating {
  0% {
    transform: translateY(0%) rotate(-55deg);
  }
  50% {
    transform: translateY(300%) rotate(55deg);
  }
  100% {
    transform: translateY(0%) rotate(-55deg);
  }
}
.footer {
  height: auto;
  padding: 20px 0;
  background: #F4F4F8;
}
@media only screen and (max-width: 650px) {
  .footer__inner {
    display: flex;
    flex-direction: column;
  }
}
.footer__contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}
@media only screen and (max-width: 900px) {
  .footer__contacts {
    display: flex;
    flex-direction: column;
  }
}
.footer__items {
  display: flex;
  flex-direction: column;
}

.copyright {
  display: block;
  color: black;
  opacity: 0.6;
  font-size: 14px;
  margin-top: 20px;
  text-align: center;
}
.copyright a {
  color: black;
  opacity: 0.6;
}

section,
footer {
  overflow: hidden;
}/*# sourceMappingURL=style.css.map */