*, *:before, *:after, html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  background-color: #fff;
  box-sizing: border-box;
}
ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
a {
  text-decoration: none;
  background-color: transparent;
}
a:focus {
  outline: none;
}
h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}
.section__content {
  padding-bottom: 50px;
}
.section__title {
  padding: 50px 0;
  text-align: center;
}
.section__title--title_style {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 38px;
  line-height: 50px;
}
@media (min-width: 768px) {
  .section__title--title_style {
    font-size: 48px;
  }
}
.section__title--sub_style {
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
}
.header {
  position: sticky;
  top: 0;
  -webkit-box-shadow: 0px 0px 10px -5px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 10px -5px rgba(0, 0, 0, 0.5);
  background-color: #edf6ff;
  z-index: 9;
}
.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}
@media (min-width: 992px) {
  .header__content {
    display: grid;
    grid-template-columns: 80px 1fr 290px;
    gap: 20px;
  }
}
.header .menu__top {
  padding: 20px 20px 20px 40px;
}
@media (min-width: 992px) {
  .header .menu__top {
    display: none;
  }
}
.header .menu__user {
  padding-top: 10px;
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 992px) {
  .header .menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    z-index: 10;
    overflow-y: auto;
    background-color: #fff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.5s ease-in-out;
  }
  .header .menu.is-active {
    top: 0;
    left: 0;
  }
  .header .menu__list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
  }
  .header .menu__list .menu__link {
    display: block;
    padding: 10px 40px;
    font-size: 20px;
    text-transform: uppercase;
  }
}
.header__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.header .language {
  position: relative;
}
.header .language__current {
  display: flex;
  align-items: center;
  transition: all 0.3s;
  cursor: pointer;
}
.header .language__current .language__name {
  display: block;
  margin-left: 5px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  color: #565353;
}
.header .language__current .language__icon {
  width: 16px;
  height: 16px;
  fill: #565353;
}
.header .language__current:hover .language__name {
  color: #376CF6;
}
.header .language__current:hover .language__icon {
  fill: #376CF6;
}
.header .language__list {
  position: absolute;
  top: 30px;
  padding: 10px;
  border-radius: 5px;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  background-color: #fff;
}
.header .language__list .lang-item a {
  display: flex;
  justify-content: left;
  align-items: center;
  padding: 5px 10px 10px;
  font-size: 14px;
  border-bottom: 0;
  color: #000;
}
.header .language__list .lang-item a:hover {
  color: #376CF6;
}
.header .language__list .lang-item:not(:last-child) a {
  margin-bottom: 10px;
  border-bottom: 1px solid #E1E4E6;
}
.header .language__list.hidden {
  opacity: 0;
  visibility: hidden;
}
.header__login {
  text-align: center;
}
.header__login .login__icon {
  display: block;
  width: 25px;
  height: 25px;
  transition: all 0.3s;
  fill: #376CF6;
}
.header__login .login__icon:hover {
  fill: #0043f4;
}
.header__feedback {
  padding: 10px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  border: 1px solid #376CF6;
  border-radius: 5px;
  transition: all 0.3s;
  cursor: pointer;
  background-color: #edf6ff;
  color: #376CF6;
}
.header__feedback:hover {
  background-color: #376CF6;
  color: #fff;
}
@media (max-width: 450px) {
  .header__feedback {
    display: none;
  }
}
.header .burger {
  position: relative;
  display: block;
  width: 28px;
  height: auto;
  border: none;
  outline: none;
  visibility: visible;
  cursor: pointer;
}
.header .burger__line {
  display: block;
  width: 100%;
  height: 2px;
  margin: 6px auto;
  transform: rotate(0deg);
  transition: all 0.3s ease-in-out;
  background-color: #376CF6;
  cursor: pointer;
}
@media (min-width: 992px) {
  .header .burger {
    display: none;
  }
}
.logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo__link {
  display: block;
}
.logo__img {
  display: block;
  height: 82px;
  width: auto;
}
.menu__list {
  display: flex;
  justify-content: flex-end;
}
.menu__list a {
  padding: 10px;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s;
  color: #565353;
}
.menu__list a:hover {
  color: #376CF6;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease-in-out;
}
.overlay.is-active {
  display: block;
  opacity: 1;
  visibility: visible;
}
/* modal */
.modal {
  display: none;
  position: fixed;
  z-index: 9;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.4);
}
.modal.active {
  display: block;
}
.modal__container {
  position: relative;
  max-width: 500px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 auto;
  padding: 30px;
  border-radius: 10px;
  background-color: #edf6ff;
  z-index: 11;
}
@media (max-width: 450px) {
  .modal__container {
    margin: 0 20px;
  }
}
.modal__header {
  margin-bottom: 20px;
}
.modal__title {
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}
.modal__close {
  position: absolute;
  top: 26px;
  right: 13px;
  border: none;
  outline: none;
  font-size: 24px;
  font-weight: bold;
  background: none;
  color: #747474;
  cursor: pointer;
}
.modal__close:hover {
  color: #000;
}
.callback__name, .callback__tel, .callback__email {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px 15px;
  font-size: 14px;
  font-weight: 400;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #ffffff6b;
  color: #000;
  outline: none;
}
.callback__name.wpcf7-not-valid, .callback__tel.wpcf7-not-valid {
  -webkit-box-shadow: 0px 0px 5px 0px #dc834e;
  box-shadow: 0px 0px 5px 0px #dc834e;
}
.callback input::placeholder {
  font-weight: 400;
  color: #000;
}
span.wpcf7-spinner, .wpcf7-not-valid-tip {
  display: none;
}
.wpcf7 form .wpcf7-response-output {
  margin: 10px 0 0 0;
  padding: 10px;
  border: none;
  border-radius: 14px;
  text-align: center;
  color: #fff;
}
.wpcf7 form.invalid .wpcf7-response-output {
  background-color: #ffb900;
  color: #000;
}
.wpcf7 form.sent .wpcf7-response-output {
  background-color: #46b450;
}
.main {
  position: relative;
  display: block;
  height: calc(100vh - 82px);
  background: #edf6ff;
}
@media (min-width: 1100px) {
  .main {
    background-image: url(/wp-content/uploads/2022/10/hero-new.svg);
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: 100%;
  }
}
.main__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
.main__title {
  max-width: 500px;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 24px;
  line-height: 40px;
}
@media (min-width: 500px) {
  .main__title {
    font-size: 38px;
    line-height: 50px;
  }
}
@media (min-width: 768px) {
  .main__title {
    font-size: 48px;
    line-height: 60px;
  }
}
.main__desc {
  max-width: 500px;
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #565353;
}
.main__desc span {
  font-weight: 700;
}
.main__btn {
  margin-bottom: 30px;
}
.button__link {
  width: 200px;
  height: 45px;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  border: none;
  border-radius: 5px;
  transition: all 0.3s;
  background-color: #376CF6;
  color: #fff;
}
.button__link:hover {
  cursor: pointer;
  background-color: #0043f4;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.social__text {
  margin-bottom: 15px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #565353;
}
.social__list {
  display: flex;
  column-gap: 20px;
}
.social__item:hover .social__link {
  background-color: #376CF6;
}
.social__item:hover .social__icon {
  fill: #fff;
}
.social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid #376CF6;
  border-radius: 50%;
  transition: all 0.5s;
}
.social__icon {
  fill: #376CF6;
  transition: all 0.3s;
}
.how-works {
  position: relative;
  background-image: url(/wp-content/uploads/2022/07/how-works-fon-one.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
.how-works:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(/wp-content/uploads/2022/07/how-works-fon-two.png);
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: 0;
}
.how-works__content {
  position: relative;
  z-index: 1;
}
.principle__item:nth-child(1) .principle__bg {
  background-image: url(/wp-content/uploads/2022/09/principle-bg-1.webp);
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: contain;
}
.principle__item:nth-child(2) .principle__bg {
  background-image: url(/wp-content/uploads/2022/11/principle-bg-2.webp);
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: contain;
}
.principle__item:nth-child(3) .principle__bg {
  background-image: url(/wp-content/uploads/2022/10/principle-bg-3.webp);
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: contain;
}
.principle__item:nth-child(4) .principle__bg {
  background-image: url(/wp-content/uploads/2022/07/principle-bg-4.png);
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 992px) {
  .principle__item .principle__img .principle__bg {
    height: 300px;
    background-position: center;
  }
}
@media (min-width: 992px) {
  .principle__item {
    display: flex;
    align-items: center;
    flex-flow: row nowrap;
    gap: 10px;
    height: 400px;
  }
  .principle__item:nth-child(2n) {
    flex-direction: row-reverse;
  }
  .principle__img {
    flex: 1 1 50%;
  }
  .principle__img .principle__bg {
    position: relative;
    display: block;
    height: 550px;
  }
  .principle__info {
    flex: 1 1 50%;
  }
}
.principle__text {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
}
.principle__desc {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-align: justify;
}
.principle__desc span {
  font-weight: 500;
}
.advantage {
  background-image: url(/wp-content/uploads/2022/07/advantage-fon.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
.advantage__grid {
  display: grid;
  gap: 20px;
}
@media (min-width: 768px) {
  .advantage__grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 992px) {
  .advantage__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 100px;
  }
}
.advantage__preview {
  margin-bottom: 20px;
  text-align: center;
}
.advantage__img {
  max-width: 220px;
}
.advantage__text {
  margin-bottom: 10px;
  text-align: center;
  color: #376CF6;
}
.advantage__desc {
  font-size: 14px;
  text-align: center;
}
.loyalty-program {
  display: none;
}
.types {
  background-image: url(https://echip.com.ua/wp-content/uploads/2022/09/types-bg.svg);
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: cover;
}
.types__list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .types__list {
    flex-direction: column;
  }
}
.types__img {
  display: block;
  width: 100%;
  height: 100%;
}
.types__btn {
  text-align: center;
}
.type {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30%;
  min-height: 250px;
  padding: 20px;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(214, 214, 214, 0.75);
  -moz-box-shadow: 0px 0px 5px 0px rgba(214, 214, 214, 0.75);
  box-shadow: 0px 0px 5px 0px rgba(214, 214, 214, 0.75);
  background-color: #ffffff80;
}
@media (max-width: 768px) {
  .type {
    width: 100%;
    margin-bottom: 20px;
  }
}
.type__name {
  padding: 20px 0 10px;
  font-size: 18px;
  text-align: center;
  text-transform: uppercase;
}
.type__sum {
  font-weight: 700;
  text-align: center;
  color: #565353;
}
.type__currency {
  font-size: 16px;
  font-weight: 500;
}
.type__period {
  font-size: 16px;
  font-weight: 500;
}
.type__btn {
  text-align: center;
}
@media (min-width: 1250px) {
  .faq__title {
    text-align: left;
  }
}
.faq__button {
  padding-top: 20px;
}
@media (min-width: 1250px) {
  .faq {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-image: url(/wp-content/uploads/2022/11/faq-bg.png);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: contain;
  }
}
@media (max-width: 1250px) {
  .faq__bg {
    height: 700px;
    background-image: url(/wp-content/uploads/2022/11/faq-bg.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain;
  }
}
@media (max-width: 1000px) {
  .faq__bg {
    height: 600px;
  }
}
@media (max-width: 768px) {
  .faq__bg {
    height: 500px;
  }
}
@media (max-width: 480px) {
  .faq__bg {
    height: 400px;
  }
}
@media (max-width: 320px) {
  .faq__bg {
    height: 300px;
  }
}
.accordion__item {
  margin-bottom: 10px;
  overflow: hidden;
  transition: height 300ms ease-in-out;
  background-color: #edf6ff;
}
.accordion__header {
  position: relative;
  padding: 24px 55px 24px 24px;
  outline: 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  transition: color 300ms ease-in-out;
}
[open] > .accordion__header {
  color: #0043f4;
}
.accordion__header:before {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  height: 2px;
  margin-top: -1px;
  width: 16px;
  background: #376CF6;
}
.accordion__header:after {
  content: "";
  position: absolute;
  right: 27px;
  top: 50%;
  height: 16px;
  margin-top: -8px;
  width: 2px;
  margin-left: -1px;
  background: #376CF6;
  transition: all 300ms ease-in-out;
}
[open] .accordion__header:after {
  opacity: 0;
  transform: translateY(25%);
}
.accordion__collapse {
  padding: 0 55px 24px 24px;
  font-size: 14px;
}
.not-found {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 164px);
}
.not-found__content {
  margin-bottom: 20px;
}
.not-found__image {
  display: block;
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: cover;
}
.not-found__title {
  padding: 20px 0;
  font-size: 24px;
  text-transform: uppercase;
  text-align: center;
}
@media (min-width: 500px) {
  .not-found__title {
    font-size: 32px;
  }
}
.not-found__btn {
  display: flex;
  justify-content: center;
}
.not-found__link {
  display: flex;
  justify-content: center;
  align-items: center;
}
html {
  margin-top: 0 !important;
}
.single-post .header {
  display: none;
}
.single-chip .header {
  display: none;
}
.chip {
  display: grid;
  grid-template-rows: 220px auto 1fr;
  min-height: 100vh;
  background-color: #ddd;
}
.chip__header {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.chip__header .chip__info {
  position: relative;
  height: 100%;
  max-width: 786px;
  margin: 0 auto;
  text-align: center;
  padding: 10px 20px;
}
.chip__header .chip__info .chip__logo {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 2px solid #000;
  border-radius: 50%;
}
.chip__header .chip__info .post-edit {
  position: absolute;
  top: 10px;
  right: 20px;
}
.chip__header .chip__info .post-edit-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  z-index: 9;
}
.chip__header .chip__info .post-edit-icon {
  width: 20px;
  height: 20px;
}
.chip__header .chip__info .chip__title--glow {
  text-shadow: 0 0 1px #fff, 0 0 2px #fff, 0 0 3px #fff, 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #fff;
}
.chip__header .chip__info .chip__logo--glow {
  -webkit-box-shadow: 0px 0px 24px 1px white;
  -moz-box-shadow: 0px 0px 24px 1px white;
  box-shadow: 0px 0px 24px 1px white;
}
.chip__content {
  width: 100%;
  max-width: 786px;
  margin: 0 auto;
  text-align: center;
}
.chip__content--padding {
  padding: 20px;
}
.chip__footer {
  background-color: #000;
}
.chip__footer .chip__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px;
  height: 100%;
  max-width: 786px;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
}
.chip__footer .chip__list .chip__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.chip__footer .chip__list .chip__item .chip__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  fill: #fff;
}
.chip__footer .chip__list .chip__item .chip__icon--custom {
  max-width: 40px;
  max-height: 40px;
  margin-bottom: 10px;
}
.chip__footer .chip__list .chip__item .chip__name {
  color: #cecece;
}
.chip__footer .chip__list .chip__item .chip__link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
}
.chip__footer .chip__list .chip__item:last-child .chip__icon {
  width: 30px;
  height: 30px;
  margin-bottom: 10px;
  fill: #007bff;
}
.chip__footer .chip__list .chip__item:last-child .chip__name {
  color: #007bff;
}
.chip__footer .chip__list .chip__item .chip__copy {
  font-size: 0;
  color: transparent;
}
.chip__footer .chip__list .chip__item .chip__modal {
  display: block;
  transition: all 0.4s ease-in;
}
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.5);
}
.modal__content {
  position: relative;
  margin: auto;
  padding: 10px;
  width: max-content;
  overflow: hidden;
  border-radius: 2px;
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
  background: #fff;
  -webkit-box-shadow: 0px 0px 19px 3px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0px 0px 19px 3px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 19px 3px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@-webkit-keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
.modal__close {
  color: #aaa;
  font-size: 2rem;
  font-weight: bold;
  padding: 0 1rem;
  border-radius: 2px;
  transition: 0.4s ease-out;
}
.modal__close:hover {
  color: #111;
  text-decoration: none;
  cursor: pointer;
}
.modal__close:focus {
  color: #111;
  text-decoration: none;
  cursor: pointer;
}
.modal__icon {
  width: 16px;
  margin-right: 10px;
}
.modal__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  text-transform: uppercase;
}
.footer {
  margin-bottom: -20px;
  background-color: #edf6ff;
}
.footer__callback {
  margin-bottom: 20px;
}
.footer__callback .wpcf7-form {
  display: grid;
  gap: 20px;
}
.footer__callback .wpcf7-form .callback__name, .footer__callback .wpcf7-form .callback__tel, .footer__callback .wpcf7-form .callback__email {
  margin-bottom: 0;
  height: 45px;
  border-radius: 0;
  border-bottom: 2px solid #376CF6;
  background-color: transparent;
}
.footer__callback .wpcf7-form input::placeholder {
  color: #376CF6;
}
.footer__callback .wpcf7-form input:-webkit-autofill, .footer__callback .wpcf7-form input:-webkit-autofill:focus {
  transition: background-color 600000s 0s, color 600000s 0s;
}
.footer__callback .wpcf7-form .button__link {
  width: 135px;
  padding: 10px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  border: 1px solid #376CF6;
  border-radius: 5px;
  transition: all 0.3s;
  cursor: pointer;
  background-color: #edf6ff;
  color: #376CF6;
}
.footer__callback .wpcf7-form .button__link:hover {
  background-color: #376CF6;
  color: #fff;
}
.footer__callback .wpcf7-form .callback__name.wpcf7-not-valid, .footer__callback .wpcf7-form .callback__tel.wpcf7-not-valid {
  border: 2px solid #f00;
  -webkit-box-shadow: 0px 0px 5px 0px #ff5f00;
  box-shadow: 0px 0px 5px 0px #ff6002;
}
.footer__callback .wpcf7-form .wpcf7-response-output {
  display: none;
}
@media (min-width: 768px) {
  .footer__callback .wpcf7-form {
    grid-template-columns: 1fr 1fr 1fr 135px;
  }
}
@media (max-width: 768px) {
  .footer__callback .wpcf7-form {
    max-width: 330px;
    margin: 0 auto;
    padding: 0 15px;
  }
}
.footer__info {
  display: grid;
  align-items: center;
  gap: 15px;
}
@media (min-width: 768px) {
  .footer__info {
    grid-template-columns: 80px 1fr 130px;
  }
}
.footer__navigation {
  margin: 0 auto;
}
.footer__navigation a {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}
@media (max-width: 400px) {
  .footer__navigation {
    display: none;
  }
}
.footer__contacts {
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .footer__contacts {
    margin-bottom: 20px;
  }
}
@media screen {
  .wrapper {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }
}
@media screen and (min-width: 576px) {
  .wrapper {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media screen and (max-width: 1700px) and (min-width: 786px) {
  .wrapper {
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media screen and (min-width: 1700px) {
  .wrapper {
    max-width: 1480px;
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (min-width: 1900px) {
  .wrapper {
    max-width: 1680px;
  }
}
