/*
################################################################################
FOOTER LAYOUT
################################################################################
*/
.nd-2025 footer {
  background: var(--primary-color);
  color: #fff;
  padding-bottom: 30px;
  overflow: visible;
}

/*
################################################################################
FOOTER CONTACT DATA
################################################################################
*/
.nd-2025 .footer-contact {
  background: #162752;
  background: -moz-linear-gradient(0deg, #162752 50%, #fff 51%);
  background: -webkit-linear-gradient(0deg, #162752 50%, #fff 51%);
  background: linear-gradient(90deg, #162752 50%, #fff 51%);
}
.nd-2025 .footer-contact .footer-contact-inner {
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
}
.nd-2025 .footer-contact .sub-title {
  font-size: 16px;
  font-weight: 300;
}
.nd-2025 .footer-contact .sub-title span {
  font-weight: 600;
}

.nd-2025 .footer-contact .contacts {
  flex: 50% 0 0;
  background: #162752;
  color: #fff;
  padding: 70px 70px 80px 0;
}
.nd-2025 .footer-contact .contacts .contact-list-item .title {
  width: max-content;
  background: #162752;
  color: var(--secondary-color);
  font-size: 17px;
  font-weight: 800;
  line-height: 27px;
  margin: 40px 0 15px;
  padding-right: 30px;
  position: relative;
  z-index: 2;
}
.nd-2025 .footer-contact .contacts .contact-list-item {
  position: relative;
}
.nd-2025 .footer-contact .contacts .contact-list-item::after {
  content: "";
  width: 100%;
  height: 2px;
  background: #004F7E;
  position: absolute;
  top: 13px;
  left: 0;
}
.nd-2025 .footer-contact .contacts .contact-list-item .content-list {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.nd-2025 .footer-contact .contacts .contact-list-item .content-list-item {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
.nd-2025 .footer-contact .contacts .content-list-item .icon {
  width: 35px;
  font-size: 13px;
  font-weight: 300;
}
.nd-2025 .footer-contact .contacts .content-list-item .text {
  font-size: 13px;
  font-weight: 300;
}

/*
################################################################################
FOOTER CONTACT FORM
################################################################################
*/
.nd-2025 .footer-contact .contact-form {
  flex: 50% 0 0;
  background: #fff;
  padding: 70px 0 80px 45px;
}
.nd-2025 .footer-contact .contact-form .form-row {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  margin-bottom: 30px;
}
.nd-2025 .footer-contact .contact-form .form-cell {
  flex: calc(50% - 15px) 0 0;
}
.nd-2025 .contact-form form {
  margin-top: 30px;
}
.nd-2025 .contact-form form * {
  transition: all 300ms ease-in-out;
}
.nd-2025 .contact-form label {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 700;
  display: block;
}
.nd-2025 .contact-form input[type="text"],
.nd-2025 .contact-form input[type="tel"],
.nd-2025 .contact-form input[type="email"] {
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  border-top: none;
  border-right: none;
  border-bottom: 2px solid #99C2DB;
  border-left: none;
  padding: 0 0 10px;
  outline: none;
}
.nd-2025 .contact-form textarea {
  width: 100%;
  height: 156px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #99C2DB;
  border-radius: 8px;
  margin-top: 5px;
  padding: 15px;
  resize: none;
  outline: none;
}
.nd-2025 .contact-form .form-privacy-submit {
  margin-top: 20px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
}
.nd-2025 .contact-form .form-privacy-submit .form-privacy {
  display: flex;
  flex-flow: row nowrap;
  column-gap: 8px;
}
.nd-2025 .contact-form .form-privacy-submit .form-privacy label {
  color: var(--text-color);
  font-size: 13px;
  font-weight: 500;
  margin-top: 2px;
}
.nd-2025 .contact-form .form-privacy-submit .form-privacy label a {
  text-decoration: underline;
}
.form-privacy-submit input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: var(--cth-white);
  border: 1px solid #99C2DB;
  display: inline-block;
  position: relative;
  cursor: pointer;
  transition: all ease-in-out 300ms;
  margin: 0;
}
.form-privacy-submit input[type="checkbox"]::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: var(--secondary-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 2px;
  opacity: 0;
}
.form-privacy-submit input[type="checkbox"]:checked::after {
  opacity: 1;
}
.nd-2025 .contact-form .form-privacy-submit .form-submit {
  background-color: var(--secondary-color);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 52px;
  border: none;
  border-radius: 8px;
  padding: 0 35px;
  transition: all ease-in-out 300ms;
}
.nd-2025 .contact-form .form-privacy-submit .form-submit:hover {
  background-color: var(--primary-color);
  padding: 0 40px;
}
.nd-2025 .footer-content {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-end;
  justify-content: center;
  column-gap: 30px;
}
.nd-2025 .footer-content > a {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 32px;
}
.nd-2025 .footer-content > a:hover {
  color: var(--secondary-color);
}
.nd-2025 .footer-content .footer-logo {
  width: 156px;
  height: 156px;
  background: #fff;
  border-radius: 20px;
  -webkit-box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.2);
  margin-top: -55px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Form error */
.d-form-error.d-form-error.d-form-error.d-form-error label,
.d-form-error.d-form-error label a {
  color: var(--error-color);
}
.d-form-error.d-form-error input[type="text"],
.d-form-error.d-form-error input[type="password"],
.d-form-error.d-form-error input[type="tel"],
.d-form-error.d-form-error input[type="email"],
.d-form-error.d-form-error input[type="checkbox"],
.d-form-error.d-form-error textarea {
  border-color: var(--error-color);
}
.d-form-error-text {
  color: var(--error-color);
  font-weight: 600;
  transition: margin ease-in-out 300ms;
}


/*
################################################################################
FOOTER COPYRIGHT
################################################################################
*/
.nd-2025 .footer-copy {
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  margin-top: 40px;
}