*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Overpass";
  font-size: 16px;
  background-color: white;
}

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

@media screen and (min-width: 610px) {
  .dektop__ver #burger {
    display: none;
  }
  .dektop__ver #burger span {
    display: none;
  }
}

header {
  width: 100%;
  height: 800px;
  background-image: url(../img/bg-pattern-intro.svg), -webkit-gradient(linear, right top, left top, color-stop(45%, #ff3d54), to(#ff8f70));
  background-image: url(../img/bg-pattern-intro.svg), linear-gradient(to left, #ff3d54 45%, #ff8f70);
  background-size: 350%;
  background-position: -400px -300px;
  border-radius: 0 0 0 200px;
}

header nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 60px 32px 0;
}

header nav .nav__wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header nav .nav__wrapper__links {
  display: none;
  opacity: 0;
}

header nav .nav__wrapper__links.menu__open {
  z-index: 10;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  min-height: 600px;
  width: 432px;
  left: 50%;
  top: 140px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 10px;
  background-color: #f8f8f8;
  -webkit-animation: fade 1s forwards ease;
          animation: fade 1s forwards ease;
  padding: 46px 0;
}

header nav .nav__wrapper__links.menu__open .nav__list {
  position: relative;
  color: #1f3f5b;
  font-size: 22px;
  font-weight: 600;
  cursor: pointer;
}

header nav .nav__wrapper__links.menu__open .nav__list.arrow__acitve span {
  -webkit-transform: translate(6px, -1px) rotate(-180deg);
          transform: translate(6px, -1px) rotate(-180deg);
}

header nav .nav__wrapper__links.menu__open .nav__list span {
  position: absolute;
  -webkit-transform: translate(6px, -1px);
          transform: translate(6px, -1px);
}

header nav .nav__wrapper__links.menu__open .nav__list span img {
  width: 13px;
}

header nav .nav__wrapper__links.menu__open .nav__list:not(:last-child) {
  margin-bottom: 45px;
}

header nav .nav__wrapper__links.menu__open .inner__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  max-height: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: baseline;
      -ms-flex-pack: baseline;
          justify-content: baseline;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 368px;
  border-radius: 6px;
  background-color: #efeff1;
  margin-top: -35px;
  padding: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

header nav .nav__wrapper__links.menu__open .inner__list.open__list {
  max-height: -webkit-fit-content;
  max-height: -moz-fit-content;
  max-height: fit-content;
  padding: 40px;
}

header nav .nav__wrapper__links.menu__open .inner__list:not(:last-child) {
  margin-bottom: 30px;
}

header nav .nav__wrapper__links.menu__open .inner__list a {
  color: rgba(31, 63, 91, 0.726);
  font-size: 20px;
  font-weight: 600;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

header nav .nav__wrapper__links.menu__open .inner__list a:hover {
  color: #1f3f5b;
}

header nav .nav__wrapper__links.menu__open .inner__list a:not(:last-child) {
  margin-bottom: 38px;
}

header nav .nav__wrapper__links.menu__open .nav__buttons {
  padding-top: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

header nav .nav__wrapper__links.menu__open .nav__buttons button {
  font-size: 22px;
  border-radius: 50px;
  cursor: pointer;
  outline: none;
}

header nav .nav__wrapper__links.menu__open .nav__buttons button:first-child {
  position: relative;
  background-color: transparent;
  color: #1f3f5b;
  border: none;
  font-family: "Overpass";
  font-weight: 600;
  margin-bottom: 32px;
}

header nav .nav__wrapper__links.menu__open .nav__buttons button:first-child::after {
  content: "";
  display: block;
  width: 368px;
  height: 2px;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50px);
          transform: translate(-50%, -50px);
  background-color: #c8c8cb;
}

header nav .nav__wrapper__links.menu__open .nav__buttons button:last-child {
  width: 184px;
  height: 65px;
  background: -webkit-gradient(linear, left top, right top, from(#ff8f70), to(#ff3d54));
  background: linear-gradient(to right, #ff8f70, #ff3d54);
  color: white;
  border: none;
  font-family: "Ubuntu";
  font-weight: 500;
}

header nav .nav__wrapper .burger {
  display: block;
  width: 43px;
  height: 24px;
  cursor: pointer;
}

header nav .nav__wrapper .burger span {
  width: 100%;
  height: 4px;
  display: block;
  background-color: white;
  -webkit-transition: -webkit-transform 0.4s ease-out;
  transition: -webkit-transform 0.4s ease-out;
  transition: transform 0.4s ease-out;
  transition: transform 0.4s ease-out, -webkit-transform 0.4s ease-out;
}

header nav .nav__wrapper .burger span:not(:last-child) {
  margin-bottom: 8px;
}

header nav .nav__wrapper .burger.open span:nth-child(2) {
  opacity: 0;
  -webkit-transform: translateX(-10px);
          transform: translateX(-10px);
}

header nav .nav__wrapper .burger.open span:first-child {
  -webkit-transform: rotate(45deg) translate(0px, 16px);
          transform: rotate(45deg) translate(0px, 16px);
}

header nav .nav__wrapper .burger.open span:last-child {
  -webkit-transform: rotate(-45deg) translate(0px, -17px);
          transform: rotate(-45deg) translate(0px, -17px);
}

@-webkit-keyframes fade {
  from {
    opacity: 0;
    -webkit-box-shadow: 0px 2px 7px rgba(0, 0, 0, 0);
            box-shadow: 0px 2px 7px rgba(0, 0, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-box-shadow: 0px 5px 20px 5px rgba(0, 0, 0, 0.267);
            box-shadow: 0px 5px 20px 5px rgba(0, 0, 0, 0.267);
  }
}

@keyframes fade {
  from {
    opacity: 0;
    -webkit-box-shadow: 0px 2px 7px rgba(0, 0, 0, 0);
            box-shadow: 0px 2px 7px rgba(0, 0, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-box-shadow: 0px 5px 20px 5px rgba(0, 0, 0, 0.267);
            box-shadow: 0px 5px 20px 5px rgba(0, 0, 0, 0.267);
  }
}

@media screen and (min-width: 610px) {
  header {
    width: 100%;
    height: 600px;
    background-color: #ff525d;
    background-image: url(../img/bg-pattern-intro.svg), -webkit-gradient(linear, right top, left top, color-stop(35%, #ff3d54), to(#ff8f70));
    background-image: url(../img/bg-pattern-intro.svg), linear-gradient(to left, #ff3d54 35%, #ff8f70);
    background-size: 200%;
    background-position: -400px -1300px;
  }
  header nav {
    padding: 65px 170px 0;
  }
  header nav .nav__wrapper #logo {
    width: 102px;
    margin-right: 66px;
  }
  header nav .nav__wrapper__links {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: baseline;
        -ms-flex-pack: baseline;
            justify-content: baseline;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: auto;
    opacity: 1;
  }
  header nav .nav__wrapper__links .nav__list {
    color: #f0f0f0;
    font-size: 20px;
    margin-right: 33px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  header nav .nav__wrapper__links .nav__list span {
    position: absolute;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  header nav .nav__wrapper__links .nav__list span img {
    width: 12px;
  }
  header nav .nav__wrapper__links .nav__list:hover {
    color: white;
  }
  header nav .nav__wrapper__links .nav__list.arrow__acitve span {
    -webkit-transform: translateX(10px) rotate(-180deg);
            transform: translateX(10px) rotate(-180deg);
  }
  header nav .nav__wrapper__links .inner__list {
    max-height: 0;
    overflow: hidden;
    position: absolute;
    width: 170px;
    background-color: #f0f0f0;
    top: 0;
    -webkit-transform: translateY(120px);
            transform: translateY(120px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 19px;
    font-family: "Ubuntu";
    font-weight: 400;
    padding: 0;
    border-radius: 10px;
    z-index: 10;
  }
  header nav .nav__wrapper__links .inner__list.open__list {
    max-height: -webkit-fit-content;
    max-height: -moz-fit-content;
    max-height: fit-content;
    padding: 35px 25px;
  }
  header nav .nav__wrapper__links .inner__list a {
    color: rgba(37, 37, 45, 0.692);
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  header nav .nav__wrapper__links .inner__list a:not(:last-child) {
    margin-bottom: 20px;
  }
  header nav .nav__wrapper__links .inner__list a:hover {
    color: #25252d;
  }
  header nav .nav__wrapper__links #inner__list-2 {
    -webkit-transform: translate(105px, 120px);
            transform: translate(105px, 120px);
  }
  header nav .nav__wrapper__links #inner__list-3 {
    -webkit-transform: translate(221px, 120px);
            transform: translate(221px, 120px);
  }
  header nav .nav__wrapper__links .nav__buttons {
    margin-left: auto;
  }
  header nav .nav__wrapper__links .nav__buttons button {
    font-family: "Ubuntu";
    font-size: 16px;
    cursor: pointer;
  }
  header nav .nav__wrapper__links .nav__buttons button:first-child {
    color: #f0f0f0;
    background-color: transparent;
    border: none;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  header nav .nav__wrapper__links .nav__buttons button:first-child:hover {
    color: white;
  }
  header nav .nav__wrapper__links .nav__buttons button:last-child {
    width: 140px;
    height: 50px;
    margin-left: 33px;
    border-radius: 50px;
    border: none;
    outline: none;
    color: #ff525d;
    font-weight: 700;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  header nav .nav__wrapper__links .nav__buttons button:last-child:hover {
    background-color: #ff7a85;
    color: white;
  }
}

header .header__content {
  padding-top: 160px;
}

header .header__content__heading {
  width: 100%;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .header__content__heading h1 {
  font-weight: 600;
  font-size: 43px;
  max-width: 388px;
  color: white;
  text-align: center;
}

header .header__content__heading p {
  max-width: 366px;
  padding-top: 33px;
  font-size: 23px;
  color: white;
  text-align: center;
  font-weight: 300;
}

header .header__content__buttons {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding-top: 71px;
}

header .header__content__buttons button {
  width: 183px;
  height: 64px;
  font-family: "Ubuntu";
  font-weight: 700;
  font-size: 21px;
  border-radius: 50px;
  cursor: pointer;
}

header .header__content__buttons button:first-child {
  background-color: white;
  border: none;
  color: #ff525d;
  margin-right: 22px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

header .header__content__buttons button:first-child:hover {
  background-color: #ff7a85;
  color: white;
}

header .header__content__buttons button:last-child {
  color: white;
  border: solid 2px white;
  background-color: transparent;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

header .header__content__buttons button:last-child:hover {
  background-color: white;
  color: #ff7a85;
}

@media screen and (min-width: 610px) {
  header .header__content {
    padding-top: 120px;
  }
  header .header__content__heading h1 {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    font-size: 50px;
  }
  header .header__content__heading p {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
  header .header__content__buttons {
    padding-top: 51px;
  }
}

article #section-1 {
  position: relative;
  padding-top: 100px;
  margin-bottom: 330px;
}

article #section-1 h2 {
  color: #1f3f5b;
  font-size: 35px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 62px;
}

article #section-1 .section-1__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-pack: baseline;
      -ms-flex-pack: baseline;
          justify-content: baseline;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

article #section-1 .section-1__wrapper__img {
  position: relative;
  margin-bottom: 78px;
}

article #section-1 .section-1__wrapper__img img {
  width: 96vw;
}

article #section-1 .section-1__wrapper__des {
  text-align: center;
}

article #section-1 .section-1__wrapper__des h3 {
  font-size: 35px;
  color: #1f3f5b;
  font-weight: 600;
  max-width: 55vw;
  margin: 0 auto;
  margin-bottom: 38px;
}

article #section-1 .section-1__wrapper__des p {
  max-width: 80vw;
  color: #4b5862;
  font-size: 22px;
  line-height: 1.8;
}

article #section-1 .section-1__wrapper__des p:not(:last-child) {
  margin-bottom: 50px;
}

@media screen and (min-width: 601px) {
  article #section-1 {
    overflow: hidden;
    padding-top: 160px;
    padding-bottom: 150px;
  }
  article #section-1 h2 {
    font-size: 40px;
    padding-bottom: 20px;
  }
  article #section-1 .section-1__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 110px;
  }
  article #section-1 .section-1__wrapper__img {
    top: 70px;
    position: absolute;
    right: 0;
    -webkit-transform: translateX(240px);
            transform: translateX(240px);
  }
  article #section-1 .section-1__wrapper__img img {
    width: unset;
    height: 885px;
  }
  article #section-1 .section-1__wrapper__des {
    width: 700px;
    padding-right: 90px;
  }
  article #section-1 .section-1__wrapper__des h3 {
    text-align: left;
    max-width: unset;
  }
  article #section-1 .section-1__wrapper__des p {
    font-size: 19px;
    text-align: left;
    max-width: unset;
  }
}

#section-2 .seciton-2__wrapper {
  width: 100%;
  height: 835px;
  background-color: #3f4164;
  background-image: linear-gradient(130deg, #34344c 45%, #3f4164);
  border-radius: 0 120px 0 120px;
}

#section-2 .seciton-2__wrapper__pattern {
  width: 100%;
  height: 100%;
  background-image: url(../img/bg-pattern-circles.svg);
  background-position: 50% -300px;
  background-repeat: no-repeat;
  background-size: 150vw;
  border-radius: 0 120px 0 120px;
}

#section-2 .seciton-2__wrapper__pattern .mobile__img {
  margin: 0 auto;
  -webkit-transform: translateY(-45%);
          transform: translateY(-45%);
}

#section-2 .seciton-2__wrapper__pattern .mobile__img img {
  width: 96vw;
}

#section-2 .seciton-2__wrapper__pattern .section-2__des h2 {
  color: white;
  font-size: 53px;
  font-weight: 600;
  text-align: center;
  -webkit-transform: translateY(-230px);
          transform: translateY(-230px);
}

#section-2 .seciton-2__wrapper__pattern .section-2__des p {
  margin: 0 auto;
  color: white;
  font-size: 22px;
  max-width: 84vw;
  text-align: center;
  font-weight: 300;
  -webkit-transform: translateY(-200px);
          transform: translateY(-200px);
  line-height: 1.8;
}

@media screen and (min-width: 601px) {
  #section-2 {
    -webkit-transform: translateY(-250px);
            transform: translateY(-250px);
    margin-bottom: 50px;
  }
  #section-2 .seciton-2__wrapper {
    position: relative;
    width: 100%;
    height: 401px;
    background-image: -webkit-gradient(linear, left top, right top, color-stop(45%, #34344c), to(#3f4164));
    background-image: linear-gradient(to right, #34344c 45%, #3f4164);
    border-radius: 0 100px 0 100px;
  }
  #section-2 .seciton-2__wrapper__pattern {
    overflow: hidden;
    background-position: -200px -470px;
    background-repeat: no-repeat;
    background-size: 1000px;
    border-radius: 0 100px 0 100px;
  }
  #section-2 .seciton-2__wrapper__pattern .mobile__img {
    margin: 0 auto;
    -webkit-transform: translate(100px, -100px);
            transform: translate(100px, -100px);
    position: absolute;
  }
  #section-2 .seciton-2__wrapper__pattern .mobile__img img {
    width: 600px;
  }
  #section-2 .seciton-2__wrapper__pattern .section-2__des h2 {
    position: absolute;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    top: 100px;
    right: 180px;
    font-size: 41px;
  }
  #section-2 .seciton-2__wrapper__pattern .section-2__des p {
    position: absolute;
    top: 180px;
    right: 200px;
    max-width: 530px;
    text-align: left;
    font-size: 21px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

#section-3 {
  margin-bottom: 130px;
}

#section-3 .section-3__wrapper {
  position: relative;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#section-3 .section-3__wrapper__image {
  padding-top: 75px;
}

#section-3 .section-3__wrapper__image img {
  width: 96vw;
}

#section-3 .section-3__wrapper__des h3 {
  color: #1f3f5b;
  font-size: 30px;
  text-align: center;
  padding-top: 30px;
}

#section-3 .section-3__wrapper__des p {
  max-width: 82vw;
  margin: 0 auto;
  padding-top: 36px;
  color: #4b5862;
  font-size: 22px;
  line-height: 1.8;
  text-align: center;
}

#section-3 .section-3__wrapper__des p:not(:last-child) {
  margin-bottom: 38px;
}

@media screen and (min-width: 601px) {
  #section-3 {
    margin-bottom: 300px;
  }
  #section-3 .section-3__wrapper {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-right: 100px;
  }
  #section-3 .section-3__wrapper__image {
    position: absolute;
    left: -275px;
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
  }
  #section-3 .section-3__wrapper__image img {
    width: unset;
  }
  #section-3 .section-3__wrapper__des {
    max-width: 665px;
    margin-left: auto;
  }
  #section-3 .section-3__wrapper__des h3 {
    text-align: left;
    padding: 0;
    margin: 0;
  }
  #section-3 .section-3__wrapper__des p {
    max-width: unset;
    text-align: left;
    padding-top: 20px;
    margin: 0;
  }
  #section-3 .section-3__wrapper__des p:not(:last-child) {
    margin-bottom: 49px;
  }
}

footer#footer .footer__wrapper {
  width: 100%;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0 100px 0 0;
  padding-top: 100px;
  background-color: #25252d;
}

footer#footer .footer__wrapper__logo {
  margin-bottom: 100px;
}

footer#footer .footer__wrapper__logo img {
  width: 135px;
}

footer#footer .footer__wrapper__des h4 {
  color: white;
  font-size: 22px;
  font-family: "Ubuntu";
  font-weight: 500;
  text-align: center;
}

footer#footer .footer__wrapper__des__link {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 35px;
  margin-bottom: 65px;
}

footer#footer .footer__wrapper__des__link a {
  color: #c8c8cb;
  font-size: 20px;
  font-family: "Ubuntu";
  font-weight: 400;
  -webkit-text-decoration: solid 2px underline transparent;
          text-decoration: solid 2px underline transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

footer#footer .footer__wrapper__des__link a:not(:last-child) {
  margin-bottom: 18px;
}

footer#footer .footer__wrapper__des__link a:hover {
  color: #dfdfdf;
  -webkit-text-decoration: solid 2px underline #dfdfdf;
          text-decoration: solid 2px underline #dfdfdf;
}

@media screen and (min-width: 610px) {
  footer#footer .footer__wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 0 130px 0 0;
    padding: 70px 165px 0;
  }
  footer#footer .footer__wrapper__logo {
    -ms-flex-item-align: baseline;
        align-self: baseline;
    margin: 0;
    margin-right: 175px;
  }
  footer#footer .footer__wrapper__des {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  footer#footer .footer__wrapper__des h4 {
    text-align: left;
  }
  footer#footer .footer__wrapper__des__links {
    padding-top: 20px;
  }
  footer#footer .footer__wrapper__des__links a {
    margin-right: auto;
  }
  footer#footer .footer__wrapper__des__links:not(:last-child) {
    margin-right: 229px;
  }
}
/*# sourceMappingURL=style.css.map */