#footer-main {
  background-color: #142d62;
  color: #ffffff;
  padding: 40px 20px;
  font-size: 14px;
  line-height: 2;
  white-space: nowrap;
  margin-top: 40px;
}

.footer-inner {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 30px;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-company-info {
  flex: 0.5;
  text-align: left;
}

.footer-center-block {
  flex: 1.2;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  gap: 30px;
}

.footer-sales-info {
  text-align: left;
  flex: 1;
  margin-top: 28px;
}

.sales-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.sales-label {
  min-width: 100px;
}

.sales-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-row {
  display: flex;
  gap: 8px;
}

.contact-label {
  display: inline-block;
  text-align: left;
  color: #fff;
  font-size: 14px
}

.contact-value {
  display: inline-block;
}

.footer-links-center {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  gap: 6px;
}

.footer-divider {
  width: 1px;
  background-color: #fff;
  align-self: stretch;
}

.footer-links-center a {
  color: #fff;
  text-decoration: none;
}

.footer-bottom-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.footer-mail-link {
  display: inline-flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
}

.footer-mail-link img {
  height: 20px;
  width: auto;
  margin-right: 6px;
}

#footer-main a {
  color: #fff;
  text-decoration: none;
}

#footer-copy {
  width: 100%;
  background-color: #fff;
  border-top: 1px solid black;
  padding: 15px 20px;
}

.footer-copy-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.footer-copy-logo {
  flex: 0 0 auto;
}

.footer-copy-logo img {
  height: 30px;
}

.footer-copy-text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: #000;
}

@media screen and (max-width: 1110px) {
  .footer-inner {
    flex-direction: column;
    padding: 0;
	gap: 0;
  }
	
  .footer-sales-info {
	margin-top: 0;  
  }

  .footer-company-info,
  .footer-center-block {
    flex: 0 0 100% !important;
    padding-left: 0 !important;
    border-left: none !important;
  }

  .footer-center-block {
    flex-direction: column;
	width: 100%;
  }

  .footer-divider {
    display: none !important;
  }

  .footer-links-center {
	display: flex;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-mail-link {
    align-self: flex-end;
  }
	
  #footer-copy{
	padding: 15px 5px;
  }
	
  .footer-copy-logo{
	flex: auto;
  }
	
  .footer-copy-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
	gap: 20px;
  }

  .footer-copy-text {
    position: static; 
    transform: none;
    flex: 1;
    text-align: center;
	white-space: nowrap;
  }
}

@media screen and (max-width: 480px) {
  .footer-copy-logo img {
    height: 20px;
  }
}