@import url(https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Varela+Round&display=swap);
@charset "UTF-8";
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
main,
summary,
time,
mark,
audio,
video,
input,
button,
select,
textarea {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
}

@font-face {
  font-family: "Montserrat";
  src: url("../../src/fonts/Montserrat.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../../src/fonts/Montserrat-Italic.ttf") format("truetype");
  font-weight: 600 900;
  font-style: italic;
}
form {
  width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-control {
  width: 100%;
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
  align-items: center;
}
.form-control label {
  color: #0A2F5A;
  font-size: 1.125rem;
  line-height: 1.875rem;
  font-weight: 400;
}

.form-card {
  width: 100%;
  max-width: 688px;
  padding: 40px;
  border-radius: 12px;
  background-color: #FFFFFF;
  box-shadow: 0 15px 15px 0 rgba(0, 0, 0, 0.05);
}
.form-card__fields {
  display: grid;
  gap: 12px;
}
.form-card .form-control {
  margin-bottom: 0;
}
.form-card .form-control label {
  color: #000000;
  font-weight: 700;
}
.form-card input[type=text],
.form-card input[type=email],
.form-card input[type=tel],
.form-card textarea {
  font-weight: 700;
  color: #000000;
}
.form-card input[type=text]::-moz-placeholder, .form-card input[type=email]::-moz-placeholder, .form-card input[type=tel]::-moz-placeholder, .form-card textarea::-moz-placeholder {
  font-weight: 700;
  color: #8F8F8F;
}
.form-card input[type=text]::placeholder,
.form-card input[type=email]::placeholder,
.form-card input[type=tel]::placeholder,
.form-card textarea::placeholder {
  font-weight: 700;
  color: #8F8F8F;
}
.form-card--compact {
  max-width: none;
  padding: 24px;
  box-shadow: none;
  border: 1px solid #F1F1F1;
}

.form-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.form-option-list {
  display: grid;
  gap: 16px;
}
.form-option-list .form-control.check {
  margin-bottom: 0;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
}
.form-option-list .form-control.check label {
  margin: 0;
  color: #000000;
  font-weight: 600;
  line-height: 1.25rem;
  cursor: pointer;
}

.form-range-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.form-range-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  padding: 4px 12px;
  border-radius: 999px;
  background-color: rgba(28, 107, 90, 0.1);
  color: #1C6B5A;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25rem;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=search],
input[type=number],
select,
textarea {
  border: 1.6px solid #C0C0C0;
  padding: 12px 16px;
  background-color: #FFFFFF;
  border-radius: 6px;
  outline: none;
  font-size: 1.125rem;
  line-height: 1.875rem;
  color: #0A2F5A;
  font-family: "Montserrat", sans-serif;
  width: 100%;
  transition: border-color 0.2s ease;
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=search]::-moz-placeholder, input[type=number]::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #8F8F8F;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=search]::placeholder,
input[type=number]::placeholder,
select::placeholder,
textarea::placeholder {
  color: #8F8F8F;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=search]:focus,
input[type=number]:focus,
select:focus,
textarea:focus {
  border-color: #0A2F5A;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
select:has(option[value=""]:checked) {
  color: #8F8F8F;
}

textarea {
  resize: none;
  height: 138px;
}

.select {
  position: relative;
  width: 100%;
}
.select select {
  width: 100%;
  padding-right: 44px;
}
.select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-65%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-right: 2px solid #1C6B5A;
  border-bottom: 2px solid #1C6B5A;
  pointer-events: none;
}

input.error,
select.error {
  border-color: #dc3545;
}
input.error:checked,
select.error:checked {
  border-color: #0A2F5A;
}

input[type=radio],
input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 20px;
  height: 20px;
  border: 1.6px solid #C0C0C0;
  background-color: #FFFFFF;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}
input[type=radio]::after,
input[type=checkbox]::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  opacity: 0;
  transition: opacity 0.3s;
}
input[type=radio]:checked::after,
input[type=checkbox]:checked::after {
  opacity: 1;
}

input[type=checkbox]::after {
  width: 5px;
  height: 10px;
  border: solid #FFFFFF;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -58%) rotate(45deg);
  width: 6px;
  height: 10px;
}
input[type=checkbox]:checked {
  border-color: #1C6B5A;
  background-color: #1C6B5A;
}

input[type=radio] {
  border-radius: 100%;
}
input[type=radio]::after {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: #1C6B5A;
}
input[type=radio]:checked {
  border-color: #1C6B5A;
}

.error input[type=radio] {
  border-color: #dc3545;
}
.error input[type=radio]:checked {
  border-color: #0A2F5A;
}

input[type=range] {
  margin-top: 8px;
  padding: 0;
  height: 8px;
  background-color: #F1F1F1;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 12px;
  border: none;
  position: relative;
  width: 97.5%;
}
input[type=range]::after {
  content: attr(data-value);
  visibility: hidden;
  min-width: 48px;
  height: 32px;
  font-weight: 700;
  font-size: 0.875rem;
  color: #FFFFFF;
  text-align: center;
  border-radius: 999px;
  padding: 4px 8px;
  align-content: center;
  position: absolute;
  z-index: 1;
  bottom: 20px;
  left: calc(0.975 * var(--value) - 20px);
  background-color: #0A2F5A;
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
  line-height: 1.25rem;
}
input[type=range]:hover::after {
  visibility: visible;
  opacity: 1;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
          appearance: none;
  width: 20px;
  height: 20px;
  background-color: #0A2F5A;
  border-radius: 100%;
  cursor: pointer;
  border: 4px solid #FFFFFF;
  box-shadow: 0px 2px 4px -2px rgba(24, 39, 75, 0.1215686275);
  margin-top: -6px;
}
input[type=range]::-webkit-slider-runnable-track {
  height: 8px;
  background: linear-gradient(to right, #1C6B5A 0%, #1C6B5A var(--value), #F1F1F1 var(--value), #F1F1F1 100%);
  border-radius: 12px;
}

input[type=checkbox].toggle {
  width: 50px;
  height: 25px;
  background-color: #DCDCDC;
  border-radius: 999px;
  border: none;
  position: relative;
  transition: background-color 0.3s;
}
input[type=checkbox].toggle::after {
  transition: left 0.3s, background-color 0.3s;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  background-color: #FFFFFF;
  opacity: unset;
  transform: translateY(-50%);
  left: 5px;
  border: none;
  box-shadow: 0 2px 8px rgba(10, 47, 90, 0.12);
}
input[type=checkbox].toggle:checked {
  background-color: #1C6B5A;
}
input[type=checkbox].toggle:checked::after {
  left: 30px;
  background-color: #FFFFFF;
}

.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
  background: #1E1E1E;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
.tooltip .tooltiptext {
  visibility: hidden;
  width: 140px;
  background-color: #0A2F5A;
  color: #1C6B5A;
  text-align: center;
  border-radius: 4px;
  padding: 5px 10px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -70px;
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
}
.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #0A2F5A transparent transparent transparent;
}
.tooltip__pointer {
  text-align: center;
  display: block;
  color: #1E1E1E;
  height: 100%;
  align-content: center;
  font-family: dashicons;
  font-style: italic;
  line-height: normal;
  font-size: unset;
  width: inherit;
}
.tooltip__wrapper {
  display: flex;
  gap: 10px;
  align-items: baseline;
}

input[type=submit] {
  width: 100%;
}

.wpcf7 .wpcf7-spinner {
  display: none !important;
  min-width: 24px;
  min-height: 24px;
}

.wpcf7 .wpcf7-form.submitting .wpcf7-spinner {
  display: inline-block !important;
}

@media (max-width: 768px) {
  .form-showcase {
    grid-template-columns: 1fr;
  }
  .form-card {
    padding: 24px;
  }
  input[type=range]::after {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
}
@media (max-width: 640px) {
  .form-card {
    padding: 20px;
  }
  input[type=range]::after {
    left: calc(0.92 * var(--value) - 12px);
  }
}
.header {
  background-color: #FFFFFF;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  position: fixed;
  z-index: 9999;
  box-shadow: 0 9px 57px -27px rgba(0, 0, 0, 0.35);
  top: 0;
}
.header ul, .header p, .header a {
  margin: 0;
}
.header + section, .header + div {
  padding-top: 110px;
}
body.admin-bar .header {
  padding-top: 32px;
}
.header.scrolled .header__top {
  max-height: 0;
  opacity: 0;
  padding: 0;
}
body.admin-bar .header.scrolled {
  padding-top: 0;
}
.header__principal {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__principal-logo {
  width: 190px;
  height: 75px;
  display: inline-block;
  vertical-align: top;
}
.header__principal-logo h1 {
  font-size: 0;
}
.header__principal-logo-home {
  background-image: url(../../src/images/logo-adamastor.png);
  background-size: 190px 75px;
  background-repeat: no-repeat;
  background-position: 0 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-indent: -999999px;
}
@media (max-width: 1200px) {
  .header + section, .header + div {
    padding-top: 100px;
  }
  body.admin-bar .header + section, body.admin-bar .header + div {
    padding-top: 85px;
  }
  .header__principal {
    padding: 12px 0;
  }
}

.footer {
  position: relative;
  background-color: #0A2F5A;
  overflow: hidden;
}
.footer * {
  color: #FFFFFF;
}
.footer .wp-block-social-link {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .wp-block-social-link-anchor {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .wp-block-social-link svg {
  width: 18px;
  height: 18px;
}
.footer a {
  overflow-wrap: break-word;
  word-wrap: break-word;
  font-weight: 400;
  line-height: normal;
  position: relative;
  color: #FFFFFF;
  background: linear-gradient(to right, #F2C300 50%, #FFFFFF 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-position 500ms ease;
}
.footer a:hover {
  background-position: left bottom;
  -webkit-text-fill-color: transparent;
}
.footer__wrapper {
  border-top: 2px solid #F2C300;
  padding: 56px 0 72px 0;
  position: relative;
  z-index: 0;
}
.footer__wrapper-container {
  display: inline-grid;
  row-gap: 0;
  -moz-column-gap: 80px;
       column-gap: 80px;
  grid-template-rows: repeat(1, fit-content(100%));
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.8fr) minmax(0, 1.2fr);
}
.footer__wrapper-container .widget {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer__wrapper-container .menu {
  margin: 0;
}
.footer__wrapper-container .menu .menu-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0 0 20px;
}
.footer__wrapper-container .menu .menu-item a {
  overflow-wrap: anywhere;
  word-wrap: break-word;
  word-break: break-word;
}
.footer__wrapper-container .menu .menu-item.phone {
  background: url(../../src/images/phone.svg) no-repeat transparent 0 center;
  height: 23px;
  padding-left: 40px;
}
.footer__wrapper-container .menu .menu-item.mail {
  background: url(../../src/images/mail.svg) no-repeat transparent 0 center;
  padding-left: 40px;
}
.footer__wrapper-container-logo {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer__wrapper-container-logo img {
  max-width: 180px;
}
.footer__copyright {
  position: relative;
  z-index: 1;
}
.footer__copyright p {
  margin: 0;
}
.footer__copyright .center {
  border-top: 1px solid #F2C300;
  padding: 32px 0;
}
.footer__copyright-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  flex-wrap: wrap;
  gap: 15px 40px;
}
.footer__copyright-copy a {
  font-weight: 400;
}
@media (max-width: 1024px) {
  .footer__wrapper-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 640px) {
  .footer__wrapper-container .widget {
    gap: 20px;
  }
}

.itens-menu ul.menu {
  display: flex;
  gap: 10px;
  list-style: none;
  padding-left: 0;
}
.itens-menu ul.menu li.menu-item.current-menu-item > a,
.itens-menu ul.menu li.menu-item.current_page_item > a {
  color: #1C6B5A;
}
.itens-menu ul.menu li.menu-item {
  position: relative;
}
.itens-menu ul.menu li.menu-item.menu-item-has-children a {
  padding-right: 25px;
}
.itens-menu ul.menu li.menu-item a {
  color: #000000;
  font-weight: 600;
  position: relative;
  display: inline-block;
  margin: 0;
  box-sizing: border-box;
  padding: 10px;
  width: 100%;
}
.itens-menu ul.menu li.menu-item a:hover {
  color: #1C6B5A;
}
.itens-menu ul.menu li.menu-item a.selected {
  color: #1C6B5A;
}
.itens-menu ul.menu li.menu-item ul.sub-menu {
  display: none;
  width: -moz-max-content;
  width: max-content;
  z-index: 9;
  margin: 0;
  padding: 0;
  background-color: #FFFFFF;
  box-shadow: 8px 8px 20px rgba(51, 51, 51, 0.38);
  position: absolute;
  top: 60px;
}
.itens-menu ul.menu li.menu-item ul.sub-menu li {
  transition: all, 0.6s;
  padding: 0;
  border-bottom: 1px solid #1C6B5A;
}
.itens-menu ul.menu li.menu-item ul.sub-menu li:before {
  display: none;
}
.itens-menu ul.menu li.menu-item ul.sub-menu li a {
  color: #000000;
  padding-left: 0;
  margin: 5px 20px;
}
.itens-menu ul.menu li.menu-item ul.sub-menu li ul.sub-menu {
  display: none;
  width: 100%;
  position: inherit;
  top: 0;
  left: 0;
  border-top: 1px solid #1C6B5A;
  box-shadow: 0 0 0;
}
.itens-menu ul.menu li.menu-item ul.sub-menu li ul.sub-menu li:last-child {
  border-bottom: none;
}
.itens-menu .nav-item {
  transform: rotate(0deg);
  transition: 0.05s ease-in-out;
  cursor: pointer;
  padding: 10px;
  display: block;
  width: 38px;
  height: 28px;
  display: none;
}
.itens-menu .nav-item span {
  display: block;
  position: absolute;
  height: 2px;
  width: 31px;
  background: #0A2F5A;
  opacity: 1;
  left: 5px;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.itens-menu .nav-item span:nth-child(1) {
  top: 5px;
}
.itens-menu .nav-item span:nth-child(2), .itens-menu .nav-item span:nth-child(3) {
  top: 13px;
}
.itens-menu .nav-item span:nth-child(4) {
  top: 21px;
}
.itens-menu .nav-item.open span:nth-child(1) {
  top: 13px;
  width: 0%;
  left: 50%;
}
.itens-menu .nav-item.open span:nth-child(2) {
  transform: rotate(45deg);
}
.itens-menu .nav-item.open span:nth-child(3) {
  transform: rotate(-45deg);
}
.itens-menu .nav-item.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.menu-item-has-children:after {
  position: absolute;
  transform: rotate(45deg);
  border: solid #1E1E1E;
  border-width: 0 2px 2px 0;
  padding: 3px;
  content: "";
  right: 6px;
  top: 19px;
  transition: all, 0.6s;
}
.menu-item-has-children.active:after {
  transform: rotate(225deg);
}
.menu-item-has-children ul.sub-menu .menu-item-has-children {
  margin-bottom: 0;
}
.menu-item-has-children ul.sub-menu .menu-item-has-children:after {
  right: 19px;
  top: 25px;
}
.menu-item-has-children ul.sub-menu .menu-item-has-children.active:after {
  top: 25px;
}

.menu-mobile {
  justify-content: right;
  display: flex;
  align-items: center;
  margin-left: 27px;
}
.menu-mobile .sidebar {
  width: 260px;
  gap: 10px;
  position: fixed;
  left: -290px;
  top: 0;
  z-index: 9999999;
  height: 100%;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.1);
  transition: left 0.35s linear, opacity 0.25s linear;
  background: #FFFFFF;
  overflow: auto;
  padding: 15px;
}
.menu-mobile .sidebar.open {
  left: 0;
}
.menu-mobile .sidebar.open #menu-menu-principal {
  display: flex;
  flex-direction: column;
}
.menu-mobile .sidebar.open #menu-menu-principal .menu-item-has-children:after {
  right: 26px;
  top: 21px;
}
.menu-mobile .sidebar ul.menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 0;
}
.menu-mobile .sidebar ul.menu li {
  width: 100%;
  margin-left: 0;
  text-align: left;
  border-bottom: 1px solid #1C6B5A;
  position: relative;
}
.menu-mobile .sidebar ul.menu li ul.sub-menu {
  display: none;
  width: 100%;
  position: inherit;
  top: 0;
  left: 0;
  border-top: 1px solid #1C6B5A;
  box-shadow: 0 0 0;
  background: #F5F5F5;
  margin-bottom: 0;
}
.menu-mobile .sidebar ul.menu li ul.sub-menu li:last-child {
  border-bottom: none;
}
.menu-mobile .sidebar ul.menu li.menu-item-active a:before {
  display: block;
}
.menu-mobile .sidebar ul.menu li a {
  display: inline-block;
  margin: 0;
  color: #0A2F5A;
  box-sizing: border-box;
  padding: 12px;
  width: 100%;
  transition: all, 0.5s;
}
.menu-mobile .sidebar ul.menu li a:hover {
  color: #1C6B5A;
}
.menu-mobile .sidebar ul.menu li a.selected {
  color: #1C6B5A;
}
.menu-mobile .sidebar li.menu-item.current-menu-item > a,
.menu-mobile .sidebar li.menu-item.current_page_item > a {
  color: #1C6B5A;
}
.menu-mobile .sidebar .btn-close {
  color: #1C6B5A;
  display: flex;
  justify-content: end;
  cursor: pointer;
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}
.menu-mobile .overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #1E1E1E;
  opacity: 0.5;
  cursor: pointer;
  display: none;
}
.menu-mobile.expanded .overlay {
  display: block;
  z-index: 991;
}
.menu-mobile .menu-item-has-children ul.sub-menu .menu-item-has-children:after {
  right: 8px;
}

@media (max-width: 1200px) {
  .itens-menu ul.menu {
    display: none;
  }
  .itens-menu .nav-item {
    display: block;
  }
}
.btn, input[type=submit] {
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 32px;
  gap: 20px;
  background-color: #F2C300;
  color: #0A2F5A;
  border-radius: 999px;
  transition: all 0.4s ease-in-out;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  line-height: 20px;
  text-transform: uppercase;
}
.btn:hover, input[type=submit]:hover {
  background-color: #1C6B5A;
  color: #F2C300;
  text-decoration: none;
}
.btn--dark, input[type=submit] {
  background-color: #1C6B5A;
  color: #FFFFFF;
}
.btn--dark:hover, input[type=submit]:hover {
  background-color: #0A2F5A;
  text-decoration: none;
  color: #FFFFFF;
}
.btn--icon::after {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../../src/images/brand-icon.svg");
  mask-image: url("../../src/images/brand-icon.svg");
  width: 20px;
  height: 20px;
  transition: transform 0.4s ease;
}
.btn--icon:hover::after {
  transform: translateX(4px) rotate(15deg);
}
.btn--reset {
  all: unset;
}

.button-whatsapp-animated,
.button-whatsapp-animated-fill {
  border-radius: 100%;
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.animated.infinite {
  animation-iteration-count: infinite;
}

.button-whatsapp-animated {
  width: 90px;
  height: 90px;
  position: absolute;
  background-color: transparent;
  border: 2px solid rgba(30, 30, 30, 0.4);
  opacity: 0.5;
}

.zoomIn {
  animation-name: zoomIn;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.effect {
  animation-name: effect;
}

@keyframes effect {
  from, to {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
}
.button-whatsapp-animated-fill {
  width: 60px;
  height: 60px;
  top: 28px;
  left: 28px;
  position: absolute;
  -ms-transition: all 0.2s ease-in-out;
  border: 2px solid transparent;
  transition: all 0.5s;
  opacity: 0.4 !important;
}

.button-whatsapp-animated,
.mypage-alo-phone:hover .button-whatsapp-animated {
  border-color: #43b91e;
}

.whatsapp-circle {
  top: 17px;
  left: 17px;
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg fill='%23fff' xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 24 24'%3E%3Cpath d='M.057 24l1.687-6.163c-1.041-1.804-1.588-3.849-1.587-5.946.003-6.556 5.338-11.891 11.893-11.891 3.181.001 6.167 1.24 8.413 3.488 2.245 2.248 3.481 5.236 3.48 8.414-.003 6.557-5.338 11.892-11.893 11.892-1.99-.001-3.951-.5-5.688-1.448l-6.305 1.654zm6.597-3.807c1.676.995 3.276 1.591 5.392 1.592 5.448 0 9.886-4.434 9.889-9.885.002-5.462-4.415-9.89-9.881-9.892-5.452 0-9.887 4.434-9.889 9.884-.001 2.225.651 3.891 1.746 5.634l-.999 3.648 3.742-.981zm11.387-5.464c-.074-.124-.272-.198-.57-.347-.297-.149-1.758-.868-2.031-.967-.272-.099-.47-.149-.669.149-.198.297-.768.967-.941 1.165-.173.198-.347.223-.644.074-.297-.149-1.255-.462-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.297-.347.446-.521.151-.172.2-.296.3-.495.099-.198.05-.372-.025-.521-.075-.148-.669-1.611-.916-2.206-.242-.579-.487-.501-.669-.51l-.57-.01c-.198 0-.52.074-.792.372s-1.04 1.016-1.04 2.479 1.065 2.876 1.213 3.074c.149.198 2.095 3.2 5.076 4.487.709.306 1.263.489 1.694.626.712.226 1.36.194 1.872.118.571-.085 1.758-.719 2.006-1.413.248-.695.248-1.29.173-1.414z'/%3E%3C/svg%3E");
  width: 58px;
  height: 58px;
  opacity: 1;
  background-repeat: no-repeat;
  background-position: 14px 12px;
  background-color: #4ec95e;
  transition: all 0.2s ease-in-out;
  border-radius: 100%;
}

.form-total {
  width: 98%;
  position: relative;
  right: -10px;
}

.modal-whats {
  background: url(../../src/images/wallpaper-whats.png) no-repeat #e5dbd2 center;
  width: 492px;
  position: fixed;
  bottom: 77px;
  right: 71px;
  display: none;
  z-index: 9999;
  box-shadow: -3px 2px 17px -4px #000;
}
.modal-whats .conversation {
  background: #11564c;
  display: flex;
  align-items: center;
  padding: 10px;
}
.modal-whats .conversation div h2 {
  margin-bottom: 5px;
  color: #fff;
  font-size: 21px;
  font-weight: 600;
}
.modal-whats .conversation div p {
  margin-top: 2px;
  color: #fff;
}
.modal-whats .conversation img {
  width: 60px;
  height: 60px;
  margin-left: 15px;
  margin-right: 25px;
}
.modal-whats .conversation .close-whats {
  color: #fff;
  font-weight: 600;
  font-size: 21px;
  right: 22px;
  top: 29px;
  text-decoration: none;
  position: absolute;
  width: 14px;
  height: 20px;
  cursor: pointer;
}
.modal-whats .whats-box {
  position: relative;
}
.modal-whats .form {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-end;
}
.modal-whats .form span .wpcf7-not-valid-tip {
  right: 38px;
  top: -10px;
  position: absolute;
}
.modal-whats .form .my-message p {
  margin-right: 90px;
  background: #fff;
  padding: 11px 20px;
  width: 371px;
  border-radius: 5px;
  color: #1b1b1b;
}
.modal-whats .form .my-message.seta.seta-esquerda {
  padding: 20px 0 0 38px;
  position: relative;
}
.modal-whats .form .my-message.seta.seta-esquerda:before {
  content: "";
  position: absolute;
  top: 20px;
  left: 26px;
  width: 16px;
  height: 16px;
  background: url(../../src/images/triangulo.png) no-repeat transparent center;
}
.modal-whats .form .wpcf7 form.invalid .wpcf7-response-output, .modal-whats .form .wpcf7 form.unaccepted .wpcf7-response-output, .modal-whats .form .wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #ff0000;
  background: #e5dbd2;
  color: #000000;
  width: 100%;
  text-align: center;
  left: 0;
  right: 0;
  transition: 0.4s all;
  bottom: -42px;
  top: inherit;
  margin-left: 0;
}
.modal-whats .form .wpcf7-mail-sent-ok {
  border-color: #00ff0d;
  background: transparent;
  color: #000000;
  width: 83%;
  text-align: center;
  left: 0;
  right: 0;
  bottom: -42px;
  top: inherit;
  margin-left: 0;
}
.modal-whats .form .form-submit {
  position: relative;
}
.modal-whats .form .wpcf7-spinner {
  bottom: 8px;
  right: -12px;
  position: absolute;
}
.modal-whats .form .wpcf7-response-output {
  border-color: #ff0000;
  background: #e5dbd2;
  color: #000;
  width: 93%;
  margin-left: 18px;
  padding: 7px 9px;
}
.modal-whats .form .wpcf7 form.failed .wpcf7-response-output, .modal-whats .form .wpcf7 form.aborted .wpcf7-response-output {
  border-color: #ff0000;
  background: #e5dbd2;
  color: #000000;
  width: 100%;
  text-align: center;
  left: 0;
  right: 0;
  position: absolute;
  transition: 0.4s all;
  margin: 0;
}
.modal-whats .form .email-modal, .modal-whats .form .whats-modal {
  position: relative;
}
.modal-whats .form .email-modal:after, .modal-whats .form .whats-modal:after {
  content: "";
  position: absolute;
  top: 0;
  right: 34px;
  width: 16px;
  height: 16px;
  background: url(../../src/images/triangulo-green.png) no-repeat transparent center;
}
.modal-whats .form .your-message input.wpcf7-form-control {
  background: #e4ffe5;
  height: 43px;
  border-radius: 5px;
  width: 90%;
  margin-left: 0px;
  margin-bottom: 15px;
  border: 1px solid transparent;
  padding-left: 14px;
}
.modal-whats .form .your-message input.wpcf7-form-control:after {
  content: "";
  position: absolute;
  top: 20px;
  right: 26px;
  width: 16px;
  height: 16px;
  background: url(../../src/images/triangulo-green.png) no-repeat transparent center;
}
.modal-whats .form .your-message input.wpcf7-form-control.wpcf7-submit {
  background: #0a6156;
  font-size: 14px;
  height: auto;
  padding: 12px;
  font-weight: 600;
  border-radius: 7px;
  right: -10px;
  position: relative;
  color: #fff;
  border: 2px solid #0a6156;
  transition: 0.4s all;
  cursor: pointer;
  width: 88%;
}
.modal-whats .form .your-message input.wpcf7-form-control.wpcf7-submit:hover {
  background: transparent;
  color: #0a6156;
}

.theme-dark .modal-whats .conversation {
  background: #202c33;
}

.theme-dark .modal-whats {
  background: url(../../src/images/wallpaper-whats-dark.png) no-repeat #0B141A center;
}

.theme-dark .modal-whats .form .your-message input.wpcf7-form-control {
  background: #e4ffe5;
  color: #fff;
}

.theme-dark .modal-whats .form .your-message input.wpcf7-form-control.wpcf7-submit {
  background: #005c4b;
}

.theme-dark .modal-whats .form .your-message input.wpcf7-form-control .theme-dark .modal-whats .form .your-message input.wpcf7-form-control::-moz-placeholder {
  color: #fff;
}

.theme-dark .modal-whats .form .your-message input.wpcf7-form-control .theme-dark .modal-whats .form .your-message input.wpcf7-form-control::placeholder {
  color: #fff;
}

.theme-dark .modal-whats .form .your-message input.wpcf7-form-control.wpcf7-submit:hover {
  color: #fff;
}

.theme-dark .modal-whats .form .my-message.seta.seta-esquerda:before {
  background: url(../../src/images/triangulo-dark.png) no-repeat transparent center;
}

.theme-dark .modal-whats .form .my-message p {
  background: #383f43;
  color: #fff;
}

@media screen and (max-width: 851px) {
  .modal-whats .form .your-message input.wpcf7-form-control {
    height: 48px;
  }
}
@media screen and (max-width: 582px) {
  .modal-whats .form .your-message input.wpcf7-form-control {
    width: 82%;
    margin-left: 23px;
  }
  .modal-whats .form .your-message input.wpcf7-form-control.wpcf7-submit {
    margin-left: 23px;
    width: 81%;
  }
}
@media screen and (max-width: 582px) {
  .wrapper-inner-page-section-1 .total-one .col-2 form input[type=submit] {
    width: unset;
  }
  .modal-whats {
    width: 366px;
  }
  .modal-whats .form .my-message p {
    width: 302px;
    margin-right: 42px;
  }
  .modal-whats .form .my-message:before {
    top: 13px;
  }
  .modal-whats .modal-whats .form .your-message input.wpcf7-form-control {
    width: 75%;
    margin-left: 72px;
  }
  .modal-whats .modal-whats .form .your-message input.wpcf7-form-control:before {
    top: 15px;
  }
  .modal-whats .modal-whats .form .your-message input.wpcf7-form-control:after {
    top: 79px;
  }
  .modal-whats .modal-whats .form .your-message input.wpcf7-form-control.wpcf7-submit {
    margin-left: 0;
    right: -181px;
  }
}
@media screen and (max-width: 452px) {
  .modal-whats {
    bottom: 91px;
    right: 43px;
    width: 320px;
  }
  .modal-whats .form .my-message p {
    width: 257px;
    font-size: 13px;
  }
  .modal-whats .conversation div h2 {
    font-size: 18px;
  }
  .modal-whats .conversation div p {
    font-size: 14px;
  }
  .modal-whats .form .your-message input.wpcf7-form-control:before {
    right: 9px;
    top: 11px;
  }
  .modal-whats .form .your-message input.wpcf7-form-control:after {
    right: 11px;
    top: 73px;
  }
}
@media screen and (max-width: 350px) {
  .modal-whats {
    bottom: 91px;
    right: 0;
    width: 100%;
  }
}
/*---------------Fim do modal -------------------*/
@keyframes pulse {
  from, to {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
}
.button-whatsapp-flutuante {
  position: fixed;
  bottom: -10px;
  right: -10px;
  width: 115px;
  height: 115px;
  z-index: 9999;
}
.button-whatsapp-flutuante span {
  background-color: #777;
  color: #fff;
  padding: 2px 8px;
  width: 100%;
  text-align: center;
  font-size: 12px;
  top: 0;
  display: block;
  margin-bottom: 5px;
  border-radius: 10px;
  position: relative;
  margin: 0 auto;
}
.button-whatsapp-flutuante span:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #777 transparent transparent;
}
.button-whatsapp-flutuante:hover {
  text-decoration: none;
}

.archive__wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.archive__container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}
.archive__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
@media screen and (max-width: 1024px) {
  .archive__container {
    grid-template-columns: auto;
  }
}
@media screen and (max-width: 768px) {
  .archive__list {
    grid-template-columns: auto;
  }
}

.center {
  width: 1200px;
  margin: 0 auto;
}

.section-line {
  padding-bottom: 72px;
}

@media screen and (max-width: 1200px) {
  .center {
    width: 1024px;
  }
}
@media screen and (max-width: 1024px) {
  .center {
    width: 768px;
  }
}
@media screen and (max-width: 768px) {
  .center {
    width: 640px;
  }
  .section-line {
    padding-bottom: 64px;
  }
}
@media screen and (max-width: 640px) {
  .center {
    width: 90%;
  }
}
html {
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  scroll-behavior: smooth;
  scroll-padding: 150px;
}
html ::-moz-selection {
  color: #FFFFFF;
  background-color: rgba(10, 47, 90, 0.7);
}
html ::selection {
  color: #FFFFFF;
  background-color: rgba(10, 47, 90, 0.7);
}

.kicker, .kicker--large {
  display: flex;
  padding: 4px 40px 2px 40px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  background: #F2C300;
  color: #0A2F5A !important;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25rem;
  width: -moz-fit-content;
  width: fit-content;
}
.kicker--large {
  padding: 6px 24px 4px 24px;
  font-size: 14px;
  border: 1.111px solid rgba(19, 53, 54, 0.3);
}

.f-counter {
  align-items: center;
}

.f-counter span {
  color: #F5F5F5;
}

.grecaptcha-badge {
  z-index: 10;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #0A2F5A;
  font-weight: 600;
}

h1 {
  font-size: 3rem;
  line-height: 3.125rem;
}

h2 {
  font-size: 2.3rem;
  line-height: 2.5rem;
}

h3 {
  font-size: 2rem;
  line-height: 2.5rem;
}

h4 {
  font-size: 1.5rem;
  line-height: 1.875rem;
}

h5 {
  font-size: 1.25rem;
  line-height: 1.25rem;
}

h6 {
  font-size: 1.125rem;
  line-height: 1.25rem;
}

p,
pre,
span,
label,
a,
li,
th,
td {
  font-size: clamp(15px, 1.8vw, 18px);
  color: #000000;
  line-height: 1.875rem;
}

p,
ul,
ol,
table {
  margin-bottom: 20px;
}

strong,
b {
  font-weight: 700;
}

em,
i {
  font-style: italic;
}

a {
  transition: color 0.3s;
  text-decoration: none;
  color: #1C6B5A;
  font-weight: 600;
}
a:hover {
  color: #0A2F5A;
}

.table {
  width: 100%;
  border: 1px solid #F1F1F1;
  background-color: #F1F1F1;
  text-align: center;
}
.table thead {
  position: sticky;
  top: 0;
  background-color: #0A2F5A;
  z-index: 2;
  box-shadow: 0 2px 0 -1px #8F8F8F;
}
.table thead th {
  padding: 11.5px;
  font-weight: 700;
  color: #FFFFFF;
  border: 1px solid whitesmoke;
}
.table tbody td {
  padding: 11.5px;
  font-weight: 500;
  border: 1px solid whitesmoke;
}
.table.table-striped tbody tr:nth-of-type(odd) > * {
  color: #000000;
  background-color: #FFFFFF;
}

.wp-social-link {
  background-color: #1C6B5A;
  color: #FFFFFF;
}

.h-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 48px;
  width: 100%;
}
.h-section p {
  margin: 0;
}
.h-section--left {
  align-items: start;
  text-align: left;
}
.h-section--center {
  align-items: center;
  text-align: center;
}
.h-section--right {
  align-items: end;
  text-align: right;
}

@media (max-width: 1024px) {
  html {
    font-size: 13px;
  }
}
@media (max-width: 640px) {
  html {
    font-size: 11px;
  }
}
body:has(.cookie-tema#cookie-tema[style*="display: block"]) .button-whatsapp-flutuante {
  bottom: 100px;
}

body:has(.cookie-tema#cookie-tema[style*="display: block"]) .grecaptcha-badge {
  bottom: 240px !important;
}

body:not(:has(.cookie-tema#cookie-tema[style*="display: block"])):has(.button-whatsapp-flutuante) .grecaptcha-badge {
  bottom: 140px !important;
}

@media (max-width: 1200px) {
  body:has(.cookie-tema#cookie-tema[style*="display: block"]) .button-whatsapp-flutuante {
    bottom: 240px;
  }
  body:has(.cookie-tema#cookie-tema[style*="display: block"]) .grecaptcha-badge {
    bottom: 380px !important;
  }
}
/*
    Para conseguir utilizar os estilos na página desejada, basta importar o default-page no ínicio do arquivo scss
        @import 'default-page';
*/
.default-page, .results__content, .cta__description, .single__container-content-text {
  word-wrap: break-word;
}
.default-page blockquote, .results__content blockquote, .cta__description blockquote, .single__container-content-text blockquote {
  position: relative;
  padding: 1rem;
  margin: 1em 0;
  border-left: 3px solid #0A2F5A;
  font-size: 1.2rem;
  font-style: italic;
  color: #0A2F5A;
  background-color: #F5F5F5;
}
.default-page ul, .results__content ul, .cta__description ul, .single__container-content-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.default-page ul li, .results__content ul li, .cta__description ul li, .single__container-content-text ul li {
  list-style: none;
  display: block;
  position: relative;
  padding-left: 40px;
  margin-bottom: 16px;
  font-weight: 600;
}
.default-page ul li::marker, .results__content ul li::marker, .cta__description ul li::marker, .single__container-content-text ul li::marker {
  display: none;
  content: "";
}
.default-page ul li::before, .results__content ul li::before, .cta__description ul li::before, .single__container-content-text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-color: #F2C300;
  border-radius: 999px;
  mask: url("../../src/images/list-icon.svg") no-repeat center;
  -webkit-mask: url("../../src/images/list-icon.svg") no-repeat center;
  mask-size: 20px 20px;
  -webkit-mask-size: 20px 20px;
}
.default-page ol li, .results__content ol li, .cta__description ol li, .single__container-content-text ol li {
  list-style-type: decimal;
}
.default-page .wp-block-gallery, .results__content .wp-block-gallery, .cta__description .wp-block-gallery, .single__container-content-text .wp-block-gallery {
  margin-bottom: 30px;
}
.default-page .wp-block-gallery.has-nested-images figure.wp-block-image figcaption, .results__content .wp-block-gallery.has-nested-images figure.wp-block-image figcaption, .cta__description .wp-block-gallery.has-nested-images figure.wp-block-image figcaption, .single__container-content-text .wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
  bottom: 0;
  box-sizing: border-box;
  font-size: 13px;
  left: 0;
  margin-bottom: 0;
  max-height: 60%;
  overflow: auto;
  padding: 5px 8px 8px;
  position: absolute;
  text-align: center;
  width: 100%;
}
.default-page figcaption, .results__content figcaption, .cta__description figcaption, .single__container-content-text figcaption {
  font-size: 16px !important;
  bottom: 20px !important;
}
.default-page img, .results__content img, .cta__description img, .single__container-content-text img {
  border-radius: 8px;
}
.default-page code, .results__content code, .cta__description code, .single__container-content-text code {
  background-color: rgba(7, 35, 67, 0.3);
  color: #0A2F5A;
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 1rem;
  word-wrap: break-word;
  display: inline-block;
  font-family: monospace;
}
.default-page code.white-text, .results__content code.white-text, .cta__description code.white-text, .single__container-content-text code.white-text {
  background-color: #333;
  color: #FFFFFF;
}

.swiper-pagination-bullets {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 40px;
  position: relative !important;
  bottom: auto !important;
}

.swiper-pagination-bullet {
  width: 18px !important;
  height: 18px !important;
  background-color: #0A2F5A !important;
  opacity: 1 !important;
  margin: 0 !important;
  border-radius: 50px !important;
  transition: all 0.2s ease !important;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 55px !important;
  background-color: #0A2F5A !important;
}

.pagination-bullet--light .swiper-pagination-bullet {
  background-color: #F2C300 !important;
}
.pagination-bullet--light .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #F2C300 !important;
}

@media screen and (max-width: 640px) {
  .swiper-pagination-bullet {
    width: 16px !important;
    height: 16px !important;
  }
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 48px !important;
  }
}
.input-wrapper {
  position: relative;
  display: block;
  --input-height: 54px;
  --input-padding: 12px 16px;
  --input-font-size: 18px;
  --input-border-radius: 6px;
  --input-line-height: 30px;
  --input-border-color: #C0C0C0;
  --input-text-color: #0A2F5A;
  --input-placeholder-color: #8F8F8F;
  --input-bg-color: #FFFFFF;
  --icon-bg-color: #0A2F5A;
  --input-border-focus-color: #0A2F5A;
  --input-box-shadow-focus: none;
  --textarea-min-height: 138px;
  --icon-size: 20px;
  --icon-left: 24px;
}
.input-wrapper--transparent {
  --input-bg-color: transparent;
  --input-border-color: #FFFFFF;
  --input-text-color: #FFFFFF;
  --input-placeholder-color: #FFFFFF;
  --icon-bg-color: #FFFFFF;
  --input-border-focus-color: #FFFFFF;
  --input-box-shadow-focus: none;
}
.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
  width: 100%;
  box-sizing: border-box;
  font-size: var(--input-font-size);
  color: var(--input-text-color);
  background-color: var(--input-bg-color);
  border: 1px solid var(--input-border-color);
  border-radius: var(--input-border-radius);
  line-height: var(--input-line-height);
  padding: var(--input-padding);
}
.input-wrapper input::-moz-placeholder, .input-wrapper select::-moz-placeholder, .input-wrapper textarea::-moz-placeholder {
  color: var(--input-placeholder-color);
}
.input-wrapper input::placeholder,
.input-wrapper select::placeholder,
.input-wrapper textarea::placeholder {
  color: var(--input-placeholder-color);
}
.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
  border-color: var(--input-border-focus-color);
  box-shadow: var(--input-box-shadow-focus);
  outline: none;
}
.input-wrapper input,
.input-wrapper select {
  height: var(--input-height);
}
.input-wrapper select:has(option[value=""]:checked) {
  color: var(--input-placeholder-color);
}
.input-wrapper textarea {
  padding-top: 12px;
  min-height: var(--textarea-min-height);
  resize: vertical;
}
.input-wrapper--icon input,
.input-wrapper--icon select,
.input-wrapper--icon textarea {
  padding-left: calc(var(--icon-left) + var(--icon-size) + 8px);
}
.input-wrapper--icon::before {
  content: "";
  position: absolute;
  left: var(--icon-left);
  width: var(--icon-size);
  height: var(--icon-size);
  background-color: var(--icon-bg-color);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  pointer-events: none;
  z-index: 1;
}
.input-wrapper--icon:not(:has(textarea))::before {
  top: 50%;
  transform: translateY(-50%);
}
.input-wrapper--icon:has(textarea)::before {
  top: 16px;
  transform: none;
}
.input-wrapper--user::before {
  -webkit-mask-image: url("../../src/images/user.svg");
  mask-image: url("../../src/images/user.svg");
}
.input-wrapper--email::before {
  -webkit-mask-image: url("../../src/images/mail.svg");
  mask-image: url("../../src/images/mail.svg");
}
.input-wrapper--phone::before {
  -webkit-mask-image: url("../../src/images/phone.svg");
  mask-image: url("../../src/images/phone.svg");
}
.input-wrapper--message::before {
  -webkit-mask-image: url("../../src/images/message.svg");
  mask-image: url("../../src/images/message.svg");
}
.input-wrapper--localization::before {
  -webkit-mask-image: url("../../src/images/localization.svg");
  mask-image: url("../../src/images/localization.svg");
}
.input-wrapper:has(input:focus), .input-wrapper:has(textarea:focus) {
  border-color: var(--input-border-focus-color);
  box-shadow: var(--input-box-shadow-focus);
  border-radius: var(--input-border-radius);
}

/* Usage HTML structure example:
    <div class="input-wrapper input-wrapper--icon input-wrapper--user">
      <input type="text" placeholder="Username" />
    </div>

    <div class="input-wrapper input-wrapper--icon input-wrapper--message">
      <textarea placeholder="Your message"></textarea>
    </div>
*/
.single__container {
  display: grid;
  grid-template-columns: 68% 30%;
  grid-template-rows: auto auto;
  grid-template-areas: "content sidebar" "comments comments";
  gap: 2%;
}
.single__container-content {
  grid-area: content;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.single__container-content-date {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 30px;
}
.single__container-content span {
  font-weight: 400;
  color: #0A2F5A;
  width: 100%;
  text-align: end;
}
.single__container-content h2 {
  margin: 0;
}
.single__container-content-category {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #0A2F5A transparent;
  padding-bottom: 5px;
  width: 100%;
}
.single__container-content-category a {
  background-color: #0A2F5A;
  color: #FFFFFF;
  font-size: 0.938rem;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 20px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.3s;
}
.single__container-content-category a:hover {
  color: #FFFFFF;
  background-color: #F2C300;
}
.single__container-content img {
  border-radius: 4px;
  margin: 20px 0;
}
.single__container-content-author {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  transition: transform 0.3s ease;
}
.single__container-content-author a {
  color: #F2C300;
  transition: all 0.3s;
}
.single__container-content-author img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 5px solid #1C6B5A;
  overflow: hidden;
  margin-right: 15px;
}
.single__container-content-author:hover {
  transform: scale(1.02);
}
.single__container__sidebar {
  grid-area: sidebar;
}
.single__container .comments {
  grid-area: comments;
}
@media screen and (max-width: 1024px) {
  .single__container {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: auto auto auto;
    grid-template-areas: "content" "comments" "sidebar";
    gap: 40px;
  }
  .single__content-info {
    grid-template-columns: 1fr 1fr;
    margin: 0;
  }
}

.sidebar {
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: sticky;
  top: 60px;
}
.sidebar ul {
  margin: 0;
}
.sidebar .widget {
  background-color: #F2C300;
  border-radius: 4px;
  padding: 25px;
}
.sidebar .widget.widget_search form, .sidebar .widget.widget_search,
.sidebar .widget .wp-block-search form,
.sidebar .widget .wp-block-search {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sidebar .widget.widget_search form div,
.sidebar .widget.widget_search form .wp-block-search__inside-wrapper, .sidebar .widget.widget_search div,
.sidebar .widget.widget_search .wp-block-search__inside-wrapper,
.sidebar .widget .wp-block-search form div,
.sidebar .widget .wp-block-search form .wp-block-search__inside-wrapper,
.sidebar .widget .wp-block-search div,
.sidebar .widget .wp-block-search .wp-block-search__inside-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sidebar .widget.widget_search form div input[type=text],
.sidebar .widget.widget_search form div .wp-block-search__input,
.sidebar .widget.widget_search form .wp-block-search__inside-wrapper input[type=text],
.sidebar .widget.widget_search form .wp-block-search__inside-wrapper .wp-block-search__input, .sidebar .widget.widget_search div input[type=text],
.sidebar .widget.widget_search div .wp-block-search__input,
.sidebar .widget.widget_search .wp-block-search__inside-wrapper input[type=text],
.sidebar .widget.widget_search .wp-block-search__inside-wrapper .wp-block-search__input,
.sidebar .widget .wp-block-search form div input[type=text],
.sidebar .widget .wp-block-search form div .wp-block-search__input,
.sidebar .widget .wp-block-search form .wp-block-search__inside-wrapper input[type=text],
.sidebar .widget .wp-block-search form .wp-block-search__inside-wrapper .wp-block-search__input,
.sidebar .widget .wp-block-search div input[type=text],
.sidebar .widget .wp-block-search div .wp-block-search__input,
.sidebar .widget .wp-block-search .wp-block-search__inside-wrapper input[type=text],
.sidebar .widget .wp-block-search .wp-block-search__inside-wrapper .wp-block-search__input {
  flex: 1;
  min-width: 0;
  padding: 15px 20px;
  border-radius: 8px;
  background-color: #FFFFFF;
  border: none;
  font-size: 1rem;
}
.sidebar .widget.widget_search form div input[type=text]:focus,
.sidebar .widget.widget_search form div .wp-block-search__input:focus,
.sidebar .widget.widget_search form .wp-block-search__inside-wrapper input[type=text]:focus,
.sidebar .widget.widget_search form .wp-block-search__inside-wrapper .wp-block-search__input:focus, .sidebar .widget.widget_search div input[type=text]:focus,
.sidebar .widget.widget_search div .wp-block-search__input:focus,
.sidebar .widget.widget_search .wp-block-search__inside-wrapper input[type=text]:focus,
.sidebar .widget.widget_search .wp-block-search__inside-wrapper .wp-block-search__input:focus,
.sidebar .widget .wp-block-search form div input[type=text]:focus,
.sidebar .widget .wp-block-search form div .wp-block-search__input:focus,
.sidebar .widget .wp-block-search form .wp-block-search__inside-wrapper input[type=text]:focus,
.sidebar .widget .wp-block-search form .wp-block-search__inside-wrapper .wp-block-search__input:focus,
.sidebar .widget .wp-block-search div input[type=text]:focus,
.sidebar .widget .wp-block-search div .wp-block-search__input:focus,
.sidebar .widget .wp-block-search .wp-block-search__inside-wrapper input[type=text]:focus,
.sidebar .widget .wp-block-search .wp-block-search__inside-wrapper .wp-block-search__input:focus {
  outline: none;
  transition: all 0.5s;
}
.sidebar .widget.widget_search form div input[type=submit],
.sidebar .widget.widget_search form div .wp-block-search__button,
.sidebar .widget.widget_search form .wp-block-search__inside-wrapper input[type=submit],
.sidebar .widget.widget_search form .wp-block-search__inside-wrapper .wp-block-search__button, .sidebar .widget.widget_search div input[type=submit],
.sidebar .widget.widget_search div .wp-block-search__button,
.sidebar .widget.widget_search .wp-block-search__inside-wrapper input[type=submit],
.sidebar .widget.widget_search .wp-block-search__inside-wrapper .wp-block-search__button,
.sidebar .widget .wp-block-search form div input[type=submit],
.sidebar .widget .wp-block-search form div .wp-block-search__button,
.sidebar .widget .wp-block-search form .wp-block-search__inside-wrapper input[type=submit],
.sidebar .widget .wp-block-search form .wp-block-search__inside-wrapper .wp-block-search__button,
.sidebar .widget .wp-block-search div input[type=submit],
.sidebar .widget .wp-block-search div .wp-block-search__button,
.sidebar .widget .wp-block-search .wp-block-search__inside-wrapper input[type=submit],
.sidebar .widget .wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button {
  all: unset;
  width: 26px;
  height: 26px;
  border: none;
  background: url(../../src/images/search.svg) no-repeat center center;
  background-size: contain;
  cursor: pointer;
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
  padding: 0;
  margin-left: 10px;
}
.sidebar .widget.widget_categories ul {
  list-style: disc;
  padding-left: 1.2rem;
  margin-bottom: 15px;
}
.sidebar .widget.widget_categories ul li {
  padding-left: 0;
  position: static;
  color: #FFFFFF;
}
.sidebar .widget.widget_categories ul li a {
  color: #FFFFFF;
  font-weight: 400;
  transition: all 0.3s;
}
.sidebar .widget.widget_categories ul li a:hover {
  font-weight: 600;
}

.comments-area {
  gap: 10px;
  display: grid;
  padding: 50px 110px;
  margin-top: 20px;
  background-color: #F2C300;
  border-radius: 4px;
}
.comments-area h2, .comments-area p, .comments-area span, .comments-area label, .comments-area li, .comments-area a {
  color: #FFFFFF;
}
.comments-area li {
  list-style: none;
  margin-top: 10px;
}
.comments-area ol.children {
  padding-left: 20px;
}
.comments-area .comment-body {
  display: flex;
  margin-bottom: 20px;
}
.comments-area .comment-content-wrapper {
  flex: 1;
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 0 15px 15px 15px;
  position: relative;
  word-break: break-word;
  overflow-wrap: break-word;
}
.comments-area .comment-content-wrapper:before {
  content: "";
  position: absolute;
  top: -16px;
  left: -16px;
  border-width: 15px;
  border-style: solid;
  border-color: #FFFFFF transparent transparent transparent;
  transform: rotate(224deg);
}
.comments-area .comment-author {
  font-weight: bold;
  margin-bottom: 5px;
}
.comments-area .comment-date {
  font-style: italic;
  font-size: 0.9em;
  color: #FFFFFF;
  display: block;
}
.comments-area .comment-content {
  margin-top: 10px;
}
.comments-area #cancel-comment-reply-link {
  font-size: 1.25rem;
  font-weight: 400;
  color: #0A2F5A;
}
.comments-area .comment-reply-title a {
  font-size: 2rem;
}
.comments-area .reply {
  text-align: right;
  margin-top: 10px;
}
.comments-area .reply a {
  color: #0A2F5A;
  transition: all 0.3s;
}
.comments-area .reply a:hover {
  color: #1C6B5A;
}
.comments-area .comment-awaiting-moderation {
  font-style: italic;
  color: #cc3334;
}
.comments-area img {
  margin-bottom: 0;
  border-radius: 30px;
  margin-right: 10px;
  height: 55px;
  width: 55px;
  margin-top: 15px;
}
.comments-area .logged-in-as {
  font-size: 18px;
}
.comments-area .comment-author.vcard {
  display: inline-block;
  margin-right: 10px;
}
.comments-area .comment-awaiting-moderation {
  font-size: 0.75em;
  margin-top: 15px;
  margin-bottom: 15px;
  display: inline-block;
}
.comments-area input[type=text],
.comments-area input[type=email],
.comments-area input[type=url],
.comments-area textarea {
  margin-bottom: 10px;
}
.comments-area .form-submit {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  margin-bottom: 0;
}
.comments-area .form-submit .submit {
  padding: 12px 100px;
}
.comments-area .post-comments {
  margin: 0;
  margin-bottom: 0px;
}
.comments-area .post-comments li {
  display: inline-block;
}
.comments-area .post-comments li .comment-body {
  margin-bottom: 30px;
  border-bottom: 1px solid #FFFFFF;
  padding-bottom: 20px;
}
.comments-area .post-comments li .children {
  margin-left: 0;
  margin-bottom: 0;
}
.comments-area .post-comments li .children li .comment-body {
  padding-left: 20px;
}
.comments-area .comment-respond label {
  font-weight: 600;
  margin-left: 5px;
}
.comments-area .comment-respond .col-comments label {
  color: #F2C300;
}
.comments-area .comment-respond .col-comments p {
  width: 33%;
  display: inline-block;
}
@media screen and (max-width: 1024px) {
  .comments-area {
    padding: 40px;
    margin-top: 0;
  }
}
@media screen and (max-width: 640px) {
  .comments-area {
    padding: 40px 20px;
  }
  .comments-area .form-submit .submit {
    padding: 12px 60px;
  }
  .comments-area ol.children {
    padding-left: 0;
  }
}

.sidebar {
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: sticky;
  top: 60px;
}
.sidebar ul {
  margin: 0;
}
.sidebar .widget {
  background-color: #F2C300;
  border-radius: 4px;
  padding: 25px;
}
.sidebar .widget.widget_search form, .sidebar .widget.widget_search,
.sidebar .widget .wp-block-search form,
.sidebar .widget .wp-block-search {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sidebar .widget.widget_search form div,
.sidebar .widget.widget_search form .wp-block-search__inside-wrapper, .sidebar .widget.widget_search div,
.sidebar .widget.widget_search .wp-block-search__inside-wrapper,
.sidebar .widget .wp-block-search form div,
.sidebar .widget .wp-block-search form .wp-block-search__inside-wrapper,
.sidebar .widget .wp-block-search div,
.sidebar .widget .wp-block-search .wp-block-search__inside-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sidebar .widget.widget_search form div input[type=text],
.sidebar .widget.widget_search form div .wp-block-search__input,
.sidebar .widget.widget_search form .wp-block-search__inside-wrapper input[type=text],
.sidebar .widget.widget_search form .wp-block-search__inside-wrapper .wp-block-search__input, .sidebar .widget.widget_search div input[type=text],
.sidebar .widget.widget_search div .wp-block-search__input,
.sidebar .widget.widget_search .wp-block-search__inside-wrapper input[type=text],
.sidebar .widget.widget_search .wp-block-search__inside-wrapper .wp-block-search__input,
.sidebar .widget .wp-block-search form div input[type=text],
.sidebar .widget .wp-block-search form div .wp-block-search__input,
.sidebar .widget .wp-block-search form .wp-block-search__inside-wrapper input[type=text],
.sidebar .widget .wp-block-search form .wp-block-search__inside-wrapper .wp-block-search__input,
.sidebar .widget .wp-block-search div input[type=text],
.sidebar .widget .wp-block-search div .wp-block-search__input,
.sidebar .widget .wp-block-search .wp-block-search__inside-wrapper input[type=text],
.sidebar .widget .wp-block-search .wp-block-search__inside-wrapper .wp-block-search__input {
  flex: 1;
  min-width: 0;
  padding: 15px 20px;
  border-radius: 8px;
  background-color: #FFFFFF;
  border: none;
  font-size: 1rem;
}
.sidebar .widget.widget_search form div input[type=text]:focus,
.sidebar .widget.widget_search form div .wp-block-search__input:focus,
.sidebar .widget.widget_search form .wp-block-search__inside-wrapper input[type=text]:focus,
.sidebar .widget.widget_search form .wp-block-search__inside-wrapper .wp-block-search__input:focus, .sidebar .widget.widget_search div input[type=text]:focus,
.sidebar .widget.widget_search div .wp-block-search__input:focus,
.sidebar .widget.widget_search .wp-block-search__inside-wrapper input[type=text]:focus,
.sidebar .widget.widget_search .wp-block-search__inside-wrapper .wp-block-search__input:focus,
.sidebar .widget .wp-block-search form div input[type=text]:focus,
.sidebar .widget .wp-block-search form div .wp-block-search__input:focus,
.sidebar .widget .wp-block-search form .wp-block-search__inside-wrapper input[type=text]:focus,
.sidebar .widget .wp-block-search form .wp-block-search__inside-wrapper .wp-block-search__input:focus,
.sidebar .widget .wp-block-search div input[type=text]:focus,
.sidebar .widget .wp-block-search div .wp-block-search__input:focus,
.sidebar .widget .wp-block-search .wp-block-search__inside-wrapper input[type=text]:focus,
.sidebar .widget .wp-block-search .wp-block-search__inside-wrapper .wp-block-search__input:focus {
  outline: none;
  transition: all 0.5s;
}
.sidebar .widget.widget_search form div input[type=submit],
.sidebar .widget.widget_search form div .wp-block-search__button,
.sidebar .widget.widget_search form .wp-block-search__inside-wrapper input[type=submit],
.sidebar .widget.widget_search form .wp-block-search__inside-wrapper .wp-block-search__button, .sidebar .widget.widget_search div input[type=submit],
.sidebar .widget.widget_search div .wp-block-search__button,
.sidebar .widget.widget_search .wp-block-search__inside-wrapper input[type=submit],
.sidebar .widget.widget_search .wp-block-search__inside-wrapper .wp-block-search__button,
.sidebar .widget .wp-block-search form div input[type=submit],
.sidebar .widget .wp-block-search form div .wp-block-search__button,
.sidebar .widget .wp-block-search form .wp-block-search__inside-wrapper input[type=submit],
.sidebar .widget .wp-block-search form .wp-block-search__inside-wrapper .wp-block-search__button,
.sidebar .widget .wp-block-search div input[type=submit],
.sidebar .widget .wp-block-search div .wp-block-search__button,
.sidebar .widget .wp-block-search .wp-block-search__inside-wrapper input[type=submit],
.sidebar .widget .wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button {
  all: unset;
  width: 26px;
  height: 26px;
  border: none;
  background: url(../../src/images/search.svg) no-repeat center center;
  background-size: contain;
  cursor: pointer;
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
  padding: 0;
  margin-left: 10px;
}
.sidebar .widget.widget_categories ul {
  list-style: disc;
  padding-left: 1.2rem;
  margin-bottom: 15px;
}
.sidebar .widget.widget_categories ul li {
  padding-left: 0;
  position: static;
  color: #FFFFFF;
}
.sidebar .widget.widget_categories ul li a {
  color: #FFFFFF;
  font-weight: 400;
  transition: all 0.3s;
}
.sidebar .widget.widget_categories ul li a:hover {
  font-weight: 600;
}

.pagination {
  text-align: center;
  display: inline-block;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}
.pagination .navigation ul li {
  display: inline-block;
  line-height: 25px;
  margin: 0 3px;
  vertical-align: top;
}
.pagination .navigation ul li .page-numbers,
.pagination .navigation ul li span {
  display: inline-block;
  vertical-align: top;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 4px;
  font-weight: bold;
  text-align: center;
  color: #818c8c;
  border: 1px solid #818c8c;
  transition: all 0.3s ease;
}
.pagination .navigation ul li .page-numbers:hover,
.pagination .navigation ul li span:hover {
  color: #333;
  text-decoration: none;
}
.pagination .navigation ul li .page-numbers.current,
.pagination .navigation ul li span.current {
  background-color: #0A2F5A;
  color: #fff;
  border: 1px solid transparent;
}
.pagination .navigation ul li .page-numbers.current:hover,
.pagination .navigation ul li span.current:hover {
  background-color: #05172c;
  color: white;
  text-decoration: underline;
}
.pagination .navigation ul li .page-numbers.next, .pagination .navigation ul li .page-numbers.prev {
  background-color: #0A2F5A;
  color: #fff;
  border: 1px solid transparent;
}
.pagination .navigation ul li .page-numbers.next:hover, .pagination .navigation ul li .page-numbers.prev:hover {
  background-color: #0f4788;
}
.pagination .navigation ul li .page-numbers.next span, .pagination .navigation ul li .page-numbers.prev span {
  font-size: 19px;
  color: #fff;
}

.categories {
  display: flex;
  flex-wrap: wrap;
  white-space: nowrap;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 4px;
  scrollbar-width: thin;
  scrollbar-color: #0A2F5A transparent;
}
.categories::-webkit-scrollbar {
  height: 8px;
}
.categories::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 4px;
}
.categories::-webkit-scrollbar-thumb {
  background: #0A2F5A;
  border-radius: 4px;
}
.categories::-webkit-scrollbar-thumb:hover {
  background: #05172c;
}
.categories__item {
  padding: 4px 12px;
  border: 1px solid #0A2F5A;
  border-radius: 50px;
  background-color: #0A2F5A;
  color: #fff;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
.categories__item-link {
  color: inherit;
}
.categories__item:hover {
  color: #0A2F5A;
  background-color: #fff;
}
.categories__item:hover .categories__item-link {
  color: #0A2F5A;
}

.cookie-tema#cookie-tema {
  background-color: #110c0b;
  position: fixed;
  bottom: 0px;
  left: 0;
  width: 100%;
  padding: 20px;
  z-index: 99999999;
  display: none;
}
.cookie-tema#cookie-tema .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.cookie-tema#cookie-tema p {
  color: #fff;
  font-size: 1.1rem;
}
.cookie-tema#cookie-tema span {
  color: #f28705;
  font-size: 1em;
  display: inline-block;
}
.cookie-tema#cookie-tema span a {
  font-size: inherit;
}
.cookie-tema#cookie-tema .notice-text {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  gap: 38px;
  align-items: center;
}
.cookie-tema#cookie-tema .notice-text a {
  color: #fff;
  text-decoration: underline;
  transition: 0.7s all;
}
.cookie-tema#cookie-tema .notice-text a:hover {
  color: #f28705;
  transition: 0.7s all;
}
.cookie-tema#cookie-tema .notice-buttons .btn-cookie {
  padding: 8px 89px;
  transition: 0.4s all;
}
.cookie-tema#cookie-tema .notice-buttons .btn-cookie:hover {
  background: transparent;
  transition: 0.4s all;
}
.cookie-tema#cookie-tema .btn-cookie {
  display: inline-block;
  background-color: #f28705;
  color: #fff;
  font-size: 17px;
  cursor: pointer;
  border-radius: 3px;
  width: 100%;
}
.cookie-tema#cookie-tema .center {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 800px) {
  .cookie-tema {
    padding-right: 20px;
    padding-left: 20px;
  }
  .cookie-tema .center {
    flex-direction: column;
  }
  .cookie-tema .container {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 0;
  }
  .cookie-tema .notice-text,
  .cookie-tema .notice-buttons {
    width: auto;
    text-align: center;
  }
  .cookie-tema .close-cookie {
    right: 0;
  }
  .cookie-tema .btn-cookie {
    margin-top: 10px;
    width: 50%;
  }
  .cookie-tema#cookie-tema .notice-text {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
.page-error {
  padding: 206px 0;
  position: relative;
}
.page-error:after {
  content: "";
  position: absolute;
  width: 200px;
  z-index: -2;
  right: 0;
  top: -228px;
  height: 100vh;
  background: url("../../src/images/yellow-line.png") no-repeat transparent center;
}
.page-error:before {
  content: "";
  position: absolute;
  width: 200px;
  z-index: -2;
  left: 0;
  top: -228px;
  height: 100vh;
  background: url("../../src/images/blue-line.png") no-repeat transparent center;
}
.page-error .content-error {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.page-error .content-error h1 .animation-number {
  position: relative;
  height: 174px;
}
.page-error .content-error h1 .number {
  color: transparent;
  font-family: "Lato", sans-serif;
  -webkit-text-stroke: 8px #000;
  font-size: 170px;
  letter-spacing: 9px;
  display: inline-block;
  position: absolute;
  font-weight: bold;
}
.page-error .content-error h1 .number:nth-child(1) {
  animation: animateFirst 5s infinite;
  top: 0;
  left: 0;
}
.page-error .content-error h1 .number:nth-child(2) {
  animation: animateSecond 5s infinite;
  top: 0;
  left: 115px;
}
.page-error .content-error h1 .number:nth-child(3) {
  animation: animateThird 5s infinite;
  top: 0;
  left: 230px;
}
@keyframes animateFirst {
  0%, 33%, 100% {
    top: 0;
  }
  16% {
    top: -15px;
  }
}
@keyframes animateSecond {
  0%, 33%, 100% {
    top: 0;
  }
  50% {
    top: -15px;
  }
}
@keyframes animateThird {
  0%, 66%, 100% {
    top: 0;
  }
  83% {
    top: -15px;
  }
}
.page-error .content-error a {
  border: 2px solid #000;
  padding: 10px;
  transition: 0.4s all;
  font-size: 19px;
  border-radius: 0px;
}
.page-error .content-error a:hover {
  color: #fff;
  background: #000;
}
.page-error .content-error p {
  font-size: 1.2em;
}

@media screen and (max-width: 640px) {
  .page-error {
    padding: 140px 0;
  }
  .page-error .content-error {
    align-items: center;
    text-align: center;
  }
  .page-error .content-error h1 {
    gap: 0;
  }
  .page-error .content-error h1 .animation-number {
    width: 202px;
    height: 90px;
    margin: 0 auto;
  }
  .page-error .content-error h1 .number {
    -webkit-text-stroke: 4px #000;
    font-size: 100px;
  }
  .page-error .content-error h1 .number:nth-child(1) {
    left: 0;
  }
  .page-error .content-error h1 .number:nth-child(2) {
    left: 0;
    right: 0;
  }
  .page-error .content-error h1 .number:nth-child(3) {
    left: inherit;
    right: 0;
  }
  .page-error span {
    text-align: center;
  }
}
.methodology {
  background: #FFFFFF;
}
.methodology__container {
  display: flex;
  flex-direction: column;
}
.methodology__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 32px;
}
.methodology__card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 40px 32px;
  border-radius: 20px;
  aspect-ratio: 292/250;
  min-height: clamp(22rem, 42vw, 31.25rem);
  background: var(--methodology-overlay-color);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  isolation: isolate;
}
.methodology__media, .methodology__overlay, .methodology__image {
  position: absolute;
  inset: 0;
}
.methodology__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
.methodology__overlay {
  background: linear-gradient(to bottom, transparent 0%, color-mix(in srgb, var(--methodology-overlay-color), transparent 60%) 30%, var(--methodology-overlay-color) 90%);
  z-index: 1;
}
.methodology__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  min-height: 200px;
  gap: 8px;
  color: var(--methodology-text-color);
  pointer-events: none;
}
.methodology__card-title, .methodology__card-description, .methodology__card-description p, .methodology__card-description strong, .methodology__card-description b {
  color: inherit;
  margin: 0;
}
@media screen and (max-width: 1200px) {
  .methodology__card {
    aspect-ratio: auto;
    min-height: max(24rem, 72vw);
  }
}
@media screen and (max-width: 768px) {
  .methodology__grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .methodology__container {
    gap: 20px;
  }
  .methodology__header {
    padding-bottom: 32px;
  }
  .methodology__card {
    min-height: max(22rem, 88vw);
    padding: 24px 20px;
  }
  .methodology__content {
    min-height: auto;
  }
}

.experience-steps {
  background-color: var(--experience-steps-bg-color, transparent);
  background-image: var(--experience-steps-bg-image, none);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: var(--experience-steps-blend, normal);
}
@media screen and (max-width: 768px) {
  .experience-steps {
    background-image: var(--experience-steps-bg-image-mobile, var(--experience-steps-bg-image, none));
  }
}
.experience-steps--light-text .experience-steps__header h2,
.experience-steps--light-text .experience-steps__header p {
  color: #FFFFFF;
}
.experience-steps--light-text .experience-steps__connector {
  background-color: #FFFFFF;
}
.experience-steps__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.experience-steps__item {
  width: 100%;
  padding: 32px;
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr);
  align-items: flex-start;
  gap: 32px;
  background-color: #FFFFFF;
  border: 1px solid #F5F5F5;
  border-radius: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.08);
}
.experience-steps__media {
  position: relative;
  inline-size: 80px;
  flex-shrink: 0;
}
.experience-steps__icon-box {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 16px;
  background-color: #1C6B5A;
  border-radius: 16px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.08);
}
.experience-steps__icon-image, .experience-steps__icon-fa, .experience-steps__icon-placeholder {
  inline-size: 100%;
  block-size: 100%;
  display: grid;
  place-items: center;
  color: #F2C300;
}
.experience-steps__icon-image img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.experience-steps__icon-fa {
  font-size: 2rem;
  line-height: 1;
}
.experience-steps__icon-placeholder::before {
  content: "";
  inline-size: 55%;
  block-size: 55%;
  border: 2px solid currentColor;
  border-radius: 999px;
}
.experience-steps__badge {
  position: absolute;
  inset-block-start: 0;
  inset-inline-end: 0;
  min-inline-size: 32px;
  padding: 4px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background-color: #F2C300;
  border-radius: 999px;
  transform: translate(28%, -28%);
}
.experience-steps__badge-number {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25rem;
  color: #0A2F5A;
}
.experience-steps__item-title {
  margin: 0 0 16px;
  color: #0A2F5A;
}
.experience-steps__description {
  color: #000000;
}
.experience-steps__description p, .experience-steps__description ul {
  margin-bottom: 0;
}
.experience-steps__description ul li {
  font-weight: 400;
}
.experience-steps__description ul {
  list-style: none;
  padding-left: 24px;
}
.experience-steps__description ul li {
  display: list-item;
  padding-left: 2px;
  margin-bottom: 2px;
  position: relative;
}
.experience-steps__description ul li::before {
  content: none;
}
.experience-steps__description ul li::marker {
  content: "• ";
  font-size: 1.4em;
  color: currentColor;
}
.experience-steps__connector {
  inline-size: 4px;
  block-size: 32px;
  background-color: #F2C300;
}
@media screen and (max-width: 640px) {
  .experience-steps__item {
    padding: 24px;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .experience-steps__media {
    inline-size: 72px;
  }
}

.temp-page .center {
  width: 1200px;
  margin: 0 auto;
}
.temp-page .home {
  font-family: Varela Round;
}
.temp-page .home-container {
  width: 100%;
  display: flex;
  overflow: auto;
  min-height: 100vh;
  align-items: center;
  padding: 20px 0;
  flex-direction: column;
  justify-content: center;
  background-color: #E7E7E7;
  background-attachment: fixed;
}
.temp-page .home-container01 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.temp-page .home-container02 {
  gap: 20px;
  width: 100%;
  height: 153px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.temp-page .home-container03 {
  gap: 15px;
  width: 100%;
  height: auto;
  display: flex;
  align-self: flex-start;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin-top: 30px;
}
.temp-page .home-container04 {
  flex: 0 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.temp-page .home-container05 {
  gap: 20px;
  width: 360px;
  height: auto;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.temp-page .home-container06 {
  gap: 10px;
  width: 100%;
  height: auto;
  display: flex;
  align-self: stretch;
  align-items: center;
}
.temp-page .home-container07 {
  gap: 10px;
  flex: 0 0 auto;
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.temp-page .home-container08 {
  gap: 20px;
  width: 428px;
  height: 162px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.temp-page .home-container09 {
  gap: 10px;
  width: 100%;
  height: auto;
  display: flex;
  align-self: stretch;
  align-items: center;
  justify-content: center;
}
.temp-page .home-container10 {
  gap: 10px;
  flex: 0 0 auto;
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.temp-page .home-container11 {
  gap: 5px;
  flex: 0 0 auto;
  width: 360px;
  height: 43px;
  display: flex;
  align-self: center;
  justify-items: center;
  flex-direction: row;
  justify-content: center;
}
.temp-page .home-image {
  max-width: 100%;
}
.temp-page .home-text {
  color: #010001;
  font-size: 36px;
  font-style: normal;
  text-align: center;
  font-weight: 700;
}
.temp-page .home-text01 {
  font-size: 20px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
.temp-page .home-text02 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.15;
}
.temp-page .home-text05 {
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
.temp-page .home-text07 a, .temp-page .home-text08, .temp-page .home-text09, .temp-page .home-text12, .temp-page .home-text14 a, .temp-page .home-text15 a, .temp-page .home-text16 a {
  color: #010001;
  font-style: normal;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-decoration: none;
}
.temp-page .home-text09 {
  text-align: center;
}
.temp-page .home-text09 span {
  color: #010001;
}
.temp-page .home-text12 {
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
.temp-page .home-text16 {
  align-self: center;
}
.temp-page .home-text16 a {
  margin-left: 10px;
}
.temp-page .home-icon {
  fill: #010001;
  width: 24px;
  height: 24px;
  align-self: center;
}
.temp-page .home-icon02, .temp-page .home-icon04, .temp-page .home-icon06, .temp-page .home-icon08, .temp-page .home-icon10 {
  background-color: transparent;
  width: 24px;
}
@media screen and (max-width: 1210px) {
  .temp-page .center {
    width: 97%;
  }
}
@media screen and (max-width: 991px) {
  .temp-page .home-container03 {
    gap: 23px;
  }
  .temp-page .home-container04 {
    gap: 25px;
    height: auto;
    margin-top: 0px;
    flex-direction: column;
  }
  .temp-page .home-container11 {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 632px) {
  .temp-page .home-container02 {
    height: 190px;
  }
  .temp-page .home-container03 {
    height: auto;
    margin-top: 0;
  }
  .temp-page .home-text {
    line-height: 42px;
  }
  .temp-page .home-container04 {
    gap: 20px;
    width: -moz-max-content;
    width: max-content;
    height: inherit;
  }
  .temp-page .home-container05 {
    width: 100%;
  }
  .temp-page .home-container08 {
    width: 100%;
  }
  .temp-page .home-container11 {
    width: 100%;
    justify-content: center;
  }
}
@media screen and (max-width: 479px) {
  .temp-page .home-container02 {
    height: 240px;
  }
  .temp-page .home-container03 {
    height: 448px;
  }
  .temp-page .home-container04 {
    height: inherit;
  }
}
@media screen and (max-width: 428px) {
  .temp-page .home-image {
    width: 320px;
    -o-object-fit: scale-down;
       object-fit: scale-down;
  }
  .temp-page .home-container08 {
    width: 320px;
  }
  .temp-page .home-container04 {
    width: 90%;
  }
}

.gallery {
  overflow: hidden;
}
.gallery__content {
  width: 100%;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  -moz-column-gap: 12px;
       column-gap: 12px;
  row-gap: 10px;
  padding: 0 32px;
}
.gallery__item {
  position: relative;
  display: block;
  aspect-ratio: 196/219;
  border-radius: 20px;
  overflow: hidden;
  background-color: #F5F5F5;
  isolation: isolate;
}
.gallery__item:hover .gallery__image, .gallery__item:focus-visible .gallery__image {
  transform: scale(1.04);
}
.gallery__item:hover .gallery__overlay, .gallery__item:focus-visible .gallery__overlay {
  background-color: rgba(0, 0, 0, 0.18);
}
.gallery__item:focus-visible {
  outline: 2px solid #F2C300;
  outline-offset: 4px;
}
.gallery__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  transition: background-color 0.35s ease;
  pointer-events: none;
}
@media screen and (max-width: 1200px) {
  .gallery__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media screen and (max-width: 1024px) {
  .gallery__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (max-width: 768px) {
  .gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 450px) {
  .gallery__grid {
    grid-template-columns: 1fr;
  }
}

.questions__panel {
  --questions-panel-background: #0A2F5A;
  --questions-panel-background-image: none;
  --questions-panel-background-image-mobile: var(--questions-panel-background-image);
  --questions-panel-background-blend: normal;
  --questions-panel-text: #FFFFFF;
  display: grid;
  gap: 32px;
  padding: 32px;
  border-radius: 20px;
  background-color: var(--questions-panel-background);
  background-image: var(--questions-panel-background-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: var(--questions-panel-background-blend);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1), 0 8px 10px rgba(0, 0, 0, 0.1);
}
.questions__header {
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
}
.questions__header-kicker, .questions__header-title, .questions__header-description, .questions__card-text, .questions__footer-content p, .questions ol {
  margin: 0;
}
.questions__header-title, .questions__header-description, .questions__card-text {
  color: var(--questions-panel-text);
}
.questions__header-description {
  max-width: 60ch;
  opacity: 0.82;
}
.questions__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.questions__card {
  display: grid;
  grid-template-columns: 2.25rem minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  padding: 1.5625rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.1);
}
.questions__card-index {
  display: flex;
  align-items: center;
  justify-content: center;
}
.questions__card-badge {
  display: inline-grid;
  place-items: center;
  inline-size: 2.25rem;
  aspect-ratio: 1;
  border-radius: 999px;
  background-color: #F2C300;
  color: #0A2F5A;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}
.questions__card-content {
  min-width: 0;
}
.questions__footer {
  display: grid;
  gap: 4px;
  justify-items: center;
  text-align: center;
}
.questions__footer-content {
  color: var(--questions-panel-text);
}
.questions__footer-content * {
  color: inherit;
}
.questions__footer-content p {
  margin-bottom: 0;
}
.questions__footer-content strong {
  color: #F2C300;
}
@media screen and (max-width: 1024px) {
  .questions__panel {
    gap: 24px;
  }
  .questions__grid {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .questions__panel {
    background-image: var(--questions-panel-background-image-mobile);
  }
  .questions__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media screen and (max-width: 640px) {
  .questions__panel {
    padding-inline: 24px;
  }
  .questions__card {
    align-items: start;
  }
}

.concept {
  overflow: hidden;
}
.concept__content {
  display: grid;
  row-gap: 56px;
  -moz-column-gap: 56px;
       column-gap: 56px;
  align-self: stretch;
  grid-template-rows: repeat(1, fit-content(100%));
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
}
.concept__text p:last-child {
  margin-bottom: 0;
}
.concept__text strong,
.concept__text b {
  color: #1C6B5A;
  font-weight: 600;
}
.concept__media {
  display: flex;
  justify-content: flex-start;
}
.concept__image-card {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  background-color: #FFFFFF;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.concept__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.concept__quote {
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 32px;
  display: flex;
  justify-content: center;
  padding: 20px;
  border-radius: 12px;
  background-color: #FFFFFF;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1), 0 8px 10px rgba(0, 0, 0, 0.1);
}
.concept__quote p {
  margin: 0;
  color: #0A2F5A;
  font-size: 1.25rem;
  line-height: 1.25rem;
  font-style: italic;
  font-weight: 600;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media screen and (max-width: 1200px) {
  .concept__content {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
    gap: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .concept__content {
    grid-template-columns: 1fr;
  }
  .concept__media {
    justify-content: center;
  }
}
.post-card__container {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  border-radius: 10px;
  background-color: #fff;
}
.post-card__thumbnail {
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}
.post-card__thumbnail-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s;
}
.post-card__thumbnail-image:hover {
  transform: scale(1.1);
}
.post-card__content {
  display: flex;
  flex-direction: column;
  padding: 24px 32px;
  flex: 1;
}
.post-card__categories {
  position: absolute;
  top: 24px;
  left: 50%;
  width: 90%;
  transform: translateX(-50%);
  display: flex;
  overflow-x: auto;
  flex-wrap: nowrap;
}
.post-card__byline {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 1rem;
}
.post-card__date {
  color: #8F8F8F;
  font-size: inherit;
}
.post-card__author {
  font-size: inherit;
}
.post-card__title {
  font-size: 1.25rem;
  transition: color 0.3s;
}
.post-card__title:hover {
  color: #05172c;
}
.post-card__description {
  text-align: justify;
}
.post-card__more {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: auto;
  margin-left: auto;
}

.post-card-highlight__container {
  display: grid;
  overflow: hidden;
  grid-template-columns: 50% 50%;
  background-color: #FFFFFF;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  border-radius: 20px;
}
.post-card-highlight__thumbnail {
  overflow: hidden;
}
.post-card-highlight__thumbnail-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s;
}
.post-card-highlight__thumbnail-image:hover {
  transform: scale(1.1);
}
.post-card-highlight__content {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 48px;
  gap: 24px;
  flex: 1;
}
.post-card-highlight__categories {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
}
.post-card-highlight__byline {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 1rem;
}
.post-card-highlight__date {
  color: #8F8F8F;
  font-size: inherit;
}
.post-card-highlight__author {
  font-size: inherit;
}
.post-card-highlight__title {
  transition: color 0.3s;
}
.post-card-highlight__title:hover {
  color: #05172c;
}
.post-card-highlight__description {
  text-align: justify;
}
.post-card-highlight__more {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: auto;
  margin-left: auto;
}
@media (max-width: 768px) {
  .post-card-highlight__container {
    grid-template-columns: 100%;
  }
}

.clients__container-thumb {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFFFFF;
  border: 1px solid #C0C0C0;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  width: inherit;
  height: 120px;
  transition: border-color 0.4s ease-in-out;
}
.clients__container-thumb:hover {
  border: 1px solid #0A2F5A;
}
.clients__container-thumb img {
  max-width: 100%;
  height: auto;
}
.clients .swiper-wrapper {
  transition-timing-function: linear;
}
.clients .swiper-slide {
  align-items: stretch;
  display: flex;
  height: auto;
}
.clients__columns-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.clients__columns-grid > * {
  flex: 1 1 calc(25% - 20px);
  max-width: calc(25% - 20px);
}
@media screen and (max-width: 1024px) {
  .clients__columns-grid > * {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}
@media screen and (max-width: 500px) {
  .clients__columns-grid > * {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.cta {
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  margin-bottom: 72px;
}
.cta--centralized .cta__container {
  padding: 0 64px;
  border-radius: 20px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
}
.cta__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  padding: 72px 0;
  gap: 40px;
  flex: 1;
}
.cta__title {
  margin: 0;
}
.cta__description {
  max-width: 900px;
  margin: 0;
}
.cta__description * {
  color: inherit;
}
.cta__description p {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .cta {
    margin-bottom: 64px;
  }
}

.video-modal {
  height: 100vh;
  width: 100%;
  z-index: 99999999;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
}
.video-modal__overlay {
  background-color: rgba(0, 0, 0, 0.7);
  height: 100%;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999999;
  display: none;
}
.video-modal__wrapper {
  display: table;
  width: 100%;
  height: 100%;
  text-align: center;
  position: relative;
}
.video-modal__center {
  display: table-cell;
  vertical-align: middle;
}
.video-modal__content {
  text-align: center;
  margin: 0 auto;
  display: inline-block;
  width: 60%;
  z-index: 99999999;
  padding: 0;
  position: relative;
  background: #FFFFFF url("../../src/images/index.svg") no-repeat center center;
  aspect-ratio: 16/9;
}
.video-modal__iframe-wrapper {
  aspect-ratio: 16/9;
}
.video-modal__iframe-wrapper iframe {
  height: 100%;
  vertical-align: top;
}
.video-modal__close {
  width: 35px;
  height: 35px;
  background-color: #0A2F5A;
  color: #FFFFFF;
  position: absolute;
  right: 0;
  line-height: 32px;
  font-weight: bold;
  cursor: pointer;
  font-size: 20px;
  z-index: 9999;
}

.video__item {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all ease-out 0.2s;
}
.video__item:hover {
  opacity: 0.85;
}

@media screen and (max-width: 1024px) {
  .video-modal__content {
    width: 80%;
  }
}
@media screen and (max-width: 800px) {
  .video-modal__content {
    width: 95%;
    height: auto;
  }
}
@media screen and (max-width: 600px) {
  .video-modal__iframe {
    height: 180px;
  }
  .video-modal__iframe--mobile {
    height: 660px;
  }
}
@media screen and (max-width: 580px) {
  .video-modal__iframe {
    height: 280px;
  }
  .video-modal__iframe--mobile {
    height: 500px;
  }
}
@media screen and (max-width: 450px) {
  .video-modal__iframe {
    height: 190px;
  }
}
.video__thumbnail {
  position: relative;
  display: block;
  cursor: pointer;
}
.video__thumbnail::after {
  content: "";
  mask: url("../../src/images/play.svg") center/contain no-repeat;
  -webkit-mask: url("../../src/images/play.svg") center/contain no-repeat;
  background-color: #F2C300;
  pointer-events: none;
  position: absolute;
  width: 90px;
  height: 90px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.6s ease-in-out;
}
.video__thumbnail img {
  filter: brightness(90%);
  transition: filter 0.6s ease;
  border-radius: 20px;
  min-height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
.video__thumbnail:hover img {
  filter: brightness(40%);
}
.video__thumbnail:hover::after {
  transform: translate(-50%, -50%) scale(1.03);
}
@media screen and (max-width: 768px) {
  .video__thumbnail::after {
    width: 70px;
    height: 70px;
  }
}

.banner__item {
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.banner__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--banner-overlay-color, transparent);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}
.banner__background {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.banner__background-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner__item-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  min-height: 600px;
}
.banner__item-inner:has(.banner__content--center) {
  grid-template-columns: 1fr !important;
}
.banner__item-inner:has(> :only-child) {
  grid-template-columns: 2fr 0.2fr;
}
.banner__link {
  position: absolute;
  inset: 0;
  z-index: 3;
}
.banner__header {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.banner__header strong {
  color: #F2C300 !important;
}
.banner__header-title {
  font-size: 3rem;
  line-height: 3.125rem;
}
.banner__header-description * {
  font-weight: 600;
}
.banner__content {
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: center;
  margin: 120px 0;
}
.banner__content--center {
  text-align: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}
.banner__header * {
  color: inherit;
}
.banner__actions {
  display: flex;
  gap: 25px;
}
.banner__media {
  display: flex;
  align-items: end;
}
.banner .swiper-container {
  position: relative;
}
.banner .swiper-wrapper {
  align-items: stretch;
}
.banner__pagination {
  position: absolute !important;
  right: 0;
  bottom: 32px !important;
  left: 0;
  z-index: 4;
  margin-top: 0 !important;
  justify-content: center;
}
@media (max-width: 1024px) {
  .banner__pagination {
    bottom: 20px !important;
  }
  .banner__item-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: auto;
    gap: 0;
  }
}

.contact {
  --contact-background-color: #FFFFFF;
  position: relative;
  overflow: hidden;
  background-color: var(--contact-background-color);
}
.contact::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--contact-background-color);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}
.contact--has-background::after {
  opacity: 0.78;
}
.contact__background {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.contact__background-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.contact__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 40px;
  align-items: start;
}
.contact__details, .contact__social {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.contact__details-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: -moz-fit-content;
  width: fit-content;
  color: #0A2F5A;
  text-decoration: none;
}
.contact__details-link:hover {
  color: #1C6B5A;
}
.contact__details-text {
  color: currentColor;
  font-weight: 700;
  margin: 0;
}
.contact__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: currentColor;
}
.contact__icon img {
  display: block;
  width: 1.111em;
  height: 1.111em;
  -o-object-fit: contain;
     object-fit: contain;
}
.contact__icon i,
.contact__icon svg {
  display: block;
  font-size: 1.111em;
}
.contact__social {
  grid-auto-flow: column;
  justify-content: start;
  grid-auto-columns: max-content;
}
.contact__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 999px;
  background-color: #1C6B5A;
  margin-top: 40px;
  color: #FFFFFF;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.contact__social-link .contact__icon {
  color: inherit;
}
.contact__social-link:hover {
  color: #FFFFFF;
  background-color: #0A2F5A;
  transform: translateY(-2px);
}
.contact__form {
  max-width: none;
  height: 100%;
}
.contact__form p {
  margin: 0;
}
.contact__form .wpcf7,
.contact__form .wpcf7 form,
.contact__form .wpcf7-form {
  width: 100%;
}
.contact__form .wpcf7 form,
.contact__form .wpcf7-form {
  display: grid;
  gap: 20px;
}
.contact__form label {
  display: grid;
  gap: 12px;
  color: #000000;
  font-weight: 700;
}
.contact__form .wpcf7-acceptance {
  display: inline-flex;
}
.contact__form .wpcf7-list-item {
  margin: 0;
}
.contact__form .wpcf7-list-item-label {
  display: inline;
}
.contact__form .wpcf7-acceptance .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 400;
  width: 100%;
}
.contact__form .wpcf7-acceptance .wpcf7-list-item label input[type=checkbox] {
  flex-shrink: 0;
}
.contact__form .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label {
  color: #000000;
  font-weight: 400;
  line-height: 1.875rem;
}
.contact__form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.contact__form input:not([type=submit]),
.contact__form textarea {
  color: #000000;
  font-weight: 700;
}
.contact__form input:not([type=submit])::-moz-placeholder, .contact__form textarea::-moz-placeholder {
  color: #8F8F8F;
  font-weight: 700;
}
.contact__form input:not([type=submit])::placeholder,
.contact__form textarea::placeholder {
  color: #8F8F8F;
  font-weight: 700;
}
.contact__form .wpcf7-response-output {
  margin-top: 20px;
  padding: 16px;
  border-radius: 6px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  text-align: center;
}
.contact__form .wpcf7 form.sent .wpcf7-response-output {
  background-color: rgba(28, 107, 90, 0.08);
  color: #1C6B5A;
  border-color: rgba(28, 107, 90, 0.3);
}
.contact__form .wpcf7 form.invalid .wpcf7-response-output,
.contact__form .wpcf7 form.failed .wpcf7-response-output {
  background-color: rgba(255, 77, 79, 0.08);
  color: #ff4d4f;
  border-color: rgba(255, 77, 79, 0.3);
}
.contact__form .wpcf7-response-output,
.contact__form .wpcf7-not-valid-tip {
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .contact__container {
    grid-template-columns: 1fr;
  }
  .contact .h-section {
    align-items: center;
    text-align: center;
  }
  .contact .h-section p {
    text-align: left;
  }
}

.public {
  overflow: hidden;
}
.public__list {
  align-items: stretch;
}
.public__item {
  display: flex;
  height: auto;
}
.public__card {
  --public-card-background: #FFFFFF;
  --public-card-border: #F5F5F5;
  --public-card-title: #0A2F5A;
  --public-card-text: #000000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  min-height: 274px;
  padding: 32px;
  background-color: var(--public-card-background);
  border: 1px solid var(--public-card-border);
  border-radius: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.public__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(10, 47, 90, 0.12);
}
.public__card--highlight {
  justify-content: center;
  --public-card-background: #0A2F5A;
  --public-card-border: #0A2F5A;
  --public-card-title: #F2C300;
  --public-card-text: #F2C300;
  gap: 16px;
}
.public__card--text-only .public__card-title,
.public__card--text-only .public__card-text {
  margin: 0;
}
.public__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  padding: 16px;
  border-radius: 14px;
  background-color: #1C6B5A;
  flex-shrink: 0;
}
.public__card-icon i {
  color: #F2C300;
  font-size: 1.5rem;
}
.public__card-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.public__card-title {
  color: var(--public-card-title);
}
.public__card-text {
  color: var(--public-card-text);
  margin: 0;
}
.public__columns-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.public .swiper {
  overflow: visible;
}
.public .swiper-slide {
  align-items: stretch;
}
@media screen and (max-width: 1024px) {
  .public__columns-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 640px) {
  .public__columns-grid {
    grid-template-columns: 1fr;
  }
  .public .h-section {
    padding-bottom: 20px;
  }
}

.results {
  position: relative;
  overflow: hidden;
  background-color: var(--results-bg-color, #0A2F5A);
  background-image: linear-gradient(180deg, rgba(10, 47, 90, 0.8) 43.756%, rgba(10, 47, 90, 0.32) 100%), var(--results-bg-image, none);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: var(--results-bg-blend-mode, normal);
  color: var(--results-text-color, #FFFFFF);
  margin-bottom: 72px;
}
.results__container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px 0 40px 0;
  min-height: 500px;
  justify-content: space-between;
}
.results__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 72px;
}
.results__title, .results__description, .results__item-text, .results__item, .results ul li {
  color: inherit;
  margin-bottom: 0;
}
.results ul li {
  font-size: 1.25rem;
}
.results__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -moz-column-gap: 350px;
       column-gap: 350px;
  row-gap: 48px;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .results__list {
    -moz-column-gap: 220px;
         column-gap: 220px;
  }
}
@media screen and (max-width: 768px) {
  .results {
    background-image: linear-gradient(180deg, rgba(10, 47, 90, 0.8) 43.756%, rgba(10, 47, 90, 0.32) 100%), var(--results-bg-image-mobile, var(--results-bg-image, none));
  }
  .results__container {
    width: min(100%, 34rem);
  }
  .results__list {
    grid-template-columns: 1fr;
    -moz-column-gap: 0;
         column-gap: 0;
    gap: 20px;
  }
}

/*# sourceMappingURL=global.css.map*/