@import url("https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap");
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font: inherit;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
}

img, picture, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}

a, button {
  color: inherit;
}

button {
  text-align: inherit;
  cursor: pointer;
  background-color: transparent;
  border: 0;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  clip-path: none;
  color: black;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

h1 {
  font-size: 2.9166666667vw;
  color: white;
}
h1 span {
  font-weight: 700;
}

h2 {
  font-size: 2.2916666667vw;
  color: #00A3B3;
}
h2 span {
  font-weight: 700;
}

h3 {
  font-size: 1.25vw;
  font-weight: 700;
}

strong {
  font-weight: 700;
}

p {
  margin-bottom: 15px;
}

.list--unstyled {
  list-style-type: none;
}

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

.container {
  max-width: 70%;
  margin-inline: auto;
}

iframe {
  border: 0;
  --width: 1920px;
  --height: 1080px;
  width: var(--width);
  height: var(--height);
  max-width: 100%;
}

ul:not(.list--unstyled) {
  display: flex;
  flex-direction: column;
  --gap: 10px;
  gap: var(--gap);
}
ul:not(.list--unstyled) ::marker {
  color: #00A3B3;
}

.gap {
  --gap: 15px;
  gap: var(--gap);
}

.d-flex {
  display: flex;
}

.row {
  flex-direction: row;
}

.row-reverse {
  flex-direction: row-reverse;
}

.column {
  flex-direction: column;
}

.column-reverse {
  flex-direction: column-reverse;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.flex-row {
  flex-direction: row;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-column {
  flex-direction: column;
}

.flex-column-reverse {
  flex-direction: column-reverse;
}

.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-evenly {
  justify-content: space-evenly;
}

.items-start {
  align-items: flex-start;
}

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

.items-end {
  align-items: flex-end;
}

.items-stretch {
  align-items: stretch;
}

.items-baseline {
  align-items: baseline;
}

.bg--stf2 {
  background-color: #00A3B3;
  color: white;
}

.bg--gradient {
  background: linear-gradient(270deg, #00A4B7 13.49%, #00A3B6 14.49%, #008897 27.42%, #007380 41.36%, #00646F 55.29%, #005B65 71.21%, #005962 91.12%);
  color: white;
}

.bg--gradient-reverse {
  background: linear-gradient(-270deg, #00A4B7 13.49%, #00A3B6 14.49%, #008897 27.42%, #007380 41.36%, #00646F 55.29%, #005B65 71.21%, #005962 91.12%);
  color: white;
}

header {
  padding: 15px 4.9%;
  width: 100%;
  z-index: 2;
  min-height: 97px;
}
header.home {
  position: fixed;
  top: 0;
}
header a {
  color: white;
}
header #mega-menu-wrap-main-menu {
  margin-left: auto;
}
header > p {
  margin-bottom: 0;
}
header:not(.sticky) > p {
  display: none;
}
header.sticky {
  background-color: white;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
}
header.sticky a {
  color: #2C4346 !important;
}

.page-template-contact footer.footer--intern {
  margin-top: -150px;
}

footer .footer-wave {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: auto;
}
footer .footer--top {
  --gap: 43px;
  padding: 0 7% 25px;
  position: relative;
  overflow: hidden;
  min-height: 300px;
}
footer .footer--top .menu--footer-top {
  padding-left: var(--gap);
  border-left: 2px solid #00A3B3;
  --gap-item: 5px;
  gap: var(--gap-item);
  z-index: 1;
}
footer .footer--top .menu--footer-top a {
  font-weight: 700;
  font-size: 1.25vw;
  color: #2C4346;
}
footer .footer--top img {
  z-index: 1;
}
footer .footer--top img:last-child {
  margin-left: auto;
  margin-top: auto;
}
footer .footer--bottom {
  background-color: #2C4346;
  padding: 16px 6%;
  color: white;
  --gap: 35px;
}
footer .footer--bottom img {
  max-height: 31px;
}
footer .footer--bottom .menu--footer-bottom {
  --gap: 36px;
  margin-left: auto;
}
footer a:not(:hover) {
  text-decoration: none;
}

.banner .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.banner > video, .banner > img {
  width: 100%;
  max-height: 100vh;
  object-fit: cover;
}
.banner .content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 25px;
}

.introduction {
  padding: 68px 0;
}
.introduction .container {
  --gap: 34px;
}
.introduction h2 {
  color: inherit;
}
.introduction h3 {
  font-weight: 700;
}
.introduction .content {
  --gap: 29px;
}
.introduction .content .aside {
  --gap: 25px;
}
.introduction .content .main {
  padding-left: var(--gap);
  border-left: 2px solid #00A3B3;
  position: relative;
}
.introduction .content .main p:last-of-type {
  margin-bottom: 0;
}
.introduction .content .main img {
  position: absolute;
  right: 0;
  bottom: -10px;
  transform: translateY(50%);
  max-width: 140px;
}
.introduction .content .main--image {
  margin-bottom: 75px;
}
.introduction .content .main--image p:last-of-type {
  max-width: calc(100% - 160px);
}
.introduction.bg--stf2 .content .main, .introduction.bg--gradient .content .main {
  border-left-color: white;
}
.introduction.bg--stf2 .btn--color, .introduction.bg--gradient .btn--color {
  border-color: white;
}
.introduction.bg--stf2 .btn--color:not(:hover), .introduction.bg--gradient .btn--color:not(:hover) {
  background-color: white;
  color: #00A3B3;
}

.expert {
  padding: 68px 0;
}
.expert .container {
  --gap: 34px;
}
.expert h2 {
  color: inherit;
}
.expert .expert--cols {
  --gap: 27px;
}
.expert .expert--cols .col {
  width: calc((100% - 4 * var(--gap)) / 5);
}
.expert .expert--cols .col svg, .expert .expert--cols .col img {
  max-height: 54px;
}
.expert .expert--cols .col h3 {
  margin: 27px 0 24px;
  min-height: 62px;
}
.expert .expert--cols .col p {
  border-top: 1px solid white;
  padding-top: 12px;
}
.expert .btn {
  margin-inline: auto;
}
.expert.bg--gradient-reverse .btn--color {
  border-color: white;
}

.tabs {
  margin-bottom: 250px;
}
.tabs .tabs--container {
  padding-inline: 5.5%;
  margin-inline: auto;
  --gap: 26px;
}
.tabs .tab {
  width: calc((100% - 4 * var(--gap)) / 5);
  position: relative;
}
.tabs .tab button {
  font-size: 1.25vw;
  font-weight: 700;
  width: 100%;
  height: 100%;
  padding: 28px 29px 22px;
  border: 1px solid white;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  box-shadow: -5px -5px 4px 0px rgba(0, 0, 0, 0.2509803922);
}
.tabs .tab .content {
  background-color: white;
  padding: 27px 25px 23px;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  flex-direction: row;
  color: #2C4346;
  border-radius: 10px 10px 0 0;
  box-shadow: -5px -5px 8px 0px rgba(0, 0, 0, 0.2509803922);
}
.tabs .tab .content img {
  max-width: 236px;
  object-fit: contain;
}
.tabs .tab .content .col {
  padding: 0 15px 0 30px;
}
.tabs .tab .content .col p {
  font-weight: 700;
  font-size: 1.25vw;
}
.tabs .tab .content .col p:first-child {
  color: #00A3B3;
}
.tabs .tab .content .col p:last-child {
  margin-bottom: 0;
}
.tabs .tab.active {
  height: 78px;
  width: calc((100% - 4 * var(--gap)) / 5 * 2);
}
.tabs .tab.active button {
  display: none;
}
.tabs .tab.active .content {
  display: flex;
}

.domains .container {
  --gap: 44px;
}
.domains .domains--container {
  --gap: 38px;
  gap: 32px var(--gap);
}
.domains .domains--container .item {
  width: calc((100% - 2 * var(--gap)) / 3);
  position: relative;
  --speed: 0.5s;
  --bottom: 15px;
}
.domains .domains--container .item:after {
  content: "";
  position: absolute;
  left: 10px;
  bottom: calc(var(--bottom) + 5px);
  width: 18px;
  height: 14px;
  opacity: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='14' viewBox='0 0 18 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.75 6.75H16.5M11.25 0.75L17.25 6.75L11.25 12.75' stroke='%23FFFEFE' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity calc(var(--speed) * 0.6) ease-in-out, transform calc(var(--speed) * 0.6) ease-in-out;
  transition-delay: calc(var(--speed) * 0.4);
}
.domains .domains--container .item span {
  position: absolute;
  left: 15px;
  bottom: var(--bottom);
  color: white;
  font-size: 1.25vw;
  z-index: 1;
  transition: left calc(var(--speed) * 0.6) ease-in-out;
  transition-delay: calc(var(--speed) * 0.4);
}
.domains .domains--container .item .wave {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
.domains .domains--container .item:hover span {
  font-weight: 700;
  left: 40px;
}
.domains .domains--container .item:hover::after {
  opacity: 1;
}

.contact {
  padding: 56px 0;
}
.contact .container {
  --gap: 56px;
}
.contact .btn {
  --size: 204px;
  width: var(--size);
  height: var(--size);
  font-weight: 700;
  font-size: 30px;
  color: #00A3B3;
  text-decoration: none;
  text-align: center;
  border-radius: 50%;
  box-shadow: -20px -6px 24px 0px rgba(0, 0, 0, 0.1490196078);
  position: relative;
}
.contact .btn:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 106px;
  height: 95px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="106" height="95" viewBox="0 0 106 95" fill="none"><path d="M0 95V60.8938C0 56.3736 3.37611 52.4718 7.84789 51.8089L37.0526 47.4978L7.84789 43.1867C3.37165 42.5282 0 38.622 0 34.1062V0L106 47.5022L0 95ZM5.01071 7.7324V34.1107C5.01071 36.1661 6.54733 37.9413 8.57834 38.2438L71.3392 47.5067L8.5828 56.7606C6.54733 57.0632 5.01071 58.8383 5.01071 60.8938V87.2676L93.756 47.5022L5.01071 7.7324Z" fill="%2300A3B3"/></svg>');
  background-size: cover;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  pointer-events: none;
}
.contact .btn:hover, .contact .btn:focus, .contact .btn:focus-visible, .contact .btn:focus-within {
  color: white;
}
.contact .btn:hover:after, .contact .btn:focus:after, .contact .btn:focus-visible:after, .contact .btn:focus-within:after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.contact_col .container {
  --gap-parent: 56px;
  --gap: var(--gap-parent);
}
.contact_col .container .col.form {
  flex: 1;
}
.contact_col .container .col.form form {
  margin-top: 15px;
  z-index: 1;
  position: relative;
}
.contact_col .container .col.map {
  padding-left: var(--gap-parent);
  border-left: 2px solid #00A3B3;
}
.contact_col .container .col.map ul {
  padding-left: 25px;
  margin-bottom: 15px;
}

.strengths {
  padding: 105px 0;
}
.strengths .container {
  --gap: 40px;
}
.strengths h2 {
  color: white;
}
.strengths .strengths--cols {
  --gap: 24px;
  gap: 60px var(--gap);
}
.strengths .strengths--cols .col {
  width: calc((100% - 3 * var(--gap)) / 4);
  background-color: white;
  position: relative;
  padding: 16px 16px 60px;
  position: relative;
}
.strengths .strengths--cols .col h3 {
  text-align: center;
  color: #00A3B3;
}
.strengths .strengths--cols .col p {
  text-align: center;
  color: #2C4346;
  margin: 10px 0 0;
}
.strengths .strengths--cols .col .img {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  background-color: #2C4346;
  border-radius: 50%;
  --size: 96px;
  width: var(--size);
  aspect-ratio: 1;
}
.strengths .strengths--cols .col:not(:hover) p {
  display: none;
}

section {
  position: relative;
}

.icon-glevents {
  width: 31px;
  height: 31px;
}
.icon-spaciotempo {
  width: 202px;
  height: 31px;
}
.icon-arrow {
  width: 20px;
  height: 16px;
}

.btn {
  cursor: pointer;
  display: flex;
  width: fit-content;
}
.btn--color {
  --speed: 0.5s;
  background-color: #00A3B3;
  border-radius: 420px;
  padding: 4px 12px;
  text-decoration: none;
  color: white;
  font-size: 1.25vw;
  position: relative;
  transition: all var(--speed) ease-in-out;
  border: 1px solid transparent;
}
.btn--color-white {
  background-color: white;
  color: #00A3B3;
}
.btn--color-white:hover {
  color: white;
}
.btn--color:after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%) translateX(-5px);
  width: 18px;
  height: 14px;
  opacity: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='14' viewBox='0 0 18 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.75 6.75H16.5M11.25 0.75L17.25 6.75L11.25 12.75' stroke='%23FFFEFE' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity calc(var(--speed) * 0.6) ease-in-out, transform calc(var(--speed) * 0.6) ease-in-out;
  transition-delay: calc(var(--speed) * 0.4);
}
.btn--color:hover {
  background-color: #005A63;
  padding-right: 42px;
}
.btn--color:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.btn--top {
  border-radius: 50%;
  width: 32px;
  aspect-ratio: 1;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  background-color: white;
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 1;
  transition: transform 0.25s ease;
}
.btn--top .icon {
  stroke: #2C4346;
}
.btn--top:hover {
  transform: translateY(-5px);
  background-color: #2C4346;
}
.btn--top:hover .icon {
  stroke: white;
}

.fluentform .ff-el-group {
  display: flex;
  align-items: center;
  --gap: 15px;
  gap: var(--gap);
  margin-bottom: 40px;
}
.fluentform .ff-el-group::before, .fluentform .ff-el-group::after {
  content: unset;
}
.fluentform .ff-el-group .ff-el-input--label label {
  font-weight: 700;
}
.fluentform .ff-el-group .ff-el-input--label label::after {
  color: #2C4346 !important;
}
.fluentform .ff-el-group .ff-el-input--content {
  flex: 1;
}
.fluentform .ff-el-group .ff-el-input--content input, .fluentform .ff-el-group .ff-el-input--content select, .fluentform .ff-el-group .ff-el-input--content textarea {
  box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.2509803922);
  border-radius: 29px;
  border: 0;
  width: 100%;
}
.fluentform .ff-el-group.ff-text-right {
  justify-content: flex-end;
}
.fluentform .ff-el-group:has(textarea) {
  flex-direction: column;
  align-items: flex-start;
}
.fluentform .ff-el-group:has(textarea) .ff-el-input--content {
  width: 100%;
}

.ff-message-success p {
  margin-bottom: 0;
}

@media screen and (max-width: 480px) {
  header.sticky #mega-menu-wrap-main-menu .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-inner, header.sticky #mega-menu-wrap-main-menu .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-inner::before, header.sticky #mega-menu-wrap-main-menu .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-inner::after {
    background-color: #00A3B3;
  }
  header.sticky #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item > a.mega-menu-link {
    color: white !important;
  }
  header.sticky #mega-menu-wrap-main-menu .mega-menu-toggle + #mega-menu-main-menu {
    bottom: -25px;
    transform: translateY(100%);
  }
}
@media screen and (min-width: 481px) {
  #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item:last-child a {
    --speed: 0.5s;
    background-color: white;
    border-radius: 420px;
    padding: 4px 12px;
    text-decoration: none;
    color: #2C4346;
    font-size: 1.25vw;
    position: relative;
    transition: all var(--speed) ease-in-out;
    border: 0;
    height: fit-content;
    text-decoration: none !important;
    line-height: normal;
  }
  #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item:last-child a:hover {
    background-color: #005A63;
  }
  header.sticky #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item:last-child a {
    background-color: #00A3B3;
    color: white !important;
  }
  header.sticky #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item:last-child a:hover {
    background-color: #2C4346;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 20px;
  }
  .container {
    max-width: 90%;
  }
  .btn--color {
    font-size: 24px;
  }
  .banner > video, .banner > img {
    height: 100vh;
  }
  .banner .overlay {
    background-color: rgba(0, 0, 0, 0.5);
  }
  .introduction {
    padding: 25px 0;
  }
  .introduction .container {
    --gap: 25px;
  }
  .introduction .content {
    flex-direction: column;
  }
  .introduction .content .main p {
    max-width: 100% !important;
  }
  .introduction .content .main img {
    position: relative;
    right: unset;
    transform: none;
    margin: 15px auto 0;
  }
  .expert .expert--cols .col,
  .domains .domains--container .item,
  .strengths .strengths--cols .col,
  .tabs .tab {
    width: 100% !important;
  }
  .domains .domains--container .item span {
    font-size: 24px;
  }
  .tabs {
    margin-bottom: 25px;
  }
  .tabs .tabs--container {
    flex-direction: column;
    padding-bottom: var(--gap);
  }
  .tabs .tabs--container .tab {
    height: fit-content;
  }
  .tabs .tabs--container .tab button {
    display: none;
  }
  .tabs .tabs--container .tab .content {
    display: flex !important;
    position: relative;
    padding: 15px;
    flex-direction: column;
    border-radius: 10px;
  }
  .tabs .tabs--container .tab .content img {
    max-width: 100%;
  }
  .tabs .tabs--container .tab .content .col {
    padding: 10px 0;
  }
  .tabs .tabs--container .tab .content .col p {
    font-size: 18px;
  }
  .strengths {
    padding: 25px 0;
    z-index: 1;
  }
  .strengths .strengths--cols {
    --gap: 65px;
  }
  .strengths .strengths--cols .col p {
    display: block !important;
  }
  .contact {
    padding: 25px 0;
  }
  .contact .container {
    --gap: 25px;
    flex-direction: column;
  }
  .contact_col .container {
    flex-wrap: wrap;
  }
  .contact_col .container .col.map {
    padding-left: 0;
    padding-top: var(--gap-parent);
    border-left: 0;
    border-top: 2px solid #00A3B3;
  }
  footer .footer-wave {
    display: none;
  }
  footer .footer--top {
    flex-direction: column;
    align-items: center;
    --gap: 25px;
    padding: 25px 5%;
    background-color: white;
  }
  footer .footer--top .menu--footer-top {
    padding-left: 0;
    border-left: 0;
  }
  footer .footer--top .menu--footer-top a {
    font-size: 16px;
  }
  footer .footer--top img:last-child {
    margin-left: 0;
  }
  footer .footer--bottom {
    flex-direction: column;
    justify-content: center;
    --gap: 25px;
    padding: 25px 5%;
  }
  footer .footer--bottom .menu--footer-bottom {
    --gap: 10px;
    flex-direction: column;
    margin-left: 0;
  }
  footer .footer--bottom .menu--footer-bottom li {
    text-align: center;
  }
}
@media (max-width: 1199px) {
  .fluentform .ff-t-container {
    flex-wrap: wrap;
  }
  .fluentform .ff-t-container .ff-t-cell {
    flex-basis: 100% !important;
  }
  .fluentform .ff-el-group {
    flex-direction: column;
    align-items: flex-start;
  }
  .fluentform .ff-el-group.ff-text-right {
    align-items: flex-end;
  }
  .fluentform .ff-el-group .ff-el-input--content {
    width: 100%;
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .contact_col .container .col.form {
    flex: 70%;
  }
  .domains .domains--container .item {
    --bottom: 10px;
  }
  .expert .expert--cols .col h3 {
    min-height: 41px;
  }
  footer .footer--top {
    --gap: 30px;
    min-height: 200px;
  }
  footer .footer--top img:first-of-type {
    max-width: 150px;
  }
  footer .footer--top img:last-of-type {
    max-width: 75px;
  }
  footer .footer--bottom .menu--footer-bottom {
    --gap: 20px;
  }
}
@media (min-width: 1200px) and (max-width: 1919px) {
  .tabs .tab .content img {
    max-width: 50%;
  }
}
body {
  font-family: "Red Hat Display", sans-serif;
  background-color: white;
  color: #2C4346;
  font-size: 16px;
}

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