/* --------------------------------------------------------------
# General
-------------------------------------------------------------- */
/* line 4, ../scss/_general.scss */
body {
    font-family: "Montserrat", sans-serif;
    color: #212529;
    background-color: #FFFFFF;
}

.text-primary {
    color: #219baf !important;
}

.bg-primary {
    background-color: #145962 !important;
}

/* line 9, ../scss/_general.scss */
a {
    text-decoration: none;
    color: #219baf;
}

/* line 14, ../scss/_general.scss */
a:hover {
    color: #145962;
    text-decoration: none;
}

/* line 19, ../scss/_general.scss */
h1,
h2,
h3,
h4,
h5,
h6,
.font-primary {
    font-family: "Montserrat", sans-serif;
    color: #219baf;
}

/* line 23, ../scss/_general.scss */
h6 {
    color: #219baf;
}

/* line 27, ../scss/_general.scss */
.pink-icons {
    color: #f17641;
}

/* line 33, ../scss/_general.scss */
#c-submit-button {
    background-color: #219baf !important;
    padding: 10px !important;
    border-radius: 8px !important;
}

/* line 40, ../scss/_general.scss */
.small-text {
    font-size: small;
    line-height: 1.2;
}

/* line 45, ../scss/_general.scss */
button {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 30px;
    border-radius: 50px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    margin: 10px;
    border: none;
    color: #fff;
    background: #219baf;
}

/* line 58, ../scss/_general.scss */
button:hover {
    background: #145962;
}

/*-------------------------------------------------------------- # Top Bar --------------------------------------------------------------*/
#topbar {
    visibility: hidden;
}

/*-------------------------------------------------------------- # Header --------------------------------------------------------------*/
#header {
    background: rgba(255, 255, 255, 0.75);
    transition: all 0.5s;
    z-index: 997;
    padding: 15px 0;
    top: 0px;
}

#header.header-scrolled {
    top: 0;
    background: rgba(221, 221, 221, .9);
}

#header .logo {
    font-size: 32px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

#header .logo a {
    color: #fff;
}

#header .logo img {
    max-height: 60px;
}

#header .logo img path {
    fill: white !important;
}

@media (max-width: 992px) {
    #header {
        top: 0;
        padding: 15px 0;
        background: transparent;
    }

    #header .logo {
        font-size: 28px;
    }

    #header .logo img {
        max-height: 50px;
    }
}

.header-inner-pages {
    background: rgba(5, 87, 158, .9) !important;
}

.topbar-inner-pages {
    background: rgba(6, 98, 178, .90) !important;
}

/* -------------------------------------------------------------- # Logo Header -------------------------------------------------------------- */
.svg-icon {
    vertical-align: middle;
    width: 5%;
    margin-top: -6px;
}

/*-------------------------------------------------------------- # Navigation Menu --------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu>ul>li.cart-head {
    display: none;
    padding-top: 8px;
    visibility: hidden;
}

.nav-menu>ul {
    display: flex;
}

.nav-menu>ul>li {
    position: relative;
    white-space: nowrap;
    padding: 10px 0 10px 24px;
}

.nav-menu a {
    display: block;
    position: relative;
    color: rgba(68, 68, 68, 1);
    transition: 0.3s;
    font-size: 14px;
    padding: 0 3px;
    font-family: 'Open Sans', sans-serif;
}

.nav-menu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #f17641;
    visibility: hidden;
    width: 0;
    transition: all 0.3s ease-in-out 0s;
}

.nav-menu .active>a:before,
.nav-menu a:hover:before,
.nav-menu li:hover>a:before {
    visibility: visible;
    width: 100%;
}

.nav-menu .active>a,
.nav-menu a:hover,
.nav-menu li:hover>a {
    color: #f17641;
}

.nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0 0 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 8px;
}

.nav-menu .drop-down:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
    width: auto;
    min-width: 10rem;
}

.nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
}

.nav-menu .drop-down ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #032e54;
}

.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul li:hover>a {
    color: #f17641;
}

.nav-menu .drop-down>a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
}

.nav-menu .drop-down .drop-down>a {
    padding-right: 35px;
}

.nav-menu .drop-down .drop-down>a:after {
    content: "\eaa0";
    font-family: IcoFont;
    position: absolute;
    right: 15px;
}

@media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
        left: -90%;
    }

    .nav-menu .drop-down .drop-down:hover>ul {
        left: -100%;
    }

    .nav-menu .drop-down .drop-down>a:after {
        content: "\ea9d";
    }
}

/* Mobile Navigation */
.mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 19px;
    z-index: 9998;
    border: 0;
    background: rgba(255, 255, 255, .5);
    padding: 6px;
    border-radius: 50%;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

.mobile-nav-toggle i {
    color: #f17641;
}

.mobile-nav {
    position: fixed;
    top: 80px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: #fff;
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    padding: 10px 0;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav a {
    display: block;
    position: relative;
    color: #0665b7;
    padding: 10px 20px;
    font-weight: 500;
    outline: none;
}

.mobile-nav .active>a,
.mobile-nav a:hover,
.mobile-nav li:hover>a {
    color: #f17641;
    text-decoration: none;
}

.mobile-nav .drop-down>a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}

.mobile-nav .active.drop-down>a:after {
    content: "\eaa1";
}

.mobile-nav .drop-down>a {
    padding-right: 35px;
}

.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}

.mobile-nav .drop-down li {
    padding-left: 20px;
}

.mobile-nav img {
    width: 6% !important;
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(5, 74, 133, 0.6);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
}

/* Shopping Cart */
.nav-menu>ul>li.cart-head {
    display: none !important;
    padding-top: 8px;
    visibility: hidden;
}

.nav-menu>ul>li.cart-head>a:before {
    bottom: -2px;
}

.nav-menu>ul>li.cart-head>a>i {
    font-size: 1.5rem;
    font-weight: 300;
    visibility: hidden !important;
}

.nav-menu>ul>li.cart-head>a>span {
    position: absolute;
    top: -2px;
    right: -5px;
    font-size: 12px;
    background-color: #f17641;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    color: #fff;
    padding: 0 5px;
    vertical-align: top;
    margin-left: -10px;
    height: 15px;
    line-height: 15px;
    display: none !important;
    visibility: hidden !important;
}

.nav-menu>ul>li.populated>a>i {
    color: #f17641;
}

.nav-menu>ul>li.populated>a>span {
    display: inline;
}

.mobile-nav>ul>li.cart-head {
    display: none !important;
}


/* --------------------------------------------------------------
# Hero Section
-------------------------------------------------------------- */
/* line 4, ../scss/_hero.scss */
#hero {
    width: 100%;
    height: 80vh;
    background: url("../img/hero-bg.webp") center center;
    background-size: cover;
    position: relative;
    margin-top: 0px;
    z-index: 9;
}

#hero .hero-container {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    padding: 0 15px;
}

#hero h1 {
    margin: 0 0 10px 0;
    font-size: 90px;
    font-weight: 700;
    line-height: 95px;
    color: #219baf;
}

#hero h2 {
    color: #E64624;
    margin-bottom: 20px;
    margin-top: 20px;
    font-size: 36px;
}

#hero h3 {
    color: #E64624;
    margin-bottom: 30px;
    font-size: 36px;
}

#hero button {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 30px;
    border-radius: 50px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    margin: 50px;
    border: none;
    color: #fff;
    background: #219baf
}

#hero button:hover {
    background: #ff938a;
}

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 50px;
        line-height: 60px;
    }

    #hero h2 {
        font-size: 36px;
        line-height: 38px;
        margin-bottom: 20px;
    }

    #hero h3 {
        font-size: 18px !important;
        line-height: 24px;
        margin-bottom: 20px;
    }

}

/* --------------------------------------------------------------
# Sections General
-------------------------------------------------------------- */
/* line 4, ../scss/_sections.scss */
section {
    padding: 40px 0;
}

/* line 8, ../scss/_sections.scss */
.section-bg {
    background-color: white;
}

/* line 12, ../scss/_sections.scss */
.section-title {
    text-align: center;
    padding-bottom: 30px;
}

/* line 15, ../scss/_sections.scss */
.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    position: relative;
}

/* line 23, ../scss/_sections.scss */
.section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 80px;
    height: 1px;
    background: #145962;
    bottom: 0;
    left: calc(50% - 40px);
}

/* line 34, ../scss/_sections.scss */
.section-title p {
    margin-bottom: 0;
    font-style: italic;
    color: #666666;
}

/* --------------------------------------------------------------
# INFORMAZIONI
-------------------------------------------------------------- */
.bg-informazioni {
    background-color: #fcd9ca;
}

/* --------------------------------------------------------------
# Coming next
-------------------------------------------------------------- */
.coming-next h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    position: relative;
}

/* line 64, ../scss/_sections.scss */
.coming-next h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 80px;
    height: 1px;
    background: #145962;
    bottom: 0;
    left: calc(50% - 40px);
}

/* --------------------------------------------------------------
# About
-------------------------------------------------------------- */
/* line 45, ../scss/_sections.scss */
.about {
    background-color: #ffefe8;
}

.about h3 {
    font-weight: 700;
    font-size: 26px;
    color: #145962;
}

/* line 50, ../scss/_sections.scss */
.about h4 {
    font-weight: 600;
    font-size: 20px;
    color: #145962;
}

/* line 56, ../scss/_sections.scss */
.about h5 {
    font-weight: 600;
    font-size: 18px;
    color: #145962;
}

/* line 56, ../scss/_sections.scss */
.about h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    position: relative;
}

/* line 64, ../scss/_sections.scss */
.about h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 80px;
    height: 1px;
    background: #145962;
    bottom: 0;
    left: calc(50% - 40px);
}

/* line 75, ../scss/_sections.scss */
.about ul {
    list-style: none;
    padding: 0;
}

/* line 78, ../scss/_sections.scss */
.about ul li {
    padding-bottom: 10px;
}

/* line 81, ../scss/_sections.scss */
.about ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #145962;
}

/* line 87, ../scss/_sections.scss */
.about p:last-child {
    margin-bottom: 0;
}

/* --------------------------------------------------------------
# Why Us
-------------------------------------------------------------- */
/* line 95, ../scss/_sections.scss */
.why-us {
    padding-bottom: 30px;
}

/* line 98, ../scss/_sections.scss */
.why-us .card {
    border-radius: 3px;
    border: 0;
    -webkit-box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

/* line 105, ../scss/_sections.scss */
.why-us .card-icon {
    text-align: center;
    margin-top: -32px;
}

/* line 109, ../scss/_sections.scss */
.why-us .card-icon i {
    font-size: 32px;
    color: #fff;
    width: 64px;
    height: 64px;
    padding-top: 10px;
    text-align: center;
    background-color: #145962;
    border-radius: 50%;
    text-align: center;
    border: 4px solid #fff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    display: inline-block;
}

/* line 124, ../scss/_sections.scss */
.why-us .card-body {
    padding-top: 12px;
}

/* line 128, ../scss/_sections.scss */
.why-us .card-title {
    font-weight: 700;
    text-align: center;
}

/* line 131, ../scss/_sections.scss */
.why-us .card-title a {
    color: #7c4634;
}

/* line 133, ../scss/_sections.scss */
.why-us .card-title a:hover {
    color: #145962;
}

/* line 139, ../scss/_sections.scss */
.why-us .card-text {
    color: #5e5e5e;
}

/* line 143, ../scss/_sections.scss */
.why-us .card:hover .card-icon i {
    background: #fff;
    color: #145962;
}

@media (max-width: 1024px) {

    /* line 95, ../scss/_sections.scss */
    .why-us {
        background-attachment: scroll;
    }
}

/* --------------------------------------------------------------
# Frequenty Asked Questions
-------------------------------------------------------------- */
/* line 157, ../scss/_sections.scss */
.faq {
    padding-bottom: 60px;
    /* background-color:#fcd9ca; */
}

/* --------------------------------------------------------------
# Contact Us
-------------------------------------------------------------- */
/* line 167, ../scss/_sections.scss */
.contact {
    background-color: #fcd9ca;
}

.contact .info {
    color: #444444;

}

/* line 170, ../scss/_sections.scss */
.contact .info i {
    font-size: 32px;
    color: #145962;
    float: left;
}

/* line 176, ../scss/_sections.scss */
.contact .info p {
    padding: 0 0 10px 50px;
    margin-bottom: 20px;
    line-height: 22px;
    font-size: 14px;
}

/* line 184, ../scss/_sections.scss */
.contact .info .email p {
    padding-top: 5px;
}

/* line 192, ../scss/_sections.scss */
.contact .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #341d16;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

/* line 204, ../scss/_sections.scss */
.contact .social-links a:hover {
    background: #145962;
    color: #fff;
}

/* line 213, ../scss/_sections.scss */
.contact .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
}

/* line 221, ../scss/_sections.scss */
.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

/* line 228, ../scss/_sections.scss */
.contact .php-email-form .error-message br+br {
    margin-top: 25px;
}

/* line 233, ../scss/_sections.scss */
.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

/* line 242, ../scss/_sections.scss */
.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

/* line 248, ../scss/_sections.scss */
.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

/* line 262, ../scss/_sections.scss */
.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 14px;
}

/* line 267, ../scss/_sections.scss */
.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: #145962;
}

/* line 272, ../scss/_sections.scss */
.contact .php-email-form button[type="submit"] {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 30px;
    border-radius: 50px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    margin: 10px;
    border: none;
    color: #fff;
    background: #145962;
}

/* line 285, ../scss/_sections.scss */
.contact .php-email-form button[type="submit"]:hover {
    background: #c38faa;
}

@media (max-width: 768px) {

    /* line 293, ../scss/_sections.scss */
    .contact .social-links {
        text-align: center;
    }
}

@-webkit-keyframes animate-loading {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* --------------------------------------------------------------
# Footer
-------------------------------------------------------------- */
/* line 4, ../scss/_footer.scss */
#footer {
    background: #f7a886;
    padding: 30px 0;
    color: #3d3d3d;
    font-size: 14px;
}

#footer .footer-newsletter {
    padding: 50px 0;
    margin-bottom: 30px;
    background: #fff
}

#footer .footer-newsletter .h4,
#footer .footer-newsletter h4 {
    font-size: 24px;
    margin: 0 0 20px;
    padding: 0;
    line-height: 1;
    font-weight: 600
}

#footer .footer-newsletter form {
    margin-top: 30px;
    background: 0 0;
    padding: 6px 10px;
    position: relative;
    border-radius: 50px
}

#footer .footer-newsletter form input[type=email] {
    border: 0;
    padding: 4px;
    width: calc(100% - 100px)
}

#footer .footer-newsletter form input[type=submit] {
    position: absolute;
    top: 0;
    left: calc(50% - 98px);
    bottom: 0;
    border: 0;
    background: 0 0;
    font-size: 16px;
    padding: 0 20px;
    margin: 3px;
    background: #ff4b52;
    color: #fff;
    transition: .3s;
    border-radius: 50px;
    height: 40px
}

/* line 10, ../scss/_footer.scss */
#footer .copyright {
    text-align: center;
}

/* line 14, ../scss/_footer.scss */
#footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: #fff;
}

#footer .btn {
    background-color: #145962;
    border-top: 3px solid #145962;
}

/* line 22, ../scss/_footer.scss */
#footer .social-links a {
    font-size: 38px;
    display: inline-block;
    background: #145962;
    color: #fff;
    line-height: 1;
    padding: 4px 0 0 2px;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 46px;
    height: 46px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

/* line 35, ../scss/_footer.scss */
#footer .social-links a:hover {
    background: #145962;
    color: #fff;
    text-decoration: none;
}

/* line 43, ../scss/_footer.scss */
#accept-cookie {
    background-color: #fcd9ca;
    border-top: 3px solid #145962;
}

#accept-cookie .btn {
    background-color: #145962;
    border-top: 3px solid #145962;
}

/* Blink for Webkit and others
(Chrome, Safari, Firefox, IE, ...) */
@-webkit-keyframes blinker {

    /* 0%{		background-color: lighten($secondary,20%);	} 49%{	background-color: lighten($secondary,20%);	} 50%{	background-color: lighten($purple,20%);	} 99%{	background-color: lighten($primary,20%);	} 100%{	background-color: lighten($primary,20%);} */
    from {
        opacity: 1.0;
    }

    to {
        opacity: 0.8;
    }
}

/* line 62, ../scss/_footer.scss */
.blink {
    text-decoration: blink;
    -webkit-animation-name: blinker;
    -webkit-animation-duration: 0.6s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-direction: alternate;
}