/*
Theme Name: Divi Child
Template: Divi
*/


.footer_container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 20px;
}

 .left,
 .right {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 20px;
  color: white;
  line-height: 1.5em;
}

 .left img {
  width: auto;
  height: 100px;
}

 .right img {
  width: auto;
  height: 157px;
}

.et_pb_menu .et_pb_menu__menu>nav>ul>li>ul {
	top: calc(100% - 30px) !important;
    left: 31px !important
}

.et_pb_blog_0 .et_pb_image_container {
	margin-bottom: 10px !important;
}

.et_pb_bg_layout_light.et_pb_button:hover, .et_pb_bg_layout_light .et_pb_button:hover {
    background-color: rgba(0, 0, 0, .05);
    color: #d45b12 !important;
}

.et_pb_image_wrap img {
	margin-left: 0px !important;
    margin-rigth: 0px !important;
}

/* ===== Tablet (768px – 1023px) ===== */
@media (max-width: 1023px) and (min-width: 768px) {
  .footer_container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 60px;
  }

  .left, .right {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: left;
    gap: 40px;
    font-size: 22px;
  }

  .left img, .right img {
    height: 140px;
  }
}

/* ===== Mobile (below 768px) ===== */
@media (max-width: 767px) {
  .footer_container {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 60px;
  }

  .left, .right {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 22px;
  }

  .left img, .right img {
    height: 150px;
  }
}

/* ===== Desktop (1024px and above) ===== */
@media (min-width: 1024px) {


  .left, .right {
    flex-direction: row;
    text-align: left;
  }
}