@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
html {
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
  -moz-tab-size: 4;
  tab-size: 4;
  word-break: normal;
}

*, :after, :before {
  background-repeat: no-repeat;
  box-sizing: inherit;
}

:after, :before {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  margin: 0;
  padding: 0;
}

hr {
  color: inherit;
  height: 0;
  overflow: visible;
}

details, main {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden] {
  display: none;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

a {
  background-color: transparent;
}

a:active, a:hover {
  outline-width: 0;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
}

pre {
  font-size: 1em;
}

b, strong {
  font-weight: bolder;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit;
  text-indent: 0;
}

iframe {
  border-style: none;
}

input {
  border-radius: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button, input, optgroup, select, textarea {
  font: inherit;
}

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[role=button], [type=button], [type=reset], [type=submit], button {
  cursor: pointer;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type=reset], [type=submit], button, html [type=button] {
  -webkit-appearance: button;
}

button, input, select, textarea {
  background-color: transparent;
  border-style: none;
}

a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline-width: 0;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  color: inherit;
  font: inherit;
}

[disabled] {
  cursor: default;
}

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true] {
  cursor: default;
}

body {
  font-family: "Raleway", sans-serif;
  background: #FBFBFB;
}

.alert, .notice {
  text-align: center;
  width: 100%;
  background: #ED1C24;
  padding: 20px;
  color: #fff;
  margin-bottom: 20px;
  font-size: 20px;
}

.notice {
  background: #004C8C;
}

/* Prevent scrolling while dialog is open */
body:has(dialog[data-login-dialog-target=dialog][open]) {
  overflow: hidden;
}

/* Customize the dialog backdrop */
dialog {
  box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.5);
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* Add animations */
dialog[data-login-dialog-target=dialog][open] {
  animation: fade-in 200ms forwards;
}

dialog[data-login-dialog-target=dialog][closing] {
  animation: fade-out 200ms forwards;
}

.terms-dialog {
  border: none;
  border-radius: 8px;
  padding: 0;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.5);
  /* Center the dialog */
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}
.terms-dialog::backdrop {
  background: rgba(0, 0, 0, 0.5);
}

.dialog-content {
  padding: 2rem;
}
.dialog-content h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #333;
}
.dialog-content p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: #666;
}

.dialog-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}
.dialog-actions .btn {
  min-width: 80px;
}

#error-explanation ul {
  list-style: none;
}

.btn, a.btn {
  display: inline-block;
  text-decoration: none;
  padding: 16px 32px;
  border: none;
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .btn, a.btn {
    font-size: 20px;
    padding: 10px 28px;
  }
}

.btn-primary, a.btn-primary {
  background: linear-gradient(0deg, #730303 0%, #ED1C24 100%);
  color: #fff;
}
.btn-primary:hover, a.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(115, 3, 3, 0.4);
  text-decoration: none;
  color: #fff;
}
.btn-primary:active, a.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(237, 28, 36, 0.3);
}
.btn-primary:focus, a.btn-primary:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(237, 28, 36, 0.3), 0 4px 12px rgba(237, 28, 36, 0.3);
}
.btn-primary.btn-sm, a.btn-primary.btn-sm {
  padding: 12px 24px;
  font-size: 14px;
}
.btn-primary.btn-lg, a.btn-primary.btn-lg {
  padding: 20px 40px;
  font-size: 20px;
}
.btn-primary.btn-block, a.btn-primary.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

.btn-secondary, a.btn-secondary {
  background: linear-gradient(0deg, #003366 0%, #004C8C 100%);
  color: #fff;
}
.btn-secondary:hover, a.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 51, 102, 0.4);
  text-decoration: none;
  color: #fff;
}
.btn-secondary:active, a.btn-secondary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 76, 140, 0.3);
}
.btn-secondary:focus, a.btn-secondary:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 76, 140, 0.3), 0 4px 12px rgba(0, 76, 140, 0.3);
}
.btn-secondary.btn-sm, a.btn-secondary.btn-sm {
  padding: 12px 24px;
  font-size: 14px;
}
.btn-secondary.btn-lg, a.btn-secondary.btn-lg {
  padding: 20px 40px;
  font-size: 20px;
}
.btn-secondary.btn-block, a.btn-secondary.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

.btn-tertiary,
a.btn-tertiary {
  background: linear-gradient(0deg, #4a5568 0%, #718096 100%);
  color: #fff;
}
.btn-tertiary:hover,
a.btn-tertiary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 85, 104, 0.4);
  text-decoration: none;
  color: #fff;
}
.btn-tertiary:active,
a.btn-tertiary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(113, 128, 150, 0.3);
}
.btn-tertiary:focus,
a.btn-tertiary:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(113, 128, 150, 0.3), 0 4px 12px rgba(113, 128, 150, 0.3);
}
.btn-tertiary.btn-sm,
a.btn-tertiary.btn-sm {
  padding: 12px 24px;
  font-size: 14px;
}
.btn-tertiary.btn-lg,
a.btn-tertiary.btn-lg {
  padding: 20px 40px;
  font-size: 20px;
}
.btn-tertiary.btn-block,
a.btn-tertiary.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

#main-header {
  position: relative;
  background: #004C8C;
  background: linear-gradient(180deg, rgb(0, 77, 140) 0%, rgb(0, 40, 71) 80%, rgb(0, 39, 70) 100%);
  overflow: hidden;
}
#main-header .star-header {
  position: absolute;
  top: -5px;
  right: -5px;
  z-index: 1;
}
@media (max-width: 1024px) {
  #main-header .star-header {
    max-width: 100px;
  }
}
@media (max-width: 425px) {
  #main-header .star-header {
    max-width: 55px;
  }
}
#main-header .header-triangle {
  width: 100%;
  height: 170px;
  background: linear-gradient(to bottom, #730303, #ED1C24);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
@media (max-width: 1024px) {
  #main-header .header-triangle {
    height: 100px;
  }
}
@media (max-width: 425px) {
  #main-header .header-triangle {
    height: 50px;
  }
}
#main-header .container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 50px 45px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1024px) {
  #main-header .container {
    padding: 0 20px 25px 20px;
  }
}
@media (max-width: 425px) {
  #main-header .container .logo img {
    max-width: 150px;
  }
}
#main-header .nav-main ul {
  display: flex;
  gap: 70px;
  list-style: none;
  align-items: center;
}
#main-header .nav-main li a {
  color: #fff;
  text-decoration: none;
  font-size: 29px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
  display: inline-block;
}
@media (max-width: 425px) {
  #main-header .nav-main li a {
    font-size: 16px;
  }
}

#main-main > .container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 80px 50px;
}
@media (max-width: 425px) {
  #main-main > .container {
    padding: 40px 20px;
  }
}

.hero {
  text-align: center;
  min-height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
}
@media (min-width: 1441px) and (max-width: 1919px) {
  .hero {
    min-height: 700px;
  }
}
@media (max-width: 1440px) {
  .hero {
    min-height: 600px;
  }
}
@media (max-width: 1024px) {
  .hero {
    min-height: 500px;
  }
}
@media (max-width: 425px) {
  .hero {
    min-height: 300px;
  }
}
.hero h1 {
  color: #fff;
  font-size: 160px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
  position: relative;
  z-index: 2;
}
@media (max-width: 1440px) {
  .hero h1 {
    font-size: 100px;
  }
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 80px;
  }
}
@media (max-width: 425px) {
  .hero h1 {
    font-size: 55px;
    line-height: 1.2;
  }
}
.hero--investor-relations {
  background: url("/assets/hero_investor_relations-b1a61adb.jpg") no-repeat center bottom;
  background-size: 100%;
}
@media (max-width: 768px) {
  .hero--investor-relations {
    background-size: cover;
  }
}
.hero--investor-relations::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.financial-summary, .additional-filings, .events {
  margin-bottom: 100px;
}
.financial-summary h1, .additional-filings h1, .events h1 {
  margin-bottom: 30px;
}

.financial-timeline-table, .events-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  font-family: "Raleway", sans-serif;
  margin: 30px 0;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.1);
  background: #fff;
}
.financial-timeline-table th, .financial-timeline-table td, .events-table th, .events-table td {
  padding: 16px 12px;
  text-align: center;
  vertical-align: middle;
}
.financial-timeline-table th, .events-table th {
  background: linear-gradient(180deg, #004C8C 0%, #003366 100%);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}
.financial-timeline-table th:first-child, .events-table th:first-child {
  background: linear-gradient(180deg, #004C8C 0%, #003366 100%);
}
.financial-timeline-table tbody tr, .events-table tbody tr {
  transition: background-color 0.2s ease;
}
.financial-timeline-table tbody tr:hover, .events-table tbody tr:hover {
  background-color: #f8f9fa;
}
.financial-timeline-table tbody tr:nth-child(even), .events-table tbody tr:nth-child(even) {
  background-color: #fafbfc;
}
.financial-timeline-table tbody tr:nth-child(even):hover, .events-table tbody tr:nth-child(even):hover {
  background-color: #f0f2f5;
}
.financial-timeline-table .timeline-year, .events-table .timeline-year {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  font-weight: 700;
  font-size: 1.1rem;
  color: #004C8C;
  width: 140px;
  position: relative;
}
.financial-timeline-table .timeline-report .doc-link, .events-table .timeline-report .doc-link {
  color: #004C8C;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.2s ease;
  display: inline-block;
}
.financial-timeline-table .timeline-report .doc-link:hover, .events-table .timeline-report .doc-link:hover {
  background: #004C8C;
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 77, 140, 0.3);
}
.financial-timeline-table .timeline-title, .events-table .timeline-title {
  text-align: left;
}

@media (max-width: 900px) {
  .financial-timeline-table th,
  .financial-timeline-table td, .events-table th, .events-table td {
    padding: 10px 6px;
    font-size: 0.9rem;
  }
  .financial-timeline-table .timeline-report .doc-link {
    font-size: 0.8rem;
    padding: 6px 8px;
  }
}
@media (max-width: 600px) {
  .financial-timeline-table th,
  .financial-timeline-table td, .events-table th, .events-table td {
    padding: 6px 2px;
    font-size: 0.8rem;
  }
  .financial-timeline-table .timeline-report .doc-link {
    font-size: 0.7rem;
    padding: 4px 6px;
  }
  .financial-timeline-table .timeline-year {
    font-size: 0.9rem;
    min-width: 50px;
  }
}
.container-become-an-investor {
  display: flex;
  flex-direction: column;
}

.become-an-investor {
  max-width: 1100px;
  margin: 0 auto 65px;
}
@media (max-width: 425px) {
  .become-an-investor {
    order: 0;
  }
}
.become-an-investor h1 {
  font-size: 80px;
  color: #004C8C;
  font-weight: 700;
  text-align: center;
  margin-bottom: 35px;
}
@media (max-width: 1024px) {
  .become-an-investor h1 {
    font-size: 60px;
  }
}
@media (max-width: 425px) {
  .become-an-investor h1 {
    font-size: 40px;
    text-align: left;
  }
}
.become-an-investor h1 span {
  color: #ED1C24;
  font-weight: 900;
  font-size: 95px;
}
@media (max-width: 1024px) {
  .become-an-investor h1 span {
    font-size: 75px;
  }
}
@media (max-width: 425px) {
  .become-an-investor h1 span {
    font-size: 50px;
  }
}
.become-an-investor p {
  font-size: 24px;
  line-height: 1.5;
  text-wrap: pretty;
}
@media (max-width: 1024px) {
  .become-an-investor p {
    font-size: 20px;
  }
}

.events-table th, .events-table td {
  text-align: left;
}

.request-access {
  max-width: 1100px;
  text-align: right;
  margin-bottom: 125px;
}
@media (max-width: 1024px) {
  .request-access {
    margin-bottom: 90px;
  }
}
@media (max-width: 425px) {
  .request-access {
    order: 2;
  }
}

.investor-gallery {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
}
@media (max-width: 425px) {
  .investor-gallery {
    flex-wrap: wrap;
    order: 1;
    margin-bottom: 40px;
  }
}
.investor-gallery img {
  max-width: 100%;
}

.user-nav {
  text-align: right;
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
  justify-content: end;
  align-items: center;
}

input[type=text],
input[type=password],
input[type=email] {
  border: 1px solid #004C8C;
  padding: 20px 10px;
  font-size: 20px;
  background: #fff;
  width: 80%;
}
@media (max-width: 1024px) {
  input[type=text],
  input[type=password],
  input[type=email] {
    padding: 15px 10px;
  }
}
@media (max-width: 768px) {
  input[type=text],
  input[type=password],
  input[type=email] {
    width: 70%;
  }
}
@media (max-width: 425px) {
  input[type=text],
  input[type=password],
  input[type=email] {
    width: 60%;
  }
}

label {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 34px;
  color: #004C8C;
}
@media (max-width: 1024px) {
  label {
    font-size: 24px;
  }
}
@media (max-width: 425px) {
  label {
    font-size: 20px;
  }
}

.field .field_with_errors {
  width: 20%;
  display: inline-block;
}
@media (max-width: 425px) {
  .field .field_with_errors {
    width: 40%;
  }
}

.field .field_with_errors:nth-of-type(2) {
  width: 80%;
}
@media (max-width: 425px) {
  .field .field_with_errors:nth-of-type(2) {
    width: 60%;
  }
}
.field .field_with_errors:nth-of-type(2) input {
  width: 100%;
}

.login-form, .reset-password-form, .investor-request-form, .update-password-form, .update-preferences-form {
  max-width: 1100px;
  margin: 0 auto 125px;
}
@media (max-width: 1024px) {
  .login-form, .reset-password-form, .investor-request-form, .update-password-form, .update-preferences-form {
    margin: 0 auto 90px;
  }
}
@media (max-width: 1024px) {
  .login-form, .reset-password-form, .investor-request-form, .update-password-form, .update-preferences-form {
    max-width: 700px;
  }
}
.login-form h2, .reset-password-form h2, .investor-request-form h2, .update-password-form h2, .update-preferences-form h2 {
  font-size: 40px;
  color: #004C8C;
  font-weight: 700;
  text-align: center;
  margin-bottom: 35px;
}
@media (max-width: 1024px) {
  .login-form h2, .reset-password-form h2, .investor-request-form h2, .update-password-form h2, .update-preferences-form h2 {
    font-size: 30px;
  }
}
.login-form .field, .reset-password-form .field, .investor-request-form .field, .update-password-form .field, .update-preferences-form .field {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
.login-form .field--remember-me, .reset-password-form .field--remember-me, .investor-request-form .field--remember-me, .update-password-form .field--remember-me, .update-preferences-form .field--remember-me {
  display: block;
  text-align: right;
}
.login-form .field--remember-me label, .reset-password-form .field--remember-me label, .investor-request-form .field--remember-me label, .update-password-form .field--remember-me label, .update-preferences-form .field--remember-me label {
  font-size: 16px;
  text-transform: none;
  min-width: auto;
  width: auto;
}
.login-form label, .reset-password-form label, .investor-request-form label, .update-password-form label, .update-preferences-form label {
  width: 20%;
  display: inline-block;
}
@media (max-width: 768px) {
  .login-form label, .reset-password-form label, .investor-request-form label, .update-password-form label, .update-preferences-form label {
    width: 30%;
  }
}
@media (max-width: 425px) {
  .login-form label, .reset-password-form label, .investor-request-form label, .update-password-form label, .update-preferences-form label {
    width: 40%;
  }
}
.login-form .actions, .reset-password-form .actions, .investor-request-form .actions, .update-password-form .actions, .update-preferences-form .actions {
  text-align: right;
  margin-top: 60px;
}
@media (max-width: 1024px) {
  .login-form .actions, .reset-password-form .actions, .investor-request-form .actions, .update-password-form .actions, .update-preferences-form .actions {
    margin-top: 40px;
  }
}

.reset-password-form--edit .field, .update-password-form .field, .update-preferences-form .field {
  display: block;
}
.reset-password-form--edit label, .reset-password-form--edit input, .update-password-form label, .update-password-form input, .update-preferences-form label, .update-preferences-form input {
  width: 100%;
}

.update-password-form h1, .update-preferences-form h1 {
  margin-bottom: 40px;
}

.investor-request-form .alert p {
  text-align: left;
  margin-bottom: 10px;
}
.investor-request-form label {
  width: 35%;
}
@media (max-width: 768px) {
  .investor-request-form label {
    width: 40%;
  }
}
@media (max-width: 425px) {
  .investor-request-form label {
    width: 40%;
  }
}
.investor-request-form input[type=text], .investor-request-form input[type=email] {
  width: 65%;
}
@media (max-width: 768px) {
  .investor-request-form input[type=text], .investor-request-form input[type=email] {
    width: 60%;
  }
}
@media (max-width: 425px) {
  .investor-request-form input[type=text], .investor-request-form input[type=email] {
    width: 60%;
  }
}
.investor-request-form .field .field_with_errors {
  width: 65%;
}
@media (max-width: 768px) {
  .investor-request-form .field .field_with_errors {
    width: 60%;
  }
}
@media (max-width: 425px) {
  .investor-request-form .field .field_with_errors {
    width: 60%;
  }
}
.investor-request-form .field .field_with_errors input {
  width: 100%;
}

.update-preferences-form .field .group {
  display: flex;
  align-items: center;
}
.update-preferences-form .field .group label {
  width: auto;
  cursor: pointer;
  line-height: 1.4;
  margin-left: 8px;
}
.update-preferences-form .field .group input[type=checkbox] {
  width: auto;
  height: 20px;
  width: 20px;
  margin: 0;
  cursor: pointer;
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff;
  border: 2px solid #004C8C;
  border-radius: 4px;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
}
.update-preferences-form .field .group input[type=checkbox]:hover {
  border-color: rgb(0, 103.6857142857, 191);
  box-shadow: 0 2px 8px rgba(0, 76, 140, 0.2);
}
.update-preferences-form .field .group input[type=checkbox]:focus {
  outline: none;
  border-color: #004C8C;
  box-shadow: 0 0 0 3px rgba(0, 76, 140, 0.2);
}
.update-preferences-form .field .group input[type=checkbox]:checked {
  background: linear-gradient(135deg, #004C8C 0%, rgb(0, 103.6857142857, 191) 100%);
  border-color: #004C8C;
}
.update-preferences-form .field .group input[type=checkbox]:checked::before {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
}
.update-preferences-form .field .group input[type=checkbox]:checked:hover {
  background: linear-gradient(135deg, rgb(0, 89.8428571429, 165.5) 0%, rgb(0, 117.5285714286, 216.5) 100%);
  box-shadow: 0 4px 12px rgba(0, 76, 140, 0.3);
}
.update-preferences-form .field .group input[type=checkbox]:disabled {
  background: #f5f5f5;
  border-color: #ddd;
  cursor: not-allowed;
}
.update-preferences-form .field .group input[type=checkbox]:disabled + label {
  color: #999;
  cursor: not-allowed;
}

#main-footer {
  width: 100%;
  background: linear-gradient(to bottom, #004C8C, #002646);
  clip-path: polygon(0 8.5%, 100% 27%, 100% 100%, 0 100%);
  padding: 180px 0 0px;
}
@media (max-width: 768px) {
  #main-footer {
    clip-path: polygon(0 0%, 340% 27%, 100% 100%, 0 100%);
    padding: 100px 0 0px;
  }
}
#main-footer .container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 120px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1440px) {
  #main-footer .container {
    padding: 0 60px;
  }
}
@media (max-width: 768px) {
  #main-footer .container {
    flex-wrap: wrap;
  }
}
@media (max-width: 425px) {
  #main-footer .container {
    padding: 0 20px;
  }
}
#main-footer .footer-logo {
  max-width: 650px;
}
@media (max-width: 1440px) {
  #main-footer .footer-logo {
    max-width: 400px;
  }
}
@media (max-width: 1024px) {
  #main-footer .footer-logo {
    max-width: 300px;
  }
}
@media (max-width: 768px) {
  #main-footer .footer-logo {
    flex-basis: 100%;
    max-width: 100%;
  }
}
#main-footer .footer-logo img {
  margin-bottom: 45px;
  max-width: 100%;
}
@media (max-width: 1024px) {
  #main-footer .footer-logo img {
    margin-bottom: 25px;
  }
}
@media (max-width: 768px) {
  #main-footer .footer-logo img {
    max-width: 300px;
  }
}
#main-footer .footer-logo p {
  color: #fff;
  font-size: 30px;
  padding-left: 20px;
  line-height: 1.2;
}
@media (min-width: 1441px) and (max-width: 1919px) {
  #main-footer .footer-logo p {
    font-size: 24px;
  }
}
@media (max-width: 1440px) {
  #main-footer .footer-logo p {
    font-size: 20px;
  }
}
@media (max-width: 1024px) {
  #main-footer .footer-logo p {
    font-size: 16px;
    padding-left: 0;
  }
}
#main-footer .footer-get-in-touch, #main-footer .footer-quick-links {
  margin-top: 80px;
}
@media (max-width: 768px) {
  #main-footer .footer-get-in-touch, #main-footer .footer-quick-links {
    flex-basis: 100%;
  }
}
@media (max-width: 425px) {
  #main-footer .footer-get-in-touch, #main-footer .footer-quick-links {
    margin-top: 40px;
  }
}
#main-footer .footer-get-in-touch h3, #main-footer .footer-quick-links h3 {
  color: #fff;
  font-size: 37px;
  border-bottom: 2px solid #ED1C24;
  padding-bottom: 10px;
  margin-bottom: 40px;
}
@media (min-width: 1441px) and (max-width: 1919px) {
  #main-footer .footer-get-in-touch h3, #main-footer .footer-quick-links h3 {
    font-size: 30px;
  }
}
@media (max-width: 1440px) {
  #main-footer .footer-get-in-touch h3, #main-footer .footer-quick-links h3 {
    font-size: 24px;
  }
}
#main-footer .footer-get-in-touch h3.footer-locate-us, #main-footer .footer-quick-links h3.footer-locate-us {
  margin-top: 40px;
}
@media (min-width: 769px) {
  #main-footer .footer-get-in-touch h3.footer-locate-us, #main-footer .footer-quick-links h3.footer-locate-us {
    display: none;
  }
}
@media (min-width: 769px) {
  #main-footer .footer-get-in-touch ul.footer-locate-us-list, #main-footer .footer-quick-links ul.footer-locate-us-list {
    margin-top: 40px;
  }
}
#main-footer .footer-get-in-touch ul, #main-footer .footer-quick-links ul {
  list-style: none;
  padding-left: 0;
}
#main-footer .footer-get-in-touch ul li, #main-footer .footer-quick-links ul li {
  font-size: 29px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (min-width: 1441px) and (max-width: 1919px) {
  #main-footer .footer-get-in-touch ul li, #main-footer .footer-quick-links ul li {
    font-size: 23px;
  }
}
@media (max-width: 1440px) {
  #main-footer .footer-get-in-touch ul li, #main-footer .footer-quick-links ul li {
    font-size: 19px;
  }
}
@media (max-width: 1024px) {
  #main-footer .footer-get-in-touch ul li, #main-footer .footer-quick-links ul li {
    font-size: 15px;
  }
}
#main-footer .footer-get-in-touch ul li a, #main-footer .footer-quick-links ul li a {
  color: #fff;
  text-decoration: none;
}
#main-footer .footer-quick-links a {
  text-transform: uppercase;
}
#main-footer .footer-copyright {
  margin-top: 100px;
  padding: 40px 0;
  background: #730303;
  background: linear-gradient(0deg, rgb(115, 3, 3) 0%, rgb(237, 28, 36) 100%);
}
@media (max-width: 425px) {
  #main-footer .footer-copyright {
    margin-top: 40px;
    padding: 20px 0;
  }
}
#main-footer .footer-copyright p {
  color: #fff;
  font-size: 20px;
  line-height: 1.5;
}
@media (max-width: 1440px) {
  #main-footer .footer-copyright p {
    font-size: 16px;
  }
}
@media (max-width: 425px) {
  #main-footer .footer-copyright p {
    margin-bottom: 20px;
  }
}
#main-footer .footer-copyright p a {
  color: #fff;
  text-decoration: none;
}
#main-footer .footer-copyright .container {
  align-items: center;
}
@media (max-width: 425px) {
  #main-footer .footer-copyright .footer-social {
    width: 100%;
  }
}
#main-footer .footer-copyright .footer-social ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  gap: 35px;
  align-items: center;
}
@media (max-width: 425px) {
  #main-footer .footer-copyright .footer-social ul {
    justify-content: end;
  }
}
@media (max-width: 1440px) {
  #main-footer .footer-copyright .footer-social img {
    max-width: 30px;
    max-height: 30px;
  }
}
