@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --inter: "Inter", sans-serif;
    --montserrat: "Montserrat", sans-serif;
    --primaryColor: #215D88;
    --whiteColor: #fff;
    --blackColor: #000;
}

html {
    scroll-behavior: smooth;
}

body {	
    font-family: var(--montserrat);
    font-size: 16px;
    font-weight: 400;    	
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 700;
}

p,
figure,
label {
    margin: 0;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

small {
    font-size: inherit;
}

a {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

a:hover{
    text-decoration: none;
}

ul {
    list-style-type: none;
    padding: 0; 
    margin: 0;
}

input,
button {
    background-color: transparent;
    border: 1px solid transparent;
    outline: none;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

input[type=number] {
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
    appearance: textfield;
}

select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(images/select-input-arrow.png);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: calc(100% - 15px) 50%;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

input:focus,
select:focus {
    box-shadow: 0;
    border: 0;
    outline: 0;
}

::selection {
    color: var(--whiteColor);
    background: var(--primaryColor);
}

::-webkit-selection {
    color: var(--whiteColor); 
    background: var(--primaryColor);
}

::-moz-selection {
    color: var(--whiteColor); 
    background: var(--primaryColor);
}

.text-primary {
    color: var(--primaryColor) !important;
}

.font-medium {
    font-weight: 500 !important;
}

.font-semibold {
    font-weight: 600 !important;
}

.bg-included {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.absolute-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.flex-col-between {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.gap-x-26 {
    row-gap: 26px;
}

.gap-x-15 {
    row-gap: 15px;
}

.scrolltotop {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: var(--primaryColor); 
    text-align: center; 
    font-size: 22px;
    color: #ffffff;
    position: fixed;
    right: 30px;
    bottom: 25px;
    display: none;
    animation: lab_top_up 5s linear infinite;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;  
    z-index: 999;    
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.scrolltotop i {
    color: var(--whiteColor);
}

/* Google confirmation page */
.google-confirm {
    padding: 80px 0;
}

.google-confirm__icon {
    font-size: 5.5rem;
    color: var(--primaryColor);
    flex-shrink: 0;
    line-height: 1;
}

.google-confirm__icon--error {
    color: #dc3545;
}

.google-confirm__title {
    font-family: var(--montserrat);
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--blackColor);
    letter-spacing: 0.025em;
    margin: 0;
    line-height: 1.3;
}

.google-confirm__title--error {
    color: #dc3545;
}

.google-confirm__subtitle {
    font-family: var(--montserrat);
    font-size: 1rem;
    color: #6c757d;
    margin: 0;
}

.google-confirm__spinner {
    width: 3.5rem;
    height: 3.5rem;
    flex-shrink: 0;
}

/* Ministry page buttons */
.btn-ministry {
    min-width: 220px;
    height: 38px;
    padding: 0 1.25rem;
    font-size: .8125rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767.98px) {
    .btn-ministry {
        width: 100%;
        min-width: unset;
    }
}

@keyframes lab_top_up {
    0% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-15px);
    }
}

.pluse,
.pluse2 {
    position: relative;
    top: 10px;
    left: -8px;
    z-index: -1;
}

.pluse::before,
.pluse2::before {
  width: 40px;
  height: 40px;
}

.pluse::after,
.pluse::before,
.pluse2::after,
.pluse2::before {
  background: var(--primaryColor); 
  border-radius: 50%;
  left: 50%;
  top: 50%;
  display: block;
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
}

.pluse::after,
.pluse2::after {
  width: 30px;
  height: 30px;
  background: transparent;
  margin-left: -15px;
  margin-top: -15px;
}

.pluse::before {
    -webkit-animation: pluse_animate 2.5s infinite linear;
    animation: pluse_animate 2.5s infinite linear;
}

.pluse2::before {
  -webkit-animation: pluse_animate 3s infinite linear;
  animation: pluse_animate 3s infinite linear; 
}

@keyframes pluse_animate {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.3);
        transform: translate(-50%, -50%) scale(0.3);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
    }
}

/*======= header-area design =======*/

.header-wrapper {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: #fff;
}

.menu-sticky {
    box-shadow: rgba(99, 99, 99, 0.116) 0px 2px 8px 0px;
}

.menu-sticky .main-menu ul li a {
	padding-block: 30px;
}

.header-inner {
    transition: 0.6s;
    border-bottom: 1px solid var(--lightBorder);
}

.header-wrapper.menu-sticky .header-inner {
    margin-inline: 0;
    padding-inline: 18px;
    border-bottom: 0;
    border-bottom: 0;
}

.logo-area img {
    max-width: 200px;
}
.main-menu ul {
    display: flex;
    gap: 38px;
}

.main-menu ul li {
    position: relative;
}

.main-menu ul li a {
    font-family: var(--inter);
    position: relative;
    font-weight: 500;
    padding-block: 46px;
    font-size: 18px;
    text-transform: capitalize;
    transition: 0.4s;
    color: #000;
}

.main-menu ul li a:hover {
    color: var(--primaryColor);
}

.main-menu ul li a:after {
    content: "";
    display: block;
    width: 0;
    background-color: var(--darkColor);
    height: 0;
    position: absolute;
    left: 10px;
    bottom: 23px;
    transition: 0.3s;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    height: 5px;
    width: 5px;
    opacity: 0;
    visibility: hidden;
}

.main-menu ul ul li a:hover:after {
    opacity: 1;
    visibility: visible;
}

.main-menu ul li .dropdwon-head {
    display: flex;
    align-items: center;
    gap: 9px;
}

.main-menu ul li .dropdwon-head i {
  font-size: 10px;
}


.main-menu ul li ul {
    position: absolute;
    left: 0;
    flex-direction: column;
    background-color: #fff;
    width: 240px;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 0.4s;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    z-index: 2;
    padding-block: 5px;
    border-top: 2px solid var(--primaryColor);
}

.main-menu ul li:hover ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px); 
}

.main-menu ul li ul li a {
    padding-inline: 15px;
    padding-block: 5.5px !important;
    display: block;
    width: 100%;
    font-size: 16px;
}

.main-menu ul li ul li a:hover {
    color: var(--primaryColor);
    padding-left: 22px;
}

.main-menu ul li ul li a:after {
    bottom: 0;
    background-color: var(--primaryColor);
}

.navbar-right-compt {
    display: flex;
    align-items: center;
    gap: 18px;
}

.btn-dark-primary {
    padding: 9px 28px;
    font-size: 15px;
    border-radius: 30px;
    background-color: var(--primaryColor);
    color: #fff;
}

.btn-dark-primary:hover {
    box-shadow: rgba(0, 0, 0, 0.37) 0px 3px 8px;
    transform: translateY(-2px);
    background-color: var(--darkColor);
}

.navbar-right-compt .search-icon {
    height: 41px;
    width: 41px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--primaryColor);
    cursor: pointer;
    transition: 0.3s;
}

.navbar-right-compt .search-icon:hover {
    box-shadow: rgba(0, 0, 0, 0.37) 0px 3px 8px;
    background-color: var(--darkColor);
    transform: translateY(-2px);
}

.offcanvas-start {
    width: 350px !important;
}

.offcanvas-start .offcanvas-header {
    padding-top: 22px;
    padding-bottom: 24px;
    box-shadow: rgba(99, 99, 99, 0.116) 0px 2px 8px 0px;
    padding-left: 0;
}

.offcanvas-header a {
    padding: 0px 16px;
}

.offcanvas-header a img {
    width: 151px;
}

.offcanvas-start .offcanvas-body {
    padding-left: 10px;
    padding-right: 13px;
    padding-top: 22px;
    padding-bottom: 20px;
}

.offcanvas-start ul li {
    transform: translateX(-18px);
    opacity: 0;
    visibility: hidden;
    transition: 0.6s;
}

.offcanvas-start ul li:nth-child(2) {
    transition-delay: 0.1s;
}

.offcanvas-start ul li:nth-child(3) {
    transition-delay: 0.2s;
}

.offcanvas-start ul li:nth-child(4) {
    transition-delay: 0.3s;
}
.offcanvas-start ul li:nth-child(5) {
    transition-delay: 0.4s;
}
.offcanvas-start ul li:nth-child(6) {
    transition-delay: 0.5s;
}

.offcanvas-start.show ul li {
   transform: translateX(0px);
    opacity: 1;
    visibility: visible;
}

.offcanvas-start ul li a {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    padding: 14px 12px;
    position: relative;
    font-weight: 500;
    color: #000;
    font-size: 17px;
    position: relative;
    transition: 0.3s;
    font-family: var(--inter);
}

.offcanvas-start ul li a:after {
    content: "";
    display: block;
    width: 0%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #ddd;
    opacity: 0;
    visibility: hidden;
    transition: 0.8s;
}

.offcanvas-start ul li:nth-child(2) a:after {
    transition-delay: 0.2s;
}

.offcanvas-start ul li:nth-child(3) a:after {
    transition-delay: 0.3s;
}

.offcanvas-start ul li:nth-child(4) a:after {
    transition-delay: 0.4s;
}

.offcanvas-start ul li:nth-child(5) a:after {
    transition-delay: 0.5s;
}

.offcanvas-start ul li:nth-child(6) a:after {
    transition-delay: 0.6s;
}

.offcanvas-start.show ul li a:after {
    width: 100%;
    opacity: 1;
    visibility: visible;
}

.offcanvas-start ul li a:hover {
    border-left-color: var(--darkColor);
    padding-left: 18px;
}

.offcanvas-start ul li small {
    font-size: 12px;
}

.offcanvas-header .btn-close {
    margin-right: 0px;
    box-shadow: none;
}

.offcanvas-footer a {
    transform: translateY(25px);
    transition: 0.6s all cubic-bezier(0,-0.62,.2,1.58);
}

.offcanvas-start.show .offcanvas-footer a {
    transform: translateY(0px);
}

.accordion .link {
  display: block;
  position: relative;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.accordion li i {
  position: absolute;
  top: 16px;
  left: 12px;
  font-size: 18px;
  color: #595959;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.accordion li i.fa-chevron-down {
  right: 16px;
  left: auto;
  font-size: 16px;
  top: 14px;
}

.accordion li.open i.fa-chevron-down {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.offcanvas-body {
    padding-inline: 10px;
}

.offcanvas-body .submenu li a:after {
    display: none;
} 

.offcanvas-body li .submenu li:last-child {
    border-bottom: 1px solid #ddd;
    padding-bottom: 13px;
}

.offcanvas-body li.open a:after {
    display: none;
}

.offcanvas-body .submenu li a {
    color: #8F8F8F;
    padding: 7px 12px;
}

.submenu {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

/* ============= Hero area ============= */
.hero-area {
    background-image: url(../images/desktop/hero-bg.jpg);
    min-height: 835px;
    padding-bottom: 145px;
    display: flex;
    align-items: flex-end;
}

.hero-inner {
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hero-inner h2 {
    font-weight: 800;
    font-size: 52px;
    line-height: 110%;
    letter-spacing: 5%;
    color: #fff;
    text-transform: uppercase;
}

.hero-inner p {
    font-weight: 400;
    font-size: 26px;
    line-height: 120%;
    letter-spacing: 0%;
    color: #fff;
}

.hero-inner .hero-btn {
    padding-top: 40px;
}

.btn-primary {
    border-radius: 10px;
    padding: 11.5px 20px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    background: #0078FF;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    transition: 0.3s;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

/* ============= chi-siamo area ============= */
.chi-siamo-area {
    background-image: url(../images/desktop/chi-siamo-bg.jpg);
    min-height: 784px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.chi-siamo-inner {
    max-width: 560px;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.sec-heading {
    font-weight: 800;
    font-size: 45px;
    line-height: 150%;
    color: #fff;
}

.chi-siamo-inner p {
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: #fff;
}

.chi-siamo-inner .btn-primary {
    padding-inline: 30px;
}

/* ============= service area ============= */
.service-area-hm {
    padding-top: 45px;
    padding-bottom: 109px;
}

.service-area-hm .service-grid {
    gap: 3px;
    padding-top: 37px;
}

.service-area-hm .service-grid .row {
    --bs-gutter-x: 3px;
    --bs-gutter-y: 3px;
}

/* Base */
.single-services-hm {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 440px;
    overflow: hidden;
}

/* BIG FIRST ITEM */
.service-area-hm .item01 {
    background-image: url(../images/desktop/service-item-01.jpg);
}

/* RIGHT TOP */
.service-area-hm .item02 {
    background-image: url(../images/desktop/service-item-02.jpg);
}

/* BOTTOM LEFT */
.service-area-hm .item03 {
    background-image: url(../images/desktop/service-item-03.jpg);
}

/* BOTTOM MIDDLE */
.service-area-hm .item04 {
    background-image: url(../images/desktop/service-item-04.jpg);
}

/* BOTTOM RIGHT */
.service-area-hm .item05 {
    background-image: url(../images/desktop/service-item-05.jpg);
}

.single-services-hm .overlay-box {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 30px 35px;
    background: rgba(33, 93, 136, 0.7);
    color: #fff;
    height: 99px;
    transition: 0.5s;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.single-services-hm .overlay-box h3 {
    font-size: 20px;
    font-weight: 700;
}

.single-services-hm .overlay-box p {
    font-weight: 400;
    font-size: 19px;
    line-height: 150%;
    color: #fff;
}

.single-services-hm .overlay-box p,
.single-services-hm .overlay-box a {
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

.single-services-hm .overlay-box a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    font-size: 19px;
    margin-top: 3px;
}

.single-services-hm .overlay-box a span {
    transition: 0.3s;
}

.single-services-hm .overlay-box a:hover span {
    transform: translateX(5px);
}

.single-services-hm:hover .overlay-box {
    height: 100%;
    background-color: #215D88;
}

.single-services-hm:hover .overlay-box p,
.single-services-hm:hover .overlay-box a {
    opacity: 1;
    visibility: visible;
}

/* ============= gesi-info area ============= */
.gesi-info-area {
    padding-bottom: 62px;
}

.gesi-info-inner p {
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: #000;
    max-width: 626px;
}

/* ============= contact area ============= */
.contact-area .contact-inner {
    background-color: #215D88;
    padding-top: 103px; 
    padding-bottom: 86px;
    border-radius: 5px;
}

.contact-inner02 {
    max-width: 783px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.contact-inner02 h2 {
    text-transform: uppercase;
    line-height: 130%;
}

.contact-inner02 p {
    /*! font-style: italic; */
    font-weight: 400;
    font-size: 20px;
    line-height: 135%;
    text-align: center;
    color: #fff;
}

.contact-inner02 p.author{
    font-style: normal;
}

.contact-inner02 .cnt-btn {
    padding-top: 25px;
}

/* ============= Hero area ============= */

.achivement-area {
    padding-top: 134px;
    padding-bottom: 122px;
}

.achivement-inner .single-achivement {
    text-align: center;
}

.achivement-inner .single-achivement span {
    font-weight: 800;
    font-size: 40px;
    letter-spacing: 0.05em;
    text-align: center;
    color: #000;
    display: block;
}

.achivement-inner .single-achivement span {
    font-weight: 800;
    font-size: 40px;
    letter-spacing: 0.05em;
    text-align: center;
    color: #000;
    padding-top: 55px;
}

/* ============= Hero area ============= */
.footer-area {
    padding-bottom: 25px;
    padding-top: 51px;
    background-color: #F2F3F5;
}

.footer-inner .footer-1st img {
    max-width: 180px;
}

.footer-inner .footer-2nd p {
    font-size: 19px;
    color: #000;
    line-height: 140%;
}

.footer-inner ul {
    display: flex;
    gap: 20px;
}

.footer-inner ul li a:hover {
    transform: translateY(-3px);
}

.footer-inner .footer-copyright {
    padding-top: 80px;
}

.footer-inner .footer-copyright p {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #000;
}

html:not(.no-js) [data-aos="fade-up"] {
  -webkit-transform: translate3d(0,25px,0);
  transform: translate3d(0,25px,0);
}

html:not(.no-js) [data-aos="fade-down"] {
  -webkit-transform: translate3d(0,-25px,0);
  transform: translate3d(0,-25px,0);
}

html:not(.no-js) [data-aos="fade-left"] {
  -webkit-transform: translate3d(25px,0,0);
  transform: translate3d(25px,0,0);
}

html:not(.no-js) [data-aos="fade-right"] {
  -webkit-transform: translate3d(-25px,0,0);
  transform: translate3d(-25px,0,0);
}


/* ============================= 
Code after home page complete  
============================= */

/* chi siamo page design */
.banner-area {
    min-height: 400px;
    background-color: #1E547A;
}

.banner-area {
    display: flex;
    align-items: flex-end;
    padding-bottom: 105px;
    padding-top: 45px;
}

.banner-area .banner-inner{
    max-width: 930px;
}

.chi-siamo-single-para .single-pera {
    font-weight: 400;
    font-size: 28px;
    line-height: 150%;
    padding-top: 86px;
    color: #000;
}

.cer-mini-inner .cer-mini-left {
    display: flex;
    flex-direction: column;
    gap: 27px;
}

.cer-mini-inner .cer-mini-left h2 {
    text-transform: uppercase;
}

.cer-mini-inner .cer-mini-left p {
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: #000;
}

.cer-mini-inner .single-box {
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    background: #215D88BF;
    height: 100%;
}

.cer-mini-inner .cer-mini-right .row {
    --bs-gutter-x: 15px;
    --bs-gutter-y: 15px;
}

.cer-mini-inner .single-box p {
    max-width: 375px;
    margin-inline: auto;
}

.cer-mini-inner .single-box.box02 {
    background-color: #215D88;
}

.cer-mini-inner .single-box.box03 {
    background: #215D8880;
}

.chi-siamo-bottpara {
    padding-top: 171px;
    padding-bottom: 151px;
    text-align: center;
    font-weight: 400;
    font-size: 30px;
    line-height: 150%;
    color: #000;
}

.chi-siamo-bottpara .button {
    padding-top: 80px;
}

/* ============= Servizi page area ============= */

.chi-siamo-single-para.parap2 {
    padding-bottom: 72px;
}

.upparcase {
    text-transform: uppercase !important;
}

.cosa-veri-area {
    padding-top: 84px;
    padding-bottom: 83px;
    background-color: #D3DFE7;
}

.cosa-veri-inner .row {
    --bs-gutter-x: 210px;
    --bs-gutter-y: 65px;
}

.heading-wrap {
    padding-bottom: 50px;
}

.cosa-veri-inner .single-features {
    display: flex;
    gap: 36px;
}

.cosa-veri-inner .single-features .icon {
    flex: 0 0 72px;
}

.cosa-veri-inner .single-features h3 {
    font-weight: 700;
    font-size: 22px;
    line-height: 150%;
    color: #000;
    padding-bottom: 5px;
}

.cosa-veri-inner .single-features p {
    font-size: 20px;
    font-weight: 400;
}

.servizi-chi {
    background-image: url(../images/desktop/service-item-01.jpg);
    position: relative;
}

.gradient-banner {
    position: relative;
    z-index: 1;
}

.gradient-banner:after {
    content: "";
    display: block;
    inset: 0;
    position: absolute;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    background: linear-gradient(271deg, #215d88 27.4%, rgba(8, 23, 34, 0) 100%);
    z-index: -1;
}

.document-area {
    padding-top: 75px;
    padding-bottom: 75px;
}

.single-documents-wp {
    border-radius: 15px;
    background: #d3dfe7;
    padding: 42px 35px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    transition: 0.6s;
    border: 1px solid transparent;
}

.single-documents-wp:hover {
    border: 1px solid #b1bbc2;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

.single-documents-wp p {
    font-size: 19px;
    color: #000;
}

.pb-94 {
    padding-bottom: 94px;
}

.contact-area.contact02 .contact-inner02 {
	max-width: 1048px;
}

.vefifiche-spi-chi {
    background-image: url(../images/desktop/verifiche-spi-chi-bg.jpg);
    background-position: 100% 2%;
}

.heading-wrap p {
	font-weight: 400;
	font-size: 20px;
	line-height: 150%;
	color: #000;
    padding-top: 12px;
}

.livelli-de-area .single-features {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.livelli-de-area .single-features .icon img {
    max-height: 100px;
}

.livelli-de-area .row {
	--bs-gutter-x: 181px;
}

.cosa-ana-wrap {
    background-image: url(../images/desktop/service-item-03.jpg) !important;
    background-position: 100% 0%;
}

.cosa-ana-wrap .chi-siamo-inner h2 {
    font-weight: 700;
    font-size: 30px;
    line-height: 130%;
}

.tipologie-di-area .single-documents-wp h3 {
    font-size: 30px;
    font-weight: 700;
    color: #000;
    padding-bottom: 15px;
}

.remainder-wraper {
    display: flex;
    align-items: center;
    gap: 45px;
    padding-top: 64px;
    font-weight: 700;
    font-size: 20px;
    color: #000;
}


.perche-e-importante .cosa-veri-inner {
    max-width: 1052px;
}

.perche-e-importante .cosa-veri-inner p {
    font-size: 28px;
    padding-top: 20px;
}

.obiettivi-del-inner {
    display: flex;
    gap: 55px;
    flex-wrap: wrap;
    justify-content: center;
}

.obiettivi-del-inner .single-conts {
    flex: 0 0 30%;
    display: flex;
    gap: 18px;
    align-items: center;
    font-weight: 700;
    font-size: 22px;
    line-height: 150%;
    text-transform: uppercase;
    color: #000;
}

.obiettivi-del-inner .single-conts .icon {
    flex: 0 0 35px;
}

.obiettivi-del-inner .single-conts.bottom-row {
    flex: 0 0 35%;
}

.cam-vini-banner {
    background-image: url(../images/desktop/service-item-04.jpg) !important;
}

.automazioni-banner .banner-inner {
    max-width: 1200px;
}

.automazioni-cosa .single-features .icon {
    flex: 0 0 25px;
    font-weight: 700;
    font-size: 22px;
    line-height: 150%;
    color: #215d88;
}

.automazioni-cosa .single-features {
    gap: 18px;
}

.automazioni-cosa .row {
	--bs-gutter-x: 80px;
	--bs-gutter-y: 45px;
}

.list-feartues-wp ul {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.list-feartues-wp ul li {
    display: flex;
    align-items: center;
    gap: 13px;
    font-weight: 700;
    font-size: 20px;
    color: #000;
}

.automazioni-gra {
    background-image: url(../images/desktop/automazioni-gra-bg.jpg) !important;
    background-position: 69% 78%;
}

.attivita-di-lists {
    padding-top: 27px;
}

.attivita-di-lists ul {
    gap: 15px;
}

.attivita-di-lists ul li img {
    flex: 0 0 20px;
    width: 20px;
    padding-top: 7px;
}

.attivita-di-lists ul li {
    font-weight: 400;
    font-size: 20px;
    align-items: flex-start;
    gap: 18px;
}

.sub-heading-wrap {
    padding-bottom: 35px;
}

.sec-sub-heading {
    font-weight: 800;
    font-size: 30px;
    text-transform: uppercase;
    color: #000;
}

.list-feartues-wp .noleggio-lists {
    padding-bottom: 60px;
}

.list-feartues-wp .noleggio-lists ul {
    gap: 15px;
}

.list-feartues-wp .noleggio-lists ul li {
    align-items: flex-start;
}

.list-feartues-wp .noleggio-lists ul li p {
    color: #215D88;
}

.single-para-nole {
    padding-top: 37px;
    padding-bottom: 27px;
}

.list-feartues-wp02 {
    padding-top: 65px;
}

.list-feartues-wp02 .noleggio-lists {
    padding-bottom: 0;
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.list-feartues-wp02 .noleggio-lists ul {
    flex: 0 0 49%;
}

.list-feartues-wp02 .noleggio-lists ul li span {
    font-weight: 400;
}

.automazioni-lists-wp .single-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    height: 100%;
    justify-content: space-between;
}

.certificazioni-docu .single-documents-wp {
    padding-inline: 24px;
}

.blog-wrapper {
    padding-top: 65px;
    padding-bottom: 145px;
}

.blog-wrapper .sec-heading{
    padding-bottom: 30px;
}

.single-blog-wp {
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 1px solid rgb(214, 214, 214);
    display: flex;
    flex-direction: column;
}

.border-b {
    border-bottom: 1px solid rgb(214, 214, 214);
}


.single-blog-wp .blog-left span {
    font-weight: 400;
    font-size: 18px;
    color: #000;
}

.single-blog-wp .blog-content h4 {
    font-weight: 700;
    font-size: 20px;
    color: #000;
    padding-bottom: 10px;
}

.single-blog-wp .blog-content p {
    font-size: 18px;
    color: #000;
}

.single-blog-wp .row {
    height: 100%;
    min-height: 260px;
}

.single-blog-wp .blog-btn {
   text-align: right;
}

.single-blog-wp .blog-btn a {
    font-weight: 700;
    font-size: 18px;
    text-align: right;
    color: #215d88;
    position: relative;
}

.single-blog-wp .blog-btn a:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #215d88;
    bottom: 3px;
    left: 0;
    position: absolute;
    transition: 0.3s;
}

.single-blog-wp .blog-btn a:hover:after {
    width: 0%;
}

.contact-wrapper {
    padding-top: 94px;
    padding-bottom: 73px;
}

.contact-wrapper .contact-left {
    background-color: #fff;
    border-radius: 15px;
    padding: 40px 30px 80px 30px;
}

.contact-wrapper .contact-left .single-input {
    padding-bottom: 24px;
}

.contact-wrapper .contact-left .single-input label {
    font-weight: 700;
    font-size: 14px;
    line-height: 150%;
    color: #3f3f3f;
    display: block;
    padding-bottom: 7px;
}

.contact-wrapper .contact-left .single-input input {
    border: 0.50px solid #00000050;
    border-radius: 3px;
    padding: 9px 15px;
    width: 100%;
    /*! display: block; */
}

.contact-wrapper .contact-left .single-input input:focus {
    border-color: var(--primaryColor);
    box-shadow: 0 0 5px #215d8867;
}

.contact-wrapper .agree-with {
    display: flex;
    align-items: center;
    gap: 11px;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #000;
}

.contact-wrapper .agree-with input {
    accent-color: var(--primaryColor);
}

.contact-wrapper .required-text {
    padding-top: 30px;
    padding-bottom: 64px;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #828282;
}

.contact-wrapper .fl-submit-button button {
    border: 2px solid #215d88;
    border-radius: 5px;
    font-weight: 700;
    font-size: 14px;
    line-height: 150%;
    color: #215d88;
    padding: 9px 32px;
}

.contact-wrapper .fl-submit-button button:hover {
    background-color: #215d88;
    color: #fff;
}

.contact-wrapper .contact-right {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
    justify-content: space-between;
}

.contact-wrapper .contact-left {
    margin-right: 15px;
}

.contact-wrapper .cr-top-content {
    padding-top: 40px;
}

.contact-wrapper .cr-top-content h3 {
    font-weight: 700;
    font-size: 30px;
    line-height: 150%;
    color: #000;
    padding-bottom: 6px;
}

.contact-wrapper .cr-top-content p {
    font-size: 24px;
    line-height: 150%;
    color: #000;
}

.contact-wrapper .cr-form-wrap {
    background-color: #fff;
    padding: 22px 20px 29px 20px;
    border-radius: 15px;
}

.contact-wrapper .cr-form-wrap h3 {
    font-weight: 400;
    font-size: 22px;
    line-height: 150%;
    color: #000;
    padding-bottom: 7px;
    text-align: center;
}

.contact-wrapper .cr-form-head {
    padding-bottom: 42px;
}

.contact-wrapper .cr-form-wrap p {
    font-size: 13px;
    line-height: 150%;
    text-align: center;
    color: #000;
}

.contact-wrapper .cr-form-wrap .single-input {
    padding-bottom: 32px;
}

.contact-wrapper .cr-form-wrap .single-input input {
    padding: 6px 0;
    border: 0;
    border-bottom: 0.50px solid #00000050;
    width: 100%;
    display: block;
}

.contact-wrapper .cr-form-wrap .single-input input:focus {
    border-color: var(--primaryColor);
}

.contact-wrapper .cr-form-wrap .cr-form-condiion {
    display: flex;
    justify-content: space-between;
}

.contact-wrapper .cr-form-wrap .cr-form-condiion input {
    accent-color: var(--primaryColor);
}

.contact-wrapper .cr-form-wrap .cr-form-condiion label {
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #000;
}

.contact-wrapper .cr-form-wrap .cr-form-condiion a {
    font-size: 14px;
    line-height: 150%;
    color: #215d88;
}

.contact-wrapper .cr-form-wrap .cr-form-condiion a:hover {
    text-decoration: underline;
}

.contact-wrapper .cr-form-wrap .rc-submit-button {
    display: flex;
    justify-content: center;
    padding-top: 27px;
}

.contact-wrapper .cr-form-wrap .rc-submit-button button {
    border-radius: 5px;
    background: #215d88;
    font-weight: 700;
    font-size: 14px;
    line-height: 150%;
    color: #fff;
    padding: 7px 24px;
    min-width: 220px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-wrapper .cr-form-wrap .rc-submit-button button:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: translateY(-3px);
}

.modalHead h3 {
	font-weight: 600;
	font-size: 22px;
	line-height: 150%;
	color: #000;
}

.modalHead .btn-close {
    margin-right: 0px;
}

.navbar-right-compt .btn-primary {
    padding: 10px 26px;
}

.navbar-right-compt button img,
.navbar-right-compt a img {
    max-width: 28px;
}

/* ===========================
   Auth / User area in navbar
=========================== */
.nav-username {
    font-size: 14px;
    font-weight: 600;
    color: var(--darkColor);
    white-space: nowrap;
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-logout-btn {
    height: 38px;
    width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--primaryColor);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    font-size: 15px;
    flex-shrink: 0;
}

.nav-logout-btn:hover {
    background-color: var(--darkColor);
    box-shadow: rgba(0, 0, 0, 0.37) 0px 3px 8px;
    transform: translateY(-2px);
}

/* Override absolute positioning for logout icon (accordion li i rule targets chevrons) */
.accordion li.accordion-logout i {
    position: static;
    font-size: inherit;
    color: inherit;
    top: auto;
    left: auto;
}

.mobile-user-info {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: var(--darkColor);
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

/* ===========================
   Page Loader
=========================== */
.page-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    gap: 20px;
}

.page-loader-ring {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}

.page-loader-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 52px;
    height: 52px;
    margin: 6px;
    border: 5px solid transparent;
    border-top-color: var(--primaryColor);
    border-radius: 50%;
    animation: page-loader-spin 1s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.page-loader-ring div:nth-child(1) { animation-delay: -0.3s; }
.page-loader-ring div:nth-child(2) { animation-delay: -0.2s; }
.page-loader-ring div:nth-child(3) { animation-delay: -0.1s; }

@keyframes page-loader-spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.page-loader-text {
    font-size: 16px;
    color: #888;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin: 0;
}

/* ===========================
   Access Denied page
=========================== */
.access-denied-wrapper {
    padding: 100px 0;
}

.access-denied-icon {
    font-size: 72px;
    color: var(--primaryColor);
    margin-bottom: 24px;
    opacity: 0.8;
}

.access-denied-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--darkColor);
    margin-bottom: 16px;
}

.access-denied-text {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.7;
}