/**
  Theme Name: plast
  Author: Numeroquattro
  Version: 1.0
  Author URI: http://www.numeroquattro.com
*/
/* FONT */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: transparent !important;
}
/* BODY */
body, html {
  margin: 0 !important;
  padding: 0 !important;
  width: 100%;
  color: #FFF;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 400;
  -webkit-text-size-adjust: none !important;
  background: #fff;
  scroll-behavior: smooth;
}
#wrapper {
  float: left;
  margin: 0;
  padding: 0;
  width: 100%;
}
/* MAIN TEXT */
p {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #000;
  margin: 0 0 22px 0;
  padding: 0;
  font-size: 18px;
  line-height: 23px;
}
p a, .post-content a, .content-wrapper ul li a, .pad-content ul a {
  color: #000;
  text-decoration: underline;
}
p a:hover, .post-content a:hover, .content-wrapper ul li a:hover, .pad-content ul a:hover {
  color: #0031e6;
  text-decoration: none;
}
p.has-large-font-size em {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 30px;
  line-height: 32px;
}
img a {
  border: none;
}
a {
  text-decoration: none;
}
figcaption a {
  color: #263a59;
  text-decoration: underline;
}
pre {
  white-space: normal !important;
}
ul, ol {
  margin: 0 0 24px 0 !important;
  padding: 0;
  color: #000;
  font-size: 18px;
  line-height: 22px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
}
h1 {
  float: left;
  width: 100%;
  margin: 0 0 10px 0;
  padding: 0;
  color: #c9e9ff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: 100px;
  line-height: 100px;
}
h2 {
  float: left;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  width: 100%;
  color: #0031e6 !important;
  margin: 0 !important;
  padding: 0;
  font-weight: 900;
  font-size: 80px;
  line-height: 86px;
}
.color-bg h2 {
  font-weight: 800;
}
h3 {
  color: #0031e6 !important;
  background-color: #c9e9ff !important;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  width: 100%;
  margin: 0 0 24px 0;
  padding: 0;
  font-weight: 900;
  font-size: 60px;
  line-height: 60px;
  text-transform: none;
}
h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin: 0 0 20px 0 !important;
  padding: 0;
  color: #0031e6;
  font-weight: 900;
  font-size: 18px;
  line-height: 18px;
  text-transform: uppercase;
}
h5 {
  color: #000 !important;
  margin: 0 0 24px 0 !important;
  padding: 0 0 24px 0;
  font-weight: 800;
  font-size: 20px;
  line-height: 24px;
}
h6, h6.wp-block-heading {
  margin: 0 0 60px 0 !important;
  padding: 0;
  color: #0031e6;
  font-weight: 700;
  font-size: 50px;
  line-height: 50px;
  text-transform: uppercase;
}
figcaption {
  margin: 10px 0 30px 0 !important;
  padding: 0;
  font-weight: normal;
  font-style: italic;
  color: #000;
}
hr {
  width: 30% !important;
  margin: 0 70% 0 0 !important;
  align: left !important;
  height: 4px;
  border-width: 0;
  color: #0031e6;
  background-color: #0031e6;
}
/* HEAD */
#header {
  display: flex;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100vh;
  text-align: left;
  background-color: #0031e6;
  background-image: url("img/net.png");
  background-repeat: repeat-x;
  background-position: 0 bottom;
  animation: bg-move 40s linear infinite;
}
@keyframes bg-move {
  from {
    background-position: 0 bottom;
  }
  to {
    background-position: -1000px bottom;
  }
}
#header-left {
  float: left;
  width: 44%;
  margin: 3%;
  padding: 0;
  text-align: left;
}
#logo {
  float: left;
  margin: 0 0 10% 0;
  padding: 0;
  width: 70%;
}
#logo img {
  width: 280px;
  height: auto;
}
#cover {
  display: flex;
  float: right;
  margin: 0;
  padding: 0;
  width: 50%;
  height: 100%;
  text-align: center;
  background: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center center;
}
#cover img {
  max-width: 700px;
  width: 70%;
  margin: 20% auto;
  align-self: center;
}
/* SCROLL */
#scroll {
  position: absolute;
  bottom: 10%;
  left: 3%;
  color: #fff;
  opacity: 1;
  animation: MoveUpDown 0.8s linear infinite;
}
#scroll img {
  -webkit-animation: mover 0.5s infinite alternate;
  animation: mover 0.5s infinite alternate;
}
#scrol img {
  -webkit-animation: mover 0.5s infinite alternate;
  animation: mover 0.5s infinite alternate;
}
@-webkit-keyframes mover {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-15px);
  }
}
@keyframes mover {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-15px);
  }
}
#scroll img {
  width: 40px !important;
}
#top-description {
  float: left;
  width: 100%;
}
/* MENU */
#bottom-menu {
  float: left;
  width: 100%;
}
#bottom-menu {
  margin: 10% 0 0 0;
  padding: 0;
}
#bottom-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#bottom-menu li {
  margin: 0 0 40px 0;
  padding: 0;
}
#bottom-menu li a {
  font-weight: 500 !important;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #0031e6 !important;
  text-decoration: none;
}
#bottom-menu li a {
  padding: 14px 30px;
  font-weight: 700 !important;
  font-size: 16px;
  line-height: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #c9e9ff;
  border-radius: 4px;
}
.menu li a, button, a.mybutton, a.wp-block-button__link, #footer p a, input.wpcf7-submit, button, p a, .post-content a, .content-wrapper ul li a, .pad-content ul a {
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  color: #c9e9ff !important;
  background: #0031e6;
}
.current_page_item a {
  color: #000 !important;
  background: #FFF !important;
}
#bottom-menu li a:hover {
  color: #000 !important;
  background: #FFF;
}
.menu .current-menu-item a {
  color: #000 !important;
}
/* WPML */
#language {
  position: absolute;
  bottom: 120px;
  left: 36%;
}
#language .wpml-ls ul {
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
}
#language .wpml-ls li {
  list-style: none;
}
#language .wpml-ls-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  aspect-ratio: 1 / 1; /* 🔥 garantisce il cerchio */
  border-radius: 50%;
  padding: 0;
  line-height: 1;
  box-sizing: border-box;
  background: #FFF;
  color: #333;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
/* reset eventuali interferenze */
#language .wpml-ls-link span {
  line-height: 1;
  display: block;
}
/* Hover */
#language .wpml-ls-link:hover {
  background: #000;
  color: #fff;
}
/* Lingua attiva */
#language .wpml-ls-current-language .wpml-ls-link {
  background: #000;
  color: #fff;
}
/* PAGE */
.wp-block-uagb-container.white-bg {
  margin: 0 !important;
  padding: 5% 10% !important;
}
.wp-block-uagb-container.color-bg {
  margin: 0 !important;
  padding: 5% 10% !important;
  background: #c9e9ff;
  background-image: url("img/o.png");
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* <-- chiave */
  min-height: 70vh;
}
.wp-block-uagb-container.color-bg.empty {
  background-image: none !important;
}
.white-box {
  float: left;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  background: #FFF;
}
.white-box p, .white-box h1, .white-box h2, .white-box h3, .white-box h4, .white-box h5, .white-box h6 {
  margin-bottom: 0;
}
.introduzione p {
  color: #0031e6;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 72px;
  line-height: 78px;
}
p.firma {
  color: #000;
  font-size: 30px;
  line-height: 34px;
}
.stripe {
  float: left;
  width: 100%;
  margin: 0 0 20px 0;
  padding: 0;
}
.stripe img {
  width: 100%;
  max-width: 592px;
  margin: 0 0 20px 0 !important;
  padding: 0 !important;
}
.column-two {
  width: 47%;
  margin: 0;
  padding: 0;
}
.column-two.left {
  float: left;
}
.column-two.right {
  float: right;
}
.column-two img, .column-four img {
  width: 100%;
  height: auto;
  margin: 0 0 30px 0;
}
.column-four {
  float: left;
  width: 22%;
  margin: 0 4% 0 0;
  padding: 0;
}
.column-four:nth-child(6) {
  margin: 0;
}
.column-four h2 a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #0031e6;
  font-size: 30px;
  line-height: 28px;
}
.wp-block-columns-is-layout-flex {
  width: 100% !important;
  margin: 0;
}
a.mybutton, .wp-block-button a, input.wpcf7-submit {
  display: inline-block !important;
  margin: 30px 0 !important;
  padding: 12px 30px !important;
  color: #c9e9ff !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  line-height: 20px !important;
  border: #0031e6 3px solid !important;
}
a.mybutton:hover, a.wp-block-button__link:hover, input.wpcf7-submit:hover, button:hover {
  color: #0031e6 !important;
  background: #FFF !important;
  border-radius: 4px;
}
button, button:visited {
  font-size: 15px !important;
  line-height: 20px !important;
  padding: 12px 30px !important;
  font-weight: 700 !important;
  border: #0031e6 3px solid !important;
  background: #fff;
  cursor: pointer;
}
.cky-btn-customize:hover, .cky-btn-reject:hover {
  color: #fff !important;
  background: #0031e6 !important;
}
.cky-btn-accept:hover {
  color: #0031e6 !important;
  background: #fff !important;
}
.full-image img {
  width: 100% !important;
  height: auto !important;
}
/* STICKY */
#sticky-header {
  position: fixed;
  top: -100px; /* parte nascosto */
  left: 0;
  width: 96%;
  background: #0031e6;
  z-index: 999999 !important;
  transition: top 0.3s ease, background 0.3s ease;
  padding: 15px 2%;
}
#sticky-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* Logo */
#sticky-header .logo img {
  height: 40px; /* regola l'altezza del logo */
  width: auto;
}
/* Menu */
#sticky-header .main-menu ul {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0 !important;
  padding: 0;
}
#sticky-header .main-menu ul li a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  color: #FFF !important;
  font-weight: 700 !important;
  font-size: 14px;
  background: none !important;
}
#sticky-header .current_page_item a {
  border-bottom: #c9e9ff 3px solid !important;
}
/* Effetto sticky quando appare */
#sticky-header.show {
  top: 0;
}
/* CAROUSEL */
.wp-block-uagb-post-carousel button {
  border: none !important;
}
.wp-block-uagb-post-carousel h2 a {
  margin: 0 !important;
  font-style: italic !important;
  font-weight: 700 !important;
  font-size: 25px !important;
  line-height: 20px !important;
}
.wp-block-uagb-post-carousel img {
  margin: 0 auto 20px auto !important;
  width: 70% !important;
  height: auto !important;
  border-radius: 400px;
}
ul.slick-dots li button {
  font-size: 40px !important;
  width: 40px !important;
  height: auto !important;
}
/* VIDEO */
figure {
  margin-left: 0 !important;
  padding-left: 0 !important;
}
.wp-block-embed__wrapper {
  position: relative !important;
  padding-bottom: 56.25% !important; /* 16:9 */
  padding-top: 25px !important;
  height: 0 !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
}
.wp-block-embed__wrapper iframe {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
}
.uagb-timeline__line__inner, .uagb-timeline__in-view-icon {
  background: #263a59 !important;
}
.uagb-timeline__events-inner-new, .uagb-timeline__line, .uagb-timeline__out-view-icon {
  background: #ecebdb !important;
}
.uagb-timeline__center-block .uagb-timeline__day-right .uagb-timeline__arrow:after, .uagb-timeline__right-block .uagb-timeline__day-right .uagb-timeline__arrow:after, .uagb-timeline__center-block .uagb-timeline__day-left .uagb-timeline__arrow:after, .uagb-timeline__left-block .uagb-timeline__day-left .uagb-timeline__arrow:after {
  border-left-color: #ecebdb !important;
  border-right-color: #ecebdb !important;
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  animation: fadeSlideIn 1s ease-out forwards;
  animation-delay: 0.3s; /* puoi aumentare per sequenza */
}
@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* TABLE*/
table {
  width: 100%;
  margin: 0 0 50px 0 !important;
}
td {
  color: #000;
  width: 20% !important;
  padding: 3% !important;
  border: #0031e6 1px solid !important;
}
td img {
  width: 80% !important;
}
h5 {
  color: #000 !important;
  margin: 15px 0 0 0 !important;
  padding: 0;
  font-weight: 800;
  font-size: 18px;
  line-height: 24px;
}
/* COOKIES */
p.cky-title {
  display: none;
}
ul.cky-cookie-des-table li p {
  font-size: 12px !important;
}
/* FOOTER */
#footer .uagb-is-root-container {
  margin: 0 !important;
  padding: 0 !important;
}
#footer {
  float: left;
  margin: 0;
  padding: 4%;
  width: 92%;
  background: #0031e6;
}
.footer-one, .footer-two, .footer-three, .footer-four {
  float: left;
  padding: 0;
  width: 22%;
}
.footer-one, .footer-two, .footer-three {
  margin: 0 4% 0 0;
}
.footer-four {
  margin: 0;
}
.footer-four img {
  width: 40px;
  height: auto;
  margin-bottom: 30px;
}
#footer .wp-block-image.commons figure.alignleft.size-full.is-resized {
  width: 100% !important;
}
#footer p {
  color: #FFF !important;
  margin: 0 0 0 0;
  font-weight: 700;
  font-size: 15px;
  line-height: 18px;
}
#footer p a {
  color: #FFF !important;
  text-decoration: underline;
}
#footer p a:hover {
  text-decoration: none;
  color: #c9e9ff !important;
}
#footer p.crediti {
  float: left !important;
  width: 100% !important;
  margin: 40px 0 0 0;
}
#footer strong {
  color: #FFF !important;
  font-weight: 800;
  font-size: 15px;
  line-height: 18px;
}
#footer h2.wp-block-heading {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin: 0 0 20px 0 !important;
  padding: 0;
  color: #FFF !important;
  font-weight: 800;
  font-size: 20px;
  line-height: 24px;
}
#footer .wp-block-columns {
  display: block !important;
  width: 100% !important;
}
#footer figure {
  float: left !important;
  display: inline-block !important;
  width: 80px !important;
  margin-bottom: -20px !important;
}
/** FORM */
.wpcf7-form input, .wpcf7-form select, .wpcf7-form textarea {
  -ms-box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  margin-top: 10px !important;
  background: #FFF !important;
  border: #c9e9ff 1px solid !important;
}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 50px white inset; /* Change the color to your own background color */
  -webkit-text-fill-color: #000000;
}
input:-webkit-autofill:focus {
  -webkit-box-shadow: /*your box-shadow*/ , 0 0 0 50px white inset;
  -webkit-text-fill-color: #000000;
}
form.wpcf7-form p {
  display: block;
  width: 100%;
  margin: 0 0 30px 0 !important;
  padding: 0 !important;
  color: #000000;
}
form.wpcf7-form p input {
  width: 93%;
  margin: 0 0 30px 0 !important;
}
textarea:focus, input:focus {
  outline: none;
}
*:focus {
  outline: none;
}
.wpcf7-form {
  float: left;
  width: 100%;
  padding-bottom: 80px;
}
.wpcf7-form a {
  color: #000000;
}
.wpcf7-form label {
  font-size: 15px !important;
  text-transform: uppercase;
}
.wpcf7-form label.accept {
  margin-bottom: 80px;
}
.wpcf7-form label.accept, .wpcf7-form label.accept strong, .wpcf7-form label.accept a {
  font-size: 12px !important;
  font-weight: 700;
  line-height: 16px !important;
  text-transform: uppercase;
}
.wpcf7-form label.accept a {
  color: #000000;
}
.wpcf7-form input {
  margin: 20px 0 0 0 !important;
  width: 100%;
}
.wpcf7-form span input {
  width: 100%;
  color: #000 !important;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 18px !important;
  font-weight: 300;
  line-height: 20px !important;
  padding: 20px;
}
.wpcf7-form textarea {
  width: 90%;
  color: #000 !important;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 18px !important;
  font-weight: 300;
  line-height: 20px !important;
  padding: 20px;
}
.wpcf7-form .wpcf7-radio input, .wpcf7-form .wpcf7-acceptance, .wpcf7-form .wpcf7-acceptance input, span.wpcf7-form-control .wpcf7-acceptance, span.wpcf7-list-item {
  width: auto;
  margin: 0 2px 0 0 !important;
  padding: 0 !important;
}
.wpcf7-response-output {
  width: 80% !important;
  margin-left: 0 !important;
  padding: 20px !important;
  color: #FFF !important;
  border: 0 !important;
  background: #0031e6 !important;
}
p.accept {
  font-size: 14px;
  line-height: 20px;
}
.wpcf7-form .wpcf7-radio span {
  margin: 0 7px 0 0;
  padding: 0;
}
.wpcf7-form textarea {
  height: 150px;
}
.wpcf7-form input, .wpcf7-form select {
  border-radius: 0;
  background: #fff;
}
.wpcf7-form textarea {
  border-radius: 0;
  background: #fff;
}
.your-name input, .your-email input, .your-message textarea, input[type="submit"] {
  -webkit-appearance: none;
}
#wrapper wpcf7-radio input {
  appearance: normal;
  -moz-appearance: normal; /* Firefox */
  -webkit-appearance: normal; /* Safari and Chrome */
}
.wpcf7-form select {
  width: 50%;
  color: #000000;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 14px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  border-radius: 0;
}
.wpcf7-form p.accept {
  font-size: 14px;
  line-height: 18px;
}
input.wpcf7-submit {
  width: 80px !important;
  border: 3px solid !important;
  border: #0031e6 3px solid !important;
  border-radius: 4px;
  background: #0031e6 !important;
}
input.wpcf7-submit:hover {
  color: #0031e6 !important;
  border: #0031e6 3px solid !important;
  cursor: pointer;
}
input.wpcf7-submit:hover {
  background: #000000;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}
div.wpcf7-mail-sent-ok, div.wpcf7-mail-sent-ng, div.wpcf7-spam-blocked, div.wpcf7-validation-errors {
  float: left;
  width: 100%;
  padding: 20px;
  text-align: center;
}
input.wpcf7-form-control.wpcf7-text {
  width: 60%;
  margin-bottom: 0 !important;
  -webkit-appearance: none;
}
input[type=checkbox] {
  width: 15px !important;
  height: 15px !important;
}

/* GDPR */

#cmplz-document{
  width:100% !important;
  max-width:none !important;
}
.cmplz-cookiebanner button, .cmplz-btn.cmplz-accept, .button.cmplz-btn.cmplz-deny{
  border: none !important;
    color: #000!important;
}
.cmplz-cookiebanner button.cmplz-btn.cmplz-accept{
    color: #FFF!important;
}



/* RESPONSIVE */
@media only screen and (min-width: 0px) and (max-width: 1600px) {
  #bottom-menu li a {
    font-size: 18px;
    line-height: 30px;
  }
  h1, .introduzione p {
    font-size: 60px;
    line-height: 68px;
  }
  h2 {
    font-size: 45px;
    line-height: 45px;
  }
  p, ul {
    font-size: 16px;
    line-height: 20px;
  }
}
@media only screen and (min-width: 0px) and (max-width: 1400px) {
  .wp-block-uagb-container.white-bg {
    padding: 5% !important;
  }
  .wp-block-uagb-container.color-bg {
    padding: 5% !important;
  }
  #footer {
    padding: 4% 2%;
    width: 96%;
  }
  h3 {
    font-size: 30px;
    line-height: 30px;
  }
  #bottom-menu li a {
    font-size: 14px;
    line-height: 14px;
  }
  .wpcf7-form input, .wpcf7-form select, .wpcf7-form textarea {
    width: 92% !important;
  }
  input.wpcf7-submit {
    width: auto !important;
  }
}
@media only screen and (min-width: 0px) and (max-width: 1024px) {
  #logo img {
    width: 300px;
  }
  #bottom-menu li {
    display: inline-block;
    margin: 0 10px 35px 0;
  }
  #bottom-menu li a {
    padding: 10px 20px;
    font-size: 15px;
    line-height: 15px;
  }
  #top-description h1 {
    font-size: 40px;
    line-height: 40px;
  }
  h2, .introduzione p {
    font-size: 50px;
    line-height: 50px;
  }
  h6, h6.wp-block-heading {
    margin: 0 0 20px 0 !important;
    font-size: 30px;
    line-height: 30px;
  }
  p, ul {
    font-size: 15px;
    line-height: 19px;
  }
  .column-four {
    width: 48%;
    margin: 0 4% 20px 0;
  }
  .column-four:nth-child(even) {
    margin: 0;
  }
  .footer-one, .footer-two, .footer-three, .footer-four {
    float: left;
    padding: 0;
    width: 48%;
  }
  .footer-one, .footer-three {
    margin: 0 4% 20px 0;
  }
  .footer-two, .footer-four {
    margin: 0 0 50px 0;
  }
  #footer h2.wp-block-heading {
    margin: 0 !important;
  }
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  /* HEAD */
  #header {
    display: inline-block;
    width: 100%;
    height: auto;
  }
  #header-left {
    float: left;
    width: 90%;
    margin: 5%;
  }
  #logo, #top-description h1, #bottom-menu {
    width: 100% !important;
    text-align: center !important;
  }
  #cover {
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
  }
  #bottom-menu {
    margin: 50px 0;
  }
  #language {
    top: 420px;
    left: 40%;
  }
  #language .wpml-ls-link {
    width: 30px;
    height: 30px;
  }
  h1 {
    font-size: 40px;
    line-height: 40px;
  }
  h2 {
    font-size: 30px;
    line-height: 33px;
    font-weight: 900;
  }
  h3 {
    font-size: 40px;
    line-height: 40px;
  }
  ul, ol {
    margin: 0 0 24px 5% !important;
    font-size: 18px;
    line-height: 22px;
  }
  #footer {
    padding: 10% 5%;
    width: 90%;
  }
  .column-four h2 a {
    font-size: 25px;
    line-height: 30px;
  }
  a.mybutton, .wp-block-button a, input.wpcf7-submit {
    margin: 10px 0 40px 0 !important;
  }
  .column-four, .column-two {
    width: 100%;
    margin: 0 0 20px 0;
  }
  .footer-one, .footer-two, .footer-three, .footer-four {
    float: left;
    margin: 0 0 20px 0;
    width: 100%;
  }
  .wpcf7-form input, .wpcf7-form select, .wpcf7-form textarea {
    width: 92% !important;
  }
  input.wpcf7-submit {
    width: auto !important;
  }
}
@media only screen and (min-width: 0px) and (max-width: 480px) {}