@font-face {
    font-family: "Klavika";
    src: url("../fonts/Klavika/klavika-light.otf") format("opentype");
    font-weight: 300;
}

@font-face {
    font-family: "Klavika";
    src: url("../fonts/Klavika/klavika-medium.otf") format("opentype");
    font-weight: 500;
}

@font-face {
    font-family: "Klavika";
    src: url("../fonts/Klavika/klavika-bold.otf") format("opentype");
    font-weight: 500;
}

html, body {
    width: 100% !important;
    height: 100%;
    position: relative;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

:root {
    --black: #000;
    --black-transparent: #000000de;
    --black-transparent-lighter: #00000077;
    --grey-ph: #444;
    --white: #fff;
    --menu-fs: 36px;
    --paragraph-title-fs: 28px;
    --paragraph-fs: 18px;
    --main-blue: #005da0;
    --secondary-blue: #00aeef;
    --third-blue: #0067b0;
    --blue-gradient: linear-gradient(to top right, #233775, #000);
    --default-ff: "Klavika";
    --default-fw: 300;
    --fohhn-orange: #e17f35;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--default-ff);
    font-weight: var(--default-fw);
}

.main_menu_bar {
    width: 100px;
    position: absolute;
    left: 0;
    top: 0;
    padding: 10px;
    height: 100%;
    z-index: 12;
    background: var(--black);
}

.menu_toggler {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 5px;
    z-index: 13;
    border: 1px solid var(--white);
    /* border-radius: 8px; */
    background: var(--black);
}

.menu_toggler > i {
    color: var(--white);
}

.main_menu {
    position: fixed;
    width: 100%;
    height: 0;
    pointer-events: none;
    opacity: 0;
    top: 0;
    left: 0;
    z-index: 12;
    transition: .5s all ease;
    background: var(--black-transparent);
    color: var(--white);
    font-size: var(--menu-fs);
    font-weight: bold;
}

.main_menu a {
    color: var(--white);
}

.main_menu.open {
    height: 100%;
    pointer-events: all;
    opacity: 1;
}

.header {
    height: 100vh;
    width: 100%;
    background-image: url("../images/backgrounds/hp1.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.video_header {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30%;
}

.small_logo {
    width: 70%;
    margin-top: 20px;
}

.elements-container {
    position: relative;
    width: 100%;
    height: calc(100% - 50px);
}

.social {
    color: var(--white);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.social a {
    color: var(--white);
    display: block;
    margin-bottom: 20px;
}

.main_menu .col-12 {
    overflow: hidden;
}

.undermenu {
    font-size: calc(var(--menu-fs) * 0.5);
}

.undermenu ul {
    padding: 0;
    margin: 0;
}

.undermenu li {
    display: inline-block;
}

.undermenu li:not(:last-child):after {
    content: '|';
    padding: 0 10px;
}

/* .boxes {
    padding-left: 100px;
} */

.primary-blue-bg {
    background-color: var(--main-blue);
    color: var(--white);
    font-size: var(--paragraph-fs);
}

.secondary-blue-bg {
    background-color: var(--secondary-blue);
    color: var(--white);
    font-size: var(--paragraph-fs);
}

.h2 {
    font-size: var(--paragraph-title-fs);
    font-weight: bold;
    position: relative;
}

.separator:after {
    content: '';
    position: absolute;
    top: var(--paragraph-title-fs);
    left: 0;
    width: 80px;
    border-bottom: 1px solid var(--white);
    padding-top: var(--paragraph-title-fs);
    margin-bottom: var(--paragraph-title-fs);
}

.separator {
    margin-bottom: var(--paragraph-title-fs);
    padding-bottom: var(--paragraph-title-fs); 
}

.img_scroll {
    cursor: pointer;
    position: absolute;
    left: 50%;
    width: 75px;
    bottom: 15px;
    transform: translateX(-50%);
}

.img_scroll > img {
    width: 100%;
}

.service_box {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    min-height: 550px;
    border-right: 1px solid var(--main-blue);
    border-bottom: 1px solid var(--main-blue);
}

.service_box > img {
    object-fit: cover;
    position: absolute;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
}

.service_box .content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black-transparent-lighter);
    color: var(--white);
}

.service_box_special .content {
    background: linear-gradient(to right, var(--main-blue), var(--black-transparent-lighter)) !important;
}

.service_box .content a {
    color: var(--white) !important;
}

.icon-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.content-object {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
}

.content-icon {
    margin-bottom: 15px;
}

.content-text {
    font-size: var(--paragraph-title-fs);
    font-weight: bold;
}

.form-control {
    border-radius: 0;
    min-height: 48px;
}

input[type="checkbox"] {
    visibility: hidden;
    display: none;
}

label {
    cursor: pointer;
}

input[type="checkbox"] + label:before {
    border: 1px solid #999;
    background: #999;
    content: "\00a0";
    display: inline-block;
    font: 20px/1em sans-serif;
    height: 20px;
    margin: 0 .25em 0 0;
    padding: 0;
    vertical-align: top;
    width: 20px;
}

input[type="checkbox"]:checked + label:before {
    background: #fff;
    color: #333;
    content: "\2713";
    text-align: center;
}

input[type="checkbox"]:checked + label:after {
    font-weight: bold;
}

input[type="checkbox"]:focus + label::before {
    outline: rgb(59, 153, 252) auto 5px;
}

.form-control::-webkit-input-placeholder { /* Edge */
    color: var(--grey-ph);
    font-weight: 500;
}

.form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: var(--grey-ph);
    font-weight: 500;
}

.form-control::placeholder {
    color: var(--grey-ph);
    font-weight: 500;
}

.heavy {
    font-size: 2.5em;
    line-height: 1em;
    font-weight: 700;
    padding-bottom: 50px;
}

.pink {
    background: var(--pink);
    font-size: 3.5em;
    padding: 5px 15px;
    position: relative;
    font-weight: 300;
    margin-left: -15px;
    margin-bottom: 25px;
    position: relative;
}

.pink:after {
    content: '';
    border: 2px solid #fff;
    bottom: -15px;
    left: 15px;
    position: absolute;
    width: 80px;
}

.white {
    font-size: 1.8em;
    line-height: 1em;
    letter-spacing: 0;
    font-weight: 700;
    padding-top: 30px;
}

/* section {
    padding-left: 100px;
} */

.section-title {
    color: var(--main-blue);
    font-size: 2em;
    font-weight: 700;
    padding: 20px 10px;
    position: relative;
}

.section-title:after {
    content: '';
    border: 2px solid var(--main-blue);
    bottom: 5px;
    left: 10px;
    position: absolute;
    width: 80px;
}

.section-title-white {
    color: var(--white);
    font-size: 2em;
    font-weight: 700;
    padding: 1rem;
    position: relative;
}

.section-title-white-no-border {
    color: var(--white);
    font-size: 2em;
    font-weight: 700;
    padding: 10px;
    position: relative;
}

.section-title-white:after {
    content: '';
    border: 2px solid var(--white);
    bottom: -5px;
    left: 1rem;
    position: absolute;
    width: 80px;
}

.section-title-white-2 {
    color: var(--white);
    font-size: 2em;
    font-weight: 700;
    padding: 10px 0;
    position: relative;
}

.section-title-white-2:after {
    content: '';
    border: 2px solid var(--white);
    bottom: -5px;
    left: 0;
    position: absolute;
    width: 80px;
}


@media all and (max-width: 768px) {
    .eventi-header iframe {
        width: 100%;
        height: 300px;
    }
    
    .to-eventi-btn {
        width: 100%;
        margin: 0 auto;
    }

    .eventi-header  {
        background: #ffc300
    }

    .eventi-caption {
        position: absolute;
        top: 0;
        width: 100%;
        left: 0;
        background: #333a;
        color: #fff;
        text-align: center;
        padding: 0.5em 0;
    }
    .main-center-logo {
        top: 30%;
        width: 50%;
    }
}

@media all and (min-width: 769px) {
    .eventi-header iframe {
        position: absolute;
        top: 40%;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .to-eventi-btn {
        position: absolute;
        bottom: 35px;
        width: 50%;
        max-width: 600px;
        left: 50%;
        transform: translateX(-50%);
    }

    .eventi-caption {
        position: absolute;
        top: 50%;
        width: 100%;
        left: 0;
        transform: translateY(-50%);
        background: #333a;
        font-size: 5em;
        color: #fff;
        text-align: center;
        padding: 0.5em 0;
    }
}


header.drive-in {
    height: initial;
    width: initial;
    position: relative;
    overflow: hidden;
}

.video_header {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video_header::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #00000080;
}

.video_header video {
    object-fit: cover;
    object-position: center;
    height: 100vh;
    width: 100%;
}

.drive-in-header {
    position: relative;
    width: 100%;
    /* height: 100%; */
}


.drive-in-video-switch {
    position: absolute;
    left: 26.2%;
    width: 48%;
    height: 45%;
    top: 7%;
    overflow: hidden;
}


.drive-in-video-switch:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: radial-gradient(#555, #444, #333, #222, #111, #000);
}

.drive-in-video-switch.turnOn:before {
    animation: turnOn 2s;
}

.drive-in-video-switch.itsOn:before {
    animation: hide 1.5s;
    transform: scale(2);
}

.drive-in-contents img {
    object-fit: cover;
    opacity: 0;
    transition: 1.5s all ease;
}

.drive-in-video-switch.itsOn .drive-in-contents img, .drive-in-video-switch.complete .drive-in-contents img {
    opacity: 1;
} 

.drive-in-video-switch.complete:before {
    opacity: 0;
}

section.buttons {
    position: relative;
}

.drive-in-buttons-container {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
}

.footer-copy {
    background-color: #000;
    color: #969696;
    padding: 4px;
    text-align: center;
    font-size: 0.8em;
    letter-spacing: 1.5px;
}

.drive-in-button {
    width: 100%;
    height: 100%;
}

.button-col {
    background: #333a;
}

@media all and (max-width: 1024px) {
    .button-col {
        background: #333;
        border-bottom: 1px solid #999;
    }
    .drive-in-video-switch {
        position: absolute;
        left: 0;
        width: 100%;
        height: 100%;
        top: 0;
        overflow: hidden;
    }
}

@keyframes turnOn {
    0% {
        transform: scale(1);        
    }
    100% {
        transform: scale(2);
    }
}

@keyframes hide {
    0% {
        opacity: 1;        
    }
    100% {
        opacity: 0;
    }
}


@media all and (max-width: 1024px) {
    .drive-in-buttons-container {
        position: relative;
        left: 0;
        width: 100%;
    }
}

.navbar_side .fab {
    color: #fff;
    font-size: 2.5em;
}

.event-header {
    position: relative;
}

.eventi-caption > img {
    max-height: 200px;
}

.eventi-header > img {
    object-fit: cover;
}


.btn-eventi {
    background: #ffc300;
    color: #fff;
    text-transform: uppercase;
    width: 100%;
    font-size: 2em;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    border-radius: 0;
    white-space: normal;
    height: 3em;
    word-break: break-word;
    position: relative;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.btn-eventi > .btn-text {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 50%;
    left: 0;
    padding: 0 1em;
    transform: translateY(-50%);
}

.btn-eventi:hover, .btn-eventi:focus, .btn-eventi:active, .btn-eventi:visited {
    color: #fff !important;
}

.videoFrame {
    cursor: pointer;
}

section.footer {
    background-color: var(--main-blue);
    background-image: linear-gradient(45deg, #000, #000 , #000, var(--main-blue));
    color: var(--white);
}

section.footer a {
    color: #fff;
}

section.footer .icon {
    height: 30px;
    width: auto;
} 

/* section.copyright {
    background-color: #000;
    color: var(--white);
    font-size: 0.65em;
	letter-spacing: 1.5px;
} */

section.copyright a {
    color: #fff;
}

section.copyright a:hover {
    color: var(--white);
}

*:focus {
    box-shadow: none!important;
}

* {
    outline: none!important;
}

.overlay-contents {
    background: linear-gradient(to right, var(--black-transparent-lighter) 0%, transparent 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.relative {
    position: relative;
}

.overlay-contents {
    color: #fff;
    font-size: 1.2em;
}

.overlay-contents ul {
    margin: 100px 0;
}

.overlay-contents ul li {
    font-size: 1.2em;
    font-weight: 500;
    margin: 25px 0;
}

.years {
    background-color: var(--main-blue);
    background-image: linear-gradient(45deg, #000, #000 , #000, var(--main-blue));
    color: var(--white);
}

.number-bg {
    background: url("../images/backgrounds/hp3.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.bg-col-1 {
    background: var(--third-blue);
    padding: 15px;
}

.fd {
    font-size: 1.5em;
}
.number {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    font-size: 4.2em;
    font-weight: 700;
}

.description {
    font-weight: 500;
    position: absolute;
    bottom: 0;
    font-size: 1.2em;
    right: -40px;
    transform: translateY(-8%);
}

.bg-col-1 .description {
    background: var(--third-blue);
}

.bg-col-2 .description {
    background: var(--main-blue);
}

.number-container {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    position: relative;
    margin: 15px auto;
    border: 1px dashed #fff;
    margin-bottom: 35px;
}

.number-container:before {
    content: '';
    width: 200px;
    position: absolute;
    border-style: inset;
    height: 200px;
    border-radius: 50%;
    left: -10px;
    top: -10px;
    transform: rotate(-20deg);
    border-color: transparent;
    border-top: 3px solid #fff;
    border-bottom: 3px solid #fff;
}

.number-container:after {
    content: '';
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background: var(--white);
    position: absolute;
    right: 40px;
    top: -2px;
}

.bg-col-2 {
    background: var(--main-blue);
    padding: 15px;
}

.contactBg {
    background: url("../images/backgrounds/contacts.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.black-background {
    background: var(--black);
}

.fohhn-title {
    color: var(--fohhn-orange);
    font-size: 2em;
    font-weight: 700;
    padding: 10px 0;
    position: relative;
}

.fohhn-btn {
    background: var(--fohhn-orange);
    color: var(--white) !important;
    border-radius: 4px;
    padding: 12px 6px;
    text-decoration: none !important;
    font-weight: 500;
}

.text-fohhn {
    color: var(--white);
}

.partnership h3 {
    color: var(--white);
    font-size: calc(var(--paragraph-title-fs) * 1.4);
}

.greca {
    width: 180px;
}

.strength {
    font-size: 2em;
    font-weight: 300;
}

h4.strength {
    font-weight: 500 !important;
}

.abs-certifications {
    position: absolute;
    right: 0;
    top: 50px;
}

.abs-certifications img {
    display: inline-block;
    width: 150px;
}

.w-200 {
    width: 200px;
}

.w-300 {
    width: 300px;
}

.signs {
    font-size: 2em;
    font-weight: 500;
}

.btn-white-outline {
    border: 1px solid var(--white);
    background: transparent;
    border-radius: 0;
    color: var(--white) !important;
}

.btn-white-outline:hover {
    background: var(--white);
    color: var(--main-blue) !important;
}

body>.relative section {
    padding-left: 100px;
}

::-webkit-scrollbar {
    width: 2px;
}

::-webkit-scrollbar-thumb {
    background: #000;
}
::-webkit-scrollbar-track {
    background: #fff;
}

.abs-streaming {
    position: absolute;
    bottom: 150px;
    right: 15px;
    width: 400px;
    height: 400px;
    z-index: 5;
}
         
@-webkit-keyframes bounce { 
   0%, 20%, 50%, 80%, 100% {-webkit-transform: translateY(0);} 
   40% {-webkit-transform: translateY(-30px);} 
   60% {-webkit-transform: translateY(-15px);} 
} 

@keyframes bounce { 
   0%, 20%, 50%, 80%, 100% {transform: translateY(0);} 
   40% {transform: translateY(-30px);} 
   60% {transform: translateY(-15px);} 
}

.bounce { 
   -webkit-animation-name: bounce; 
   animation-name: bounce; 
}

@media all and (max-width: 480px) {
    .service_box_special .content {
        background: linear-gradient(to bottom, var(--main-blue), var(--black-transparent-lighter)) !important
    }
    .main_menu_bar {
        display: none;
    }
    .h2 {
        font-size: 22px;
    }
    .service_box {
        height: 100vh;
    }
    .pink {
        font-size: 2.5em;
        margin-left: 0;
    }
    /* .contactBg {
        background-position: 25% 0;
    } */
    .secondary-blue-bg  {
        height: 850px;
    }
    .contactBg > .row {
        background: #000a;
    }
    .white {
        padding-bottom: 15px;
    }
    .section-title {
        padding: 20px 0;
    }
    .section-title:after {
        left: 0;
    }
    .buttons {
        padding: 0;
    }
    header.drive-in {
        width: 100%;
        height: auto;
    }
    .overlay-contents {
        position: static;
        background: #333;
    }
    .vh-100 {
        height: 100vh;
    }
    .eventi-caption {
        top: 50%;
        transform: translateY(-50%);
        padding: 25px 10px;
    }
    .overlay-contents ul li {
        font-size: 0.8em;
        font-weight: 300;
        margin: 10px 0;
    }
    .overlay-contents ul {
        margin: 20px 0;
    }
    .description {
        font-size: 1em;
        right: -15px;
    }
    .number-bg {
        background: var(--secondary-blue);
    }
    .abs-certifications {
        position: static;
        margin-bottom: 25px;
    }
    .abs-certifications img {
        width: 75px;
    }
    .main_menu {
        font-size: 24px;
    }
    .undermenu {
        font-size: calc(24px * 0.5);
    }
    .undermenu li:not(:last-child):after {
        content: '';
    }
    .undermenu li {
        display: block;
        padding-left: 20px;
    }
    .service_box_special {
        display: none;
    }
    .socials ul {
        list-style: none;
        padding: 0;
        margin: 0;
        width: 100%;
        text-align: center;
    }
    .socials ul li {
        display: inline-block;
    }
    .p-strange-5 {
        padding: 3rem 1rem !important;
    }
    .blue-line {
        display: none;
    }
    .caption-images {
        position: static !important;
        padding: 1rem 0 !important;
        width: 100% !important;
        transform: translate(0, 0) !important;
    }
    .caption-title {
        color: #fff;
        background: #000a;
        font-weight: 200;
        text-transform: uppercase;
    }
    .cap-video {
        padding: 25px !important;
    }
    .img_scroll {
        bottom: 45px;
    }
    .abs-streaming {
        right: 50%;
        transform: translateX(50%);
        bottom: 180px;
        width: 200px;
        height: 200px;
    }    
    .main-center-logo {
        width: 60%;
        top: 15%;
    }

    .diretta {
        position: relative;
        top: 60px;
    }
}



.logo_collaboratori {
    width: auto;
    max-height: 120px;
    max-width: 100%;
}

.diretta {
    position: relative;
    top: 25px;
}


@media (max-width: 480px) {
    .logo_collaboratori {
        margin-bottom: 10px;
    }
    .heavy {
    	padding-bottom: 20px;
	}
	.contactBg {
    	height: auto !important;
	}
}

.caption-images_slide {
    position: absolute;
    padding: 0px 30px;
    top: 47.5%;
    left: 50%;
    transform: translate(-10%, -50%);
}
.slideshow_cont {
  max-width: 1000px;
  position: relative;
  margin: auto;
}
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}
.mySlides {display: none;}
.mySlides img {
    width: 50%;
}
.active {
  background-color: #717171;
}
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}


.widget_faccialibro .fb_iframe_widget {
    transform: scale(1.1) translateY(45px);
}
.widget_fb_bsmf .fb_iframe_widget {
    transform: scale(1.3) translateY(17.5%);
    display: inline-block;
}
.widgetino {}
.eventi_distanc {
    transform: translate(50%, -50%);
    top: 50%;
    right: 50%;
    position: relative;
}
.eventi_music_fest {
    width: 195px;
}
.w-resp {
    width: 50% !important
}
.about_head {
    top: 50%;
    transform: translateY(-50%);
    font-size: 55px;
    background: #000a;
    position: relative;
}
.tinygallery {
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    position: relative;
}
.pag_forza .caption h1 {
    width: min-content;
}

@media (max-width: 1440px) {
    .widget_faccialibro .fb_iframe_widget {
        transform: scale(0.8) translateY(-25px);
    }
    .widget_fb_bsmf .fb_iframe_widget {
        transform: scale(1) translateY(4.5%);
    }
    .eventi_music_fest {
        width: 137.5px;
        padding: 5px 0px;
    }
}
@media (max-width: 1380px) {
    .widget_faccialibro .fb_iframe_widget {
        transform: scale(0.9) translateY(-25px);
        display: inline-block;
    }
    .eventi_music_fest {
        width: 130px;
    }
}
@media (max-width: 1280px) {
    .widget_faccialibro .fb_iframe_widget {
        transform: scale(0.9) translate(0px, -10px);
        display: inline-block;
    }
    .widget_fb_bsmf .fb_iframe_widget {
        transform: scale(0.9) translateY(-1.5%);
    }
    .eventi_music_fest {
        width: 122.5px;
    }
}
@media (max-width: 1040px) {
    .widget_faccialibro .fb_iframe_widget {
        transform: scale(1) translate(0px, 0px);
    }
    .eventi_music_fest {
        width: 225px;
        padding: 0px;
    }
    .mySlides img {
        width: 66%;
    }
    .about_head {
        font-size: 40px;
    }
}
@media (max-width: 780px) {
    .caption-images_slide {
        top: 40%;
        left: 50%;
        transform: translate(-35%, -50%);
    }
    .pag_forza .caption {
        position: absolute;
        bottom: 245px;
        left: 5px;
    }
    .pag_forza .slideshow_cont {
        transform: translateY(125%);
    }
    .w-resp {
        width: 75% !important
    }
}
@media (max-width: 480px) {
    .widget_faccialibro .fb_iframe_widget {
        transform: scale(0.95) translate(0) !important;
        display: inline-block;
    }
    .widgetino {
        transform: scale(0.95) !important;
    }
    .caption-images_slide {
        top: 37%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .w-resp {
        width: 100% !important
    }
    .mySlides img {
        width: 80%;
    }
    .pag_forza .slideshow_cont {
        transform: translateY(195%);
    }
    .pag_forza .caption {
        bottom: 415px;
    }
    .pag_forza .caption h1 {
        font-size: 1.8rem;
    }
    .about_head {
        font-size: 35px;
    }
    .tinygallery {
        transform: translate(0%, 100%);
        left: 0px;
        width: 100%;
        margin: 0px;
    }
    .pag_forza .caption h1 {
        width: 100%;
    }
}
@media (max-width: 370px) {
    .widget_faccialibro .fb_iframe_widget {
        transform: scale(0.95) !important;
        display: inline-block;
    }
    .eventi-header {
        height: 25vh !important;
    }
    .pag_forza .caption {
        left: -10px;
        top: 38%;
    }
    .pag_forza .slideshow_cont {
        transform: translateY(165%);
    }
    .caption-images_slide {
        top: 43%;
    }
    .tinygallery {
        transform: translate(0%, 82.5%);
    }
}