@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
* {
  margin: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
  color: #fff;
  margin: 0;
  font-size: 1rem;
  /***************************************
  * Contact Form 7 - Layout personalizzato
  ***************************************/
}
@media only screen and (min-width: 768px) {
  body {
    font-size: 1.25rem;
  }
}
body button {
  font-family: "Inter", sans-serif;
}
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  margin-bottom: 2rem;
}
body a:visited {
  color: inherit;
}
body a:focus {
  outline: none;
}
body p {
  margin-bottom: 1rem;
}
body p:last-child {
  margin-bottom: 0;
}
body .title {
  font-size: 2.375rem;
}
@media only screen and (min-width: 768px) {
  body .title {
    font-size: 3rem;
  }
}
body .subtitle {
  font-size: 1.5rem;
  position: relative;
}
@media only screen and (min-width: 768px) {
  body .subtitle {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  body .subtitle {
    text-align: center;
  }
}
body .title_page {
  font-size: 2.5rem;
}
@media only screen and (min-width: 768px) {
  body .title_page {
    font-size: 4rem;
  }
}
body .text-decoration-none {
  text-decoration: none;
}
body .hidden {
  display: none !important;
}
body .bg-primary {
  background-color: #003244 !important;
}
body .bg-white {
  background-color: #fff;
}
body .text-white {
  color: #fff;
}
body header {
  position: sticky;
  top: 0;
  z-index: 1050;
  background: #003244;
  color: #fff;
  padding: 0.5rem 1.5rem;
  transition: top 0.3s ease, box-shadow 0.3s ease;
}
@media only screen and (max-width: 992px) {
  body header {
    position: relative;
  }
}
@media only screen and (max-width: 768px) {
  body header {
    padding: 0.5rem 1rem;
  }
}
body header.is-sticky {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
body header .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0;
  /* Applica l'animazione solo se il toggler NON ha la classe is-active */
  /* Se il toggler è attivo, disabilita l'animazione per non interferire con la trasformazione in X */
}
body header .container-fluid .header-logo {
  width: 173px;
  height: auto;
}
@media only screen and (max-width: 992px) {
  body header .container-fluid .navbar {
    position: static;
  }
}
@media only screen and (max-width: 992px) {
  body header .container-fluid .navbar-collapse {
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    height: calc(100vh - 65px);
    background: #003244;
    padding: 1.5rem 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  body header .container-fluid .navbar-collapse.show {
    opacity: 1;
  }
}
body header .container-fluid .navbar-collapse ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media only screen and (max-width: 992px) {
  body header .container-fluid .navbar-collapse ul {
    margin-right: auto;
  }
}
body header .container-fluid .navbar-collapse ul .page_item a {
  font-size: 0.875rem;
  line-height: 1.25rem;
  text-decoration: none;
  font-weight: 500;
  color: #fff;
}
body header .container-fluid .navbar-collapse ul .menu-item a {
  font-size: 0.875rem;
  line-height: 1.25rem;
  text-decoration: none;
  font-weight: 500;
  color: #fff;
  position: relative;
}
body header .container-fluid .navbar-collapse ul .menu-item a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 2px;
  background-color: #fff;
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
body header .container-fluid .navbar-collapse ul .menu-item a:hover:after {
  opacity: 1;
  transform: scaleX(1);
}
@media only screen and (max-width: 992px) {
  body header .container-fluid .navbar-collapse ul .menu-item a {
    font-size: 2rem;
    line-height: 2.25rem;
  }
}
body header .container-fluid .navbar-collapse ul .menu-item.current-menu-item a {
  position: relative;
}
body header .container-fluid .navbar-collapse ul .menu-item.current-menu-item a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 2px;
  background-color: #fff;
  opacity: 1;
  transition: all 0.3s ease;
}
body header .container-fluid .navbar-toggler {
  border: none;
  outline: none;
  box-shadow: none;
}
@media only screen and (max-width: 768px) {
  body header .container-fluid .navbar-toggler {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
body header .container-fluid .navbar-toggler .custom-toggler {
  display: inline-block;
  cursor: pointer;
}
body header .container-fluid .navbar-toggler .custom-toggler .line {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #fff;
  margin: 4px 0;
}
body header .container-fluid .navbar-toggler .custom-toggler .line.line2 {
  width: 20px;
}
@keyframes slideLeftRight {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}
body header .container-fluid .navbar-toggler:not(.is-active) .custom-toggler .line {
  animation: slideLeftRight 2s infinite;
}
body header .container-fluid .navbar-toggler:not(.is-active) .custom-toggler .line.line1 {
  animation-delay: 0s;
}
body header .container-fluid .navbar-toggler:not(.is-active) .custom-toggler .line.line2 {
  animation-delay: 0.3s;
}
body header .container-fluid .navbar-toggler:not(.is-active) .custom-toggler .line.line3 {
  animation-delay: 0.6s;
}
body header .container-fluid .navbar-toggler.is-active .custom-toggler .line {
  animation: none;
}
body header .container-fluid .navbar-toggler.is-active .line.line1 {
  transform: translateY(6px) rotate(45deg);
}
body header .container-fluid .navbar-toggler.is-active .line.line2 {
  opacity: 0;
}
body header .container-fluid .navbar-toggler.is-active .line.line3 {
  transform: translateY(-6px) rotate(-45deg);
}
body .hero-section {
  background: #003244;
  color: #fff;
  min-height: 80vh;
  width: 100%;
  display: flex;
  align-items: center;
}
body .hero-section .container-fluid {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
body .hero-section .container-fluid .animation-wrapper {
  display: flex;
  position: relative;
  height: 475px;
  padding: 0 10%;
}
@media only screen and (max-width: 768px) {
  body .hero-section .container-fluid .animation-wrapper {
    height: 400px;
    padding: 0;
  }
}
@media only screen and (max-width: 576px) {
  body .hero-section .container-fluid .animation-wrapper {
    height: 260px;
  }
}
body .hero-section .container-fluid .animation-wrapper #animated-text {
  white-space: pre-wrap;
  display: inline-block;
  font-size: 7.375rem;
  line-height: 7.375rem;
}
@media only screen and (max-width: 768px) {
  body .hero-section .container-fluid .animation-wrapper #animated-text {
    font-size: 5rem;
    line-height: 6rem;
  }
}
@media only screen and (max-width: 576px) {
  body .hero-section .container-fluid .animation-wrapper #animated-text {
    font-size: 3rem;
    line-height: 4rem;
  }
}
body .hero-section .container-fluid .animation-wrapper #animated-text .word_right {
  margin-left: 15rem;
}
@media only screen and (max-width: 768px) {
  body .hero-section .container-fluid .animation-wrapper #animated-text .word_right {
    margin-left: 10rem;
  }
}
@media only screen and (max-width: 576px) {
  body .hero-section .container-fluid .animation-wrapper #animated-text .word_right {
    margin-left: 5rem;
  }
}
body .hero-section .container-fluid .animation-wrapper #cursor_underscore {
  display: inline;
  margin-left: 5px;
  color: #fff;
}
body .hero-section .container-fluid .animation-wrapper #scroll-text {
  display: inline-block;
  font-size: 7.375rem;
  line-height: 7.375rem;
}
@media only screen and (max-width: 768px) {
  body .hero-section .container-fluid .animation-wrapper #scroll-text {
    font-size: 5rem;
    line-height: 6rem;
  }
}
@media only screen and (max-width: 576px) {
  body .hero-section .container-fluid .animation-wrapper #scroll-text {
    font-size: 3rem;
    line-height: 4rem;
  }
}
body .hero-section .container-fluid .animation-wrapper #scroll-text .word_right {
  margin-left: 15rem;
}
@media only screen and (max-width: 768px) {
  body .hero-section .container-fluid .animation-wrapper #scroll-text .word_right {
    margin-left: 10rem;
  }
}
@media only screen and (max-width: 576px) {
  body .hero-section .container-fluid .animation-wrapper #scroll-text .word_right {
    margin-left: 5rem;
  }
}
body .hero-section .container-fluid .lottie-container {
  margin-right: 2rem;
}
@media only screen and (max-width: 576px) {
  body .hero-section .container-fluid .lottie-container {
    margin-right: 0;
    height: 260px !important;
  }
}
body .why-us-section {
  padding: 10rem 0;
  background-color: #fff;
}
@media only screen and (max-width: 576px) {
  body .why-us-section {
    padding: 5rem 0;
  }
}
body .why-us-section .box_why_wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5rem;
}
@media only screen and (max-width: 768px) {
  body .why-us-section .box_why_wrap {
    gap: 3rem;
  }
}
@media only screen and (max-width: 576px) {
  body .why-us-section .box_why_wrap {
    gap: 2rem;
  }
}
body .why-us-section .box_why_wrap h2 {
  color: #003244;
  margin-bottom: 1.5rem;
}
body .why-us-section .box_why_wrap .why-us-subtitle {
  font-size: 1rem;
  line-height: 1.6;
  color: #003244;
}
@media only screen and (max-width: 576px) {
  body .why-us-section .box_why_wrap .why-us-subtitle {
    padding-right: 1rem;
  }
}
body .why-us-section .box_why_wrap p {
  font-size: 1rem;
  line-height: 1.6;
  color: #003244;
}
body .consulting-services-section {
  padding: 10rem 0;
  background-color: #003244;
}
@media only screen and (max-width: 576px) {
  body .consulting-services-section {
    padding: 5rem 0;
  }
}
body .consulting-services-section .container {
  max-width: 800px;
}
@media only screen and (max-width: 768px) {
  body .consulting-services-section .container {
    max-width: 720px;
  }
}
@media only screen and (max-width: 576px) {
  body .consulting-services-section .container {
    max-width: 540px;
  }
}
body .consulting-services-section .title {
  color: #fff;
  margin-bottom: 2rem;
}
body .consulting-services-section .consulting-list {
  margin: 0;
  padding: 0;
}
body .consulting-services-section .consulting-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 576px) {
  body .consulting-services-section .consulting-list li {
    align-items: flex-start;
    flex-direction: column-reverse;
  }
}
body .consulting-services-section .consulting-list li h4 {
  font-size: 1.5rem;
  line-height: 2.25rem;
  margin-bottom: 0;
}
body .consulting-services-section .consulting-list li h4 a {
  text-decoration: none;
  color: #fff;
}
body .consulting-services-section .consulting-list li .line .lottie-container {
  display: inline-block;
  width: 9rem;
  margin-right: 4rem;
}
body .team-section {
  padding: 10rem 0;
  background-color: #fff;
}
@media only screen and (max-width: 576px) {
  body .team-section {
    padding: 5rem 0;
  }
}
body .team-section .container {
  max-width: 800px;
}
@media only screen and (max-width: 768px) {
  body .team-section .container {
    max-width: 720px;
  }
}
@media only screen and (max-width: 576px) {
  body .team-section .container {
    max-width: 540px;
  }
}
body .team-section .title {
  color: #003244;
  margin-bottom: 2rem;
}
body .team-section .person-block .col_image {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 355px;
}
@media only screen and (max-width: 576px) {
  body .team-section .person-block .col_image {
    justify-content: flex-start;
    height: auto;
  }
}
body .team-section .img-placeholder {
  width: 100%;
  height: auto;
  background-color: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
}
body .team-section .img-placeholder img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 149px;
  width: -webkit-fill-available;
}
body .team-section .member-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #003244;
  margin-bottom: 1.5rem;
  font-weight: 300;
}
body .team-section .member-description p {
  margin: 0 0 1rem;
  font-weight: 300;
}
body .team-section .social-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}
@media only screen and (max-width: 576px) {
  body .team-section .social-link {
    margin: 2rem 0;
  }
}
body .team-section .social-link .social-label {
  font-size: 0.9rem;
  font-weight: 400;
  color: #003244;
  text-transform: uppercase;
}
body .team-section .social-link .social-label a {
  color: #003244;
  text-decoration: none;
}
body .team-section .social-link .social-line {
  flex: 1;
}
@media only screen and (max-width: 576px) {
  body .team-section .social-link .social-line .random_line {
    width: 9rem;
  }
}
body .team-section .name-vertical {
  writing-mode: sideways-lr;
  text-orientation: mixed;
  font-size: 2.25rem;
  color: #003244;
}
@media only screen and (max-width: 576px) {
  body .team-section .name-vertical {
    writing-mode: unset;
    font-size: 1.7rem;
    margin-bottom: 1rem;
  }
}
body .success-stories-section {
  padding: 10rem 0;
  background-color: #003244;
}
@media only screen and (max-width: 576px) {
  body .success-stories-section {
    padding: 5rem 0;
  }
}
body .success-stories-section .container {
  max-width: 800px;
}
@media only screen and (max-width: 768px) {
  body .success-stories-section .container {
    max-width: 720px;
  }
}
@media only screen and (max-width: 576px) {
  body .success-stories-section .container {
    max-width: 540px;
  }
}
body .success-stories-section .title {
  color: #fff;
  margin-bottom: 2rem;
}
body .success-stories-section .case-box {
  padding: 2rem 0;
  color: #003244;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  min-height: 100%;
}
body .success-stories-section .case-box h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #fff;
  font-weight: 500;
}
body .success-stories-section .case-box h3 a {
  color: #fff;
  text-decoration: none;
}
body .success-stories-section .case-box h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: #fff;
  font-weight: 500;
}
body .success-stories-section .case-box p {
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  color: #fff;
  font-weight: 200;
}
body .success-stories-section .all-cases .lottie-container {
  width: 10rem;
  margin-right: 2rem;
  display: flex;
}
body .success-stories-section .all-cases .cases-label {
  font-size: 0.9375rem;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
body .success-stories-section .all-cases .cases-label a {
  text-decoration: none;
  color: #fff;
}
body .big-title-section {
  background-color: #003244;
  color: #fff;
  padding: 5rem 0 3rem;
}
body .big-title-section .big-title {
  font-size: 4.5rem;
  margin-bottom: 0;
}
@media only screen and (max-width: 576px) {
  body .big-title-section .big-title {
    font-size: 3rem;
  }
}
body .middle-section {
  padding: 0 0 10rem;
  background-color: #003244;
}
body .middle-section .box_wrap h4 {
  font-size: 1.5rem;
  line-height: 2.25rem;
  margin-bottom: 0;
  color: #fff;
}
body .middle-section .box_wrap .title_line {
  display: flex;
  margin: 0.5rem 0 2rem;
  width: 10rem;
}
body .middle-section .box_wrap p {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 200;
}
body.cases-template-default {
  margin: 0 0 1.5em;
}
body .single-cases-section {
  padding: 10rem 0;
  background: #003244;
}
@media only screen and (max-width: 576px) {
  body .single-cases-section {
    padding: 5rem 0;
  }
}
body .single-cases-section .case-category {
  margin-bottom: 2rem;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem 1rem;
  border: 1px solid #fff;
  font-size: 0.8rem;
  font-weight: 200;
  letter-spacing: 0.5px;
  min-width: 10rem;
}
body .single-cases-section .case-category a {
  text-decoration: none;
  color: #fff;
  padding: 1rem;
  border: 1px solid #fff;
  font-size: 0.8rem;
  font-weight: 200;
  letter-spacing: 0.5px;
}
body .single-cases-section .entry-title {
  font-size: 48px;
  line-height: 56px;
}
body .single-cases-section .entry-content {
  padding: 2rem 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  min-height: 100%;
}
body .single-cases-section h4 {
  font-size: 1.5rem;
  line-height: 2.25rem;
  margin-bottom: 0;
  color: #fff;
}
body .single-cases-section p {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 200;
}
body .single-cases-section .all-cases .lottie-container {
  width: 10rem;
  margin-right: 2rem;
  display: flex;
}
body .single-cases-section .all-cases .cases-label {
  font-size: 0.9375rem;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
body .single-cases-section .all-cases .cases-label a {
  text-decoration: none;
  color: #fff;
}
body .cases-archive-section {
  padding: 10rem 0;
  background: #003244;
}
@media only screen and (max-width: 576px) {
  body .cases-archive-section {
    padding: 5rem 0;
  }
}
body .cases-archive-section .archive-title {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: #fff;
}
body .cases-archive-section .archive-intro p {
  font-size: 0.875rem;
  line-height: 21px;
  color: #fff;
  margin-bottom: 2rem;
  font-weight: 300;
}
body .cases-archive-section .btn-reset-filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}
body .cases-archive-section .btn-reset-filters h4 {
  margin-bottom: 0;
}
body .cases-archive-section .btn-reset-filters .btn-reset {
  font-size: 1rem;
  color: #fff;
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0;
}
body .cases-archive-section .btn-reset-filters .btn-reset .icon-x {
  background-color: #fff;
  border: 1px solid #fff;
  padding: 0.5rem;
  color: #003244;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .cases-archive-section .filter-cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media only screen and (max-width: 576px) {
  body .cases-archive-section .filter-cases {
    grid-template-columns: repeat(2, 1fr);
  }
}
body .cases-archive-section .filter-cases .btn-filter {
  width: 100%;
  text-align: left;
  color: #fff;
  background-color: transparent;
  border: 1px solid #fff;
  padding: 0.5rem 1rem;
  text-decoration: none;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 300;
}
body .cases-archive-section .filter-cases .btn-filter:hover {
  background-color: #fff;
  color: #003244;
}
body .cases-archive-section .filter-cases .btn-filter.active {
  background-color: #fff;
  color: #003244;
}
body .cases-archive-section .case-box {
  padding: 2rem 0;
  color: #003244;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  min-height: 100%;
}
body .cases-archive-section .case-box h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #fff;
  font-weight: 500;
}
body .cases-archive-section .case-box h3 a {
  text-decoration: none;
  color: #fff;
}
body .cases-archive-section .case-box h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: #fff;
  font-weight: 500;
}
body .cases-archive-section .case-box p {
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  color: #fff;
  font-weight: 200;
}
body .contacts-section {
  padding: 7rem 0 5rem;
}
body .contacts-section .title {
  margin-bottom: 2rem;
  color: #003244;
}
body .contacts-section h5 {
  font-size: 1.125rem;
  font-weight: 500;
  color: #003244;
  margin-bottom: 0.5rem;
}
body .contacts-section p {
  font-size: 0.975rem;
  font-weight: 300;
  color: #003244;
}
body .form-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  gap: 1rem;
}
@media (max-width: 767px) {
  body .form-row {
    flex-direction: column;
  }
}
body .form-row .form-col {
  flex: 1;
  min-width: 0;
}
body input::-moz-placeholder, body textarea::-moz-placeholder {
  text-transform: uppercase;
  color: #003244;
  font-weight: 300;
}
body input::placeholder,
body textarea::placeholder {
  text-transform: uppercase;
  color: #003244;
  font-weight: 300;
}
body ::-webkit-input-placeholder {
  text-transform: uppercase;
}
body :-moz-placeholder {
  text-transform: uppercase;
}
body ::-moz-placeholder {
  text-transform: uppercase;
}
body :-ms-input-placeholder {
  text-transform: uppercase;
}
body input[type=text],
body input[type=email],
body input[type=tel],
body textarea {
  width: 100%;
  border: none;
  border-bottom: 2px solid #005877;
  background: transparent;
  padding: 0.5rem 0;
  font-size: 1rem;
  outline: none;
  color: #003244;
  border-radius: 0;
}
body input[type=text]:focus,
body input[type=email]:focus,
body input[type=tel]:focus,
body textarea:focus {
  border-bottom: 2px solid #003244;
}
body textarea {
  min-height: 120px;
  resize: vertical;
  border-radius: 0;
}
body .form-privacy-submit {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
body .form-privacy-submit .privacy-check {
  flex: 1;
  display: flex;
  align-items: center;
}
body .form-privacy-submit .privacy-check .wpcf7-checkbox .wpcf7-list-item {
  margin: 0;
  display: flex;
  align-items: center;
}
body .form-privacy-submit .privacy-check input[type=checkbox] {
  margin-right: 0.5rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #003244;
  border-radius: 0;
  background-color: #003244;
  cursor: pointer;
  position: relative;
  outline: none;
  transition: background-color 0.2s ease-in-out;
}
@media only screen and (max-width: 768px) {
  body .form-privacy-submit .privacy-check input[type=checkbox] {
    width: 25px;
  }
}
body .form-privacy-submit .privacy-check input[type=checkbox]:checked {
  background-color: #003244;
  border-color: #003244;
}
body .form-privacy-submit .privacy-check input[type=checkbox]:checked::after {
  content: "✓";
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
}
body .form-privacy-submit .submit-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}
body .form-privacy-submit .submit-wrap .lines-wrap {
  display: inline-block;
  width: 10rem;
}
body .form-privacy-submit .submit-wrap input[type=submit] {
  background: transparent;
  border: none;
  color: #003244;
  font-weight: 600;
  font-size: 1.5rem;
  cursor: pointer;
}
body .form-privacy-submit .submit-wrap input[type=submit]:hover {
  color: #000d11;
}
@media (max-width: 767px) {
  body .form-privacy-submit {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
body .wpcf7-response-output {
  color: #003244;
  margin: 2em 0 1em !important;
  border-color: #dc3232 !important;
}
body .site-footer {
  background-color: #fff;
  color: #003244;
  text-align: center;
  padding-top: 7rem;
}
body .site-footer .footer-logo {
  width: 200px;
  height: auto;
  margin: auto;
}
body .site-footer .footer-menu {
  list-style: none;
  margin: 20px 0 80px;
  padding: 0;
}
body .site-footer .footer-menu a {
  font-size: 0.875rem;
  line-height: 1.25rem;
  text-decoration: none;
  font-weight: 500;
  color: #003244;
}
body .site-footer .footer-copy {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
}
body .site-footer .footer-copy a {
  text-decoration: underline;
  font-weight: 500;
  color: #003244;
}
body .lottie-container svg * {
  fill: currentColor !important;
  stroke: currentColor !important;
}
body .lottie-container.light svg {
  color: #fff;
}
body .lottie-container.dark svg {
  color: #003244;
}/*# sourceMappingURL=main.css.map */