/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    --orange_color:#ff3300;
    --orange_color2:#F15A24;
    --blu_color:#00294c;
    --purple_color: #d86ecc;
    --blulight_color: #46b0e1;
    --greenlight_color: #8ed973;
    --orangelight_color: #ffc66c;
    --blunavy_color:#5e84a0;
    --orange_color3: #eb6608;
    --white_color: #fff;
    --black_bgc: #090909
    /* 00843a*/
}
.bg-yellow {
    background-color: yellow !important;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Raleway", sans-serif;
    background: linear-gradient(to bottom, #fff 0%, #343a4036 100%);
}

a {
    color:var(--blu_color);
    text-decoration: none;
    font-weight: bolder;
}

.a_white
{
    color:var(--white_color);
    text-decoration: none;
}

a:hover {
    color: var(--orange_color);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Raleway", sans-serif;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    height: 70px;
    transition: all 0.5s;
    z-index: 997;
    background:var(--white_color);
}

#header.header-fixed {
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

#header .logo h1 {
    font-size: 28px;
    margin: 0;
    line-height: 0;
    font-weight: 700;
    font-family: "Open Sans", sans-serif;
}

#header .logo h1 a,
#header .logo h1 a:hover {
    color: #635551;
    text-decoration: none;
}

#header .logo img {
    padding: 0;
    margin: 0;
    max-height: 40px;
}

.scrolled-offset {
    margin-top: 70px;
}

#main {
    z-index: 3;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-size: 18px;
    font-family: "Poppins", sans-serif;
    color: #635551;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #F15A24;
}

.navbar .getstarted,
.navbar .getstarted:focus {
    background: #F15A24;
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 4px;
    color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
    color: #fff;
    background: #ff6b3b;
}

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

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #F15A24;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
    color: #000;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(43, 37, 35, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 10px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #473d3a;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #F15A24;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #F15A24;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 50vh;
    /*background: url("../images/hero-bg1.png") center center;*/
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    padding: 0;
    margin-bottom: -120px;
}

#hero:before {
    content: "";
    background-color: transparent;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    height: 30vh;
    width: 100%;
    object-fit: cover;
    overflow: hidden
}

#hero1 {
    width: 100%;
    height: 22vh;
    /*background: url("../images/bg-who.png") center center;*/
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    padding: 0;
    margin-bottom: -120px;
}

#hero1:before {
    content: "";
    background-color: transparent;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero2 {
    width: 100%;
    height: 22vh;
    /*background: url("../images/bg-who.png") center center;*/
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    padding: 0;
    margin-bottom: 10px;
}

#hero2:before {
    content: "";
    background-color: transparent;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero .container {
    z-index: 2;
}

#hero h1 {
    margin: 0 0 10px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #fff;
}

#hero h2 {
    color: #eee;
    margin-bottom: 50px;
    font-size: 24px;
}

#hero .get-started-icon {
    font-size: 24px;
    background: #F15A24;
    padding: 14px;
    color: #fff;
    border-radius: 50px;
    position: relative;
    z-index: 5;
    box-shadow: 10px 2px 15px rgba(0, 0, 0, 0.1);
}

#hero .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    transition: 0.5s;
    margin-left: -10px;
    padding: 8px 26px 8px 26px;
    color: #fff;
    background: #584b48;
    border-radius: 0 50px 50px 0;
    position: relative;
    z-index: 4;
}

#hero .btn-get-started:hover {
    background: #ff5821;
}

@media (min-width: 1024px) {
    #hero {

    }
}

@media (max-width: 1024px),
(max-height: 768px) {
    #hero {
        margin-bottom: -150px;
        height: 50vh;
    }
}

@media (max-width: 768px) {
    #hero {
        height: 55vh;
    }

    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #hero h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

@media (max-height: 640px) {
    #hero {
        height: 120vh;
    }
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 15px 0;
    background: var(--blu_color);
    margin-bottom: 40px;
}

.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 500;
    color: var(--white_color);
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs ol li+li {
    padding-left: 10px;
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #635551;
    content: "/";
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}

.nopad{
    padding: 0 !important;
    overflow: hidden;
}

.section-bg {
    background-color: #fff9f7;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 20px;
    padding-bottom: 0;
    font-family: "Poppins", sans-serif;
    color: var(--blu_color);
}

.section-title p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# contact
--------------------------------------------------------------*/
#contact .get-started-icon {
    font-size: 24px;
    background: var(--blu_color);
    padding: 14px;
    color: #fff;
    border-radius: 50px;
    position: relative;
    z-index: 5;
    box-shadow: 10px 2px 15px rgba(0, 0, 0, 0.1);
}

#contact .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    transition: 0.5s;
    margin-left: -10px;
    padding: 8px 26px 8px 26px;
    color: #fff;
    background: #584b48;
    border-radius: 0 50px 50px 0;
    position: relative;
    z-index: 4;
}

#contact .btn-get-started:hover {
    background:  var(--blu_color);
}

.contact .info-box {
    color: #313030;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 20px;
}

.contact .info-box i {
    font-size: 32px;
    color:  var(--blu_color);
    border-radius: 50%;
    padding: 8px;
    border: 2px dotted #ffded4;
    float: left;
}

.contact .info-box h3 {
    font-size: 20px;
    color: #656262;
    font-weight: 700;
    margin: 10px 0 10px 68px;
}

.contact .info-box p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin: 0 0 0 68px;
}

@media (max-width: 769px) {
    .desk {
        display: none;
    }
}
@media (min-width: 770px) {
    .mob {
        display: none;
    }
}

.contact .php-email-form {
    /*box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);*/
    padding: 30px;
    background-color: transparent;
}

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

.contact .php-email-form .error-message2 {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}



.contact .php-email-form .error-message br+br {
    margin-top: 25px;
}

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

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.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;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: #F15A24;
}

.contact .php-email-form input {
    padding: 10px 15px;
}

.contact .php-email-form input[type=checkbox] {
    width: 16px !important;
    height: 16px !important;
    padding: 0;
}

.contact .php-email-form textarea {
    padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
    background: #F15A24;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
}

.contact .php-email-form button[type=submit]:hover {
    background: #ff7e54;
}

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

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

.btnsubmit{
    background: #F15A24;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
}
/*--------------------------------------------------------------
# radar-box
--------------------------------------------------------------*/
.box-cont{
    border-radius: 2.5rem;
    background: var(--white_color);
    font-weight: 700;
    font-size: 34px;
    margin-bottom: 30px;
    border-color: var(--blu_color);
    border-width: 0.1rem;
    border-style: solid;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.8);
}

.box-cont p{
    font-weight: 400;
    font-size: 1rem;
}
.radar-box {
    padding: 0 0 30px 0;
    position: relative;
    z-index: 3;
}

.radar-box .content {
    padding: 20px;
    background: var(--blu_color);
    border-radius: 4px;
    color: var(--white_color);
    border-radius: 1.8rem;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.8);
}

.radar-box .content h3 {
    font-weight: 700;
    font-size: 34px;
    margin-bottom: 30px;
}

.radar-box .content p {
    margin-bottom: 30px;
}

.radar-box .content .more-btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 30px 8px 30px;
    color: var(--white_color);
    border-radius: 50px;
    transition: all ease-in-out 0.4s;
}

.radar-box .content .more-btn i {
    font-size: 14px;
}

.radar-box .content .more-btn:hover {
    color: var(--orange_color);
    background: var(--white_color);
}

.radar-box .icon-boxes .icon-box {
    text-align: center;
    border-radius: 25px;
    background: var(--white_color);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.8);
    padding: 20px 30px;
    width: 100%;
}

.radar-box .icon-boxes .icon-box i {
    font-size: 40px;
    color: var(--orange_color);
    margin-bottom: 30px;
}

.radar-box .icon-boxes .icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 30px 0;
}

.radar-box .icon-boxes .icon-box p {
    font-size: 15px;
    color: #000000;
}


.topnegtop {
    top: -40vh
}

.negtop {
    margin-top:-40vh;
}

@media (min-width: 768px) {
    .topnegtop {
        top: -30vh
    }
    .negtop {
        margin-top:-30vh;
    }
}

/** GRID **/
.ui-widget-header {
    border: 1px solid var(--orange_color); !important;
    background: transparent;!important;
    background-color: var(--orange_color);!important;
    color: #fff;!important;
    font-weight: bold;!important;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
    border: 1px solid #ccc;
    font-weight: normal;
    color: var(--blu_color);
    font-size: medium;
}

.form-box {
        border-radius: 25px;
        background: var(--white_color);
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.8);
        padding: 20px 30px;
}

.who-box{
    box-shadow: 0px 2px 15px rgba(255, 255, 255, 1.2);
    border-radius: 10px;
    background: var(--white_color);
}


.CookiebotWidget-logo{
    outline: 0px solid #1032CF !important;
    outline-offset: 1px;
}

.pain-scale {
    display: flex;
    justify-content: space-between;
    background: linear-gradient(to right, #00ff00, #ffff00, #ff8000, #ff0000);
    border-radius: 10px;
    padding: 10px;
}
.pain-label {
    text-align: center;
    width: 10%;
}

.bckgdiv{
    background-color: #010002;
    background-image: url("../images/binding-dark.png");
}
.carddark{
    background-color: #2E2E2E; /* Grigio scuro */
    color: #F5F5F5; /* Testo chiaro */
    opacity: 0.8;
}

.uldark{
    color: #F5F5F5; /* Testo chiaro */
    opacity: 0.8;
}