/* makes sizing simpler */
/* remove default spacing */
/* force styling of type through styling, rather than elements */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* dark mode user-agent-styles */
/* min body height */
body {
  min-height: 100vh;
}

/* responsive images/videos */
img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
}

/* hide broken images */
img:not([src]):not([srcset]) {
  visibility: hidden;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
  font-weight: 400;
}

input, textarea, select {
  color: #666666 !important;
}
input::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
  color: #919191 !important;
  opacity: 1;
}
input::placeholder, textarea::placeholder, select::placeholder {
  color: #919191 !important;
  opacity: 1;
}

body {
  position: relative;
  font-family: "Ubuntu", sans-serif !important;
  font-size: 16px;
  line-height: 1.5;
  color: #54616c;
  background-color: white;
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

.main {
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

::-moz-selection {
  color: white;
  background: #0076a8;
}

::selection {
  color: white;
  background: #0076a8;
}

[hidden],
.-hidden {
  display: none !important;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.625rem;
}

h3 {
  font-size: 1.375rem;
}

h4 {
  font-size: 1.125rem;
}

.container {
  width: 100%;
  padding: 0 16px;
}

.ql-align-center {
  text-align: center;
}

.ql-align-justify {
  text-align: justify;
}

.ql-align-right {
  text-align: right;
}

.overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 118, 168, 0.5333333333);
  position: fixed;
  z-index: 15;
  top: 0;
  left: 0;
  display: none;
  visibility: hidden;
}
.overlay.-active {
  display: block;
  visibility: visible;
}

.page-content {
  display: flex;
  padding: 40px 0;
}
.page-content .container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 60px;
}
.page-content__title {
  font-weight: 700;
  color: #2e3a59;
  margin: 0 0 30px 0;
}
.page-content__select {
  display: flex;
  width: 100%;
  margin: 0 0 30px 0;
}
.page-content__input {
  max-width: 150px;
  margin: 0 0 0 auto;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.content h2,
.content h3,
.content h4 {
  font-weight: 700;
  color: #2e3a59;
}
.content [style] {
  color: #53bc87 !important;
}
.content strong {
  font-weight: 500;
}
.content a {
  color: #0d6efd;
  text-decoration: underline;
}
.content a:hover {
  color: #0a58ca;
}
.content a strong {
  position: relative;
  font-weight: 500;
  padding: 0 0 0 20px;
}
.content a strong::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background: url("../svg/arrow-right-green.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.content a:has(> strong) {
  text-decoration: none;
}
.content ol {
  display: flex;
  flex-direction: column;
  padding: 10px 30px;
  gap: 10px;
}
.content ol li {
  position: relative;
  list-style-type: none;
  padding: 0 0 0 30px;
}
.content ol li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  background-image: url("../svg/list-check.svg");
  background-repeat: no-repeat;
  background-position: center;
}
.content ul {
  display: flex;
  flex-direction: column;
  padding: 10px 30px;
  gap: 10px;
  color: #212529;
}
.content ul li strong {
  color: #212529;
}

.table {
  padding: 20px 0 50px;
  overflow-x: auto;
}
.table table {
  border-collapse: collapse;
  color: #212529;
}
.table table th,
.table table td {
  padding: 5px;
  text-align: left;
  min-width: 140px;
}
.table table tr {
  border-bottom: 1px solid #ced4da;
}
.table table tr:last-child {
  font-weight: 700;
}

.-uppercase {
  text-transform: uppercase;
}

.-center {
  text-align: center;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0 0 0;
  width: 100%;
  height: 100px;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.header__left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}
.header__logo {
  height: 60px;
}
.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.header__right {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
}
.header .hamburger-menu {
  position: relative;
  cursor: pointer;
}
.header .hamburger-menu:hover {
  background-color: transparent;
}
.header .hamburger-box {
  position: relative;
  width: 26px;
  height: 17px;
  transition: all 0.3s ease-in-out;
}
.header .hamburger-box.-active {
  width: 22px;
}
.header .hamburger-box.-active .hamburger-inner {
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}
.header .hamburger-box.-active .hamburger-inner::before {
  width: 26px;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.16s, transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
  transform: rotate(-90deg);
  top: 0;
}
.header .hamburger-box.-active .hamburger-inner::after {
  width: 26px;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s linear 0.22s;
  top: 0;
}
.header .hamburger-inner {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 14px;
  height: 2px;
  background-color: #ffffff;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-duration: 0.13s;
}
.header .hamburger-inner::before {
  content: "";
  position: absolute;
  top: -7px;
  right: 0;
  width: 20px;
  height: 2px;
  background-color: #ffffff;
  transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.header .hamburger-inner::after {
  content: "";
  position: absolute;
  top: -14px;
  right: 0;
  width: 26px;
  height: 2px;
  background-color: #ffffff;
  transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, opacity 0.1s linear;
}
.header .button.-orientation svg {
  width: 22px;
  height: 22px;
}
.header .button.-orientation span {
  display: none;
}
.header.-error, .header.-static {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  background-color: #0076a8;
}

.menu {
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  position: absolute;
  top: 95px;
  right: 0;
  width: 280px;
  font-size: 16px;
  color: #54616c;
  line-height: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  padding: 10px 20px;
  transition: all 0.3s ease-in-out;
  transform: translateX(100%);
}
.menu.-active {
  opacity: 1;
  visibility: visible;
  z-index: 999;
  transform: translateX(0);
}
.menu__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.menu__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  border-bottom: 1px solid rgba(84, 97, 108, 0.165);
  cursor: pointer;
}
.menu__item.-active .menu__sub {
  grid-template-rows: 1fr;
}
.menu__item.-active .menu__sub__list {
  padding: 0 16px 16px;
}
.menu__item.-active .menu__text {
  color: #0076a8;
  text-shadow: 0.7px 0px 0px;
}
.menu__item.-active .menu__text svg {
  fill: #0076a8;
  transform: rotate(90deg);
}
.menu__item:last-child {
  border-bottom: none;
}
.menu__sub {
  display: grid;
  grid-template-rows: 0fr;
  transition: all 0.3s ease-in-out;
  width: 100%;
}
.menu__sub__list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 16px 0;
  width: 100%;
  overflow: hidden;
  gap: 8px;
}
.menu__sub__list__sub {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 16px;
  gap: 8px;
}
.menu__sub__item {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}
.menu__sub__item:hover {
  color: #0076a8;
  text-shadow: 0.7px 0px 0px;
  padding-left: 18px;
}
.menu__text {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  color: #54616c;
  padding: 16px;
  gap: 10px;
  transition: all 0.3s ease-in-out;
}
.menu__text svg {
  fill: #54616c;
  transform: rotate(0deg);
  transition: all 0.3s ease-in-out;
}

.footer {
  position: relative;
  background-color: #f9f9f9;
  padding: 14px 0 10px;
  width: 100%;
}
.footer__wrapper {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}
.footer__wrapper:first-child {
  margin: 0 0 40px 0;
}
.footer__wrapper:last-child {
  flex-direction: column;
}
.footer__item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-width: 120px;
  margin: 0 0 10px 0;
}
.footer__item.-phone {
  display: flex;
  color: #0076a8;
  font-weight: 700;
  margin: 0 30px 0 0;
  width: 100%;
}
.footer__item.-phone svg {
  fill: #0076a8;
  min-width: 30px;
  width: 30px;
  height: 30px;
  transform: scaleX(-1);
}
.footer__item.-grayscale {
  filter: grayscale(100%);
}
.footer__item.-grayscale:hover {
  filter: none;
}
.footer__item.-small {
  font-size: 12px;
  text-align: center;
  margin: 0;
}
.footer__item.-small:hover {
  color: #0076a8;
}
.footer__item.-copyright {
  order: 10;
  font-size: 10px;
}
.footer__item.-copyright:hover {
  color: #54616c;
}
.footer__item img {
  height: 25px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.form__row.-center {
  justify-items: center;
}
.form__col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  gap: 7px;
}
.form__col.-horizontal {
  flex-direction: row;
  align-items: center;
  width: auto;
}
.form__label {
  height: 100%;
}
.form__input, .form__label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 12px;
  width: 100%;
  line-height: 1.5;
  min-width: 50px;
  background-color: #ffffff;
  border-radius: 2px;
  border: 1px solid #ced4da;
  font-size: 16px;
  font-family: "Ubuntu", sans-serif !important;
  color: #212529;
  outline: none;
  transition: all 150ms ease-in-out;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.form__input img, .form__label img {
  margin-left: auto;
}
.form__input:focus, .form__label:focus {
  border-color: #0076a8;
  border-left-width: 3px;
}
.form__input.-invalid, .form__input:has(.-invalid), .form__label.-invalid, .form__label:has(.-invalid) {
  border-color: #ea3729;
}
.form__input.-valid, .form__input:has(.-valid), .form__label.-valid, .form__label:has(.-valid) {
  border-color: #53bc87;
}
.form__input::-moz-placeholder, .form__label::-moz-placeholder {
  font-size: inherit;
  line-height: inherit;
  color: #919191;
  opacity: 1;
}
.form__input span, .form__input::placeholder, .form__label span, .form__label::placeholder {
  font-size: inherit;
  line-height: inherit;
  color: #919191;
  opacity: 1;
}
.form__button {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 20px;
  min-width: 140px;
  font-size: 16px;
  color: #ffffff;
  background-color: #0d6efd;
  outline: none;
  transition: all 150ms ease-in-out;
  border-radius: 5px;
}
.form__button[disabled] {
  background-color: #54616c;
}
.form fieldset {
  display: flex;
  flex-direction: column;
  gap: inherit;
  border: none;
  outline: 0;
}

.checkbox {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  color: #666;
  font-size: 14px;
  line-height: 18px;
}
.checkbox a {
  color: #0d6efd;
}
.checkbox a:hover {
  text-decoration: underline;
}
.checkbox__label {
  margin-top: 4px;
}
.checkbox__input {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  aspect-ratio: 1;
  height: 24px;
  width: 24px;
  min-width: 24px;
  min-height: 24px;
  border: 1px solid #ced4da;
  transition: all 150ms ease-in-out;
  background-color: transparent;
  background-size: 18px;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2px;
}
.checkbox__input.-invalid {
  border-color: #ea3729;
}
.checkbox__input:checked {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2300B67A'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
}

[file-upload-placeholder] {
  overflow: hidden;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
  max-width: 100%;
}

[recaptcha] {
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}
[recaptcha].-invalid {
  border-color: #ea3729;
}
[recaptcha].-valid {
  border-color: #53bc87;
}

.footer-pdf-list {
  position: relative;
  display: flex;
  color: #54616c;
  padding: 50px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.25);
}
.footer-pdf-list__wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 20px;
}
.footer-pdf-list__item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  line-height: 18px;
  width: 200px;
  transition: all 0.3s ease-in-out;
}
.footer-pdf-list__item:hover {
  color: #0076a8;
  text-shadow: 0.7px 0px 0px;
}
.footer-pdf-list__item svg {
  min-width: 20px;
  width: 20px;
  height: auto;
}

.button {
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 10px;
  min-height: 52px;
  min-width: 52px;
  color: #ffffff;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  background-color: transparent;
  border: 2px solid #ffffff;
  border-radius: 10px;
  gap: 10px;
  transition: all 0.3s ease-in-out;
}
.button:hover {
  background-color: #0076a8;
}
.button.-red {
  color: #ffffff !important;
  background-color: #ea3729;
  border: none;
}
.button.-white {
  color: #54616c;
  background-color: #ffffff;
  border: none;
}
.button.-green {
  color: #ffffff !important;
  background-color: #53bc87;
  border: none;
}
.button.-green:hover {
  color: #ffffff !important;
  background-color: #40ad76;
}
.button.-outline-blue {
  border: 2px solid #0076a8;
  color: #0076a8;
}
.button.-outline-blue:hover {
  background-color: #0076a8;
  color: #ffffff;
}
.button.-blue {
  color: #ffffff;
  border: none;
  background-color: #0d6efd;
  transition: transform 0.3s ease-in-out;
}
.button.-blue:hover {
  background-color: #0257d5;
}
.button.-animation {
  transform: translateY(0);
  transition: all 0.3s ease-in-out;
}
.button.-animation:hover {
  transform: translateY(-5px);
}
.button.-wide {
  min-width: 200px;
}

.page-header {
  position: relative;
  background: url("../../assets/image/page-header-bg.png") no-repeat center center;
  padding: 150px 0 50px;
}
.page-header__title {
  color: #ffffff;
  font-weight: 700;
}

.page-header-blog {
  position: relative;
  background: url("../../assets/image/page-header-bg.png") no-repeat center center;
  padding: 150px 0 50px;
}
.page-header-blog__title {
  color: #ffffff;
  font-weight: 700;
}
@media screen and (max-width: 991.99px) {
  .-desktop {
    display: none;
  }
}
@media screen and (min-width: 0px) and (max-width: 374.99px) {
  .header .button {
    min-width: 40px;
    min-height: 40px;
    padding: 5px;
    line-height: normal;
  }
}
@media screen and (min-width: 400px) {
  .menu {
    width: 350px;
    padding: 10px 40px;
  }
}
@media screen and (min-width: 576px) {
  .container {
    padding: 0 50px;
  }
  .header {
    height: 120px;
  }
  .footer-pdf-list__item {
    width: auto;
    max-width: 300px;
  }
}
@media screen and (min-width: 768px) {
  .header__right {
    gap: 10px;
  }
  .header .button.-cta {
    padding-inline: 1.5em;
  }
  .header .button.-orientation svg {
    width: 32px;
    height: 32px;
  }
  .header .button.-orientation span {
    display: flex;
  }
  .footer {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 10;
  }
  .footer__wrapper {
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  .footer__wrapper:first-child {
    margin: 0 0 15px 0;
    gap: 8px;
  }
  .footer__wrapper:last-child {
    flex-direction: row;
  }
  .footer__item {
    min-width: unset;
    margin: 0;
  }
  .footer__item.-phone {
    width: auto;
    margin: 0 30px;
  }
  .footer__item.-small {
    font-size: 10px;
  }
  .footer__item.-copyright {
    order: 0;
    margin: 0 auto 0 0;
  }
  .form__row {
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  }
  .footer-pdf-list {
    padding: 50px 0 120px;
  }
  .button {
    min-height: 64px;
    min-width: 64px;
    padding: 12px 16px;
  }
}
@media screen and (min-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.625rem;
  }
  h4 {
    font-size: 1.375rem;
  }
  .container.-lg {
    max-width: 1400px;
    margin: 0 auto;
  }
  .-mobile {
    display: none;
  }
  .footer__wrapper:first-child {
    gap: 20px;
  }
  .page-header {
    padding: 170px 0 130px;
  }
  .page-header-blog {
    padding: 170px 0 60px;
  }
}
@media screen and (min-width: 1050px) {
  .header__logo {
    height: 78px;
    margin: 0 30px 0 0;
  }
}
@media screen and (min-width: 1440px) {
  .container {
    padding: 0 110px;
  }
  .footer__wrapper:first-child {
    gap: 40px;
  }
}