 

:root {
    --primary-color: #0094aa;
    --body-color: #3C4040;
    --heading-color: #000000;
    --navbar-height: 100px;
}

/*=== 1. Reset-CSS ===*/
body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: var(--body-color);
    position: relative;
    z-index: 1;
}

.page-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

P:last-child {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 16px;
}

a:focus,
a:hover,
a {
    text-decoration: none;
    outline: none;
}

a {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

img {
    max-width: 100%;
}

.row>div {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1312px;
}

/*=== 2. Button-CSS ===*/
.primary-button {
    background-color: var(--primary-color);
    color: #ffffff;
    display: inline-block;
    border-radius: 6px;
    -webkit-box-shadow: 0px 0px 0px rgba(255, 112, 49, 0);
    box-shadow: 0px 0px 0px rgba(255, 112, 49, 0);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.primary-button:hover {
    color: #ffffff;
}

.primary-button .part {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 15px 30px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.primary-button .back {
    position: absolute;
    top: 100%;
    left: 0%;
    background-color: var(--heading-color);
    color: #ffffff;
}

.primary-button:hover .part {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
}

.primary-button .icon {
    font-size: 80%;
    margin-left: 10px;
}

.primary-button.white .front {
    background-color: #ffffff;
    color: var(--heading-color);
}


/*=== 3. Helper-Class-CSS ===*/
.g-4 {
    --bs-gutter-y: 2rem;
    --bs-gutter-x: 2rem;
}

.section-padding {
    padding-top: 132px;
    padding-bottom: 132px;
}

.section-padding-top {
    padding-top: 132px;
}

.section-padding-bottom {
    padding-bottom: 132px;
}

.mb-n40 {
    margin-bottom: -40px;
}

.z2 {
    z-index: 6 !important;
    position: relative;
}

.single-image {
    margin: 0;
    padding: 0;
    position: relative;
}

.single-image img {
    border-radius: 5px;
}

/*=== 4. Section-Title-CSS ===*/
.section-title {
    margin-bottom: 56px;
}

.section-title .title {
    font-size: 42px;
    margin-bottom: 24px;
    font-weight: 700;
}

.section-title .primary-button {
    margin-top: 48px;
}

.section-title.white-title .title {
    color: #ffffff;
}

.section-title.white-title .desc {
    color: #ffffff;
}

/*=== 6. Preloader-CSS ===*/
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    pointer-events: none;
    z-index: 999;
}

.preloader .load {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--primary-color);
    opacity: 0.1;
}

.preloader .count {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 18vw;
    color: var(--primary-color);
    font-weight: 700;
    text-align: center;
    display: inline-block;
}

/* --- Top-Notification-CSS --- */
.top-notification-bar {
    background-color: var(--primary-color);
    text-align: center;
    color: #ffffff;
    margin: 0;
    border-radius: 0;
}

.top-notification-bar .close-button {
    border: none;
    background: none;
    float: right;
    font-size: 16px;
}

/*=== 8. Mainmenu-CSS ===*/
.mainmenu-area {
    width: 100%;
    z-index: 99;
    right: 0;
    left: 0;
    top: 0;
    position: absolute;
    box-shadow: 0px 25px 55px rgba(0, 0, 0, 0.02);
    background-color: #ffffff;
}

.mainmenu-area .container {
    min-height: var(--navbar-height);
    display: flex;
    align-items: center;
}

.mainmenu-area.sticky {
    position: fixed;
    background-color: #ffffff;
}

.mainmenu-area .nav-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.mainmenu-area .nav-row .nav-logo {
    -webkit-box-flex: 2;
    -ms-flex-positive: 2;
    flex-grow: 2;
    order: 2;
    text-align: center;
    line-height: var(--navbar-height);
}


.mainmenu-area .nav-row .nav-logo .logo {
    display: inline-block;
}

.transparent-light .mainmenu-area:not(.sticky) .nav-row .nav-logo .dark-logo {
    display: none;
}

body:not(.transparent-light) .mainmenu-area .nav-row .nav-logo .light-logo,
.transparent-light .mainmenu-area.sticky .nav-row .nav-logo .light-logo {
    display: none;
}

.transparent-dark .mainmenu-area .nav-row .nav-logo .light-logo {
    display: none;
}

.mainmenu-area .nav-actions {
    display: flex;
    align-items: center;
}

.mainmenu-area .nav-actions .primary-button {
    border-radius: 0;
    background-color: transparent !important;
    box-shadow: none;
    margin-left: 24px;
}

.mainmenu-area .nav-actions .primary-button:first-child {
    margin-left: 0px;
}

.mainmenu-area .nav-actions .primary-button .part {
    padding: 0;
    width: 32px;
    height: 40px;
    font-size: 32px;
    background-color: transparent;
    color: var(--heading-color);
}

.mainmenu-area .nav-actions .primary-button .back {
    background-color: transparent;
    color: var(--primary-color);
}

.mainmenu-area .nav-actions.right-actions {
    order: 4;
    justify-content: flex-end;
}

.ls-bar {
    font-size: 80%;
}

.mainmenu-area .nav-actions .primary-button.menu-toggle {
    display: none;
}

.mainmenu-area .nav-row .menu-items {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 8;
}

.mainmenu-area .nav-row .menu-items ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mainmenu-area .nav-row .menu-items ul li {
    position: relative;
}

.mainmenu-area .nav-row .menu-items ul li a {
    color: var(--heading-color);
    display: inline-block;
}

.mainmenu-area .nav-row .menu-items ul li>a.active,
.mainmenu-area .nav-row .menu-items ul li:hover>a {
    color: var(--primary-color);
    text-shadow: 0 0 1px var(--primary-color);
}

.mainmenu-area .nav-row .menu-items>ul {
    display: flex;
    justify-content: center;
    margin: 0 -20px;
}

.mainmenu-area .nav-row .menu-items>ul>li {
    padding: 0 20px;
    display: flex;
    align-items: center;

}

.mainmenu-area .nav-row .menu-items>ul>li>a {
    line-height: var(--navbar-height);
}

.mainmenu-area .nav-row .menu-items ul li>.plus {
    width: 12px;
    height: 24px;
    position: relative;
    cursor: pointer;
    margin-top: 3px;
    margin-left: 8px;
}

.mainmenu-area .nav-row .menu-items ul li li>.plus {
    float: right;
}

.mainmenu-area .nav-row .menu-items ul li>.plus:before,
.mainmenu-area .nav-row .menu-items ul li>.plus:after {
    /* content: "";  */
    width: 12px;
    height: 2px;
    display: block;
    background-color: var(--heading-color);
    position: absolute;
    left: calc(50% - 6px);
    top: calc(50% - 2px);
    transition: 0.5s;
}

.mainmenu-area .nav-row .menu-items ul li>a.active~.plus:before,
.mainmenu-area .nav-row .menu-items ul li>a.active~.plus:after,
.mainmenu-area .nav-row .menu-items ul li:hover>.plus:before,
.mainmenu-area .nav-row .menu-items ul li:hover>.plus:after {
    background-color: var(--primary-color);
}

.mainmenu-area .nav-row .menu-items ul li>.plus:before {
    transform: rotate(90deg);
}

.mainmenu-area .nav-row .menu-items ul li.menu-open>.plus:before {
    transform: rotate(0deg);
}


.mainmenu-area .nav-search {
    order: 3;
    display: flex;
    width: 250px;
}

.mainmenu-area .nav-row .menu-items {
    flex-grow: 2;
    justify-content: flex-start;
    align-items: center;
}

.mainmenu-area .nav-search {
    flex-grow: 2;
    justify-content: center;
    align-items: center;
}

.mainmenu-area .nav-actions.left-actions {
    display: none;
}

/*=== 9. Sub-Menu-CSS ===*/
.mainmenu-area .nav-row .menu-items li ul {
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #ffffff;
    border-radius: 4px;
    padding: 16px 0;
    transition: 0.5s;
    transform: scaleY(0);
    transform-origin: top left;
    z-index: 2;
    box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.1);
    opacity: 0;
}

.mainmenu-area .nav-row .menu-items li ul ul {
    left: 100%;
    top: 0;
}

.mainmenu-area .nav-row .menu-items li.menu-open>ul {
    transform: scaleY(1);
    opacity: 1;
}

.mainmenu-area .nav-row .menu-items>ul ul.over-items {
    display: grid;
    grid-template-columns: auto auto;
}

.mainmenu-area .nav-row .menu-items>ul ul li {
    padding: 6px 24px;
    min-width: 250px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.mainmenu-area .nav-row .menu-items>ul ul li a {
    color: #131313;
}


.transparent-light .mainmenu-area:not(.sticky) {
    --heading-color: #ffffff;
}

/* Nav-Search-Form */
.nav-search-form {
    background-color: #aed8d8;
    overflow: hidden;
    border-radius: 100px;
    display: flex;
    align-items: center;
}

.nav-search-form .type-input {
    border: none;
    background: none;
    outline: none;
    padding: 5px 24px;
    padding-right: 0;
    height: 48px;
    background-color: transparent;
    width: 202px;
    transition: 0.5s;
}

.nav-search-form button {
    width: 48px;
    height: 48px;
    border: none;
    background: none;
}

.nav-search-form button:hover {
    color: var(--heading-color);
}

/* -- Header-Area-CSS -- */
.header-area {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    z-index: 1;
}

.header-content .top-title {
    background-color: #ffffff;
    padding: 8px 15px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 100px;
    margin-bottom: 24px;
}

.header-content .top-title span {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 22px;
}

.header-content .main-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
}

.header-content .desc {
    margin-bottom: 56px;
}

.header-image {
    margin: 0;
    text-align: center;
    background-position: center;
    background-size: contain;
    background-attachment: scroll;
    background-repeat: no-repeat;
    padding: 0 80px;
    line-height: 0;
    position: relative;
    z-index: 1;
}

.header-area .scrollDown {
    position: absolute;
    right: 0;
    left: 0;
    bottom: -30px;
    margin: auto;
    width: 48px;
    height: 60px;
    line-height: 60px;
    border-radius: 100px;
    background-color: #ffffff;
    text-align: center;
    color: #aed8d8;
    font-size: 30px;
    -webkit-box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
    ;
}

.header-tooltip {
    position: absolute;
    right: 0;
    top: 18%;
    width: 96px;
    background-color: #aed8d8;
    color: #ffffff;
    border-radius: 100px;
    padding: 6px;
    z-index: 1;
}

.header-tooltip .icon {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
}

.header-tooltip .path svg {
    fill: currentColor;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.7px;
}

.wave-effect {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
    width: 30px;
    height: 30px;
}


.wave-effect span {
    width: 100%;
    height: 100%;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.3);
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 200px;
    -webkit-animation-name: wave;
    animation-name: wave;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.wave-effect span:nth-child(1) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.wave-effect span:nth-child(2) {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.wave-effect span:nth-child(3) {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.wave-effect span:nth-child(4) {
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
}

@-webkit-keyframes wave {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
        border-width: 1px;
    }

    100% {
        -webkit-transform: scale(2.6);
        transform: scale(2.6);
        opacity: 0;
        border-width: 0px;
    }
}

@keyframes wave {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
        border-width: 1px;
    }

    100% {
        -webkit-transform: scale(2.6);
        transform: scale(2.6);
        opacity: 0;
        border-width: 0px;
    }
}


.jump-anime {
    -webkit-animation: jumps 1s linear 2s infinite alternate;
    animation: jumps 1s linear 2s infinite alternate;
    display: block;
}


@-webkit-keyframes jumps {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    50% {
        -webkit-transform: translateY(5px);
        transform: translateY(5px);
    }

    100% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }
}


@keyframes jumps {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    50% {
        -webkit-transform: translateY(5px);
        transform: translateY(5px);
    }

    100% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }
}

/* -- Feature-Area-CSS -- */
.feature-box {
    background-color: #F7F7F7;
    padding: 30px;
    border-radius: 6px;
    text-align: center;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-box-shadow: 0px 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0px 0 0 rgba(0, 0, 0, 0);
}

.feature-box:hover {
    background-color: #ffffff;
    -webkit-box-shadow: 0px 25px 45px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 25px 45px rgba(0, 0, 0, 0.08);
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}

.feature-box .icon {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--primary-color);
    line-height: 1em;
}

.feature-box.color-1 .icon {
    color: #aed8d8;
}

.feature-box.color-2 .icon {
    color: #5438FD;
}

.feature-box.color-3 .icon {
    color: #3CB868;
}

.feature-box.color-4 .icon {
    color: #FDA800;
}

.feature-box .title {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

/* -- Vison-Area-CSS-- */
.vision-area {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.single-figcaption img {
    border-radius: 6px;
    width: 100%;
}


.single-figcaption.black-white img {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}


.single-figcaption {
    text-align: center;
    margin: 0;
}

.single-figcaption figcaption {
    font-size: 24px;
    font-weight: 700;
    margin-top: 24px;
    color: var(--heading-color);
}

.check-list {
    list-style: none;
    margin: 0px 0;
    padding: 0;
}

.check-list li {
    margin: 10px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.check-list li:before {
    content: "\e92a";
    font-family: 'landshop';
    margin-right: 12px;
    color: #aed8d8;
}

.feature-blog {
    padding: 40px;
    border-radius: 6px;
    background: -webkit-gradient(linear, left top, right top, from(#CEE3E3), color-stop(79.7%, #E3F4F4), to(#E8F9F9));
    background: -o-linear-gradient(left, #CEE3E3 0%, #E3F4F4 79.7%, #E8F9F9 100%);
    background: linear-gradient(90deg, #CEE3E3 0%, #E3F4F4 79.7%, #E8F9F9 100%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.feature-blog.color-2 {
    background: -webkit-gradient(linear, left top, right top, from(#EEE6D4), to(#F1EADD));
    background: -o-linear-gradient(left, #EEE6D4 0%, #F1EADD 100%);
    background: linear-gradient(90deg, #EEE6D4 0%, #F1EADD 100%);
}

.feature-blog .image {
    min-width: 160px;
    margin: 0;
}

.feature-blog .content {
    max-width: 320px;
}

.feature-blog .title {
    font-size: 26px;
    margin-bottom: 24px;
    font-weight: 300;
    line-height: 1.5em;
}

.feature-blog .content a {
    color: var(--body-color);
    font-weight: 400;
}

.feature-blog .content a:hover {
    color: var(--primary-color);
}


.actions-area {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
/* -- Counter-Area-CSS -- */
.counter-area {
    background-color: var(--primary-color);
    padding: 100px 0;
    color: #ffffff;
}

.counter-area [class|='col']:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.counter-box {
    text-align: center;
}

.counter-box .icon {
    font-size: 56px;
    display: block;
    margin-bottom: 20px;
    line-height: 1em;
}

.counter-box .label {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 18px;
    font-weight: 400;
}

/* -- Security-Area-CSS -- */
.feature-box-2 {
    background-color: #aed8d8;
    padding: 30px;
    border-radius: 12px;
}

.feature-box-2 .icon {
    width: 56px;
    height: 56px;
    text-align: center;
    line-height: 56px;
    font-size: 30px;
    background-color: var(--primary-color);
    border-radius: 6px;
    color: #ffffff;
    margin-bottom: 16px;
}

.feature-box-2 .title {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.feature-box-2.color-1 .icon {
    background-color: #aed8d8;
}

.feature-box-2.color-2 .icon {
    background-color: #5438FD;
}

.feature-box-2.color-3 .icon {
    background-color: #3CB868;
}

.feature-box-2.color-4 .icon {
    background-color: #FDA800;
}

/* -- Product-Area-CSS -- */

.product-box .thumb {
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
    text-align: center;
    padding: 60px 30px;
    background-color: #fafafa;
}

.product-box .thumb .primary-button {
    position: absolute;
    left: 24px;
    bottom: 24px;
    width: calc(100% - 48px);
    text-align: center;
    opacity: 0;
}

.product-box:hover .thumb .primary-button {
    opacity: 1;
}

.product-box .title {
    font-size: 24px;
    margin-bottom: 8px;
}

.product-box .title a {
    color: var(--heading-color);
    display: inline-block;
}

.product-box .title a:hover {
    color: var(--primary-color);
}

.product-box .price .regular {
    text-decoration: line-through;
}

/* -- Testimonial-Area-CSS -- */
.testimonial-area {
    background-color: #aed8d8;
}

.carousel {
    width: calc(100% - 100px) !important;
    max-width: 570px;
    margin: 40px auto;
    position: relative;
    border-radius: 100%;
    border: 1px dashed rgba(84, 65, 253, 0.2);
    z-index: 1;
}

.carousel::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 60%;
    height: 60%;
    border: 1px dashed rgba(84, 65, 253, 0.2);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 100%;
    z-index: -1;
}

.carousel .carousel__item {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-animation:
        20s move-x 5s linear infinite,
        20s move-y 5s linear infinite;
    animation:
        20s move-x 5s linear infinite,
        20s move-y 5s linear infinite;
    width: 64px;
    display: block;
    z-index: 2;
    cursor: pointer;
    border-radius: 1000px;
    overflow: hidden;
    padding: 5px;
    background-color: #aed8d8;
    border: 1px dashed rgba(84, 65, 253, 0);
}

.carousel .carousel__item img {
    border-radius: 1000px;
}


.carousel .carousel__item img {
    width: 100%;
}

.carousel .carousel_mid_item {
    display: block;
    z-index: 2;
    cursor: pointer;
    border-radius: 1000px;
    overflow: hidden;
    padding: 5px;
    background-color: #aed8d8;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 150px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    cursor: pointer;
    border: 1px dashed rgba(84, 65, 253, 0);
}

.carousel:hover .carousel__item {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

.carousel .active {
    border: 1px dashed rgba(84, 65, 253, 0.2);
}

@-webkit-keyframes move-x {
    0% {
        left: 0;
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    25% {
        left: 50%;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    50% {
        left: 100%;
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    75% {
        left: 50%;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    100% {
        left: 0%;
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

@keyframes move-x {
    0% {
        left: 0;
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    25% {
        left: 50%;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    50% {
        left: 100%;
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    75% {
        left: 50%;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    100% {
        left: 0%;
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

@-webkit-keyframes move-y {
    0% {
        top: 50%;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    25% {
        top: 0;
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    50% {
        top: 50%;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    75% {
        top: 100%;
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    100% {
        top: 50%;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

@keyframes move-y {
    0% {
        top: 50%;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    25% {
        top: 0;
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    50% {
        top: 50%;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    75% {
        top: 100%;
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    100% {
        top: 50%;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

.testimonial-box .description {
    margin-bottom: 40px;
}

.testimonial-box .profile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 24px;
}

.testimonial-box .profile .thumb {
    width: 64px;
    height: 64px;
    line-height: 0;
    border-radius: 100px;
    overflow: hidden;
    margin-right: 24px;
}

.testimonial-box .profile .name {
    margin-bottom: 3px;
}

.rating-star {
    display: inline-block;
    position: relative;
    color: #FDA800;
    letter-spacing: 5px;
    font-size: 20px;
}

.rating-star .star {
    font-family: 'landshop' !important;
}

.rating-star .star:before {
    content: "\e960 \e960 \e960 \e960 \e960";
}

.rating-star .back {
    opacity: 0.4;
}

.rating-star .front {
    position: absolute;
    left: 0;
    top: 0px;
    white-space: nowrap;
    overflow: hidden;
    width: 70%;
    z-index: 2;
}



/*=== 17. Footer-CSS ===*/
.footer-area {
    background-color: #170B37;
    color: rgba(255, 255, 255, 0.7);
    --body-color: rgba(255, 255, 255, 0.7);
    --heading-color: rgba(255, 255, 255, 1);
}

.footer-area .section-padding {
    padding: 80px 0;
}

.footer-widget .footer-logo {
    display: inline-block;
    margin-bottom: 22px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    text-align: center;
}

.social-menu {
    list-style: none;
    margin: -10px;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.social-menu li a {
    width: 48px;
    height: 48px;
    line-height: 48px;
    display: inline-block;
    text-align: center;
    background-color: #ffffff;
    color: var(--body-color);
    border-radius: 100px;
    margin: 10px;
    -webkit-box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.05);
}

.social-menu li:hover a {
    background-color: var(--primary-color);
    color: #ffffff;
}

.footer-area .social-menu li a {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.footer-area .social-menu li a:hover {
    background-color: var(--primary-color);
}

.footer-widget .desc {
    margin-bottom: 24px;
}

.footer-widget .widget-title {
    margin-bottom: 24px;
}

.block-list {
    list-style: none;
    margin: -8px 0;
    padding: 0;
}

.block-list li {
    display: block;
}

.block-list li a {
    color: var(--body-color);
    display: inline-block;
    margin: 8px 0;
}

.block-list li:hover a {
    color: var(--primary-color);
}

.input-control {
    background-color: #ffffff;
    border: none;
    border-radius: 4px;
    display: inline-block;
    padding: 15px 24px;
    font-weight: 400;
    outline: none;
    line-height: 1.445em;
    -webkit-box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.05);
}

.subscribe-form .input-control {
    width: calc(100% - 66px);
    padding-left: 44px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.subscribe-form {
    position: relative;
    z-index: 1;
}

.subscribe-form .ls-envelope {
    position: absolute;
    left: 16px;
    top: 14px;
    z-index: 2;
}

.subscribe-form button[type="submit"] {
    width: 56px;
    height: 56px;
    font-size: 20px;
    text-align: center;
    line-height: 56px;
    border-radius: 4px;
    border: none;
    background-color: var(--primary-color);
    color: #ffffff;
    float: right;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-box-shadow: 0 0 0 rgba(255, 107, 49, 0.3);
    box-shadow: 0 0 0 rgba(255, 107, 49, 0.3);
}

.subscribe-form button[type="submit"]:hover {
    background-color: #ffffff;
    color: var(--primary-color);
    -webkit-box-shadow: 0px 5px 15px rgba(255, 107, 49, 0.1);
    box-shadow: 0px 5px 15px rgba(255, 107, 49, 0.1);
}

.subscribe-form .mc-error {
    position: absolute;
    left: 0;
    top: 100%;
    padding-top: 10px;
}











/** custom */

.text-justify
{
    text-align: justify;
}

.section-padding-miclast {
  padding-top: 60px;
  padding-bottom: 60px; 
}

.section-padding-miclast2060 {
  padding-top: 20px;
  padding-bottom: 60px; 
}

div.testointroduttivo
{
   padding-top: 20px;
    
}
div.testointroduttivo a
{
   color: var(--primary-color);
    
}

.border-padding-miclast {
  
  border-top: 5px solid var(--primary-color);
}
 .section-padding-miclast-acquista
 {
     padding-top: 30px;
  padding-bottom: 30px;
 }

.feature-box {
  background-color: #fff!important;
}  


.mainmenu-area .nav-row .nav-logo {
 
  text-align: right;
}  


.section-title .title {
  font-size: 37px;
  margin-bottom: 24px;
  font-weight: 600;
}


div.miclast-video
{
        height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    padding-top: 30px;
    position: relative;
    margin-bottom: 40px;
}

.miclast-video iframe, .miclast-video object, .miclast-video embed {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

 

.cookietable tr td
{
    border: 1px solid #050505;
        padding: 10px;
}

.footer-area {
 
  color: #000;
  --body-color: #000;
  --heading-color: #000;
  background-color: #0094aa;
}


.text-black, .text-black p, .text-black a, .text-black h5
{
    color: #ffffff;
}

.footer-area .section-padding {
  padding: 60px 0 30px;
}


 

.footer-bottom {
  border-top: 2px solid #aed8d8;
}


.sfondobasso
{
    
     background: #ffffff  url("../../assets/images/sfondobasso.png")   bottom no-repeat;
     background-size: 100%;
     border-bottom: 20px solid #0094aa;
     padding-bottom: 152px;
}

.sfondobasso.nobordertop
{
    padding-bottom: 152px;
}
    

.sfondoalto
{
    
     background: #ffffff url("../../assets/images/sfondoalto.png")   top  no-repeat;
     background-size: 100%;
    /* border-top: 20px solid #d6eef1; */     
     padding-top: 180px;
}

.sfondoazzurrino
{
    background: #d6eef1 top  no-repeat;
    background-size: 100%;
}

.sfondopuntini
{
    
  /*   background: transparent url("../../assets/images/sfondopuntini.png")   top  no-repeat;
     background-size: 100%; */
      
}

.anchor {
    display:block;
    padding-top:100px;
    margin-top:-100px;
 }

.text-white
{
    color: #ffffff;
}
.text-white a
{
    color: #aed8d8;
}


.mb-20
{
    margin-bottom:20px;
}
.mt-20
{
    margin-top:20px;
}

.mb-40
{
    margin-bottom:40px;
}
.mt-40
{
    margin-top:40px;
}

div.copyrights p, div.footer-nav-wrap p, div.desc p, div.desc ul li, div.desc ol li, p.text-justify
{
    font-size: 16px;
}

.cookie-table tr td
{
    border: 1px solid #050505;
        padding: 10px;
}

.table-container {
    width: 100%; /* Imposta la larghezza del contenitore */
    overflow-x: auto; /* Permette lo scroll orizzontale se necessario */
    -webkit-overflow-scrolling: touch; /* Ottimizza lo scroll su dispositivi touch */
}


.mainmenu-area .nav-row .menu-items ul li>.plus span.ls-angle-right {
    color: var(--primary-color);
}

.mainmenu-area .nav-row .menu-items ul li > .plus
{
    margin-top:0;
} 




.productShippingModal .modal-dialog {
  max-width: 900px;
  margin: 0 auto;
}

.productShippingModal .modal-content {
  border: none;
  padding: 40px;
  border-radius: 0;
}

.productShippingModal .modal-content button.close {
  position: absolute;
  right: 0;
  top: 0;
  outline: 0;
  opacity: 1;
  color: #222222;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  line-height: 35px;
  padding: 0;
  margin: 0;
  font-size: 20px;
  width: 35px;
  text-shadow: unset;
  height: 35px;
}

.productShippingModal .modal-content button.close:hover {
  background-color: red;
  color: #ffffff;
}

.productShippingModal .modal-content .shipping-content h3 {
  font-size: 18px;
  margin-bottom: 15px;
  margin-top: 30px;
}

.productShippingModal .modal-content .shipping-content h3:first-child {
  margin-top: 0;
}

.productShippingModal .modal-content .shipping-content ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.productShippingModal .modal-content .shipping-content ul li {
  margin-bottom: 12px;
  color: #666666;
  position: relative;
  padding-left: 11px;
}

.productShippingModal .modal-content .shipping-content ul li::before {
  content: '';
  position: absolute;
  top: 7px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #222222;
}

.productShippingModal .modal-content .shipping-content ul li:last-child {
  margin-bottom: 0;
}

.productShippingModal .modal-content
{

        padding: 70px 50px;
    border-radius: 5px;
    border: 4px solid  var(--primary-color);;
    box-shadow: 0px 10px 25px 4px rgb(2 2 2 / 50%);
    background-color: rgba( 255, 255, 255, 1.00 );
    
}    

.productShippingModal .modal-content button.close {
  position: absolute;
  height: 28px;
  width: 28px;
  left: auto;
  right: 8px;
  bottom: auto;
  top: 8px;
  padding: 4px;
  color: #ffffff;
  font-family: Times New Roman;
  font-weight: 100;
  font-size: 20px;
  line-height: 20px;
  border: 1px none #ffffff;
  border-radius: 42px;
  box-shadow: 0px 0px 0px 0px rgba( 2, 2, 2, 0.23 );
  text-shadow: 0px 0px 0px rgba( 0, 0, 0, 0.23 );
  background-color: var(--primary-color);
}

.productShippingModal .modal-content .shipping-content h3  {
    font-size:  26px;
    text-align: center;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 40px;
}

.productShippingModal .modal-content .shipping-content p  {
    font-size:  17px;
    text-align: center;
    color: #000000; 
    margin-bottom: 10px;
}


.productShippingModal .modal-dialog {
    max-width: 1200px;
    margin: 0 auto;
}

.modal-footer
{
    text-align: center;
}

.modalsecondario, .modalsecondario:hover
{
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  color: var(--primary-color);
  background: #fff;
  border: 4px solid var(--primary-color);
    padding: 15px 15px;
    width: 250px;
    margin: 20px;
    height: 60px;
    white-space: nowrap;
    margin-left: 25px;
    margin-right: 25px;
    line-height: 110%;
}


.modalprimario, .modalprimario:hover
{
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    color: #fff;
    background: var(--primary-color);
    border: 4px solid var(--primary-color);
    padding: 15px 15px;
    width: 250px;
    margin: 20px;
    height: 60px;
    white-space: nowrap;
    line-height: 110%;
      margin-left: 25px;
    margin-right: 25px;
}

.shipping-content
{
    text-align: center;
}


button.close span span.ls-close-line
{
    font-size: 17px;
}

/* Responsive styles for tablets and smaller devices */
@media (max-width: 768px) {
    .cookie-table, .cookie-table thead, .cookie-table tbody, .cookie-table th, .cookie-table td, .cookie-table tr {
        display: block;
    }

    .cookie-table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .cookie-table tr { border: 1px solid #ccc; }

    .cookie-table td {
        /* Make table cells behave like rows */
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
        text-align: right;
    }

    .cookie-table td:before {
        /* Now like a table header */
        position: absolute;
        top: 6px;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        font-weight: bold;
        content: attr(data-label);
    }

    .cookie-table td:last-child {
        border-bottom: 0;
    }
    
     .cookie-table td:first-child, .cookie-table th:first-child {
        font-weight: bold; /* Imposta il grassetto per la prima colonna */
        color: #0094aa;
    }
}

 
/* === Blog-Pages-CSS === */
.blog-box {
    border-radius: 8px;
    -webkit-box-shadow: 0px 4px 45px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 4px 45px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    background-color: #ffffff;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
/*
.blog-box:hover {
    background-color: #FFF5F2;
}
*/
.blog-box .thumb {
    margin: 0;
}

.blog-box .content {
    padding: 30px;
    min-height: 235px;
    display: block;
 
}

.blog-box .content .title {
    font-size: 32px;
}

.blog-box .content .title a {
    color: var(--heading-color);
}

.blog-box .content .title a:hover {
    color: var(--primary-color);
}

.meta {
    list-style: none;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 32px -15px -15px -15px;
}

.blox-box .meta {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.meta li {
    margin: 0 15px 15px 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.meta li .icon {
    color: var(--primary-color);
    margin-right: 8px;
}

/** custom */ 