@charset "UTF-8";
/*
Theme Name: mTheme
Theme URI:
Author: M.SOFT
Author URI:
Description: Starter Theme with Font Awesome and Bootstrap 4
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;
   min-height: 100vh;
   -webkit-box-orient: vertical;
   -webkit-box-direction: normal;
   -ms-flex-direction: column;
   flex-direction: column;
}

td::first-letter,
td p::first-letter,
td strong::first-letter,
th::first-letter {
  text-transform: uppercase;
}

.product-info .value,
.product-info .label {
  display: inline-block;
}

.product-info .value::first-letter,
.product-info .label::first-letter,
p::first-letter {
  text-transform: uppercase;
}

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

.main-loaded {
   opacity: 1;
}

:root {
   --blue: #486b9f;
   --light-blue: #7ba7c0;
}

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

a:hover:not(.btn) {
   color: var(--blue);
   -webkit-filter: brightness(0.8);
   filter: brightness(0.8);
}

.nav-link.active {
   color: #c2c2c2 !important;
}

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

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

.bg-secondary {
   background: #f2f2f2 !important;
}

/* Typography
-------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
   font-family: "DM Sans", sans-serif;
   font-optical-sizing: auto;
   font-weight: 400;
   font-style: normal;
}

h3 {
   font-size: 35px;
   font-weight: bold;
   padding-bottom: 15px;
}

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

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

body,
p {
   font-family: "Inter", sans-serif;
   font-weight: 300;
}

.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;
   }
}

@media (min-width: 768px) {
   .py-footer {
      padding-top: 25px;
      padding-bottom: 10px;
   }

   .pt-footer {
      padding-top: 25px;
   }

   .pb-footer {
      padding-bottom: 25px;
   }
}

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

   .pt-footer {
      padding-top: 10px;
   }

   .pb-footer {
      padding-bottom: 10px;
   }
}

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

.btn {
   text-transform: uppercase;
   padding: 15px 30px;
   font-size: 14px;
}

.btn.btn-primary {
   background: var(--blue) !important;
   color: white;
   border: none;
}

.btn.btn-secondary {
   background: var(--light-blue) !important;
   color: white;
   border: none;
}

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

.btn .btn-outline {
   color: #fff;
}

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

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

/* Header
-------------------------------------------------------- */

@media (min-width: 1200px) {
   .nav-link {
      font-family: "DM Sans", sans-serif;
      text-transform: uppercase;
      font-weight: 300;
      color: black;
   }

   .navbar-brand img {
      max-width: 100px;
   }

   .navbar {
      background: transparent;
   }

   .navbar.is-scrolled {
      background: #fff !important;
      -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);
   }

   .navbar * {
      filter: brightness(0) invert(1);
   }

   .navbar.is-scrolled * {
      filter: none;
   }
}

@media (max-width: 1199px) {
   .navbar {
      background: #fff !important;
      -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);
   }

   .navbar-brand img {
      max-width: 100px;
   }

   .nav-link {
      font-family: "DM Sans", sans-serif;
      text-transform: uppercase;
      font-size: 18px;
      line-height: 2em;
      font-weight: 300;
      color: black;
      padding: 8px !important;
   }

   .dropdown-menu {
      border: none;
      background-color: transparent;
   }

   .dropdown-menu a {
      font-family: "DM Sans", sans-serif;
      text-transform: uppercase;
      font-size: 15px;
      font-weight: 600;
      color: var(--blue);
      margin-left: 10px;
   }

   .navbar-nav>.nav-item:not(:last-child)::after {
      content: "";
      border-bottom: solid 1px var(--blue);
      display: block;
      margin: 0 7px;
   }
}

.dropdown-item.active {
   background-color: transparent;
}

.dropdown-menu a:hover {
   background-color: transparent;
}

.navbar-toggler {
   -webkit-box-shadow: none !important;
   box-shadow: none !important;
   font-size: 25px;
}

.navbar-collapse>* {
   margin-right: 0px;
   margin-left: auto;
}


/* Footer
-------------------------------------------------------- */
.pre-footer {
   background: linear-gradient(135deg, rgba(244, 244, 245, 0.97) 100%, rgba(244, 244, 245, 0.90) 100%), url(/wp-content/uploads/pattern.jpg);
   background-repeat: repeat-x;
}

footer {
   /* background: #486B9F; */
   background: linear-gradient(156deg, rgba(72, 107, 159, 0.95) 50%, rgba(123, 167, 192, 0.80) 100%), url(http://localhost:10060/wp-content/uploads/taglio-marmo-3.jpg);
   background-size: cover;
   background-position: center center
}

footer img,
.under-construction img {
   -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(97%) saturate(17%) hue-rotate(210deg) brightness(103%) contrast(100%);
   filter: brightness(0) saturate(100%) invert(100%) sepia(97%) saturate(17%) hue-rotate(210deg) brightness(103%) contrast(100%);
   width: 200px;
}

footer h3 {
   font-size: 18px;
   font-weight: 700;
   padding-bottom: 0;
   margin-bottom: 5px;
   margin-top: 25px;
}

footer p {
   font-size: 15px;
}

footer a {
   color: #fff !important;
}



/* Hero
-------------------------------------------------------- */
.hero {
   height: 100vh !important;
   overflow: hidden !important;
   position: relative;
}

.hero-overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: var(--bs-secondary-bg-subtle);
   opacity: 0.80;
}

@media (min-width: 1200px) {
   .hero h1 {
      font-size: 25px;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: 200;
   }

   .hero img {
      width: 400px;
      /* filter: brightness(0) invert(1); */
   }
}

@media (max-width: 1199px) {
   .hero h1 {
      font-size: 20px;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: 200;
   }

   .hero img {
      max-width: 300px !important;
   }
}

.mouse-icon {
   position: relative;
   width: 30px;
   height: 50px;
   border: 2px solid var(--blue);
   border-radius: 12px;
}

.wheel {
   position: absolute;
   top: 5px;
   left: 39.4%;
   width: 6px;
   height: 6px;
   background-color: var(--blue);
   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;
   }
}


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

.servizi .card {
   background: linear-gradient(135deg, rgba(244, 244, 245, 0.97) 100%, rgba(244, 244, 245, 0.90) 100%);
}

.servizi h3 {
   text-transform: uppercase;
   font-size: 20px;
}

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

.servizi p,
.servizi h3,
.servizi i,
.servizi .bi {
   color: var(--blue) !important;
}

/* Intestazione
-------------------------------------------------------- */
.page-header {
   height: 400px;
}

@media (min-width: 768px) {
   .page-header h1 {
      font-size: 4em;
   }

   .page-header p {
      font-size: 1.2em;
      font-weight: 200;
   }
}

@media (max-width: 767px) {
   .page-header h1 {
      font-size: 40px;
      font-weight: bold;
      padding-top: 130px;
   }

   .page-header p {
      font-size: 16px;
      font-weight: 200;
   }
}

/* 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;
   }
}

/* Azienda
-------------------------------------------------------- */
  .first-container-azienda {
    padding-top: 10px!important;
    padding-bottom: 0!important;
    padding-left: 0;
    padding-right: 0;
  }
  .second-container-azienda {
    padding-top: 0!important;
    padding-bottom: 30px!important;
    padding-left: 0;
    padding-right: 0;
  }
  .text0-title,
  .text1-title,
  .text2-title,
  .text3-title {
    text-align: center;
    padding-bottom: 0;
    margin-top: 10px;
  }

.area_testo_0 {
  text-align: justify;
}

.area_testo_0 h3 {
  text-align: center;
}


  @media (max-width: 992px) {
   .first-container-azienda, .second-container-azienda {
      margin-left: 10%;
      margin-right: 10%;
   }
  }

/* Partner
-------------------------------------------------------- */
.partner-button0,
.partner-button1 {
   border: 2px solid #486b9f;
   border-radius: 10px;
   color: #486b9f;
   font-size: 17px;
   padding: 1px 13px;
   font-weight: 500;
   background-color: #fff;
   margin-top: 20px;
}
.partner-button0:hover,
.partner-button1:hover {
   color: #fff;
   background-color: #486b9f;
}
.partner-button0 {
   margin-top: 20px;
}
.partner-button1 {
   margin-top: 10px;
}

@media (max-width: 992px) {
   .partner-button0,
   .partner-button1 {
      display: block;
      margin: 0 auto;
   }
}

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

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

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

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

/* Assistenza Tecnica
-------------------------------------------------------- */
@media (max-width: 992px) {
   .card-form-assistenza {
      margin-top: 20px;
      width: 96%;
   }

   .card-form-assistenza {
      margin: 10px;
   }
}

@media (min-width: 992px) {
   .form-contatti-assistenza {
      padding: 0px 100px;
   }

   .card-form-assistenza {
      width: 100% !important;
      margin-left: 1% !important;
      margin-right: 1% !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
-------------------------------------------------------- */
.pagination {
   margin-bottom: 40px;
}

.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. */
}