@charset "UTF-8";
/* CSS Document */

:root {
    --white: #ffffff;
    --black: #000000;
    --light-green: #69a46c;
    --light-green-op-85: rgba(106, 164, 109, 0.85);
    --dark-green: #0f3e4b;
    --gray: #f0f0f2;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Blinker", sans-serif;
    font-weight: 400;
    overflow-x: hidden;
    color: var(--dark-green);
    font-size: 16px;
    background-color: var(--gray);
}

/*per modale*/
html {
    overflow-y: scroll;
}

:focus,
:active,
button:focus,
button:active {
    outline: none !important;
    box-shadow: none !important;
}

:hover {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

img {
    border: none;
}

a {
    text-decoration: none !important;
    color: inherit;
}

a:hover {
    color: inherit;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.clear {
    clear: both;
}

.p-mb-0 p {
    margin-bottom: 0;
}
.last-p-0 > p:last-of-type {
    margin-bottom: 0;
}

.cursor-pointer {
    cursor: pointer;
}

.small,
.small p {
    font-size: 0.875em;
}

.x-small p {
    font-size: 0.775em;
}

.blinker {
    font-family: "Blinker", sans-serif;
}

.gotgam {
    font-family: "sangju-gotgam", sans-serif;
}

.w-fit-content {
    width: fit-content;
}
.w-45 {
    width: 45%;
}
.mw-75 {
    max-width: 75%;
}

.mb-n5 {
    margin-bottom: -3rem;
}

.top-4 {
    top: 1.5rem;
}
.bottom-4 {
    bottom: -1.5rem;
}
.end-4 {
    right: 1.5rem;
}

.bg-opacity-95 {
    --bs-bg-opacity: 0.95;
}

.box-shadow {
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.15);
}

.container-bigger {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "sangju-gotgam", sans-serif;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    margin-bottom: 0;
}
.fs-h1 :is(h1,h2,h3) {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  .fs-h1 :is(h1,h2,h3) {
    font-size: 2.5rem;
  }
}

.fs-h2 :is(h1,h2,h3) {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  .fs-h2 :is(h1,h2,h3) {
    font-size: 2rem;
  }
}

.fs-h3 :is(h1,h2,h3) {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  .fs-h3 :is(h1,h2,h3) {
    font-size: 1.75rem;
  }
}
.h-uppercase :is(h1,h2,h3,h4,h5,h6) {
  text-transform: uppercase !important;
}
:is(.h-my-0, .h-mt-0) :is(h1, h2, h3, h4, h5, h6) {
  margin-top: 0 !important;
}
:is(.h-my-0, .h-mb-0) :is(h1, h2, h3, h4, h5, h6) {
  margin-bottom: 0 !important;
}
:is(.h-my-3, .h-mt-3) :is(h1, h2, h3, h4, h5, h6) {
  margin-top: 1rem !important;
}
:is(.h-my-3, .h-mb-3) :is(h1, h2, h3, h4, h5, h6) {
  margin-bottom: 1rem !important;
}
:is(.h-my-4, .h-mt-4) :is(h1, h2, h3, h4, h5, h6) {
  margin-top: 1.5rem !important;
}
:is(.h-my-4, .h-mb-4) :is(h1, h2, h3, h4, h5, h6) {
  margin-bottom: 1.5rem !important;
}
:is(.h-my-5, .h-mt-5) :is(h1, h2, h3, h4, h5, h6) {
  margin-top: 3rem !important;
}
:is(.h-my-5, .h-mb-5) :is(h1, h2, h3, h4, h5, h6) {
  margin-bottom: 3rem !important;
}
.p-mb p:not(:last-child), .li-mb li { margin-bottom: 1rem; }
.p-mb p:last-child { margin-bottom: 0; }
.p-mb-0 p {
  margin-bottom: 0;
}

/*  */
/*  */
/*  */
/*  */
/* BUTTON */
.btn.no-hvr:hover {
    cursor: default !important;
}

.btn-outline-white {
    border: 1px solid var(--white);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    background-color: transparent;
    font-weight: 600;
}
.btn-outline-white:hover,
.btn-outline-white:focus,
.btn-outline-white:focus-visible,
.btn-outline-white:focus-within {
    color: var(--light-green);
    background-color: var(--white);
}

.btn-outline-light-green {
    border: 1px solid var(--light-green);
    color: var(--dark-green);
    padding: 0.5rem 1.5rem;
    background-color: transparent;
    font-weight: 600;
}
.btn-outline-light-green:hover,
.btn-outline-light-green:focus,
.btn-outline-light-green:focus-visible,
.btn-outline-light-green:focus-within {
    color: var(--white);
    background-color: var(--light-green);
}

.page-item .page-link,
.btn-circle-outline-green,
.btn-circle-outline-green.no-hvr:hover {
    flex: 46px 0 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--light-green);
    background: var(--white);
    color: var(--light-green);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.3s ease-in-out;
}
.page-item .page-link:hover,
.page-item .page-link:active,
.page-item .page-link:focus,
.page-item .page-link:focus-visible .page-item .page-link:focus-within,
.btn-circle-outline-green:hover,
.btn-circle-outline-green:focus,
.btn-circle-outline-green:focus-visible,
.btn-circle-outline-green:focus-within {
    background: var(--light-green);
    color: var(--white);
}
.btn-circle-outline-green.other-pages {
    flex: 30px 0 0;
    width: 30px;
    height: 30px;
    background-color: var(--gray);
}

.btn-circle-solid-green {
    flex: 30px 0 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--light-green);
    background: var(--light-green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
/* END BUTTON */
/*  */
/*  */
/*  */
/* TEXT COLOR & BORDER */
.text-light-green {
    color: var(--light-green);
}
.text-dark-green {
    color: var(--dark-green) !important;
}
.border-dark-green {
    border-color: var(--dark-green) !important;
}
.border-light-green {
    border-color: var(--light-green) !important;
}
.border-gradient-green {
    border-bottom: 8px solid transparent;
    border-image: linear-gradient(
            to right,
            var(--light-green),
            var(--dark-green)
        )
        1;
}
/* END TEXT */
/*  */
/*  */
/*  */
/* BACKGROUND */
.bg-gray {
    background-color: var(--gray);
}
.bg-dark-green {
    background-color: var(--dark-green);
}
.bg-light-green {
    background-color: var(--light-green);
}
.bg-light-green-op-85 {
    background-color: var(--light-green-op-85);
}
.bg-gradient-green {
    background-image: linear-gradient(
        117deg,
        var(--light-green),
        var(--dark-green)
    );
}
/* END BACKGROUND */
/*  */
/*  */
/*  */
/* HOVER */
.hvr-underline {
    transition: all 0.3s ease-in-out;
}
.hvr-underline:hover {
    text-decoration: underline !important;
}
.hvr-to-right .target-to-right {
    transform: scale(1.05) translateX(-6px);
    transition: all 0.3s ease-in-out;
}
.hvr-to-right:hover .target-to-right {
    transform: scale(1.05) translateX(0);
}
.hvr-bg-light-green:hover .btn-circle-outline-green {
    background-color: var(--light-green);
    color: var(--white);
}
/* END HOVER */
/*  */
/*  */
/*  */
/* LISTE */
.list-custom ul {
    list-style-type: none;
    padding-left: 0;
}
.list-minus li::before {
    content: "-";
    padding-right: 0.5rem;
}
.list-border li {
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
    padding: 0.5rem 1rem;
    margin: 0.5rem 0;
}
/* END LISTE */
/*  */
/*  */
/*  */
/* HEADER */
.navbar-brand {
    max-width: 220px;
}
/* END HEADER */
/*  */
/*  */
/*  */
/* SWIPER */
.swiperTestata .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 1rem;
    top: auto;
}
.swiper .swiper-pagination-bullet {
    width: 50px;
    height: 4px;
    border-radius: 0;
    background: var(--dark-green);
    opacity: 1;
}
.swiperTestata .swiper-pagination-bullet {
    background: var(--white);
}
.swiper .swiper-pagination-bullet-active {
    background: var(--light-green);
}
.swiper-pagination-bullets > .swiper-pagination-bullet:first-child {
    margin-left: 0;
}
.swiper-pagination-bullets > .swiper-pagination-bullet:last-child {
    margin-right: 0;
}
/* END SWIPER */
/*  */
/*  */
/*  */
/* TESTATA */
.breadcrumb {
    margin-bottom: 0;
}
.breadcrumb-item.active {
    color: var(--white);
}
.breadcrumb-item.active {
    font-weight: 500;
    color: var(--white);
}
.breadcrumb-item + .breadcrumb-item::before {
    color: var(--white);
    content: var(--bs-breadcrumb-divider, "-");
}
/* END TESTATA */
/*  */
/*  */
/*  */
/* FORM */
.form-control {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--black);
}
.form-control:focus {
    box-shadow: 0 5px 5px -4px var(--light-green) !important;
    border-color: var(--black);
}
.form-check-input {
    cursor: pointer;
}
.form-check-input:focus {
    border-color: var(--light-green);
}
.form-check-input[type="checkbox"] {
    border-radius: 0;
}
.form-check-input:checked {
    background-color: var(--light-green);
    border-color: var(--light-green);
}
textarea.form-control {
    height: 37px;
}
.form-group > div:not(.item-checkbox):not(:last-child) {
    position: relative;
}
.form-group > div:not(.item-checkbox):not(:last-child)::before {
    content: "";
    background-color: var(--black);
    width: 1px;
    height: 8px;
    display: block;
    position: absolute;
    left: 0.5rem;
    bottom: 0;
}
.form-contatti .form-group {
    justify-content: center;
}
/* END FORM */
/*  */
/*  */
/*  */
/* ACCORDION */
.accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
}
.accordion-button:not(.collapsed) .btn-circle-outline-green {
    background-color: var(--light-green);
    color: white;
}
.accordion-button::after {
    display: none;
}
.accordionHome .accordion-button.collapsed,
.accordionHome .accordion-button.collapsing {
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}
.accordionHome .accordion-body {
    border-bottom: 8px solid var(--light-green);
}
.accordionOfferte .accordion-button:not(.collapsed) {
    font-size: calc(1.275rem + 0.3vw);
    font-weight: 600;
    padding-top: 1.5rem !important;
}
/* END ACCORDION */
/*  */
/*  */
/*  */
.link-item:hover .btn-circle-outline-green {
    background-color: var(--light-green);
    color: white;
}
#offerte-tab .nav-link.active,
#offerte-tab .nav-link:focus,
#offerte-tab .nav-link:focus-visible,
#offerte-tab .nav-link:focus-within {
    font-size: 1.5rem;
    font-weight: 600;
    border: none !important;
    border-bottom: 8px solid transparent !important;
    border-image: linear-gradient(
            to right,
            var(--light-green),
            var(--dark-green)
        )
        1 !important;
    box-shadow: var(--bs-box-shadow-lg) !important;
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}
#offerte-tab .nav-link:not(.active) .btn {
    display: none;
}
.overlay-video > div:first-child {
    box-sizing: content-box;
    width: 65px;
    height: 65px;
    border-width: 10px !important;
}
.team-foto {
    width: 165px;
    height: 165px;
    transform: translateY(50%);
}
.paginationx .flex-fill {
    justify-content: center;
}
.paginationx .flex-sm-fill {
    justify-content: end;
}
.paginationx .flex-sm-fill .pagination {
    column-gap: 0.5rem;
}
.paginationx .pagination .page-item[aria-label="« Prec."],
.paginationx .pagination .page-item [aria-label="« Prec."],
.paginationx .pagination .page-item[aria-label="Succ. »"],
.paginationx .pagination .page-item [aria-label="Succ. »"] {
    display: none;
}
.paginationx .pagination .page-item:not(.active) {
    transform: scale(0.7);
}
.page-item:first-child .page-link,
.page-item:last-child .page-link {
    border-radius: 50%;
    width: 65px;
    height: 65px;
}
/* error 404 */
.error-container {
    text-align: center;
    font-size: 106px;
    font-weight: 800;
    margin: 70px 15px;
}
@media (max-width: 575.98px) {
    .error-container {
        row-gap: 85px;
    }
}

.error-container > span {
    display: inline-block;
    position: relative;
}

.error-container > span.four {
    width: 136px;
    height: 43px;
    border-radius: 999px;
    background: linear-gradient(
            140deg,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(0, 0, 0, 0.07) 43%,
            transparent 44%,
            transparent 100%
        ),
        linear-gradient(
            105deg,
            transparent 0%,
            transparent 40%,
            rgba(0, 0, 0, 0.06) 41%,
            rgba(0, 0, 0, 0.07) 76%,
            transparent 77%,
            transparent 100%
        ),
        linear-gradient(to right, #0f3e4b, #4d8a58, #69a46c);
}

.error-container > span.four:before,
.error-container > span.four:after {
    content: "";
    display: block;
    position: absolute;
    border-radius: 999px;
}

.error-container > span.four:before {
    width: 43px;
    height: 156px;
    left: 60px;
    bottom: -43px;
    background: linear-gradient(
            128deg,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(0, 0, 0, 0.07) 40%,
            transparent 41%,
            transparent 100%
        ),
        linear-gradient(
            116deg,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(0, 0, 0, 0.07) 50%,
            transparent 51%,
            transparent 100%
        ),
        linear-gradient(to top, #0f3e4b, #2e5f55, #4d8065, #5c976e, #69a46c);
}

.error-container > span.four:after {
    width: 137px;
    height: 43px;
    transform: rotate(-49.5deg);
    left: -18px;
    bottom: 36px;
    background: linear-gradient(
        to top,
        #0f3e4b,
        #2e5f55,
        #4d8065,
        #5c976e,
        #69a46c
    );
}

.error-container > span.zero {
    vertical-align: text-top;
    width: 156px;
    height: 156px;
    border-radius: 999px;
    background: linear-gradient(
            -45deg,
            transparent 0%,
            rgba(0, 0, 0, 0.06) 50%,
            transparent 51%,
            transparent 100%
        ),
        linear-gradient(
            to top right,
            #0f3e4b,
            #0f3e4b,
            #2e5f55,
            #4d8065,
            #5c976e,
            #69a46c,
            #69a46c
        );
    overflow: hidden;
    animation: bgshadow 5s infinite;
}

.error-container > span.zero:before {
    content: "";
    display: block;
    position: absolute;
    transform: rotate(45deg);
    width: 90px;
    height: 90px;
    background-color: transparent;
    left: 0px;
    bottom: 0px;
    background: linear-gradient(
            95deg,
            transparent 0%,
            transparent 8%,
            rgba(0, 0, 0, 0.07) 9%,
            transparent 50%,
            transparent 100%
        ),
        linear-gradient(
            85deg,
            transparent 0%,
            transparent 19%,
            rgba(0, 0, 0, 0.05) 20%,
            rgba(0, 0, 0, 0.07) 91%,
            transparent 92%,
            transparent 100%
        );
}

.error-container > span.zero:after {
    content: "";
    display: block;
    position: absolute;
    border-radius: 999px;
    width: 70px;
    height: 70px;
    left: 43px;
    bottom: 43px;
    background: #fdfaf5;
    box-shadow: -2px 2px 2px 0px rgba(0, 0, 0, 0.1);
}

.screen-reader-text {
    position: absolute;
    top: -9999em;
    left: -9999em;
}

@keyframes bgshadow {
    0% {
        box-shadow: inset -160px 160px 0px 5px rgba(0, 0, 0, 0.4);
    }

    45% {
        box-shadow: inset 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
    }

    55% {
        box-shadow: inset 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
    }

    100% {
        box-shadow: inset 160px -160px 0px 5px rgba(0, 0, 0, 0.4);
    }
}
