footer {
  box-sizing: border-box;
  width: 100%;
  height: 270px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-image: url(../img/footer/shutterstock_434145025\ 1.png);
  background-repeat: no-repeat;
  background-size: cover; 
  background-position: center;
  color: #DEDEDE;
}

.column-1 {
  width: 27.4%;
  display: flex;
  align-items: center;
  margin-left: 4.2%;
}
.column-1 img {
  width: 62.2%;
}
.footer__divider{
  margin-left: 22.4%;
}

.column-2 {
  flex-grow: 1;
  text-align: left;
}
.footer_infoContact {
  color: #DEDEDE;
  font-family: 'Asap';
  font-weight: 400;
  font-size: 1em;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1.8px;
}
.footer_infoContact a:hover {
  color: #DEDEDE;
}
.footer_infoContact-tel{
  font-weight: 700;
}
.footer_infoContact.down{
  margin-top: 20px;
}
.column-3 {
  width: 29%;
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 23px;
  margin-right: 4.2%;
  align-items: center;
}
.social-icons-container {
  width: 100%;
  display: flex;  
  justify-content: space-between;
}
.social-icon {
  width: 35.714px;
  height: 35.714px;
}

@media (min-width: 767px) {
  .dropdown-button {
    display: none;
  }
}

@media (max-width: 767px) {
  footer {
    flex-direction: column;
    text-align: center;
    justify-content: flex-start;
    height: 430px;
    background-image: url(../img/footer/background-mobile.png);
  }
  .column-1, .column-2, .column-3 {
    width: 100%;
    margin: 0px;
  }
  .column-1{
    justify-content: center;
    height: 80px;
    margin-top: 10px;
  }
  .column-1 img {
    width: 40%;
  }
  .footer__divider{
    display: none;
  }

  .column-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 0;
  }
  .dropdown-container1, .dropdown-container2 {
    position: relative;
    display: inline-block;
    width: 90%;
  }
  .dropdown-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px;
    border: none;
    cursor: pointer;
    background-color: transparent;
  }
  .dropdown-button p{
    color: #DEDEDE;
    font-family: 'Asap';
    font-weight: 700;
    font-size: 1em;
    font-style: normal;
    line-height: normal;
    letter-spacing: 1.8px;
    margin: 0;
  }
  .dropdown-content {
    display: none;
    position: absolute;
    min-width: 300px; 
    width: 100%;
    padding: 0 10px;
    z-index: 1;
  }
  .dropdown-content.active{
    display: flex;
  }
  .dropdown-container1:hover, .dropdown-container2:hover {
    display: block;
  }
  .toggle-btn, .toggle-btn-down{
    color: #DEDEDE;
    font-family: 'Asap';
    font-size: 2.2em;
  }
  .toggle-btn::after, .toggle-btn-down::after {
    content: '+';
  }
  .toggle-btn.active::after, .toggle-btn-down.active::after  {
    content: '-';
  }
  .dropdown-container2 {
    transition: all 0.3s;
    margin-top: 15px;
  }
  .dropdown-container2.opened {
    margin-top: 50px; 
  }

  .column-3 {
    transition: all 0.3s;
    margin-top: 50px;
  }
  .column-3.opened {
    margin-top: 80px; 
  }
  .social-icons-container {
    width: 80%;
  }
  .social-icon {
    width: 25.7px;
    height: 25.7px;
  }
  .footer_infoContact {
    font-size: 0.8em;
    letter-spacing: 0.9px;
    line-height: 1.2em;
  }
  .footer_infoContact.down{
    margin-top: 0px;
  }
  .footer_infoContact-tel{
    font-size: 0.9em;
  }
}