.footer {
  position: relative;
  z-index: 1;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(3, 1fr) 200px;
  padding-top: 80px;
  padding-bottom: 80px;
  color: var(--color-white);
  background-color: var(--generic-dark);
}

.footer__group {
  position: relative;
  z-index: 1;
  display: -ms-grid;
  display: grid;
  grid-auto-flow: row;
  grid-row-gap: 30px;
  -ms-grid-row-align: start;
  align-self: start;
  grid-row: 1 / 3;
}

.footer__info {
  margin-top: 30px;
  max-width: 200px;
}
.footer_info>span {
  white-space: nowrap;
}
.footer__info-desc {
  display: grid;
  grid-auto-flow: row;
  padding-left: 17px;
}
.footer__info-desc span {
  color: var(--color-white);
}


.footer__column {
  position: relative;
  z-index: 1;
  display: -ms-grid;
  display: grid;
  grid-auto-flow: row;
  grid-row-gap: 5px;
  -ms-grid-row-align: start;
  align-self: start;
}

.footer__headline {
  color: var(--color-green03);
  display: flex;
  padding-bottom: 5px;
}

.footer__headline_title {
  display: flex;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}

.footer__headline_title:hover {
  gap: 15px;
}

.footer__list {
  display: -ms-grid;
  display: grid;
  grid-auto-flow: row;
  grid-row-gap: 12px;
  color: var(--color-white);
}

.footer__list li {
  display: -ms-grid;
  display: grid;
}

.footer__link {
  line-height: 1.2;
  -webkit-transition: color .2s;
  transition: color .2s;
}

@media (hover: hover) {
  .footer__link:hover {
  color: var(--color-primary);
  }
}

.footer__link:focus {
  color: var(--color-primary);
}

.footer__column-logo {
  max-width: 200px;
}

.footer__logo {
  width: 202px;
}

.footer__button {
  display: -ms-grid;
  display: grid;
  -ms-grid-column-align: start;
  justify-self: start;
  margin-top: 28px;
  padding: 10px 26px;
  line-height: 150%;
  font-size: 16px;
  color: var(--color-white);
  background-color: var(--color-primary-blue);
  border-radius: var(--border-rd-small);
  border-color: var(--color-primary-blue);
  -webkit-transition: background-color .2s;
  transition: background-color .2s;
  height: 46px;
}

@media (hover: hover) {
  .footer__button:hover {
    background-color: #6464A6;
    border-color: #6464A6;
  }
}

.footer__button:focus {
  border-color: var(--color-white);
  background-color: var(--color-primary-blue);
}

.footer__description {
  line-height: 1.2;
  font-size: 13px;
  color: #A3A3A3;
}

.footer__copyright {
  position: relative;
  z-index: 1;
  display: -ms-grid;
  display: grid;
  grid-auto-flow: column;
  -ms-grid-column: 1;
  -ms-grid-column-span: 4;
  grid-column: 1 / 5;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 32px;
  line-height: 1.5;
  font-size: 12px;
  font-weight: 400;
  color: #A3A3A3;
}

.footer__social {
  display: -ms-grid;
  display: grid;
  grid-auto-flow: column;
  grid-column-gap: 12px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -ms-grid-row-align: end;
  align-self: end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 35px;
  margin-bottom: 5px;
}

.footer__social-link {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background-color: #3E2FB7;
  border-radius: 50%;
  -webkit-transition: background-color .2s;
  transition: background-color .2s;
}

.footer__social-link:hover {
  background-color: #6464A6;
}

.footer__social-icon {
  width: 18px;
  height: 18px;
  fill: var(--color-white);
}

.footer__information {
  grid-column: 1/5;
  position: relative;
  z-index: 1;
  display: grid;
  column-gap: 87px;
  row-gap: 40px;
  grid-template-columns: 236px 1fr;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 32px;
  padding: 32px 0;
  border-top: 1px solid #353152;
  border-bottom: 1px solid #353152;
}

.footer__information-group {
  display: -ms-grid;
  display: grid;
  grid-auto-flow: column;
  grid-column-gap: 12px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  align-items: center;
  color: var(--color-white);
}
.footer__information-group p span{
  color: #A3A3A3;
  font-weight: 400;
  line-height: 150%;
}

.footer__icon {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1 / 3;
  width: 40px;
  height: 38px;
}

.footer__image {
  max-width: 110px;
}

.footer__information-group a:hover {
  text-decoration: underline;
}

.footer__information-left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.footer__information-left>* {
  flex-shrink: 0;
}

.footer__information-left>*:not(:last-child) {
  margin-right: 40px;
}

.footer_g2 {
  max-width: 40px;
}

.footer_g2 img {
  max-width: 100%;
}

.footer_trustpilot__img {
  display: block;
  max-width: 168px;
  height: 33px;
  margin-bottom: 8px;
}

.footer_trustpilot__img img {
  max-width: 100%;
}

.footer_trustpilot__text {
  color: var(--color-white);
}
.footer_trustpilot__text span {
  font-weight: 700;
  color: #FFD046;
}
.footer_trustpilot__text a {
  text-decoration-line: underline;
  color: var(--color-white);
  transition: all 0.3s ease-in-out;
}

.footer_trustpilot__text a:hover {
  text-decoration-line: underline;
  color: var(--color-primary);
}

.footer__headline svg {
  width: 12px;
  height: 16px;
  flex-shrink: 0;
  fill: currentColor;
  stroke: currentColor;
}
.footer__info .footer__headline {
  display: grid;
  grid-template-columns: 12px 1fr;
  align-items: center;
  gap: 5px;
}
.footer__info .footer__headline svg {
  margin-right: 5px;
}
.footer__iso {
  display: grid;
  grid-template-columns: 410px 1fr;
  gap: 40px;
}
.footer__iso-img {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.footer__iso-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 6px;
}
.footer__iso-text li {
  position: relative;
  padding-left: 7px;
  color: var(--color-white);
}
.footer__iso-text li::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  top: 8px;
  left: 0;
  border-radius: 50%;
  background-color: var(--primary-300);
}
.footer-logo {
  display: flex;
  gap: 30px;
}
@media (max-width: 1200px) {
  .footer {
    -ms-grid-columns: (auto)[3];
    grid-template-columns: repeat(3, 1fr);
    justify-content: space-between;
    row-gap: 24px;
    padding-bottom: 40px;
  }
  .footer__button {
    max-width: 203px;
    margin: 0;
  }
  .footer__social {
    margin: auto;
  }
  .footer-logo {
    grid-column: 1/3;
  }

  .footer__column-logo, .footer__location, .footer__information, .footer-logo {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: space-between;
    grid-column: 1/4;
    max-width: unset;
    border-top: 1px solid #353152;
    border-bottom: 0px;
    padding-top: 24px;
    column-gap: normal;
    row-gap: unset;
  }

  .footer-logo {
    border-top: 0px;
    padding-top: 32px;
  }
  .footer__information {
    padding-bottom: 0;
  }

  .footer__location {
    grid-row: 5/5 ;
  }

  .footer__information-group {
    grid-column: 3/3;
  }

  .footer_desc {
    display: none;
  }

  .footer__iso {
    grid-column: 1/3;
    grid-row: 1;
    gap: 32px;
  }

  .footer__info, .footer__information {
     margin: 0;
  }

  .footer__copyright {
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-column: 1 / 4;
    margin-top: 0px;
    border-top: 1px solid #353152;
    padding-top: 24px;
  }

  .footer_g2 {
    max-width: 24px;
  }

  .footer__iso-img {
    margin: auto 0;
    gap: 24px;
  }
}
@media (max-width: 1024px) {
  .footer__iso {
    grid-template-columns: 312px 1fr;
  }
  .footer__iso-img img {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 767px) {
  .footer {
    grid-template-columns: 1fr;
    padding-top: 40px;
  }
  .footer__column-logo,
  .footer__location,
  .footer__information,
  .footer-logo,
  .footer__group,
  .footer__copyright,
  .footer__information-group,
  .footer__iso {
    grid-column: unset;
    grid-row: unset;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer__information {
    grid-row: 5/8;
  }
  .footer__information-group {
    grid-row: 2/2;
    width: fit-content;
    column-gap: 12px;
    row-gap: 0px;
    padding-top: 8px;
  }
  .footer__iso {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .footer__iso-text {
    flex-direction: unset;
    justify-content: center;
  }
  .footer__iso-text li {
    flex: 1;
    width: 100%;
  }
  .footer-logo {
    padding-top: 24px;
    border-top: 1px solid #353152;
    gap: 32px;
  }
  .footer__location {
    gap: 32px;
  }
  .footer__copyright {
    border-top: 0px;
    padding-top: 0px;
  }
  .footer__button {
    max-width: 100%;
  }
}
@media (max-width: 435px) {
  .footer__iso-text {
    gap: inherit;
    justify-content: start;
  }
  .footer__iso-text li {
    flex: inherit;
    width: unset;
  }
}
/*# sourceMappingURL=footer.css.map */