@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Nunito+Sans:opsz,wght@6..12,200;6..12,300;6..12,400;6..12,500;6..12,600;6..12,700;6..12,800;6..12,900&display=swap');
:root {
  --main-font: "Montserrat", sans-serif;
  --second-font: "Nunito Sans", sans-serif;
}
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
body {
  overflow-x: hidden !important;
  font: 16px var(--main-font);
  font-weight: 400;
  color: #1d1d1d;
  background-color: #ffffff;
}
html,
body {
  height: 100%;
}
button,
button:hover button:active,
button:focus {
  outline: none;
}
a {
  text-decoration: none;
  color: #000;
}
li {
  list-style: none;
}
.container {
  margin: 0 auto;
  padding: 0 16px;
  max-width: 1338px;
  width: 100%;
}
@media (max-width: 1023px) {
  .container {
    padding: 0 35px;
  }
}
.default-title-wrapper {
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.20);
}
.default-title {
  margin: 0;
  color: #323232;
  font-family: var(--main-font);
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; 
}
@media (max-width: 1023px) {
  .default-title-wrapper {
    padding-bottom: 8px;
    margin-bottom: 16px;

  }
  .default-title {
    font-size: 20px;
  }
}
@media (max-width: 767px) {

}
body.menu-active {
    overflow: hidden;
}
.header {
  z-index: 2;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  top: 30px;
}

header.header.sticky-menu {
    position: fixed;
    /* left: 0;
    transform: unset;
    top: 0; */
    top: 0;
    backdrop-filter: blur(7.5px);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.06);
    transition: all .3s ease;
}
@media (min-width: 1970px) {
    header.header.sticky-menu {
        max-width: 1920px;
        width: 100%;
        margin: 0 auto;
    }
}
header.header.margin-menu {
    position: fixed;
    top: 10px;
    transition: all .3s ease;
}
header.header.sticky-menu .header__inner{
    box-shadow: unset;
    background: unset;
    backdrop-filter: none;
    box-shadow: none;
}
.header__inner {
  /* margin-top: 30px; */
  padding: 16px 32px 24px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(7.5px);
}
.header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  display: block;
}
.header__logo img {
  max-width: 100%;
  object-fit: cover;
}
.header__nav {
  display: flex;
  align-items: center;
}
.header__nav > li {
  position: relative;
  margin-right: 54px;
  transition: all 300ms ease;
}
.header__nav > li > a {
  color: #323232;
  text-align: center;
  font-family: var(--second-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  transition: all 300ms ease;
}
.header__nav > li:hover > a {
  color: #8C8C8C;
}
.header__nav > li > ul {
  display: block;
  visibility: hidden;
  opacity: 0;
}
.header__nav > li > ul {
  position: absolute;
  left: 0px;
  top: 100%;
  padding: 30px 24px;
  z-index: 100;
  background: #ffffff;
  opacity: 1;
  border-radius: 2px;
  transform: scaleY(0);
  transform-origin: top;
  transition: all 300ms ease;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.12);
}
.header__nav > li > ul > li {
  position: relative;
  width: 100%;
}
.header__nav > li > ul > li.dropdown-child a {
    margin-bottom: 16px;
    display: inline-block;
}
.header__nav > li > ul > li.dropdown-child > ul > li a {
    margin-bottom: 0;
}
.header__nav > li > ul > li.dropdown-child > ul > li+li {
    margin-top: 12px;
}
.header__nav > li > ul > li+li {
  margin-top: 16px;
}
.header__nav > li > ul > li a {
  color: #323232;
  font-family: var(--main-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; 
}
.header__nav > li > ul > li a:hover {
    color: #8C8C8C;
}
.header__nav > li.dropdown {
  position: relative;
}
.header__nav > li.dropdown::before {
    position: absolute;
    content: '';
    top: 100%;
    left: 0;
    width: 100%;
    height: 30px;
    background: transparent;
}
.header__nav > li.dropdown::after {
  position: absolute;
  content: '';
  top: 50%;
  transform: translateY(-50%);
  right: -18px;
  width: 10px;
  height: 5px;
  background-image: url('../images/icons/menu-bottom.svg');
  background-repeat: no-repeat;
  background-size: contain;
}
.header__nav > li.dropdown:hover > ul {
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -moz-transform: scaleY(1);
  transform: scaleY(1);
  visibility: visible;
  opacity: 1;
  width: 300px;
  top: calc(100% + 16px);
}

.header__nav > li.dropdown:hover::after {
  transform: rotate(180deg);
}
.header__nav > li.dropdown > a {
    cursor: default;
}
.header__burger {
  cursor: pointer;
  display: block;
  z-index: 23;
  position: relative;
  width: 20px;
  height: 15px;
}
.header__burger span {
  position: absolute;
  background-color: #323232;
  top: 50%;
  left: 0;
  height: 1px;
  width: 100%;
  transition: all 0.3s ease 0s;
}
.header__burger::before, .header__burger::after {
  content: "";
  background-color: #323232;
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  transition: all 0.3s ease 0s;
}
.header__burger::before {
  top: 0;
}
.header__burger::after {
  bottom: 0;
}
.header__burger.active:before {
  transform: rotate(45deg);
  top: 9px;
}
.header__burger.active:after {
  transform: rotate(-45deg);
  bottom: 5px;
}
.header__burger.active span {
  transform: scale(0);
}
.header__mobile, .header__burger {
  display: none;
}
.header__mobile-inner {
  overflow-y: auto;
  max-height: 88vh;
  height: 100%;
  padding: 48px 36px;
}
.header__mobile.active {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100vh;
  max-height: 100vh;
  border-top: 1px solid rgba(0, 0, 0, 0.10);
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.06);
}
.header__mobile-nav {
  padding-bottom: 32px;
  margin-bottom: 26px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}
.header__mobile-nav > li > ul {
  display: none;
  margin-top: 24px;
}
.header__mobile-nav > li > ul > li+li {
  margin-top: 20px;
}
.header__mobile-nav > li > ul > li a {
  color: #323232;
  font-family: var(--second-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
}
.header__mobile-nav > li > ul > li a.active {
  color: #BABABA;
}
.header__mobile-nav > li.active > ul {
  display: block;
}
.header__mobile-nav > li > ul > li.dropdown-child > a {
    display: inline-block;
    margin-bottom: 12px;
}
.header__mobile-nav > li > ul > li > ul > li+li {
    margin-top: 20px;
}
.header__mobile-nav > li > ul > li > ul > li a{
    margin-bottom: 0;
}
.header__mobile-nav > li+li {
  margin-top: 40px;
}
.header__mobile-nav > li.dropdown {
  position: relative;
  max-width: 100%;
}
.header__mobile-nav > li > a {
  position: relative;
  color: #323232;
  font-family: var(--second-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}
.header__mobile-nav > li.active > a {

  color: #8C8C8C;
}
.header__mobile-nav > li.dropdown > a::after {
  position: absolute;
  content: '';
  top: 50%;
  transform: translateY(-50%);
  right: -18px;
  width: 11px;
  height: 7px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7' fill='none'%3E%3Cpath d='M5.5 6L0.736859 1.5L10.2631 1.5L5.5 6Z' fill='%23323232'/%3E%3C/svg%3E");
}
.header__mobile-nav > li {
  width: max-content;
}
.header__mobile-nav > li.dropdown.active > a::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7' fill='none'%3E%3Cpath d='M5.5 -9.61651e-07L10.2631 4.5L0.736861 4.5L5.5 -9.61651e-07Z' fill='%23B4B4B4'/%3E%3C/svg%3E");
}
.header__mobile-contact+.header__mobile-contact {
  margin-top: 27px;
}
.header__mobile-contacts {
  max-width: 330px;
  width: 100%;
}
.header__mobile-contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__mobile-contact .left {
  margin-right: 10px;
  display: flex;
  align-items: center;
  color: #646464;
  font-family: var(--main-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; 
}
.header__mobile-contact .left img {
  display: inline-block;
  margin-right: 10px;
}
.header__mobile-contact .right {
  color: #323232;
  font-family: var(--main-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; 
  letter-spacing: 0.42px;
}
@media (max-width: 1023px) {
  .header .container {
    padding: 0 16px;
  }
  .header__burger {
    display: block;
  }
  .header__nav {
    display: none;
  }
  .header {
    top: 20px;
  }
  .header__inner {
    /* margin-top: 20px; */
    border-radius: 5px;
    padding: 9px 19px 11px;
  }
}
@media (max-width: 767px) {
  .header__logo img {
    max-width: 110px;
  }
}




.hero__inner {
  position: relative;
 
}
.hero__title {
  padding-left: 110px;
  background: url('../images/bg/text-bg.png'), lightgray -681.848px -385.328px / 325.313% 654.287% no-repeat;
  background-position: center;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--main-font);
  font-size: 52px;
  font-style: normal;
  font-weight: 800;
  line-height: 115%;
  text-transform: uppercase;
}
@media (min-width: 1024px) and (max-width: 1919px){
    .hero__title {
        transform: translate(85px, -50px);
    }
}
.hero__background {
  display: none;
}
.hero__top {
  position: relative;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-size: contain !important;
  background-position: center !important;
  padding: 400px 0 710px;
}
.hero.hero--2 .hero__top {
  padding: 0;
  background-size: cover !important;
  height: 320px;
}
.hero__bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 52px 0 48px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.60) 0%, #FFF 100%);
  backdrop-filter: blur(7.5px);
}
.hero-benefits__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}
.hero-benefits__item {
  padding: 30px 30px 34px;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.12);
}
.hero-benefits__item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  padding: 25px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: #FFF;
  box-shadow: 0px 4px 10px 0px rgba(139, 149, 160, 0.50);
}
.hero-benefits__item .icon:hover {
  box-shadow: 0px 4px 10px 0px rgba(139, 149, 160, 0.85);
}
.hero-benefits__item img {
  max-width: 100%;
  width: 100%;
  object-fit: cover;
}
.hero-benefits__item .title {
  color: #4E5365;
  text-align: center;
  font-family: var(--second-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}
.hero__top-content {
  position: relative;
}
.hero.hero--2 .hero__top {
    position: relative;
    background: unset;
}
.hero.hero--2 .hero__top::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.1);
}
@media (min-width: 1970px) {
    .hero {
        max-width: 1920px;
        width: 100%;
        margin: 0 auto;
    }
}
@media (max-width: 1200px) {
  .hero-benefits__item {
    padding-left: 16px;
    padding-right: 16px;
  }
  .hero-benefits__item .icon {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 1023px) {
  .hero.hero--2 .hero__top {
    height: 200px;
    background: unset !important;
  }
  .hero__background {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
  }
  .hero__top {
    /* padding: 560px 0; */
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 19.42%, #B9B9B9 100%) !important;
    padding: 255px 0 480px;
  }
  .hero__title {
    padding-left: 0;
    font-size: 32px;
  }
  .hero__bottom {
    position: relative;
    padding: 32px 0;
  }
  .hero-benefits__items {
    grid-template-columns: repeat(2, 1fr); 
  }
  
}
@media (max-width: 767px) {
  .hero__top {
    padding: 140px 0 196px;
  }
  .hero-benefits__items {
    grid-template-columns: repeat(1, 1fr); 
    grid-gap: 16px;
  }
  .hero-benefits__item {
    display: flex;
    align-items: center;
    padding: 19px 9px;
  }
  .hero-benefits__item .icon {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 20px;
    padding: 0;
    width: 40px;
    height: 40px;
    box-shadow: unset;
  }
  .hero-benefits__item img {
    width: 40px;
    min-width: 40px;
    height: auto;
  }
  .hero-benefits__item .title {
    text-align: left;
    font-size: 14px;
  }
}

.section-padding {
  padding: 168px 0 120px;
}
.section-padding2 {
  padding: 65px 0 160px;
}
.main-description__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.main-description__text {
  width: 46.25%;
  text-align: justify;
}
.main-description__image {
  width: 49.23%;
  border-radius: 10px;
  overflow: hidden;
}
.main-description__image img {
  max-width: 100%;
  border-radius: 10px;
}
.default-text p {
  margin-bottom: 24px;
  color: #646464;
  font-family: var(--second-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
.default-text a {
    
}
.default-text h3 {
  margin-bottom: 24px;
  color: #323232;
  text-align: justify;
  font-family: var(--main-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
}
.default-text strong {
  color: #323232;
  font-weight: 700;
}
@media (max-width: 1023px) {
  .section-padding {
    padding: 60px 20px 120px;
  }
  .section-padding2 {
    padding: 30px 0 120px;
  }
  .default-text p  {
    font-size: 16px;
  }
  .default-text h3 {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .main-description__row {
    flex-direction: column-reverse;
  }
  .main-description--reverse .main-description__row {
    flex-direction: column;
  }
  .main-description__image {
    margin-bottom: 24px;
  }
  .main-description__text,
  .main-description__image {
    width: 100%;
  }
}
@media (max-width: 475px) {
    .main-description__image img {
        max-height: 200px;
        width: 100%;
        object-fit: cover;
    }
}
.main-benefit__item:first-child {
  padding-top: 0;
}
.main-benefit__item {
  padding: 30px 0 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.20);
}
.main-benefit__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.main-benefit__button .left {
  display: flex;
  align-items: center;
  margin-right: 20px;
}
.main-benefit__button .image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 32px;
  padding: 16px;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  background: #FFF;
  box-shadow: 0px 4px 10px 0px rgba(139, 149, 160, 0.50);
}
.main-benefit__button .image img {
  max-width: 55px;
  width: 100%;
}
.main-benefit__button .title {
  color: #323232;
  font-family: var(--main-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}
.main-benefit__item.active .main-benefit__button .title {
  color: #626779;
}
.main-benefit__text {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: justify;
}
.main-benefit__text .column {
  width: 47.7%;
}
.main-benefit__item.active .right svg {
  transform: rotate(180deg);

}
.main-benefit__item.active .right svg path {
  fill: #8A8FA1;
}
.main-benefit__text-wrapper {
  display: none;
}
.main-benefit__item .main-benefit__text {
  margin-top: 30px;
  display: flex;
}
@media (max-width: 1023px) {
  .main-benefit__item {
    padding: 10px 0;
  }
  .main-benefit__button .image {
    margin-right: 16px;
    padding: 9px;
    width: 60px;
    height: 60px;
    min-width: 60px;
  }
  .main-benefit__button .title {
    font-size: 14px;
  }
  .main-benefit__button .image img {
    max-width: 35px;
  }
  .main-benefit__item .right img {
    max-width: 20px;
  }
  .main-benefit__item.active .main-benefit__text {
    margin-top: 24px;
  }
}
@media (max-width: 767px) {
  .main-benefit__text {

  }
  .main-benefit__text .column {
    width: 100%;
  }
  .main-benefit__button .right svg {
    width: 11px;
    height: 7px;
  }
}

.main-contacts__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.main-contacts__item-map {
  position: relative;
  width: 49.23%;
  filter: grayscale(1) brightness(1);
}
.main-contacts__item-map iframe {
  max-width: 100%;
  width: 100%;
  border: 0.5px solid rgba(0,0,0,0.1);
  padding-right: 1px;
}
.main-contacts__item:not(:last-child) {
  margin-bottom: 100px;
}
.main-contacts__item-info {
  width: 46.17%;
}
.main-contacts__phones {
  margin-top: 35px;
  max-width: 400px;
  width: 100%;
}
.main-contacts__phone {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-contacts__phone .left {
  margin-right: 10px;
  display: flex;
  align-items: center;
  color: #646464;
  font-family: var(--main-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.54px;
}
.main-contacts__phone .left img {
  display: inline-block;
  margin-right: 12px;
}
.main-contacts__phone .right a {
  color: #323232;
  font-family: var(--main-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
  letter-spacing: 0.6px;
  transition: all .3s ease;
}
.main-contacts__phone .right a:hover {
    color: #8C8C8C;
}
.main-contacts__phone+.main-contacts__phone {
  margin-top: 16px;
}
.main-contacts__link {
  margin-top: 65px;
  display: flex;
  align-items: center;
  color: #323232;
  font-family: var(--main-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; 
  letter-spacing: 0.6px;
  transition: all .3s ease;
}
.main-contacts__link img {
  display: inline-block;
  margin-right: 16px;
}
.main-contacts__link:hover {
 opacity: 0.8;
}
.main-contacts__link--mobile {
  display: none;
}
@media (max-width: 1023px) {
  .main-contacts__item {
    flex-direction: column-reverse;
  }
  .main-contacts__item-map, .main-contacts__item-info {
    width: 100%;  
  }
  .main-contacts__phone .left,
  .main-contacts__phone .right a {
    font-size: 14px;
  }
  .main-contacts__item-info {
    margin-bottom: 24px;
  }
  .main-contacts__item:not(:last-child) {
     margin-bottom: 80px;
  } 
  .main-contacts__link {
    display: none;
    margin-top: 24px;
    font-size: 14px;
  }
  .main-contacts__link--mobile {
    display: flex;
  }
  .main-contacts__item-map {
    margin: 0 -35px;
    width: 100vw;
  }
  .main-contacts__link img {
    margin-right: 12px;
  }
}
@media (max-width: 475px) {
    .main-contacts__item-map iframe {
        height: 350px;
    }
    .main-contacts__item:nth-child(2) .main-contacts__item-info p {
        margin-bottom: 0;
    }
}


.footer {
  position: relative;
  background: #FAFAFA;
}
@media (min-width: 1970px) {
    .footer {
        max-width: 1920px;
        width: 100%;
        margin: 0 auto;
    }
}
.footer::after {
  z-index: 0;
  position: absolute;
  content: '';
  top: 24px;
  right: 0;
  width: 308px;
  height: 456px;
  background-image: url('../images/design/footer-img.png');
  background-repeat: no-repeat;
  background-size: contain;
}
.footer__wrapper {
  position: relative;
  z-index: 1;
}
.footer__inner {
  padding-top: 23px;
  overflow: hidden;
}
.footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 170px;
}
.footer__top-item {
  width: 30%;
}
.footer__top-item:first-child .footer__title {
  position: relative;
}
.footer__top-item:first-child .footer__title::after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 1px;
  background-color: rgba(0,0,0,0.1);
}
.footer__title {
  display: inline-block;
  padding-bottom: 23px;
  margin-bottom: 20px;
  color: #A0A0A0;
  font-family: var(--main-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 120%;
  text-transform: uppercase;
}
.footer__menu li {
  margin-bottom: 24px;
}
.footer__menu > li.dropdown > a {
    margin-bottom: 16px;
}
.footer__menu > li.dropdown > ul > li {
    margin-bottom: 0;
}
.footer__menu > li.dropdown > ul > li+li {
    margin-top: 12px;
}
.footer__menu li:last-child {
  margin-bottom: 0;
}
.footer__menu li a {
  display: block;
}
.footer__menu li a, .footer__menu p {
  color: #323232;
  font-family: var(--main-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; 
}
.footer__menu li a:hover,
.footer__top-contact .right a:hover {
  color: #8C8C8C;
  transition: all .3s ease;
}
.footer__menu p  {
  margin-bottom: 16px;
}
.footer__menu a+a {
  margin-top: 12px;
}
.footer__top-contacts {
  max-width: 330px;
}
.footer__top-contact {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__top-contact .left {
  margin-right: 10px;
  color: #646464;
  font-family: var(--main-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; 
  letter-spacing: 0.48px;
}
.footer__top-contact .left img {
  display: inline-block;
  margin-right: 12px;
}
.footer__top-contact .right {
  color: #323232;
  font-family: var(--main-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; 
  letter-spacing: 0.54px;
}
.footer__bottom {
  padding: 20px 0 23px;
  border-top: 1px solid rgba(0, 0, 0, 0.10);;
}
.footer__bottom-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.footer__developer, .footer__copyright {
  color: #646464;
  font-family: var(--main-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}
.footer__developer {
  display: flex;
  align-items: center;
}
.footer__developer img {
  display: inline-block;
  margin-left: 18px;
}
.footer__developer:hover {
  transition: all .3s ease;
}
.footer__developer img {
  transition: all .3s ease;
}
.footer__developer:hover img { 
  border-radius: 50%;
  filter: brightness(0.85);
  box-shadow: 0px 0px 20px rgba(100, 100, 100, 0.25);
}
@media (max-width: 1023px) {
  .footer__inner {
    padding: 32px 0 40px;
  }
  .footer__top-item {
    margin-bottom: 40px;
    width: 48%;
  }
  .footer__title {
    padding-bottom: 12px;
    margin-bottom: 16px;
    font-size: 18px;
    border-bottom: 1px solid #D9D9D9;
  }
  .footer__top-item:first-child .footer__title::after {
    display: none;
  }
  .footer__top {
    padding-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .footer__top-item {
    width: 100%;
  }
  .footer__top-item:last-child, .footer__top-contact:last-child {
    margin-bottom: 0;
  }
  .footer__inner {
    padding-bottom: 0;
  }
  .footer__bottom {
    padding-top: 0;
  }
  .footer__menu li a, .footer__menu p,
  .footer__top-contact .right {
    font-size: 14px;
  }
  .footer__menu > li.dropdown > ul > li+li {
    margin-top: 20px;
   } 
  .footer__top-contact .left {
    font-size: 12px;
  }
  .footer__bottom {
    padding-bottom: 0;
    border-top: unset;
  }
  .footer__copyright {
    position: relative;
    padding: 20px 0 12px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.20);
  }
  .footer__copyright::before, .footer__copyright::after {
    position: absolute;
    content: '';
    bottom: -1px;
    width: calc((100vw - 100%) / 2);
    height: 1px;
    background-color: rgba(0,0,0,0.20);
  }
  .footer__copyright::before {
    left: calc((100vw - 100%) / 2 * -1);
  }
  .footer__copyright::after {
    right: calc((100vw - 100%) / 2 * -1);
  }
  .footer__developer {
    padding: 12px 0;
  }
  .footer__copyright, .footer__developer {
    width: 100%;
    justify-content: flex-end;
  }
  .footer::after {
      display: none;
  }
}