@import url("../fonts/stylesheet.css");
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css");

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: Gilroy;
}

body,
html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
}

body {
  background-image: url("../img/bg-img.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-color: #3F5756;
}

.title {
  font-weight: 500;
  font-size: 36px;
  line-height: 42px;
  text-transform: uppercase;
  background: -webkit-gradient(linear, right top, left top, from(#0B99B0), to(#09C9EA));
  background: linear-gradient(270deg, #0B99B0 0%, #09C9EA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 15px;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

::-moz-selection {
  background: #00ACC9;
  color: #FFF;
}

::selection {
  background: #00ACC9;
  color: #FFF;
}

.navbar {
  padding: 5px 0;
  background: rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid #E9E9E9;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.navbar.show {
  -webkit-backdrop-filter: unset;
          backdrop-filter: unset;
}

.navbar__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navbar__logo {
  width: 15%;
  margin-right: 10px;
}
.navbar__logo img {
  width: 120px;
  height: auto;
}

.navbar__burger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  width: 70%;
  background: transparent;
}
.navbar__burger button {
  background: transparent;
  border: 0;
  outline: none;
  cursor: pointer;
}

.navbar__menu_mobile {
  position: fixed;
  top: 0;
  right: 0;
  width: 250px;
  height: 100%;
  background: #fff;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  z-index: 1000;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.navbar__menu_mobile.show {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}
.navbar__menu_mobile.show a {
  text-decoration: none;
  margin: 10px 0;
  color: #4F4F4F;
}
.navbar__menu_mobile.show a:hover {
  color: #005563;
  text-decoration: underline;
}
.navbar__menu_mobile.show a:first-child {
  margin-top: 35px;
}

.content-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
}

.content-overlay.show {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.header {
  padding: 20px 0;
}

.header__title {
  text-align: center;
}
.header__title h1 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-weight: 500;
  color: #FFF;
  font-size: 40px;
  line-height: 1.1;
}
.header__title h1 span {
  color: #00ACC9;
  font-weight: 700;
}
.header__title p {
  margin-bottom: 20px;
  color: #FFF;
}

.header__body {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80%;
  margin: 0 auto;
}
.header__body video {
  display: inline-block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 400px;
  border-top-left-radius: 15%;
  border-top-right-radius: 15%;
  border-bottom-left-radius: 300px;
  border-bottom-right-radius: 300px;
}
.header__body .header__body_buttons {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -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;
  left: 30%;
  width: 45%;
}
.header__body .header__body_buttons a {
  text-decoration: none;
  color: #FFF;
  padding: 15px 40px;
  width: 100%;
  margin-bottom: 8px;
  border-radius: 16px;
  text-align: center;
  background: #000;
  display: inline-block;
  font-size: 18px;
}
.header__body .header__body_buttons a:nth-child(1) {
  background: rgba(0, 0, 0, 0.16);
  -webkit-backdrop-filter: blur(5.5px);
          backdrop-filter: blur(5.5px);
}
.header__body .header__body_buttons a:nth-child(2) {
  background: rgba(21, 166, 75, 0.76);
  -webkit-backdrop-filter: blur(5.5px);
          backdrop-filter: blur(5.5px);
}

@media (max-width: 768px) {
  .header__body {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .header__title h1 {
    margin-top: 30px;
    font-size: 27px;
  }
  .header__title h1 br {
    display: none;
  }
  .header__body video {
    border-top-left-radius: 35%;
    border-top-right-radius: 35%;
  }
  .header__body .header__body_buttons a {
    width: 160%;
    padding: 15px 10px;
  }
}
.services {
  padding: 15px 0 35px;
}

.services__title {
  text-align: center;
}
.services__title p {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 30px;
  color: #FFF;
}

.services__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: normal;
      -ms-flex-align: normal;
          align-items: normal;
  padding: 20px 0 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.services__item {
  width: 20%;
  margin-right: 10px;
  margin-left: 10px;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 19px 22px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 85, 99, 0.11)), to(rgba(0, 151, 176, 0.11))), #F7F8FA;
  background: linear-gradient(180deg, rgba(0, 85, 99, 0.11) 0%, rgba(0, 151, 176, 0.11) 100%), #F7F8FA;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  border-radius: 12px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.services__item:hover {
  -webkit-box-shadow: 0px 5px 10px 0px rgba(34, 38, 42, 0.46);
          box-shadow: 0px 5px 10px 0px rgba(34, 38, 42, 0.46);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.services__item .services__item_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
}
.services__item .services__item_top img {
  width: 25%;
  height: auto;
  margin-right: 15px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
.services__item .services__item_top h3 {
  width: 75%;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.1;
  color: #005563;
}
.services__item p {
  color: #005563;
}
.services__item a {
  margin-top: 15px;
  text-align: center;
  padding: 10px 15px;
  text-decoration: none;
  color: #FFF;
  background: #00ACC9;
  -webkit-backdrop-filter: blur(5.5px);
          backdrop-filter: blur(5.5px);
  border-radius: 16px;
}
.services__item:last-child {
  background: #00ACC9;
}
.services__item:last-child h3 {
  color: #FFF;
}
.services__item:last-child a {
  background: #15A64B;
  font-weight: 500;
}

.services__text-01 {
  background: #DCEDF1;
  border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 85%;
  margin: 0 auto;
  margin-bottom: 16px;
}
.services__text-01 h4 {
  width: 36%;
  margin-right: 30px;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #222222;
}
.services__text-01 img {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  width: 30%;
}

.services__text-02 {
  background: #DCEDF1;
  border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 85%;
  margin: 0 auto;
}
.services__text-02 h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  color: #222222;
}
.services__text-02 a {
  margin-top: 10px;
  text-align: center;
  padding: 13px 15px;
  text-decoration: none;
  color: #FFF;
  background: #00ACC9;
  -webkit-backdrop-filter: blur(5.5px);
          backdrop-filter: blur(5.5px);
  border-radius: 16px;
  width: 35%;
}
.services__text-02 a:last-child {
  background: rgba(21, 166, 75, 0.76);
  -webkit-backdrop-filter: blur(5.5px);
          backdrop-filter: blur(5.5px);
}

@media (max-width: 1024px) {
  .services__item {
    width: 33.333%;
  }
  .services__text-01,
  .services__text-02 {
    width: 98%;
  }
  .services__text-01 h4 {
    width: 55%;
  }
  .services__text-02 a {
    width: 55%;
  }
}
@media (max-width: 768px) {
  .services__items {
    overflow-x: scroll;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .services__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 250px;
            flex: 1 0 250px;
  }
  .services__item:first-child {
    margin-left: 5px;
  }
}
@media (max-width: 698px) {
  .services__text-01 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .services__text-01 h4 {
    font-size: 17px;
    line-height: 1.2;
    text-align: center;
    width: 90%;
    margin-left: 15px;
    margin-right: 15px;
  }
  .services__text-01 h4 br {
    display: none;
  }
  .services__text-01 img {
    width: 250px;
    margin-top: 10px;
  }
}
@media (max-width: 500px) {
  .services__text-02 h3 {
    font-size: 20px;
    width: 95%;
    margin: 5px 10px;
    line-height: 1.2;
  }
  .services__text-02 a {
    width: 80%;
  }
}
.about {
  padding: 5px 0 25px;
}

.about__body {
  text-align: center;
  width: 85%;
  margin: 0 auto;
}
.about__body p {
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .about__body {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .about__body p {
    font-size: 16px;
    line-height: 1.2;
  }
  .title {
    font-size: 30px;
    margin-bottom: 5px;
    line-height: 1;
  }
}
.benefits {
  padding: 10px 0 20px;
}

.benefits__title {
  text-align: center;
}

.benefits__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: normal;
      -ms-flex-align: normal;
          align-items: normal;
  padding: 15px 0 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.benefits__item {
  width: 20%;
  margin-right: 10px;
  margin-left: 10px;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 25px 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  background: #DCEDF1;
  border-radius: 16px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.benefits__item:hover {
  -webkit-box-shadow: 0px 5px 10px 0px rgba(34, 38, 42, 0.46);
          box-shadow: 0px 5px 10px 0px rgba(34, 38, 42, 0.46);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.benefits__item h4 {
  font-weight: 500;
  font-size: 19px;
  line-height: 16px;
  color: #000000;
}
.benefits__item p {
  font-weight: 400;
  color: #000000;
  margin-top: 15px;
  line-height: 1.1;
}
.benefits__item:last-child {
  overflow: hidden;
  position: relative;
  width: 41.5%;
  text-align: left;
  background: #005563;
  padding-left: 20px;
}
.benefits__item:last-child svg {
  position: absolute;
  right: 30px;
  bottom: -5px;
}
.benefits__item:last-child h4 {
  color: #FFF;
}
.benefits__item:last-child p {
  color: #FFF;
}
.benefits__item:last-child a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 15px;
  color: #FFF;
  text-decoration: none;
  display: inline-block;
  background: #15A64B;
  border-radius: 6px;
  margin-top: 10px;
}

@media (max-width: 974px) {
  .benefits__items {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    overflow-x: scroll;
  }
  .benefits__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 270px;
            flex: 1 0 270px;
  }
  .benefits__item:first-child {
    margin-left: 0;
  }
  .benefits__item:last-child {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 350px;
            flex: 1 0 350px;
  }
  .benefits__item:last-child svg {
    width: 100px;
    right: 10px;
  }
}
@media (max-width: 500px) {
  .benefits__item {
    padding: 15px 5px;
    margin-right: 5px;
    margin-left: 5px;
  }
}
@media (max-width: 395px) {
  .benefits__item:last-child {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 320px;
            flex: 1 0 320px;
  }
  .benefits__item:last-child svg {
    right: 0px;
    bottom: -25px;
    width: 70px;
  }
}
.stages {
  padding: 10px 0 25px;
}

.stages__title {
  text-align: center;
}
.stages__title p {
  color: #FFF;
  line-height: 1.4;
  font-size: 18px;
}

.stages__body {
  width: 85%;
  margin: 10px auto;
  position: relative;
  overflow-x: hidden;
  padding: 35px 0;
}

.stages__item {
  width: 350px;
  height: 230px;
  padding: 35px 5px;
  padding-left: 18px;
  padding-right: 10px;
  background: #DCEDF1;
  -webkit-box-shadow: 7px 4px 34px -9px rgba(32, 39, 50, 0.15);
          box-shadow: 7px 4px 34px -9px rgba(32, 39, 50, 0.15);
  border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.stages__item:hover {
  -webkit-box-shadow: 0px 5px 10px 0px rgba(34, 38, 42, 0.46);
          box-shadow: 0px 5px 10px 0px rgba(34, 38, 42, 0.46);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.stages__item .svg-top {
  position: absolute;
  right: -25px;
  z-index: 90;
  top: -25px;
}
.stages__item .svg-bottom {
  position: absolute;
  right: -25px;
  z-index: 90;
  bottom: -25px;
}
.stages__item h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #222222;
  font-weight: 700;
}
.stages__item h3 span {
  color: #15A64B;
  font-size: 28px;
  font-weight: 800;
  margin-right: 15px;
}
.stages__item p {
  font-size: 17px;
  font-weight: 400;
  color: #222222;
}
.stages__item .stages__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  margin-bottom: 15px;
}
.stages__item .stages__top p {
  color: #0B99B0;
  font-weight: 500;
  font-size: 35px;
  margin-right: 20px;
}
.stages__item .stages__top h3 {
  width: 50%;
  font-weight: 600;
  font-size: 19px;
  line-height: 1.2;
}

.stages__slide {
  min-width: 350px;
  max-width: 350px;
  margin-right: 20px;
}

@media (max-width: 768px) {
  .stages__body {
    width: 100%;
  }
  .stages {
    padding: 10px 0 5px;
  }
}
@media (max-width: 500px) {
  .stages__title p {
    line-height: 1.2;
    font-size: 16px;
  }
  .stages__title p br {
    display: none;
  }
  .stages__item {
    padding-top: 15px;
    padding-bottom: 15px;
    height: 190px;
  }
  .stages__item .stages__top {
    margin-bottom: 5px;
  }
  .stages__item .stages__top h3 {
    width: 90%;
  }
}
@media (max-width: 400px) {
  .stages__slide {
    min-width: 100%;
    max-width: 100%;
    margin-right: 20px;
  }
  .stages__item {
    width: 100%;
    height: 200px;
  }
}
.partners {
  padding: 5px 0 20px;
}

.partners__title {
  text-align: center;
}

.partners__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 85%;
  margin: 0 auto;
  padding: 10px 0;
}
.partners__body img {
  margin: 0 10px;
  width: 18%;
  height: auto;
  border-radius: 16px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}

@media (max-width: 768px) {
  .partners__body {
    width: 100%;
  }
  .partners__body img {
    margin: 0 5px;
    width: 18%;
  }
}
@media (max-width: 667px) {
  .partners__body {
    overflow-x: scroll;
    padding-top: 5px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .partners__body img {
    width: 140px;
    margin-right: 10px;
  }
}
.brands {
  padding: 5px 0 15px;
}

.brands__title {
  text-align: center;
}

.brands__body {
  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;
  width: 85%;
  margin: 0 auto;
}

.brands__item {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 22%;
          flex: 1 0 22%;
  margin: 10px;
  padding: 5px;
  background: #FFF;
  text-align: center;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.brands__item:hover {
  -webkit-box-shadow: 0px 5px 10px 0px rgba(34, 38, 42, 0.46);
          box-shadow: 0px 5px 10px 0px rgba(34, 38, 42, 0.46);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.brands__item img {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  width: 160px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 768px) {
  .brands__body {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .brands__body {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    overflow-x: scroll;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .brands__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 24%;
            flex: 1 0 24%;
  }
}
.contacts {
  padding: 5px 0 20px;
}

.contacts__title {
  text-align: center;
}

.contacts__links {
  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;
  margin: 15px 0;
}
.contacts__links a {
  text-decoration: none;
  color: #FFF;
  margin: 0 10px;
  width: 30%;
  text-align: center;
}
.contacts__links a:hover {
  text-decoration: underline;
}

.contacts__map {
  width: 85%;
  margin: 0 auto;
}
.contacts__map iframe {
  border-radius: 16px;
}

@media (max-width: 768px) {
  .contacts__map {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .contacts__links {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .contacts__links a {
    width: auto;
  }
}
@media (max-width: 390px) {
  .contacts__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contacts__links a {
    margin-bottom: 10px;
  }
}
.footer {
  padding: 25px 0;
  background: #d9dddd;
  margin-top: 15px;
}

.footer__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 85%;
  margin: 0 auto;
}

.footer__left {
  width: 20%;
  margin-right: 20px;
}
.footer__left img {
  width: 100%;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer__right {
  width: 75%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer__right_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 15px;
}
.footer__right_top a {
  margin: 0 10px;
  color: #4F4F4F;
  text-decoration: none;
}
.footer__right_top a:hover {
  text-decoration: underline;
}

.footer__right_bottom a {
  display: inline-block;
  text-align: center;
  padding: 10px 15px;
  text-decoration: none;
  color: #FFF;
  background: #00ACC9;
  -webkit-backdrop-filter: blur(5.5px);
          backdrop-filter: blur(5.5px);
  border-radius: 16px;
  margin-right: 10px;
  width: 200px;
}
.footer__right_bottom a:last-child {
  background: #15A64B;
  font-weight: 500;
}

@media (max-width: 768px) {
  .footer__body {
    width: 100%;
  }
  .footer__left {
    width: 15%;
  }
  .footer__right {
    width: 80%;
  }
  .footer__right_top a {
    margin: 0 5px;
  }
}
@media (max-width: 720px) {
  .footer {
    padding: 15px 0;
  }
  .footer__left {
    margin-right: 0;
    width: 50%;
  }
  .footer__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__right {
    width: 100%;
  }
  .footer__right_top {
    width: 100%;
  }
  .footer__right_bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 575px) {
  .footer__right_top {
    -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;
    margin-bottom: 0;
  }
  .footer__right_top a {
    margin-bottom: 10px;
  }
}
@media (max-width: 500px) {
  .footer__right_bottom {
    -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;
  }
  .footer__right_bottom a {
    margin-right: 0;
    margin-bottom: 5px;
  }
}
/*  Widgets */
.widgets {
  position: fixed;
  right: 10px;
  bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 900;
}
.widgets img {
  width: 50px;
}

.widgets a:hover {
  -webkit-filter: brightness(50%);
  filter: brightness(50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}