.footer-media {
  display: none;
}

.footer {
  padding-left: 150px;
  padding-right: 150px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 -1px 5px #3e3e3eb3;
}
.footer .logo:hover .logo_icon{
  fill: #E74F24
}
.footer .top-side {
  margin-top: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer .top-side .title {
  font-size: 32px;
  color: white;
}

.footer .top-side .mail-side .subscribe-form .mail {
  width: 411px;
  height: 60px;
  border: none;
  background-color: #101010;
  color: #8C959F;
  font-size: 16px;
  padding-left: 15px;
}

.footer .top-side .mail-side .subscribe-form .subscribe-btn {
  width: 212px;
  height: 60px;
  background: #E74F24;
  color: white;
  font-size: 16px;
  border: none;
}

.footer .between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 70px;
  margin-bottom: 70px;
}

.footer .between .url-side {
  display: flex;
  align-items: center;
  gap: 20px;
  text-transform: uppercase;
  font-size: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer .between .url-side a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}
.footer .between .url-side a:hover {
  color: #E74F24;
}
.footer .between .url-side .block {
  display: flex;
  flex-direction: column;
}

.footer .between .url-side .block .link {
  max-width: 210px;
  font-size: 15px;
  line-height: 31px;
  color: #8C959F;
  text-decoration: none;
}


.footer .bottom {
  display: flex;
    justify-content: space-between;
    align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  border-top: 1px solid #3E3D3D;
}
.footer .between .icons {
  gap: 10px;
  display: flex;
}

.footer .between .icons .icon.mouse-over svg path {
   animation: iconMouseOver 1.5s forwards;
}
.footer .between .icons .icon.mouse-out svg path {
  animation: iconMouseOut 1.5s forwards;
}
@keyframes iconMouseOver {
    0% {
        fill: #3B3B3B;
      stroke: #3B3B3B
    }
    100% {
        fill: #E74F24;
        stroke: #E74F24;
    }
}
@keyframes iconMouseOut {
    0% {
      fill: #E74F24;
      stroke: #E74F24
    }
    100% {
        fill: #3B3B3B;
      stroke: #3B3B3B
    }
}
.footer .bottom .text {
  font-size: 16px;
  color: #8C959F;
}
.footer .brain_fors_img {
  height: 40px;
}
@media (max-width: 1680px) {
    .footer {
        padding-left: 100px;
        padding-right: 100px;
    }
    .footer .between .icons svg {
        width: 30px;
    }
    .footer .between .url-side {
        /*gap: 10px;*/
        flex-wrap: wrap;
        gap: 10px 20px;
        justify-content: center;
    }
    .footer .between .icons {
        gap: 5px;
    }
    .footer .between {
        gap: 10px
    }
}
@media (max-width: 1200px) {
    .footer .between .url-side a {
        font-size: 12px;
    }
}
