@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Podkova:wght@600;700;800&display=swap");
/*	-------------------------------------------------
	Базовые стили сайта | Base site styles
    ------------------------------------------------- */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font: 600 normal 18px/1.3 "Podkova", serif;
  background: #FFF;
  color: #1A1A1A;
}

input,
textarea,
label,
select {
  font: 600 normal 18px/1.3 "Podkova", serif;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

p {
  margin-bottom: 15px;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none inside;
}

.no-scroll {
  width: 100%;
  position: fixed;
  overflow: hidden;
  overflow-y: hidden;
}

ul {
  margin: 0;
  padding: 0;
}

html.no-scroll {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
}

/*	-------------------------------------------------
    Стили блоков, содержимого страниц | Other styles
    ------------------------------------------------- */
.wrapper {
  max-width: 1440px;
  margin: 0 auto;
}

.no-webp .block-banner{
  background: url(../images/main-banner.png) 50% 0/cover no-repeat; }

.block-banner {
  padding: 95px 0;
  color: #fff;
}
.block-banner .content {
  max-width: 610px;
}
.block-banner h1 {
  font-weight: 800;
  font-size: 72px;
  margin-bottom: 15px;
}
.block-banner .text {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.btn {
  cursor: pointer;
  display: inline-block;
  padding: 15px 25px;
  background: #FFFFFF;
  border: 1px solid transparent;
  border-radius: 100px;
  font-weight: 700;
  font-size: 18px;
  color: #2B5CA4;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.btn:hover {
	background: transparent;
	border-color: #fff;
	color: #fff;
}
.btn.btn-arrow {
  padding-right: 45px !important;
  background: #fff url(../images/btn-arrow.svg) calc(100% - 20px) 50% no-repeat;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  color: #2B5CA4;
}
.btn.btn-arrow:hover {
  background-position: calc(100% - 10px) 50%;
}
.btn.btn-blue {
	background: #2B5CA4;
	color: #fff;
}
.btn.btn-blue:hover {
	border-color: #2B5CA4;
	background: #fff;
	color: #2B5CA4;
}

.block-about {
  padding: 100px 0 150px 0;
}
.block-about .title {
  margin-bottom: 30px;
}
.block-about .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.block-about .left {
  max-width: 690px;
}
.block-about .left .text {
  padding-left: 40px;
  position: relative;
  color: rgba(12, 28, 52, 0.8);
}
.block-about .left .text:before {
  content: "";
  position: absolute;
  display: block;
  top: -30px;
  bottom: 0;
  left: 0;
  width: 1px;
  background: #E0E3E9;
}
.block-about .left .text span {
  color: #2B5CA4;
  background: rgba(44, 105, 196, 0.15);
}

h2.title {
  font-weight: 800;
  font-size: 48px;
  margin-bottom: 50px;
  position: relative;
  padding-left: 40px;
}
h2.title:before {
  content: "";
  position: absolute;
  display: block;
  width: 5px;
  top: 0;
  bottom: 0;
  left: 0;
  background: #2B5CA4;
}

.subtitle {
  font-weight: 700;
  color: rgba(12, 28, 52, 0.85);
  margin-bottom: 50px;
  padding-left: 40px;
}

.block-partners {
  padding: 50px 0 150px 0;
}
.block-partners .list-partners {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
  grid-template-columns: repeat(5, 1fr);
}
.block-partners .list-partners .item {
  height: 150px;
  line-height: 148px;
  text-align: center;
  border: 1px solid #E0E3E9;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.block-partners .list-partners .item img {
  vertical-align: middle;
  max-height: 100%;
}
.block-partners .list-partners .item:hover {
  -webkit-box-shadow: 0px 4px 20px -7px rgba(62, 96, 146, 0.5);
          box-shadow: 0px 4px 20px -7px rgba(62, 96, 146, 0.5);
}

.block-service {
  padding: 50px 0 150px 0;
  position: relative;
}
.block-service:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 255px;
  background: #2B5CA4;
}
.block-service .title {
  color: #fff;
}
.block-service .title:before {
  background: #fff;
}
.block-service .list-service {
  position: relative;
  z-index: 10;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}
.block-service .list-service .item {
  border: 1px solid #E0E3E9;
  background: #fff;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.block-service .list-service .item .icon {
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  position: relative;
}
.block-service .list-service .item .icon::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 50%;
  background: rgba(44, 105, 196, 0.1);
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.block-service .list-service .item .icon img {
  vertical-align: middle;
}
.block-service .list-service .item .text {
  width: calc(100% - 90px);
  font-weight: 800;
  font-size: 24px;
  padding-left: 30px;
  margin-left: 30px;
  border-left: 1px solid #E0E3E9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.block-service .list-service .item:hover {
  -webkit-box-shadow: 0px 4px 20px -7px rgba(62, 96, 146, 0.5);
          box-shadow: 0px 4px 20px -7px rgba(62, 96, 146, 0.5);
}
.block-service .list-service .item:hover .icon:before {
  width: 100%;
}
.block-service .list-service .item:hover .text {
  color: #2B5CA4;
}

.block-experience {
  padding: 50px 0 150px 0;
}
.block-experience .list-experience {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}
.block-experience .list-experience .item {
  position: relative;
}
.block-experience .list-experience .item .photo {
  line-height: 0;
}
.block-experience .list-experience .item .text {
  position: absolute;
  width: 330px;
  padding: 20px 20px 20px 35px;
  left: 0;
  bottom: 10px;
  background: #2B5CA4;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  font-weight: 800;
  font-size: 24px;
  color: #fff;
}

.no-webp .block-form-1{
  background: url(../images/bg-form-1.png) 50% 0/cover no-repeat; }

.block-form-1 {
  padding: 50px 0;
  color: #fff;
}
.block-form-1 h2.title:before {
  background: #fff;
}
.block-form-1 .text {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
}
.block-form-1 .text span {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

.form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
.form label {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}
.form .input {
  width: 225px;
  margin-right: 20px;
}
.form .input input {
  width: 100%;
  height: 40px;
  padding-left: 20px;
  background: #FFFFFF;
  border: 1px solid #E0E3E9;
  border-radius: 4px;
}
.form .input input.error {
	border: 1px solid #f00;
}
.form .btn {
  font-size: 14px;
  padding: 11px 25px;
}

.block-benefits {
  padding: 100px 0 150px 0;
}
.block-benefits .list-benefits .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.block-benefits .list-benefits .item + .item {
  margin-top: 100px;
}
.block-benefits .list-benefits .item:nth-child(even) .info {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.block-benefits .list-benefits .item:nth-child(even) .photo {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.block-benefits .list-benefits .item .info {
  max-width: 700px;
  width: 49%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  padding-bottom: 30px;
  padding-left: 40px;
  position: relative;
}
.block-benefits .list-benefits .item .info:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  width: 80px;
  background: rgba(44, 105, 196, 0.1);
}
.block-benefits .list-benefits .item .num {
  font-weight: 700;
  font-size: 64px;
  color: #2B5CA4;
}
.block-benefits .list-benefits .item .name {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 15px;
}
.block-benefits .list-benefits .item .text {
  font-weight: 700;
  max-width: 550px;
}
.block-benefits .list-benefits .item .photo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 0;
}

.block-form-2 {
  padding: 50px 0 150px 0;
}
.block-form-2 .title {
  margin-bottom: 10px;
}
.block-form-2 .right {
  width: 833px;
  background: #2B5CA4;
  color: #fff;
  padding: 30px 50px 40px 40px;
}
.block-form-2 .text {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  margin-bottom: 30px;
}
.block-form-2 .text span {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.no-webp .block-form-2 .form{
  background: url(../images/bg-form-2.png) 0 0 no-repeat; }
.block-form-2 .form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.block-certs {
  padding: 50px 0 150px 0;
}

.slider-default .item {
  background: #FFFFFF;
  border: 1px solid #E0E3E9;
  text-align: center;
  padding: 30px;
  line-height: 0;
  height: 485px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.slider-default .item img {
  display: inline;
  max-width: 100%;
  height: auto;
}

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

.slick-arrow {
  display: inline-block;
  font-size: 0;
  width: 36px;
  height: 36px;
  border: 1px solid #E0E3E9;
  border-radius: 50px;
  margin: 0 10px;
  cursor: pointer;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.slick-arrow.slick-next {
  background: url(../images/slider-next.svg) 50% no-repeat;
}
.slick-arrow.slick-next:hover {
  background: #2B5CA4 url(../images/slider-next-h.svg) 50% no-repeat;
}
.slick-arrow.slick-prev {
  background: url(../images/slider-prev.svg) 50% no-repeat;
}
.slick-arrow.slick-prev:hover {
  background: #2B5CA4 url(../images/slider-prev-h.svg) 50% no-repeat;
}

.block-form-3 .form {
  color: #fff;
}
.block-form-3 .form label {
  color: rgba(26, 26, 26, 0.7);
}

.no-webp .block-form-4{
  background: url(../images/bg-form-4.png) 50% 0/cover no-repeat; }

.block-form-4 {
  padding: 50px 0 100px 0;
  color: #fff;
}
.block-form-4 .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
.block-form-4 .title {
  margin-bottom: 30px;
}
.block-form-4 .title:before {
  background: #fff;
}
.block-form-4 .text {
  color: rgba(255, 255, 255, 0.85);
}
.block-form-4 .text span {
  background: rgba(255, 255, 255, 0.15);
}

.block-thank .content {
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.block-thank .text {
	font-size: 24px;
	margin-bottom: 40px;
}

@media (max-width: 1500px) {
  .wrapper {
    max-width: 1300px;
  }

  .block-benefits .list-benefits .item .photo {
    width: 49%;
  }
  .block-benefits .list-benefits .item .photo img {
    max-width: 100%;
  }
}
@media (max-width: 1350px) {
  .wrapper {
    max-width: 1100px;
  }

  .block-about .left {
    max-width: 48%;
  }

  .block-about .right {
    max-width: 49%;
    line-height: 0;
  }
  .block-about .right img {
    max-width: 100%;
    height: auto;
  }

  .block-about .content {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
  }

  .block-partners .list-partners .item img {
    max-width: 80%;
  }

  .block-service .list-service .item {
    padding: 20px;
  }

  .block-service .list-service {
    -ms-grid-columns: (33.3%)[3];
    grid-template-columns: repeat(3, 33.3%);
  }

  .block-service .list-service .item .text {
    padding-left: 20px;
    margin-left: 20px;
    font-size: 18px;
  }

  .block-experience .list-experience {
    -ms-grid-columns: (33.3%)[3];
    grid-template-columns: repeat(3, 33.3%);
  }
  .block-experience .list-experience img {
    max-width: 100%;
  }

  .block-experience .list-experience .item .text {
    width: 250px;
    font-size: 18px;
    padding: 15px 15px 15px 25px;
  }

  .block-form-3 .left {
    max-width: 61%;
  }

  .block-about .right {
    max-width: 38%;
  }

  .block-form-4 .left {
    max-width: 425px;
  }
  .block-form-4 .form .input {
    width: 200px;
  }
}
@media (max-width: 1150px) {
  .wrapper {
    max-width: 1000px;
  }

  .block-banner h1 {
    font-size: 62px;
  }

  .block-about .right {
    display: none;
  }

  .block-about .left {
    max-width: 100%;
  }

  .block-form-2 .form {
    background: transparent !important;
  }

  .block-form-2 .right {
    width: 100%;
  }

  .block-form-4 .left {
    max-width: 100%;
    width: 100%;
    margin-bottom: 30px;
  }

  .block-form-4 .wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (max-width: 1050px) {
  .wrapper {
    max-width: 900px;
  }

  .block-service .list-service {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }

  .block-service .list-service .item .text {
    padding-left: 30px;
    margin-left: 30px;
    font-size: 24px;
  }

  h2.title {
    font-size: 42px;
  }

  .block-experience .list-experience {
    -ms-grid-columns: 50% 50%;
    grid-template-columns: 50% 50%;
  }
}
@media (max-width: 940px) {
  .wrapper {
    max-width: 700px;
  }

  .block-partners .list-partners {
    -ms-grid-columns: (50%)[2];
    grid-template-columns: repeat(2, 50%);
  }

  h2.title {
    font-size: 38px;
  }

  h2.title br {
    display: none;
  }

  .block-benefits .list-benefits .item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .block-benefits .list-benefits .item .info {
    max-width: 100%;
    width: 100%;
    margin-bottom: 20px;
  }
  .block-benefits .list-benefits .item .photo {
    max-width: 100%;
    width: 100%;
  }

  .block-benefits .list-benefits .item:nth-child(even) .photo {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .block-benefits .list-benefits .item:nth-child(even) .info {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .form form {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .block-form-4 .form .input,
.form .input {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .block-form-2 .right {
    padding: 40px;
  }
}
@media (max-width: 740px) {
  .wrapper {
    max-width: 500px;
  }

  .block-banner h1 {
    font-size: 50px;
  }

  .block-banner .text {
    font-size: 20px;
  }

  .block-service,
.block-certs,
.block-form-2,
.block-benefits,
.block-about {
    padding-bottom: 50px;
  }

  h2.title {
    font-size: 32px;
  }

  .block-experience .list-experience {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
}
@media (max-width: 540px) {
  .wrapper {
    max-width: 400px;
  }

  .block-banner h1 {
    font-size: 36px;
  }

  .block-banner .text {
    font-size: 18px;
  }

  .block-service .list-service .item .text {
    padding-left: 20px;
    margin-left: 20px;
    font-size: 20px;
  }

  h2.title {
    font-size: 26px;
  }
}
.webp .block-banner{ background: url(../images/main-banner.webp) 50% 0/cover no-repeat; }
.webp .block-form-1{ background: url(../images/bg-form-1.webp) 50% 0/cover no-repeat; }
.webp .block-form-2 .form{ background: url(../images/bg-form-2.webp) 0 0 no-repeat; }
.webp .block-form-4{ background: url(../images/bg-form-4.webp) 50% 0/cover no-repeat; }


/* стили хедера и футера */
/* ///////////////////// */
.header__top {
  background-color: #2B5CA4;
  padding: 12px 0;
}

.header-link {
  color: #fff;
  transition: .225s ease-out;
}

.header-link:hover {
  opacity: .8;
}

.header__top-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-links {
  display: flex;
  align-items: center;
}

.header-links__item:not(:last-child) {
  margin: 0 30px 0 0;
}

.header-links__link {
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
}

.header__bottom {
  padding: 12px 0;
  background-color: #000;
}

.header__bottom-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-nav {
  margin: 0 0 0 20px;
}

.header-nav__list {
  display: flex;
  align-items: center;
}

.header-nav__item:not(:last-child) {
  margin: 0 50px 0 0;
}

.header-nav__link {
  color: #fff;
  transition: .225s ease-out;
}

.header-nav__link:hover {
  opacity: .8;
}

.header-burger {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  display: none;
  position: relative;
  height: 25px;
  width: 40px;
}

.header-burger__line {
  display: block;
  top: 50%;
  left: 0;
  height: 3px;
  width: 100%;
  background-color: #fff;
}
.header-burger__line::before, .header-burger__line::after {
  content: "";
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background-color: #fff;
  left: 0;
}

.header-burger__line::before {
  top: 0;
}

.header-burger__line::after {
  bottom: 0;
}

.mob-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  bottom: 0;
  overflow: auto;
  background-color: #2B5CA4;
  padding: 40px 20px 20px 20px;
  z-index: 10;
  transition: right .4s ease-out;
}

.mob-menu--active {
  right: 0;
}

.mob-menu__item:not(:last-child) {
  margin: 0 0 8px 0;
}

.mob-menu__divider {
  width: 100%;
  background-color: #fff;
  height: 1px;
  margin: 30px 0;
}

.mob-menu__button {
  position: relative;
  display: block;
  cursor: pointer;
  margin: 0 0 55px auto;
  width: 35px;
  height: 25px;
}

.mob-menu__button::before, .mob-menu__button::after {
  position: absolute;
  content: "";
  display: block;
  background-color: #fff;
  height: 3px;
  width: 100%;
}

.mob-menu__button::before {
  transform: rotate(45deg);
}

.mob-menu__button::after {
  transform: rotate(-45deg);
}

.mob-menu__link {
  color: #fff;
  font-size: 18px;
  line-height: 18px;
  display: inline-block;
  padding: 7px 0;
}


.body-overlay {
  position: fixed;
  background-color: #000;
  opacity: .7;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
}

.body-overlay--active {
  display: block;
}

@media (max-width: 1024px) {
  .header__top {
    display: none;
  }

  .header__bottom-wrapper {
    max-width: unset;
    padding: 0 20px !important;
  }

  .header-nav {
    display: none;
  }

  .header-burger {
    display: block;
  }

  .mob-menu {
    display: block;
    
  }
}

@media (max-width: 450px) {
  .mob-menu {
    width: 100%;
  }
}

.body--locked {
  overflow: hidden;
  max-height: 100vh;
}

.footer {
  padding: 50px 0;
  background-color: #000;
}

.footer__wrapper {
  display: flex;
  justify-content: space-between;
  padding: 0 50px 0 0;
}

.footer__logo {
  display: block;
  margin: 0 0 40px 0;
}

.footer__copyright {
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  color: #fff;
  margin: 0 0 15px 0;
}

.footer__social {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
}

.footer__social a {
  transition: opacity .225s ease-out;
}

.footer__social a:hover {
  opacity: .7;
}


.footer__right {
  display: flex;
}

.footer__col {
  display: flex;
  flex-direction: column;
  color: #fff;
}

.footer__col:not(:last-child) {
  margin: 0 50px 0 0;
}

.footer__heading {
  display: block;
  font-weight: 800;
  font-size: 16px;
  line-height: 18px;
  margin: 0 0 20px 0;
}
.footer-list__link {
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  padding: 0 0 10px 0;
  display: flex;
  align-items: flex-start;
  transition: .225s ease-out;
}

.footer-list__link:hover {
  opacity: .7;
}

.footer-list__link img {
  display: block;
  margin: 0 8px 0 0;
  transform: translateY(2px);
}

.footer-list__link--pl {
  padding: 0 0 0 23px;
}
.footer-list__link--tel {
  white-space: nowrap;
}

.footer__lists-wrapper {
  display: flex;
}

.footer-list + .footer-list {
  margin: 0px 0 0 130px;
}

@media (max-width: 1200px) {
  .footer__wrapper {
    padding: unset;
    flex-direction: column;
  }
  
  .footer__left {
    display: flex;
    align-items: center;
    margin: 0 0 30px 0;
  }

  .footer__logo {
    margin: 0 110px 0 0;
  }

  .footer__copyright {
    margin: 0 22px 0 0;
  }

}

@media (max-width: 940px) {
  .footer__left {
    order: 2;
    width: 100%;
    justify-content: space-between;
    margin: 30px 0 0 0;
  }

  .footer__logo {
    margin: 0 20px 0 0;
  }
  .footer__copyright {
    margin: 0 20px 0 0;
  }
}

@media (max-width: 740px) {
  .footer__wrapper {
    max-width: 100%;
    padding: 0 20px;
  }
}

@media (max-width: 700px) {
  .footer__right {
    flex-wrap: wrap;
  }

  .footer__col, .footer__col:not(:last-child) {
    width: 50%;
    margin: 0 0 30px 0;
  }

  .footer__left {
    margin: 0;
  }

  .footer-list + .footer-list {
    margin: 0;
  }

  .footer__col--md-12 {
    width: 100%;
  }

  .footer__lists-wrapper {
    width: 100%;
  }

  .footer-list--md-6 {
    width: 50%;
  }
}

@media (max-width: 540px) {
  .footer__left {
    flex-wrap: wrap;
  }

  .footer__copyright { 
    order: 3;
    width: 100%;
    text-align: center;
    margin: 15px 0 0 0;
  }

  .footer-list__link {
    font-size: 20px;
    line-height: 20px;
  }

  .footer__col, .footer__col:not(:last-child){
    width: 100%;
  }

  .footer__lists-wrapper {
    flex-wrap: wrap;
  }

  .footer-list--md-6 {
    width: 100%;
  }

  .footer-list + .footer-list {
    margin: 20px 0 0 0;
  }
  
  .accordion-inner {
    max-height: 0;
    overflow: hidden;
    transition: .3s ease-out;
  }

  .accordion-inner--visible {
    max-height: 100%;
  }

  .footer__heading {
    position: relative;
  }
  .footer__heading::after {
    content: "";
    display: inline-block;
    background-image: url(../images/chevron_down.png);
    background-repeat: no-repeat;
    width: 10px;
    height: 10px;
    margin: 0 0 1px 8px;
    transform: rotate(-90deg);
  }
}

@media (max-width: 440px) {
  .wrapper--sm-p20 {
    padding: 0 20px;
  }
}