/* Start custom CSS for html, class: .elementor-element-712a2c3 */.ttm-footer {
  background: #0d54fa;
  color: #fff;
  padding-top: 70px;
  font-family: 'Poppins', sans-serif;
}

.ttm-footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1300px;
  margin: auto;
  padding: 0 20px 50px;
}

/* LOGO */
.logo {
  font-size: 24px;
  font-weight: 700;
}

.logo span {
  color: #ffffff;
  opacity: 0.8;
}

/* TEXT */
.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 15px;
  opacity: 0.85;
}

/* HEADINGS */
.footer-col h3 {
  margin-bottom: 15px;
  font-size: 18px;
  position: relative;
}

.footer-col h3::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #fff;
  display: block;
  margin-top: 5px;
}

/* LIST */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.footer-col ul li:hover {
  color: #dbe4ff;
  transform: translateX(5px);
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  padding: 20px;
  background: #083ec0;
  font-size: 13px;
}

/* RESPONSIVE */
@media(max-width: 992px){
  .ttm-footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px){
  .ttm-footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}/* End custom CSS */