@charset "UTF-8";
:root, [data-bs-theme=light] {
  --bs-body-font-size: 1rem;
  --bs-primary: #141438;
  --bs-primary-rgb: 20, 20, 56;
  --bs-secondary: #7cc37f;
  --bs-secondary-rgb: 124, 195, 127;
  --bs-light: #f7f7f7;
  --bs-light-rgb: 247, 247, 247;
  --bs-dark: #1a1a1a;
  --bs-dark-rgb: 26, 26, 26;
  --bs-link-color: #7cc37f;
  --bs-link-color-rgb: 124, 195, 127;
  --bs-link-hover-color: #fff;
  --bs-link-hover-color-rgb: 255, 255, 255;
  --bs-body-font-family: 'Quicksand', system-ui, -apple-system, Segoe UI, Roboto, Helvetica Neue, Noto Sans, Liberation Sans, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  --bs-body-bg: #141438;
  --bs-body-color: #fff;
  --bs-border-color: rgba(0, 0, 0, 0.1);
  --icon-font: 'unicons-line';
}

html {
  scroll-behavior: smooth;
}

@media (min-width: 992px) {
  /* Scrollbar */
  ::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    border-radius: 8px;
  }
  ::-webkit-scrollbar-track {
    border-radius: 8px;
    background: #c1c1c1;
  }
  ::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12'%3E%3Cpolygon points='6,2 11,9 1,9' fill='white'/%3E%3C/svg%3E") top 4px center/10px no-repeat, url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="12" height="12"%3E%3Cpolygon points="1,3 11,3 6,10" fill="white"/%3E%3C/svg%3E') bottom 4px center/10px no-repeat, #7cc37f;
  }
  body::-webkit-scrollbar {
    width: 8px;
    border-radius: 0;
  }
  body::-webkit-scrollbar-track {
    border-radius: 0;
    background: #141438;
  }
  body::-webkit-scrollbar-thumb {
    background: #7cc37f;
    border-radius: 0;
  }
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-image: url("../img/bg/texture.png");
  background-repeat: repeat;
  background-position: top right;
}

main {
  margin: 0;
  display: flex;
  flex-direction: column;
}

a {
  text-decoration: none;
}

.top-btn {
  position: fixed;
  bottom: 0.75rem;
  right: 0.75rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  z-index: 99;
}

.table {
  --bs-table-color-type: initial;
  --bs-table-bg-type: initial;
  --bs-table-color-state: initial;
  --bs-table-bg-state: initial;
  --bs-table-color: #fff;
  --bs-table-bg: transparent;
  --bs-table-border-color: rgba(255,255,255,0.3);
  --bs-table-accent-bg: transparent;
  width: 100%;
  margin-bottom: 1rem;
  vertical-align: top;
}

.btn-secondary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #7cc37f;
  --bs-btn-border-color: #7cc37f;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #7cc37f;
  --bs-btn-hover-border-color: #7cc37f;
  --bs-btn-focus-shadow-rgb: 130, 138, 145;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #7cc37f;
  --bs-btn-active-border-color: #7cc37f;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #7cc37f;
  --bs-btn-disabled-border-color: #7cc37f;
}

@media (max-width: 1199px) {
  .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    --bs-gutter-x: 3rem;
  }
}
@media (max-width: 767px) {
  :root, [data-bs-theme=light] {
    --bs-body-font-size: 1rem;
  }
  .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    --bs-gutter-x: 2.4rem;
  }
}
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 99;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  padding: 1rem 0;
}
#header.hide {
  transform: translate(0, -200px);
}
#header.hide.show, #header.show {
  transform: translate(0, 0);
}
#header .navbar-expand-lg {
  --bs-navbar-padding-y: 0;
}
#header .navbar-brand {
  padding: 0;
  margin-right: 0;
}
#header #logo {
  height: auto;
  width: 300px;
}
#header #logo.blended {
  mix-blend-mode: difference;
}

@media (min-width: 1921px) {
  #header > .container-fluid {
    max-width: 1640px;
  }
}
@media (max-width: 1199px) {
  #header #logo {
    height: auto;
    width: 250px;
  }
}
@media (max-width: 991px) {
  #header {
    height: auto;
    padding: 0.5rem 0;
    position: absolute;
  }
  #header .container, #header .container-fluid, #header .container-lg, #header .container-md, #header .container-sm, #header .container-xl, #header .container-xxl {
    --bs-gutter-x: 1.5rem;
  }
  #header #logo {
    height: auto;
    width: 150px;
  }
}
#footer {
  overflow: hidden;
}
#footer a {
  transition: all 0.5s ease;
  color: #fff;
  text-decoration: none;
}
#footer a:hover, #footer a:focus {
  opacity: 0.5;
}

@media (min-width: 1921px) {
  #footer > .container-fluid {
    max-width: 1870px;
  }
}
#who, #governance, #services, #certifications, #news, #work, #contacts {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#who > .container-fluid, #governance > .container-fluid, #services > .container-fluid, #certifications > .container-fluid, #news > .container-fluid, #work > .container-fluid, #contacts > .container-fluid {
  z-index: 11;
  position: relative;
  --bs-gutter-x: 3rem;
}
#who p, #governance p, #services p, #certifications p, #news p, #work p, #contacts p {
  font-size: 1.25rem;
  text-align: justify;
}

.cell-grid {
  width: 925px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  display: grid;
  grid-auto-rows: 1fr;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  overflow: hidden;
  opacity: 1;
}
.cell-grid:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 15%;
  background: linear-gradient(to top, transparent, #141438);
  z-index: 10;
}
.cell-grid:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 15%;
  background: linear-gradient(to bottom, transparent, #141438);
  z-index: 10;
}
.cell-grid span.gradient-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 20%;
  height: 100%;
  background: linear-gradient(to left, transparent, #141438);
  z-index: 10;
}
.cell-grid img.cover {
  position: absolute;
  object-fit: cover;
  object-position: left top;
  z-index: 9;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in;
  transition-delay: 0.5s;
}
.cell-grid img.cover.show {
  opacity: 1;
}
.cell-grid .cell {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 16px;
  width: 185px;
  height: 245px;
  background-color: #151538;
  opacity: 0;
  position: relative;
  z-index: 11;
}
.cell-grid .cell.animate__animated.cell-0, .cell-grid .cell.animate__animated.cell-10, .cell-grid .cell.animate__animated.cell-3, .cell-grid .cell.animate__animated.cell-20 {
  opacity: 1;
}
.cell-grid .cell.animate__animated.cell-6 {
  opacity: 0.8;
}
.cell-grid .cell.animate__animated.cell-16 {
  opacity: 0.6;
}
.cell-grid .cell.animate__animated.cell-7 {
  opacity: 0.5;
}
.cell-grid .cell.animate__animated.cell-3 {
  opacity: 0.2;
}
.cell-grid .cell.animate__animated.cell-14 {
  opacity: 0.1;
}
.cell-grid .cell.animate__animated.cell-22 {
  opacity: 0.3;
}

@media (min-width: 1600px) {
  #who > .container-fluid, #governance > .container-fluid, #services > .container-fluid, #certifications > .container-fluid, #news > .container-fluid, #work > .container-fluid, #contacts > .container-fluid {
    max-width: 1640px;
  }
}
@media (min-width: 1400px) {
  #who h2, #governance h2, #services h2, #certifications h2, #news h2, #work h2, #contacts h2 {
    font-size: 44px;
    font-weight: 500;
    margin-bottom: 1.75rem;
  }
  #who h3, #governance h3, #services h3, #certifications h3, #news h3, #work h3, #contacts h3 {
    font-size: 32px;
    display: block;
  }
  #who p, #governance p, #services p, #certifications p, #news p, #work p, #contacts p {
    font-size: 1.375rem;
    text-align: justify;
  }
}
@media (max-width: 1399px) {
  #who h2, #governance h2, #services h2, #certifications h2, #news h2, #work h2, #contacts h2 {
    font-size: 38px;
    font-weight: 500;
    margin-bottom: 1.75rem;
  }
  #who h3, #governance h3, #services h3, #certifications h3, #news h3, #work h3, #contacts h3 {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  #who p, #governance p, #services p, #certifications p, #news p, #work p, #contacts p {
    font-size: 1.25rem;
  }
}
@media (max-width: 575px) {
  #who p, #governance p, #services p, #certifications p, #news p, #work p, #contacts p {
    font-size: 1.125rem;
  }
}
video {
  max-width: 100%;
}

h1.title {
  color: #50ac32;
  font-weight: 100;
  letter-spacing: 1px;
}

h2.title {
  color: #50ac32;
  font-weight: 100;
  letter-spacing: 1px;
  font-size: 120px;
  line-height: 90px;
}
h2.title.vertical {
  width: min-content;
  display: block;
}

h3.title {
  font-weight: 200;
  letter-spacing: 1px;
  font-size: 40px;
}
h3.title.vertical {
  width: min-content;
  display: block;
}

.font-xl {
  font-size: 32px !important;
}

.font-lg {
  font-size: 24px !important;
}

.font-md {
  font-size: 22px !important;
}

.font-sm {
  font-size: 1rem !important;
}

.font-xs {
  font-size: 18px !important;
}

.font-xxs {
  font-size: 15px !important;
}

.z-4 {
  z-index: 4 !important;
}

.z-5 {
  z-index: 5 !important;
}

.accordion {
  --bs-accordion-bg: transparent;
  --bs-accordion-active-bg: transparent;
  --bs-accordion-border-width: 0;
  --bs-accordion-border-radius: 0;
  --bs-accordion-btn-padding-x: 0;
  --bs-accordion-btn-color: var(--bs-secondary);
  --bs-accordion-active-color: var(--bs-secondary);
  --bs-accordion-body-padding-x: 0;
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-btn-icon-width: 2rem;
  --bs-accordion-btn-padding-y: .65rem;
}

.accordion-button {
  font-size: 1.875rem;
  line-height: 1.1;
  font-weight: 500;
  justify-content: space-between;
}

.accordion-button:after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%237cc37f' fill-rule='evenodd' d='M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2'/%3e%3c/svg%3e");
  margin-left: 1rem;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' fill-rule='evenodd' d='M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2'/%3e%3c/svg%3e");
  transform: rotate(-135deg);
}

@media (max-width: 575px) {
  .accordion-button {
    font-size: 1.5rem;
  }
}
#menu {
  justify-content: flex-end;
  opacity: 1;
  position: fixed;
  top: 1rem;
  right: 1.5rem;
  z-index: 99;
}
#menu .nav-menu {
  --bs-navbar-nav-link-padding-x: 1.25rem;
  --bs-nav-link-padding-y: 0;
  --bs-navbar-color: #161616;
  justify-content: flex-end;
  position: relative;
}
#menu .nav-menu > button {
  border: 0;
  position: absolute;
  left: 0;
  width: 5px;
  height: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #2f2f2f;
  padding: 0;
}
#menu .nav-menu:after {
  position: absolute;
  content: "";
  right: 0;
  width: 5px;
  height: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #2f2f2f;
}
#menu .nav-menu .nav-link {
  position: relative;
  text-wrap: nowrap;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 45px;
  font-size: 1.25rem;
  padding-left: 0;
  padding-right: calc(1rem + 5px);
}
#menu .nav-menu .nav-link:first-child {
  padding-left: calc(1rem + 5px);
}
#menu .nav-menu .nav-link:before {
  content: "";
  display: block;
  width: 5px;
  height: 0;
  background-color: rgba(47, 47, 47, 0.35);
  margin-right: 1rem;
  transition: height 0.3s linear;
}
#menu .nav-menu .nav-link.active:before {
  content: "";
  left: 0;
  width: 5px;
  height: 45px;
  background-color: rgba(47, 47, 47, 0.35);
  display: block;
  margin-right: 1rem;
}
#menu .nav-menu .nav-link:hover:before {
  height: 45px;
}
#menu.blended {
  mix-blend-mode: difference;
}
#menu.blended .nav-menu {
  --bs-navbar-color: #fff;
  --bs-nav-link-hover-color: #fff;
}
#menu.blended .nav-menu .nav-link:before {
  background-color: rgba(255, 255, 255, 0.35);
}
#menu.blended .nav-menu > button {
  background-color: #fff;
}
#menu.blended .nav-menu:after {
  background-color: #fff;
}
#menu.blended #menu-trigger .line {
  background-color: #fff;
}

@media (min-width: 1921px) {
  #menu {
    right: calc((100% - 1640px) / 2 + 20px);
  }
}
#collapse-menu {
  width: 0;
  position: absolute;
  right: 0;
  display: block;
}
#collapse-menu.show {
  /* width: 610px stessa larghezza del contenuto */
  width: 790px; /* stessa larghezza del contenuto */
}
#collapse-menu.collapse {
  transition: width 0.5s ease-in;
}
#collapse-menu.collapsing {
  transition: width 0.5s ease-in;
}

#menu-trigger, #menu-trigger-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  gap: 12px;
  height: 40px;
  width: 40px;
  transition: width 0.7s ease-in;
}
#menu-trigger .line, #menu-trigger-mobile .line {
  display: block;
  width: 5px;
  height: 20px;
  background-color: #2f2f2f;
}
#menu-trigger .line.line-c, #menu-trigger-mobile .line.line-c {
  height: 40px;
}
#menu-trigger[aria-expanded=true], #menu-trigger-mobile[aria-expanded=true] {
  width: 0;
  opacity: 0;
}

@media (min-width: 992px) {
  #collapse-menu .offcanvas-header {
    display: none;
  }
  #menu-trigger-mobile {
    display: none;
  }
}
@media (max-width: 991px) {
  #menu .nav-menu {
    --bs-navbar-color: #fff;
    --bs-nav-link-padding-x: 1.5rem;
    --bs-navbar-active-color: var(--bs-secondary);
  }
  #menu .nav-menu:before, #menu .nav-menu:after, #menu .nav-menu > button {
    display: none;
  }
  #menu .nav-menu .nav-link {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 400;
    justify-content: flex-start;
    padding-left: var(--bs-nav-link-padding-x);
    padding-right: var(--bs-nav-link-padding-x);
  }
  #menu .nav-menu .nav-link:before {
    display: none;
  }
  #menu .nav-menu .nav-link:first-child {
    padding-left: var(--bs-nav-link-padding-x);
    padding-right: var(--bs-nav-link-padding-x);
  }
  #menu .nav-menu .nav-link.active {
    font-weight: 600;
  }
  #menu .nav-menu .nav-link.active:before {
    display: none;
  }
  #menu.blended {
    mix-blend-mode: unset;
  }
  #collapse-menu {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: auto;
    z-index: 1045;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    visibility: hidden;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    outline: 0;
    transition: all 0.3s ease-in-out;
    width: 400px;
  }
  #collapse-menu:not(.show) {
    transform: translateX(-100%);
    display: flex;
  }
  #collapse-menu.show {
    width: 100%;
    visibility: visible;
    transform: none;
  }
  #collapse-menu .offcanvas-header {
    display: flex;
    align-items: center;
    padding: 1.5rem;
  }
  #collapse-menu .offcanvas-header .btn-close {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: auto;
    color: #fff;
  }
  #collapse-menu.collapse {
    transition: all 0.2s ease-in;
  }
  #menu-trigger {
    display: none;
  }
  #menu-trigger-mobile {
    mix-blend-mode: difference;
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 101;
  }
  #menu-trigger-mobile[aria-expanded=true] {
    width: 40px;
    opacity: 1;
    visibility: visible;
  }
  #menu-trigger-mobile .line {
    background-color: #fff;
  }
  #menu:has(#collapse-menu.show) {
    z-index: 101;
  }
}
#hero {
  position: relative;
  min-height: 980px;
}
#hero .container-fluid {
  height: 100vh;
  max-height: 100vh;
  --bs-gutter-x: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 3vw;
  position: relative;
  z-index: 2;
}
#hero h1 {
  font-size: 42px;
  font-weight: 500;
}
#hero .cover {
  position: absolute;
  object-fit: cover;
  object-position: center bottom;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
}
#hero .hero-title {
  position: relative;
  display: grid;
  align-items: end;
}
#hero .hero-title h1 {
  grid-area: 1/1;
  margin: 0;
  line-height: 1.1;
  opacity: 0;
  animation: fadeInRightAlternate 8s infinite ease-in-out;
}
#hero .hero-title h1.text-2 {
  animation-delay: 4s;
}

@media (min-width: 1600px) {
  #hero .cover {
    object-position: center bottom;
  }
  #hero h1 {
    font-size: 56px;
  }
  #hero > .container-fluid {
    max-width: 1640px;
  }
}
@media (min-width: 1400px) {
  #hero .cover {
    object-position: center calc(100% - 10vh);
  }
  #hero .container-fluid {
    padding-bottom: 5vw;
  }
  #hero h1 {
    font-size: 48px;
  }
}
@media (max-width: 1399px) {
  #hero .cover {
    object-position: center calc(100% - 10vh);
  }
  #hero .container-fluid {
    padding-bottom: 5vw;
  }
}
@media (max-width: 991px) {
  #hero {
    min-height: 100vh;
  }
  #hero h1 {
    font-size: 36px;
  }
  #hero .container-fluid {
    padding-bottom: 8.5vw;
  }
}
@media (max-width: 575px) {
  #hero h1 {
    font-size: 28px;
  }
}
#who p strong {
  color: var(--bs-secondary);
  font-weight: 500;
}
#who .claim_img {
  max-width: 400px;
}

#who_grid {
  top: 0;
  height: 1225px;
}
#who_grid span.gradient-left {
  width: 100%;
}

@media (max-width: 1199px) {
  #who_grid {
    top: 0;
    width: 46vw;
    height: 46vw;
  }
  #who_grid:before {
    height: 35%;
  }
  #who_grid:after {
    height: 35%;
  }
  #who_grid .cell {
    width: 9.2vw;
    height: 12vw;
  }
}
@media (max-width: 991px) {
  #who {
    padding-top: 110vw;
  }
  #who_grid {
    top: 0;
    width: 100vw;
    height: 100vw;
  }
  #who_grid:before {
    height: 35%;
  }
  #who_grid:after {
    height: 35%;
  }
  #who_grid .cell {
    width: 20vw;
    height: 26vw;
  }
}
#certifications {
  padding-top: 3.5rem;
  padding-bottom: 7rem;
  overflow: hidden;
  --bs-link-color: #fff;
  --bs-link-color-rgb: 255, 255, 255;
}
#certifications li {
  color: rgba(255, 255, 255, 0.7);
}
#certifications li a {
  color: rgb(255, 255, 255);
}
#certifications li a:hover {
  color: rgb(124, 195, 127);
}
#certifications .accordion-body {
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.4784313725), rgba(255, 255, 255, 0.0901960784), rgba(255, 255, 255, 0.0901960784), rgba(255, 255, 255, 0.4784313725));
  padding: 2rem;
  border-left: 3px solid #fff;
  overflow-y: auto;
}
#certifications .accordion-button {
  position: relative;
}
#certifications .accordion-button:not(.collapsed)::before {
  content: "";
  left: calc(100% - 10px);
  position: absolute;
  display: block;
  height: 3px;
  background: #fff;
  top: 50%;
  transform: translateY(50%);
  margin-top: -6px;
}

@media (min-width: 1400px) {
  #certifications {
    min-height: 100vh;
  }
  #certifications .accordion-button:not(.collapsed)::before {
    width: 25%;
  }
  #certifications .accordion-collapse {
    position: absolute;
    width: calc(50% - 1.5rem);
    right: 1.5rem;
    transform: translateY(calc(-50% - 30px));
  }
  #certifications .accordion-body ul {
    column-count: 2;
    column-gap: 40px;
  }
  #certifications #accordionDocsMobile {
    display: none;
  }
}
@media (min-width: 1600px) {
  #certifications .accordion-button:not(.collapsed)::before {
    width: calc(24% - 1px);
  }
}
@media (max-width: 1399px) {
  #certifications #accordionDocs {
    display: none;
  }
  #certifications #accordionDocsMobile .accordion-button:not(.collapsed)::before {
    width: calc(var(--bs-gutter-x) + 5px);
    right: auto;
    left: calc(100% - 5px);
  }
  #certifications #accordionDocsMobile .accordion-body {
    height: 500px;
  }
}
@media (max-width: 1199px) {
  #certifications {
    padding-bottom: 3rem;
  }
}
@media (max-width: 991px) {
  #certifications #accordionDocsMobile .accordion-button:not(.collapsed)::before {
    display: none;
  }
  #certifications #accordionDocsMobile .accordion-body {
    height: auto;
  }
}
#governance {
  padding: 420px 0;
  color: #161616;
  position: relative;
  z-index: 2;
  font-size: 1.125rem;
}
#governance h2 {
  color: var(--bs-secondary);
  margin-bottom: 50px;
}
#governance ul {
  list-style: none;
  margin: 0;
  border-left: 3px solid var(--bs-secondary);
  padding-left: var(--bs-gutter-x);
}
#governance li {
  text-align: center;
  font-size: 1.125rem;
}
#governance li strong, #governance li span {
  display: block;
}
#governance .background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
}
#governance .mask-top {
  width: 100%;
  background: url("../img/bg/white-mask-top.png");
  background-size: 2560px 586px;
  background-position: bottom center;
  min-height: 586px;
}
#governance .mask-middle {
  width: 100%;
  background-color: #f7f7f7;
  flex-grow: 1;
}
#governance .mask-bottom {
  width: 100%;
  background: url("../img/bg/white-mask-bottom.png");
  background-size: 2560px 586px;
  background-position: top center;
  min-height: 586px;
}

@media (min-width: 1600px) {
  #governance {
    font-size: 1.325rem;
  }
  #governance li {
    font-size: 1.325rem;
  }
}
@media (max-width: 1199px) {
  #governance {
    font-size: 1.25rem;
  }
  #governance li {
    text-align: left;
    font-size: 1.25rem;
  }
}
@media (max-width: 991px) {
  #governance {
    margin-top: 0;
    padding: 25vw 0;
  }
  #governance h2 {
    margin-bottom: 1.5rem;
  }
  #governance .mask-top {
    min-height: 22.7vw;
    background-size: 100% 22.7vw;
    background-position: bottom center;
  }
  #governance .mask-bottom {
    min-height: 22.7vw;
    background-size: 100% 22.7vw;
    background-position: top center;
  }
  #governace_testo {
    padding-bottom: 1.5rem;
  }
}
@media (max-width: 575px) {
  #governance li {
    text-align: left;
    font-size: 1.125rem;
  }
}
#services h2 {
  color: var(--bs-secondary);
}

#service_grid {
  height: 980px;
}
#service_grid #imgService_0 {
  position: absolute;
  object-fit: cover;
  object-position: left top;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
}

@media (min-width: 1400px) {
  #services {
    min-height: 100vh;
  }
}
@media (max-width: 1199px) {
  #services {
    padding-bottom: 3rem;
  }
  #service_grid {
    top: 0;
    width: 46vw;
    height: 46vw;
  }
  #service_grid:before {
    height: 35%;
  }
  #service_grid:after {
    height: 35%;
  }
  #service_grid .cell {
    width: 9.2vw;
    height: 12vw;
  }
}
@media (max-width: 991px) {
  #services {
    margin-top: -3rem;
    padding-top: 105vw !important;
    padding-bottom: 3rem;
  }
  #service_grid {
    top: 0;
    width: 100vw;
    height: 100vw;
    padding-top: 0;
  }
  #service_grid:before {
    height: 35%;
  }
  #service_grid:after {
    height: 35%;
  }
  #service_grid .cell {
    width: 20vw;
    height: 26vw;
  }
}
#news {
  overflow-x: hidden;
}
#news h2 {
  color: var(--bs-secondary);
}
#news .news-item {
  position: relative;
  border: 1px solid #fff;
  border-bottom: 6px solid var(--bs-secondary);
  aspect-ratio: 4/3;
  color: #161616;
}
#news .news-item img {
  aspect-ratio: 4/3;
  object-fit: cover;
}
#news .news-source {
  position: absolute;
  padding: 35px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  z-index: 2;
}
#news .news-body {
  position: absolute;
  padding: 1.25rem;
  bottom: 0;
  height: 60%;
  width: 100%;
  z-index: 2;
  background: url("../img/bg/mask-news.png");
  background-size: 100% auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (min-width: 1600px) {
  #news .news-body {
    height: 50%;
  }
}
#news .news-date {
  color: var(--bs-secondary);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
#news .news-title {
  line-height: 1.3;
  font-size: 1.125rem;
  font-weight: 600;
}
#news #glide_news:not(.glide--slider) .glide__slide {
  visibility: hidden;
}
#news .glide__arrow {
  border: 0;
  box-shadow: none;
}
#news #news-search .input-group-text {
  border-color: rgba(255, 255, 255, 0.5019607843);
  border-right: 0;
  padding: 0.5rem 0.75rem;
  padding-right: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}
#news #news-search .input-group-text:after {
  content: "";
  height: 100%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.5019607843);
  margin-left: 0.75rem;
}
#news #news-search .form-control {
  border-left: 0;
  margin-left: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-color: rgba(255, 255, 255, 0.5019607843);
  padding: 0.5rem 1rem;
  background-color: transparent;
}
#news #news-search .form-control:focus {
  box-shadow: none;
  border-color: rgba(80, 172, 50, 0.5);
}
#news #news-search:focus-within {
  box-shadow: 0 0 0 0.25rem rgba(80, 172, 50, 0.25);
}
#news #news-search:focus-within .input-group-text {
  border-color: rgba(80, 172, 50, 0.5);
  color: var(--bs-secondary);
}
#news #news-search:focus-within .input-group-text:after {
  background-color: rgba(80, 172, 50, 0.5);
}
#news .glide-wrapper {
  padding-left: 2px;
  padding-right: 2px;
}
#news .glide__arrow--left {
  border: 0;
  box-shadow: none;
  padding: 0;
}
#news .glide__arrow--left.disabled {
  opacity: 0;
}
#news .glide__arrow--right {
  border: 0;
  box-shadow: none;
  padding: 0;
}
#news .glide__arrow--right.disabled {
  opacity: 0;
}
#news #glide_news {
  position: relative;
}
#news #glide_news_loader {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}
#news #glide_news_loader.disabled {
  z-index: -1;
  visibility: hidden;
  opacity: 0;
}
#news #loader_message {
  text-align: center;
}

@media (min-width: 1400px) {
  #news .glide__arrow--left {
    left: -120px;
  }
  #news .glide__arrow--right {
    right: -120px;
  }
}
@media (max-width: 1399px) {
  #news .glide__arrow--left {
    left: -2rem;
  }
  #news .glide__arrow--right {
    right: -2rem;
  }
  #news .glide-wrapper {
    width: calc(100% + 4rem);
  }
}
@media (max-width: 991px) {
  #news {
    overflow-x: hidden;
  }
  #news .news-source {
    padding: 20px;
    font-size: 12px;
  }
  #news .glide-wrapper {
    width: calc(100% + 60vw);
  }
  #news .glide__arrow--left {
    left: -1.8rem;
  }
  #news .glide__arrow--left svg {
    width: 25px;
    height: 25px;
  }
  #news .glide__arrow--right {
    right: -1.8rem;
  }
  #news .glide__arrow--right svg {
    width: 25px;
    height: 25px;
  }
  #loader_message {
    text-align: center;
    font-size: 18px;
  }
  #glide_news_loader {
    width: calc(100% - 4rem);
  }
}
@media (max-width: 767px) {
  #news .news-item {
    aspect-ratio: 4/3;
  }
}
@media (max-width: 575px) {
  #news .news-item {
    aspect-ratio: 1/1;
  }
  #news .news-date {
    font-size: 12px;
    margin-bottom: 5px;
  }
  #news .news-title {
    font-size: 14px;
  }
  #news .form-control {
    font-size: 1rem;
  }
}
#work {
  padding-bottom: 3rem;
}
#work .nav {
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-color: var(--bs-link-hover-color);
  --bs-nav-link-hover-color: var(--bs-link-color);
}
#work .nav-link {
  display: flex;
  gap: 10px;
  transition: transform 0.15s ease-out;
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 500;
  padding-left: 0;
  transition: all 0.5s ease;
}

#work-cf7 .wpcf7-text, #work-cf7 .wpcf7-textarea {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.5019607843);
  color: #fff;
}
#work-cf7 .wpcf7-text:focus, #work-cf7 .wpcf7-textarea:focus {
  box-shadow: none;
  border-color: rgba(80, 172, 50, 0.5);
}
#work-cf7 .wpcf7-text::placeholder, #work-cf7 .wpcf7-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5019607843);
}

@media (min-width: 1400px) {
  #work {
    padding-bottom: 0;
    min-height: 100vh;
  }
}
@media (max-width: 575px) {
  #work .nav-link {
    font-size: 1.25rem;
  }
}
#contacts {
  color: #161616;
  position: relative;
  font-size: 1.25rem;
  margin-top: -5px;
  z-index: 5;
  overflow: hidden;
  --bs-link-color: #161616;
  --bs-link-color-rgb: 22, 22, 22;
  --bs-link-hover-color: var(--bs-secondary);
  --bs-link-hover-color-rgb: 124, 195, 127;
}
#contacts h2 {
  color: var(--bs-secondary);
}
#contacts .background {
  position: absolute;
  width: 100%;
  height: calc(100% - 13vw);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  background-color: #f7f7f7;
}
#contacts .mask-top {
  width: 100%;
  background: url("../img/bg/mask-contacts.jpg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
  position: relative;
  min-height: 586px;
}
#contacts .mask-top:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(to top, transparent, rgba(20, 20, 56, 0.25), #141438);
}
#contacts .mask-top:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: url("../img/bg/white-mask-top-shadow.png");
  background-size: 2560px 586px;
  background-position: bottom center;
}
#contacts .mask-middle {
  width: 100%;
  background-color: #f7f7f7;
  flex-grow: 1;
}
#contacts .mask-bottom {
  width: 100%;
  background: url("../img/bg/white-mask-bottom.png");
  background-size: 2560px 586px;
  background-position: top center;
  min-height: 586px;
}
#contacts #map {
  width: 100%;
  height: 350px;
  background-color: #f4f4f4;
  border: 10px solid #fff;
  box-shadow: 3px 3px 7px 2px rgba(0, 0, 0, 0.1882352941);
}

section.transition-1 {
  background: url("../img/bg/mask-contacts.jpg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
  position: relative;
  aspect-ratio: 2560/586;
  overflow: hidden;
}
section.transition-1:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(to top, transparent, rgba(20, 20, 56, 0.25), #141438);
}
section.transition-1:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: url("../img/bg/white-mask-top-shadow.png");
  background-size: 100% auto;
  background-position: bottom center;
}

section.transition-2 {
  background: url("../img/bg/white-mask-bottom.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  position: relative;
  aspect-ratio: 2560/586;
  margin-top: -13vw;
  overflow: hidden;
}

@media (max-width: 1920px) {
  #contacts .mask-top {
    min-height: 486px;
  }
}
@media (max-width: 1199px) {
  #contacts {
    padding: 0 0 15vw 0;
  }
  #contacts .mask-top {
    min-height: 22.7vw;
    background-size: cover;
    background-position: bottom center;
  }
  #contacts .mask-top:after {
    background-size: 100% 22.7vw;
  }
  #contacts .mask-bottom {
    min-height: 22.7vw;
    background-size: 100% 22.7vw;
    background-position: top center;
  }
}
@media (max-width: 991px) {
  #contacts {
    font-size: 1.25rem;
  }
}
@media (max-width: 575px) {
  #contacts {
    font-size: 1.125rem;
  }
}
.form-control:not(.form-control-sm) {
  --bs-border-radius: 0;
  background-color: transparent;
  padding: 0.75rem 1.5rem;
  font-size: 24px;
}
.form-control:not(.form-control-sm)::placeholder {
  color: var(--bs-body-color);
}

.form-control:focus {
  border-color: rgba(80, 172, 50, 0.5);
  box-shadow: 0 0 0 0.25rem rgba(80, 172, 50, 0.25);
}

.wpcf7-text, .wpcf7-textarea {
  display: block;
  width: 100%;
  padding: 0.5rem 1.25rem;
  font-weight: 400;
  line-height: 1.5;
  color: #161616;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  background-clip: padding-box;
  border: var(--bs-border-width) solid #fff;
  border-radius: 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.1882352941);
  outline: none;
}
.wpcf7-text::placeholder, .wpcf7-textarea::placeholder {
  color: #161616;
}
.wpcf7-text:focus, .wpcf7-textarea:focus {
  border-color: rgba(80, 172, 50, 0.5);
  box-shadow: 0 0 0 0.25rem rgba(80, 172, 50, 0.25);
}

.wpcf7-acceptance, .wpcf7-checkbox, .wpcf7-radio {
  padding: 0;
  height: auto;
}
.wpcf7-acceptance label, .wpcf7-checkbox label, .wpcf7-radio label {
  display: block;
  min-height: 1.5rem;
  padding-left: 32px;
  box-sizing: border-box;
  margin-right: 0;
  line-height: 1.3;
}
.wpcf7-acceptance input[type=checkbox], .wpcf7-checkbox input[type=checkbox], .wpcf7-radio input[type=checkbox] {
  width: 20px;
  height: 20px;
  border-radius: 0;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid #fff;
  appearance: none;
  color-adjust: exact;
  print-color-adjust: exact;
  float: left;
  margin-left: -32px;
  margin-top: 0;
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.2);
}
.wpcf7-acceptance input[type=checkbox]:checked, .wpcf7-checkbox input[type=checkbox]:checked, .wpcf7-radio input[type=checkbox]:checked {
  background-color: #7cc37f;
  border-color: #7cc37f;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}
.wpcf7-acceptance input[type=checkbox]:checked + .wpcf7-list-item-label, .wpcf7-checkbox input[type=checkbox]:checked + .wpcf7-list-item-label, .wpcf7-radio input[type=checkbox]:checked + .wpcf7-list-item-label {
  color: #7cc37f;
  font-weight: 400;
}
.wpcf7-acceptance input[type=checkbox]:checked + .wpcf7-list-item-label a, .wpcf7-checkbox input[type=checkbox]:checked + .wpcf7-list-item-label a, .wpcf7-radio input[type=checkbox]:checked + .wpcf7-list-item-label a {
  color: #7cc37f;
}
.wpcf7-acceptance input[type=radio], .wpcf7-checkbox input[type=radio], .wpcf7-radio input[type=radio] {
  width: 20px;
  height: 20px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid #fff;
  appearance: none;
  color-adjust: exact;
  print-color-adjust: exact;
  float: left;
  margin-left: -32px;
  margin-top: 0;
  border-radius: 50%;
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.2);
}
.wpcf7-acceptance input[type=radio]:checked, .wpcf7-checkbox input[type=radio]:checked, .wpcf7-radio input[type=radio]:checked {
  background-color: #7cc37f;
  border-color: #7cc37f;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}
.wpcf7-acceptance input[type=radio]:checked + .wpcf7-list-item-label, .wpcf7-checkbox input[type=radio]:checked + .wpcf7-list-item-label, .wpcf7-radio input[type=radio]:checked + .wpcf7-list-item-label {
  color: #7cc37f;
  font-weight: 400;
}
.wpcf7-acceptance input[type=radio]:checked + .wpcf7-list-item-label a, .wpcf7-checkbox input[type=radio]:checked + .wpcf7-list-item-label a, .wpcf7-radio input[type=radio]:checked + .wpcf7-list-item-label a {
  color: #7cc37f;
}
.wpcf7-acceptance .wpcf7-list-item, .wpcf7-checkbox .wpcf7-list-item, .wpcf7-radio .wpcf7-list-item {
  margin: 0 15px 0 0;
}
.wpcf7-acceptance .wpcf7-list-item-label, .wpcf7-checkbox .wpcf7-list-item-label, .wpcf7-radio .wpcf7-list-item-label {
  text-transform: none;
}

.wpcf7-form-control-wrap a {
  color: #fff;
}
.wpcf7-form-control-wrap a:hover, .wpcf7-form-control-wrap a:focus {
  color: #50AC32;
}

.wpcf7-submit {
  background-color: #7cc37f;
  color: #fff;
  text-transform: uppercase;
  padding: 0.5rem 1.5rem;
  border: 0;
  font-weight: 500;
  transition: all 0.5s ease;
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
.wpcf7-submit:hover, .wpcf7-submit:focus {
  background-color: #fff;
  color: #7cc37f;
}

.cf7-button-container {
  text-align: right;
  position: relative;
  margin: 2rem 0 0;
}

.wpcf7-form-control.wpcf7-not-valid {
  border-color: #dc3545;
}

span.wpcf7-not-valid-tip {
  position: relative;
  font-size: 16px;
  padding: 5px 0 0;
}

.wpcf7-spinner {
  position: absolute;
  right: 0;
  top: 17px;
}

/** Responses */
span.wpcf7-not-valid-tip {
  position: relative;
  font-size: 13px;
  padding: 5px 0 0;
}

div.wpcf7-mail-sent-ok, form.sent .wpcf7-response-output {
  background: #46b450;
  border: 0;
  color: #fff;
}

div.wpcf7-mail-sent-ng, form.failed .wpcf7-response-output {
  background: #dc3545;
  border: 0;
  color: #fff;
}

div.wpcf7-spam-blocked {
  background: #ffa500;
  border: 0;
  color: #000;
}

div.wpcf7-validation-errors, form.invalid .wpcf7-response-output {
  background: #ffb900;
  border: 0;
  color: #000;
}

form.invalid .wpcf7-response-output,
form.failed .wpcf7-response-output,
form.sent .wpcf7-response-output,
form .wpcf7-response-output {
  margin: 30px 0 0;
  font-weight: 400;
}

.dnd-upload-status .dnd-upload-image {
  border: 0;
  display: none;
}
.dnd-upload-status .dnd-upload-details {
  padding-left: 0;
  width: calc(100% - 30px);
}
.dnd-upload-status .dnd-upload-details .name {
  color: #fff;
  padding-right: 0;
  font-weight: 400;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
}
.dnd-upload-status .dnd-upload-details .name em {
  color: #fff;
  font-weight: 400;
}
.dnd-upload-status .dnd-upload-details .remove-file span:after {
  content: "×";
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 30px;
  background-color: transparent;
  color: #dc3545;
  background-image: none;
  border-radius: 50%;
}
.dnd-upload-status .dnd-upload-details .dnd-progress-bar {
  border-radius: 0;
}
.dnd-upload-status .dnd-upload-details .dnd-progress-bar span {
  font-weight: 400;
  padding: 0 5px;
}

.codedropz-upload-wrapper h3 {
  width: auto !important;
  font-size: 30px !important;
  text-align: center !important;
}
.codedropz-upload-wrapper .codedropz-upload-container {
  padding: 40px 20px;
}
.codedropz-upload-wrapper .codedropz-upload-inner span {
  display: none;
}
.codedropz-upload-wrapper .cd-upload-btn {
  transition: all 0.5s ease;
}

@media (max-width: 991px) {
  .wpcf7-submit {
    width: 100%;
  }
  .wpcf7-text, .wpcf7-textarea {
    font-size: 18px;
    padding: 0.5rem 1.5rem;
  }
}
#page .container-fluid {
  max-width: 1200px;
  z-index: 2;
  position: relative;
  --bs-gutter-x: 4rem;
}
#page .page-body {
  font-size: 18px;
  --bs-link-color-rgb: 255, 255, 255;
  --bs-link-hover-color-rgb: 230, 230, 230;
}
#page .page-body p, #page .page-body a {
  overflow-wrap: break-word;
}

.modal-backdrop {
  --bs-backdrop-zindex: 1034;
  --bs-backdrop-opacity: 0.7;
}

.modal {
  --bs-modal-padding: 2rem;
  --bs-modal-zindex: 1039;
}
@media (min-width: 992px) {
  .modal::-webkit-scrollbar {
    width: 8px;
  }
  .modal::-webkit-scrollbar-track {
    border-radius: 0;
    background: #151617;
  }
  .modal::-webkit-scrollbar-thumb {
    background: #50ac32;
    border-radius: 0;
  }
}
.modal .btn-close {
  --bs-btn-close-color: #fff;
  --bs-btn-close-bg: none;
  --bs-btn-close-focus-shadow: none;
  font-size: 50px;
  line-height: 1;
  position: fixed;
  right: 0;
  top: 0;
  background: transparent;
  border-radius: 0;
  opacity: 1;
  z-index: 9;
}
.modal .btn-close:hover, .modal .btn-close:focus {
  opacity: 0.5;
}
.modal .modal-content {
  background-color: rgba(0, 0, 0, 0.75);
}

#modal-news {
  --bs-modal-padding: 3vh 6vw;
}
#modal-news a {
  color: #fff;
  font-weight: 400;
}
#modal-news .min-vh-modal {
  min-height: 94vh;
}
#modal-news #news-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 500;
  text-align: center;
}
#modal-news #news-body {
  font-size: clamp(0.875rem, 1.5vw, 1.3125rem);
  overflow-y: auto;
  padding-right: 1.5rem;
}
#modal-news #news-date {
  font-weight: 400;
  font-size: 1.25rem;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
#modal-news #news-title {
  font-weight: 500;
  color: var(--bs-secondary);
  font-size: 2.5rem;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1;
}
#modal-news #news-source {
  font-style: italic;
  margin-bottom: 0.75rem;
  font-size: 20px;
}
#modal-news #news-cover {
  text-align: center;
  margin: 0;
}

@media (max-width: 767px) {
  .modal .btn-close {
    padding: 0;
    font-size: 40px;
  }
  .modal .container-fluid {
    --bs-gutter-x: .5rem;
  }
  .modal .container-fluid .gx-5 {
    --bs-gutter-x: .5rem;
  }
}
#pdf {
  width: 100%;
  height: 94vh;
}

#pdf-container {
  width: 100%;
}

#pdf-canvas-container {
  text-align: center;
  max-width: 100%;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 21/30;
  position: relative;
}

#pdf-canvas {
  max-width: 100%;
  position: relative;
  z-index: 10;
}

#pdf-controls {
  text-align: center;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
#pdf-controls a, #pdf-controls button {
  margin: 0 2px;
  cursor: pointer;
  border: 0;
}
#pdf-controls a:hover, #pdf-controls a:focus, #pdf-controls button:hover, #pdf-controls button:focus {
  border: 0;
  opacity: 0.5;
}

#pdf-page-info {
  font-size: 16px;
  font-weight: bold;
  padding: 0 10px;
}

@media (min-width: 992px) {
  #pdf-canvas-container {
    height: calc(94vh - 60px);
  }
}
#pdf-loader {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

@keyframes gridIntro {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes opacity0 {
  to {
    opacity: 0;
  }
}
@keyframes opacity25 {
  to {
    opacity: 0.25;
  }
}
@keyframes opacity50 {
  to {
    opacity: 0.5;
  }
}
@keyframes opacity100 {
  to {
    opacity: 1;
  }
}
@keyframes headlineAnimation {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  10% {
    opacity: 1;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
    transform: translateY(0);
  }
  50% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}
/* Keyframes che ricreano il fadeInRight di animate.css
  e gestiscono la permanenza e la scomparsa.
*/
@keyframes fadeInRightAlternate {
  /* 0% - 5%: Entrata da destra (fadeInRight) */
  0% {
    opacity: 0;
    transform: translate3d(50px, 0, 0);
  }
  5% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  /* 5% - 45%: Il testo resta visibile e fermo (circa 3.2 secondi) */
  45% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  /* 45% - 50%: Dissolvenza in uscita prima che entri l'altra */
  50% {
    opacity: 0;
    transform: translate3d(-20px, 0, 0); /* Leggero scorrimento a sinistra mentre sparisce */
  }
  /* 50% - 100%: Resta invisibile mentre l'altra headline fa il suo ciclo */
  100% {
    opacity: 0;
  }
}

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