/* Contact & Support style */
p.content-text.title-contact {
  max-width: 650px;
  color: #00a7b5;
  font-size: 18px;
  margin-bottom: 15px;
}
p.content-text.des-contact {
  max-width: 600px;
}
div#contact-container {
  display: flex;
  align-items: center;
  width: 1410px;
  padding-bottom: 40px;
}
div#contact-cta-logos {
  display: flex;
  flex-direction: row;
}
p.c-text.content-text.des-contact {
  margin-bottom: 0 !important;
}
a#cons-button-cta {
  background: linear-gradient(to bottom, #00a7b5 0%, #00a7b5 50%, #333f48 50%, #333f48 100%);
  background-size: 100% 200%;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
  box-shadow: 7px 5px 15px rgba(0, 0, 0, 0.3);
  border-radius: 30px;
}
a#cons-button-cta:hover {
  background-position: 0 100%;
  color: #ffffff;
}
img#contact-logo {
  padding-bottom: 30px;
}
p.contact-text {
  padding: 0 !important;
  margin: 0 !important; 
  color: #00a7b5;
}
/* Contact Logos */
.contact-logos {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}
.contact-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-logo {
  max-width: 90px;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}
img.contact-logo.logo-1 {
  padding-right: 10px;
}
img.contact-logo.logo-2 {
  padding-right: 5px;
}
a#cons-button-cta {
  padding: 14px 32px;
}
/* Responsive Design for Contact Logos */
@media screen and (min-width: 1px) and (max-width: 1440px) {
div#contact-container {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 30px;
}
.contact-logos {
  justify-content: flex-start;
  gap: 15px;
}
.contact-logo {
  max-width: 80px;
  max-height: 80px;
}
}