@charset "UTF-8";
/*
Theme Name: Equiphysium theme
Theme URI:
Author: 
Author URI:
Description: Starter Theme with Font Awesome and Bootstrap 5
Version: 0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: one-column, two-columns, right-sidebar, custom-header, custom-menu, editor-style, featured-images, sticky-post, translation-ready
Text Domain: nx

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/* General
-------------------------------------------------------- */

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--light-gray);
  min-height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.main-content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}



main {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.main-loaded {
  opacity: 1;
  /* Visibile */
}


:root {
  --blue: #1773b0;
  --dark-blue: #103479;
  --light-gray: #f4fcff;
  --acqua: #7dffcc;
  --white: #fff;
}



/* Colori
-------------------------------------------------------- */
a {
  color: var(--blue);
  text-decoration: none;
}

a.nav-link:hover:not(a.navbar-brand),
a:hover:not(.btn.btn-primary) {
  color: var(--acqua);
}


.color-primary {
  color: var(--dark-blue) !important;
}

.color-secondary {
  color: var(--acqua) !important;
}

.color-blue {
  color: var(--blue);
}


.text-gradient,
.servizi h2 {
  background: linear-gradient(16deg, rgba(125, 255, 204, 1) 0%, rgba(23, 115, 176, 1) 60%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
}

.bg-primary {
  background: var(--dark-blue) !important;
}

.bg-secondary {
  background: var(--acqua) !important;
}

.bg-blue {
  background-color: var(--blue);
}


.bg-gradient {
  background: linear-gradient(16deg, rgba(125, 255, 204, 0.8) 0%, rgba(23, 115, 176, 0.8) 40%);
}

.bg-white {
  background: var(--light-gray) !important;
}


.bg-primary-img {
  background: linear-gradient(16deg, rgba(125, 255, 204, 0.8) 0%, rgba(23, 115, 176, 0.9) 40%),
    url('/wp-content/uploads/2026/01/31.jpg') no-repeat center center;
  background-size: cover;
  background-position: center center;
}

.bg-secondary-img {
  background: linear-gradient(315deg, rgba(125, 255, 204, 0.8) 0%, rgba(16, 52, 121, 1) 100%),
    url('/wp-content/uploads/2026/01/19-1.jpg') no-repeat center center;
  background-size: cover;
  background-position: center center;
}


.parallax-wrapper {
  position: relative;
  overflow: hidden;
}


/* Typography
-------------------------------------------------------- */


h1,
h2,
h3,
h4,
h5,
h6,
a {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
}

@media (min-width: 1200px) {
  h2 {
    font-size: 3em;
  }
}

@media (max-width: 1199px) {
  h2 {
    font-size: 35px;
  }
}

body,
p,
li {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
}

.pre-title {
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
}

.text-white p {
  color: #fff;
}

/* Helpers
-------------------------------------------------------- */
@media (min-width: 768px) {
  .py-custom {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .pt-custom {
    padding-top: 100px;
  }

  .pb-custom {
    padding-bottom: 100px;
  }
}

@media (max-width: 767px) {
  .py-custom {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .pt-custom {
    padding-top: 50px;
  }

  .pb-custom {
    padding-bottom: 50px;
  }
}


/* Animazioni
-------------------------------------------------------- */
.fade-in,
.nascosto {
  opacity: 0;
}

.fade-in.show,
.visibile {
  opacity: 1 !important;
  transition: opacity 1s ease-in;
}

/* Buttons
-------------------------------------------------------- */

.btn.btn-primary {
  background: var(--acqua) !important;
  color: var(--dark-blue);
  padding: 12px 25px;
  font-size: 18px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  border: 1px solid var(--dark-blue);
  border-radius: 50px;

  &.btn-sm {
    font-size: 15px;
    padding: 13px 20px;

    @media (max-width: 767px) {
      font-size: 14px;
      padding: 12px 20px;
    }
  }
}

.btn.btn-outline-primary {
  background: transparent !important;
  color: var(--white);
  border: solid 1px var(--white);
  padding: 12px 25px;
  font-size: 17px;
  border-radius: 50px;
}


.btn.btn-secondary {
  background: var(--blue) !important;
  color: white;
  padding: 12px 25px;
  font-size: 18px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 700;
  font-size: 18px;
  border: none;
  border: none;
  border-radius: 50px;
}

.btn:hover {
  background: var(--blue);
  -webkit-filter: brightness(0.8);
  filter: brightness(0.8);
  transition: 0.4s;
}

/* Header

-------------------------------------------------------- */

.navbar {
  -webkit-transition-duration: 0.6s;
  transition-duration: 0.6s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}

.navbar .nav-link,
.navbar .nav-link.show {
  color: var(--white);
  font-weight: 700;

  &.active {
    color: var(--white);
    background: transparent;
  }
}

.navbar-nav .dropdown-item {
  color: var(--dark-blue);
  font-weight: 700;
  font-size: 18px;

  &.active {
    color: var(--dark-blue);
    background: transparent;
  }

  &:hover {
    background-color: var(--dark-blue);
    color: var(--white) !important;
  }
}

.navbar-brand img,
.menu-icon {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.navbar-transparent.is-scrolled .navbar {
  background: var(--light-gray);
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);

  & .nav-link {
    color: var(--dark-blue);
  }
}

.navbar-collapse.collapse.show .nav-link {
  color: var(--dark-blue);
}

.navbar-transparent.is-scrolled .navbar img,
.navbar-transparent.is-scrolled .navbar-toggler-icon,
.navbar-transparent.is-scrolled .menu-icon {
  -webkit-filter: none;
  filter: none;
}

.navbar:has(.navbar-collapse.show, .navbar-collapse.collapsing) {
  background: var(--light-gray) !important;
}

.navbar:has(.navbar-collapse.show) img,
.navbar:has(.navbar-collapse.show) .navbar-toggler-icon {
  -webkit-filter: none !important;
  filter: none !important;
}


.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-brand img {
  max-width: 190px;
  padding: 5px 0px;
}

@media (max-width: 1199px) {
  .navbar-brand img {
    max-width: 120px;
  }

  .navbar-nav {
    overflow-y: auto;
  }

  .navbar-toggler {
    border: none;
    padding: 0;
  }

  .navbar-toggler-icon {
    font-size: 25px;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
  }

  body:has(.dropdown-menu.show)>.modal-overlay,
  body:has(.navbar-collapse.collapsing, .navbar-collapse.collapse.show)>.modal-overlay {
    display: block !important;
  }

  .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 999;
    display: none;
  }

  .dropdown-menu.show {
    border: none;
    background: var(--light-gray);
  }
}


/* Megamenu & Navigazione
-------------------------------------------------------- */
.nav-link:focus-visible {
  -webkit-box-shadow: none;
  box-shadow: none;
  color: transparent;
}


/* Footer
-------------------------------------------------------- */

.icona-whatsapp i {
  font-size: 50px;
  color: #fff;
  text-align: center;
}

.icona-whatsapp {
  background: #43cc51;
  position: fixed;
  z-index: 9999;
  width: 70px;
  min-height: 70px;
  bottom: 0;
  right: 0;
  height: 60px;
  border-radius: 50px;
  margin-bottom: 15px;
  margin-right: 15px;
}

@media (max-width: 1199px) {
  .icona-whatsapp {
    width: 50px;
    min-height: 50px;
    height: 50px;
  }

  .icona-whatsapp i {
    font-size: 35px;
    line-height: 50px;
  }
}

.logo-footer {
  max-width: 300px;
}

footer h3 {
  font-size: 20px;

}

footer p {
  font-size: 15px;
}

footer .nav-link {
  padding: 3px 0px;
}

/* homepage
-------------------------------------------------------- */

/* slider */

#carouselautoplaying .carousel-item {
  position: relative;
  overflow: hidden;
}

.sfondo {
  position: absolute;
  width: 100%;
  z-index: -1;
  animation: kenburns 18s ease-in-out;
}

@keyframes kenburns {
  0% {
    transform: scale(1.0);
  }

  100% {
    transform: scale(1.2);
  }
}

#carouselautoplaying .carousel-item {
  height: 100vh;
}

#carouselautoplaying .carousel-item h1 {
  font-size: clamp(50px, 9vw, 100px) !important;
}

#carouselautoplaying .carousel-item p {
  font-size: 20px;
  font-weight: 500;
}

.carousel-subtitle p:not(:last-child)::after {
  content: "|";
  color: var(--white) !important;
  margin-left: 15px;
  margin-right: 15px;
}

@media screen and (max-width: 1199px) {
  #carouselautoplaying .carousel-item h1 {
    font-size: 35px;
  }
}

@media screen and (max-width: 767px) {
  .carousel-subtitle {
    flex-direction: column !important;
    align-items: center !important;
    gap: 6px !important;
    margin-bottom: 1.5rem !important;
  }

  .carousel-subtitle p {
    font-size: 15px !important;
    margin: 0 !important;
    text-align: center;
  }

  .carousel-subtitle p:not(:last-child)::after {
    display: none;
  }

  #carouselautoplaying .carousel-item p {
    font-size: 15px;
  }

  .carousel-buttons {
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
    margin-top: 1rem !important;
  }

  .carousel-buttons .btn {
    width: 220px;
    text-align: center;
  }
}

/* icona mouse */

.mouse-icon {
  position: relative;
  width: 30px;
  height: 50px;
  border: 2px solid #fff;
  border-radius: 12px;
  z-index: 99;
}

.wheel {
  position: absolute;
  top: 5px;
  left: 39.4%;
  width: 6px;
  height: 6px;
  background-color: #fff;
  border-radius: 50%;
  animation: scroll 2.5s infinite;
}

@keyframes scroll {
  0% {
    top: 5px;
    opacity: 0;
  }

  50% {
    top: 30px;
    opacity: 1;
  }

  100% {
    top: 30px;
    opacity: 0;
  }
}

.counter-item {
  border-left: solid 15px var(--acqua);
  padding-left: 40px;
}


/* carosello servizi */
.swiper-slide p {
  font-size: 15px;
}

.partner-controls button {
  background: var(--acqua);
  padding: 0px 20px;
  border: none;
  font-size: 2rem;
  color: var(--blue);
  cursor: pointer;
}

.partner-controls button:hover {
  background: var(--acqua);
  color: var(--white);
  transition: ease 0.4s;
}


.parallax-wrapper.negative {
  padding-bottom: 600px;
}

.img-fluid.negative {
  margin-top: -550px;
  z-index: 100;
  position: relative;
  ";

}

@media (max-width: 1199px) {
  .parallax-wrapper.negative {
    padding-bottom: 100px;
  }

  .img-fluid.negative {
    margin-top: 0px;
  }
}


/* Intestazione
-------------------------------------------------------- */
.page-header {
  height: 60vh;
}

.page-header-single {
  height: 60vh;
}

.page-header-single a {
  color: #fff;
}

@media (min-width: 768px) {
  .page-header span {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 700;
  }

  .page-header h1 {
    font-size: clamp(50px, 7vw, 70px);
  }

  .page-header p {
    margin-bottom: 80px;
    margin-top: 20px;
  }

  .page-header-single h1 {
    font-size: clamp(25px, 2vw, 40px) !important;
  }
}

@media (max-width: 767px) {
  .page-header h1 {
    font-size: 35px;
    margin-top: 10px;
  }

  .page-header {
    min-height: 70vh;
  }
}

/* Chi siamo
-------------------------------------------------------- */


/* pagina base */

.pagina-base h2:not(.accordion-header) {
  padding-top: 50px;
}

.pagina-base h3:not(.accordion-header) {
  padding-top: 40px;
}

.pagina-base .accordion-header {
  font-size: 22px !important;
  font-weight: 500;
}

/* Under contruction
-------------------------------------------------------- */
.under-construction {
  height: 100vh;
}

@media (min-width: 768px) {
  .under-construction h1 {
    font-size: 3em;
  }

  .under-construction p {
    font-size: 1em;
  }
}

@media (max-width: 767px) {
  .under-construction h1 {
    font-size: 35px;
    font-weight: bold;
  }

  .under-construction p {
    font-size: 15px;
    font-weight: 200;
  }
}


/* lavora con noi
-------------------------------------------------------- */

.wpcf7 .wpcf7-select {
  width: 100%;
  font-size: 15px;
}



/* News
-------------------------------------------------------- */
.card-news a {
  text-decoration: none;
  font-size: 15px;
  color: #fff;
}

.card-news .card-meta {
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
}

.card-news p {
  font-size: 15px;
  color: var(--bs-gray-900) !important;
}

.card-news .card-title {
  font-size: 22px;
  color: var(--blue);
}

.card-news span {
  color: var(--blue);
}

.form-control:focus {
  border-color: transparent;
  box-shadow: none;
}

.icon-search {
  border: none;
  font-size: 26px;
  margin-right: 10px;
}

/* articolo */
.paragrafo-titolo {
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.paragrafo-testo strong,
.paragrafo-testo b {
  font-weight: 700 !important;
  color: inherit;
}

.zoom-img {
  transition: transform 0.5s ease;
  transform-origin: center center;
}

.card-news:hover .zoom-img {
  transform: scale(1.1);
}

/* Contatti
-------------------------------------------------------- */
.wpcf7-form-control {
  height: 50px;
  width: 100%;
}

textarea.form-control {
  height: auto;
}

.wpcf7 p {
  font-size: 15px;
}

.wpcf7 label {
  width: 100%;
  font-size: 16px;
}

.wpcf7-submit {
  background: var(--blue) !important;
}


/* Pagine archivio e ricerca
-------------------------------------------------------- */
.page-archive {
  padding-top: 100px;
}

/* Comments
-------------------------------------------------------- */
#comments {
  margin-bottom: 40px;
}

.comments {
  padding-top: 40px;
}

.comments textarea {
  width: 100%;
}

.comments label {
  min-width: 80px;
}

.comments ul,
.comments ol {
  list-style-type: none;
}

.comment-author img {
  border-radius: 999px;
  width: 50px;
}

.comment .reply {
  border-bottom: 1px solid #ccc;
  margin-bottom: 30px;
  padding-bottom: 10px;
}

/* Input & textarea
-------------------------------------------------------- */
input,
textarea {
  padding: 10px 10px;
  border: 1px solid #ccc;
}

/* Widgets
-------------------------------------------------------- */
.widget_search .screen-reader-text {
  display: block;
}

.widget_search #s {
  width: 70%;
  float: left;
}

.widget_search #searchsubmit {
  width: 30%;
  float: left;
  background: #fff;
}

/* pagination
-------------------------------------------------------- */

.page-numbers {
  display: inline-block;
  padding: 10px 15px;
  border: 1px solid #ddd;
  margin-right: 4px;
}

/* general wordpress style
-------------------------------------------------------- */
.post img {
  max-width: 100%;
  height: auto;
}

/* WordPress Core Styles
-------------------------------------------------------------- */
.gallery-caption {
  padding: 5px;
  font-size: 10px;
}

.bypostauthor {
  border-left: 3px solid #ddd;
  padding-left: 20px;
}

.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  white-space: nowrap;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* Fix scrolling issue for Bootstrap modals on mobile */
@media (max-width: 767px) {
  .modal-dialog-scrollable.modal-dialog-centered {
    align-items: flex-start !important;
    min-height: calc(100% - 2rem) !important;
    margin: 1rem auto !important;
  }

  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 2rem) !important;
    overflow: hidden;
  }

  .modal-dialog-scrollable .modal-body {
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 3.5rem !important;
    /* Spazio di sicurezza a fondo pagina */
  }
}