footer {
  overflow: hidden;
  position: relative;
  padding: 0 0 30px;
  background-color: var(--global-color-primary-darkest-blue);
}
footer .bg-full {
  position: absolute;
  inset: 0;
  z-index: 0;
}
footer .bg-full img{
  width: 100%;
  height: 100%;
}
footer .section-footer .row-1 {
  max-width: 95%;
}
footer .section-footer .row-1 .row-1-1 {
  padding: 40px;
  border-radius: var(--br-20);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  background: var(--global-color-divider);
}
footer .section-top-footer,
footer .section-footer,
footer .section-copywrite-footer {
    position: relative;
    z-index: 2;
}
footer .section-footer .col-a,
footer .section-footer .col-b-a,
footer .section-footer .col-b-b {
  padding-bottom: 30px;
}
footer .section-footer .row-2 {
  margin-top: 60px;
  padding: 40px 0;
  border-top: 1px solid var(--global-color-lightdivider);
  border-bottom: 1px solid var(--global-color-lightdivider);
}
footer .section-footer .row-2 .contact-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  color: var(--white);
}
footer .section-footer .row-2 .contact-box .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  border-radius: var(--br-20);
  background-color: var(--global-color-primary-light-orange);
}
footer .section-footer .row-2 .contact-box .icon svg {
  width: 40px;
  height: 40px;
}
footer .section-footer .row-2 .contact-box h2 {
  margin-bottom: 8px;
}
footer .section-footer .row-2 .contact-box a {
  line-height: var(--lh-nr);
}
footer .section-footer .logo {
  margin-bottom: 30px;
}
footer .section-footer .content h2 {
  margin-bottom: 15px;
  letter-spacing: 0.5px;
  color: var(--global-color-primary-light-orange);
}
footer .section-footer .col-a > p {
  color: var(--white);
}
footer .section-footer .col-a .social-links {
  margin-top: 10px;
  padding-top: 30px;
}
footer .section-footer .content li a {
  color: var(--white);
}
footer .section-footer .content ul {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 15px;
  padding-left: 16px;
}
footer .section-footer .content ul li {
  position: relative;
  transition: var(--global-default-transitions-button);
}
footer .section-footer .content ul li:before {
  content: '';
  position: absolute;
  top: 6px;
  left: -16px;
  width: 8px;
  height: 8px;
  border-radius: var(--br-p50);
  background-color: var(--global-color-primary-light-orange);
}
footer .section-footer .content ul li a:hover{
  color: var(--global-color-primary-light-orange);
}
footer .section-footer .col-a .social-list {
  margin-top: 20px;
}
footer .section-copywrite-footer .row-1 {
  gap: 10px;
  padding: 30px 0;
  color: var(--white);
}
footer .section-copywrite-footer p,
footer .section-copywrite-footer span.brand {
  font-size: var(--fs-14);
}
footer .section-copywrite-footer .col-a,
footer .section-copywrite-footer .col-b {
  text-align: center;
}
footer .social-list .social .icon{
  padding: 10px;
}
footer .social-list .social .icon svg{
  width: 20px;
  height: 20px;
}
.contact-form .contact-form-submit:disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
    filter: grayscale(0.4);
    transition: all 0.3s ease;
}
.contact-form .contact-form-submit:disabled:hover {
    background: inherit;
    color: inherit;
    box-shadow: none;
}
.contact-form .icon svg g,
.contact-form .icon svg path  {
    fill: var(--global-color-primary-light-orange);
}
.contact-form .privacy-text {
    font-size: var(--fs-12);
}
@media (min-width: 992px) {
  footer .section-footer .col-a,
  footer .section-footer .col-b-a,
  footer .section-footer .col-b-b
  {
    padding-bottom: 0;
  }
  footer .section-copywrite-footer .col-a {
    text-align: left;
  }
  footer .section-copywrite-footer .col-b {
    text-align: right;
  }
}
@media (min-width: 1024px) {
  footer .section-footer .row-1 .row-1-1 {
    padding: 30px;
  }
}
@media (min-width: 1200px) {
  .section-footer-cta .row-1 .contact-box {
    justify-content: center;
  }
  footer .section-footer .row-2 .col:nth-child(2) {
    border-left: 1px solid var(--global-color-lightdivider);
    border-right: 1px solid var(--global-color-lightdivider);
    padding: 0 40px;
  }
}
@media (min-width: 1440px) {
  footer .section-footer .row-1 {
    max-width: 1300px;
  }
  footer .section-footer .row-1 .row-1-1 {
    padding: 40px;
  }
}