
/* GLOBAL */
body {
   font-family: 'Poppins', sans-serif;
}

/* HEADINGS (LUXURY LOOK) */
h1, h2, h3, h4, h5, h6, p {
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.5px;

   margin: 0;
  padding: 0;
}


/* FOOTER */
.footer-section {
  background: #0c0c0c;
  color: #ccc;
  padding: 70px 0 20px;
  position: relative;
}

/* LOGO */
.footer-logo img {
  height: 50px;
  margin-bottom: 15px;
}


.footer-logo img {
  height: 60px;
  object-fit: contain;
}


/* TITLE */
.footer-section h5 {
  color: #fff;
  margin-bottom: 20px;
  position: relative;
}

.footer-section h5::after {
  content: "";
  width: 40px;
  height: 2px;
  background: gold;
  display: block;
  margin-top: 8px;
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: gold;
  padding-left: 5px;
}

/* CONTACT */
.footer-contact i {
  color: gold;
  margin-right: 8px;
}

/* SOCIAL */
.social-icons a {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border: 1px solid gold;
  color: gold;
  margin-right: 8px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: rgb(0, 0, 0);
  color: #000;
}

/* COPYRIGHT */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
}


.footer-contact a{
    color: #fff !important;
    text-decoration: none;
}

.footer-contact a:hover{
    color: #fff !important;
    text-decoration: underline;
}


@media (max-width: 768px) {

  /* Footer text left */
  .footer-section {
    text-align: left !important;
  }

  /* Headings left */
  .footer-section h5 {
    text-align: left;
  }

  /* Links left */
  .footer-links {
    padding-left: 0;
  }

  .footer-links li {
    text-align: left;
    list-style: none;
  }

  /* Contact section */
  .footer-section p {
    text-align: left;
  }

  /* Social icons left */
  .social-icons {
    justify-content: flex-start !important;
  }

}

/* RESPONSIVE */
@media(max-width:768px){
  .footer-section {
    text-align: center;
  }
}
