:root {
    --boom-primary: #F28A04;
    --boom-secondary: #000000;
}

/* fonts */
@font-face {
    font-family: "HK Grotesk";
    src: url("../webfonts/HKGrotesk-Light.woff2") format("woff2"), url("../webfonts/HKGrotesk-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "HK Grotesk";
    src: url("../webfonts/HKGrotesk-Regular.woff2") format("woff2"), url("../webfonts/HKGrotesk-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "HK Grotesk";
    src: url("../webfonts/HKGrotesk-Bold.woff2") format("woff2"), url("../webfonts/HKGrotesk-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
    font-display: swap;
}
@font-face {
    font-family: "HK Grotesk";
    src: url("../webfonts/HKGrotesk-SemiBold.woff2") format("woff2"), url("../webfonts/HKGrotesk-SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
/* colors */
/* colori */
/* breakpoints */
/* breakpoints */
/* globals */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #FFFFFF;
    font-family: "HK Grotesk", sans-serif;
    font-weight: normal;
    line-height: 1.3;
    color: var(--boom-secondary);
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.h1, h1 {
    font-weight: normal;
    font-size: 55px;
    line-height: 60px;
    margin-bottom: 30px;
}

.h2, h2 {
    font-weight: normal;
    font-size: 50px;
    line-height: 58px;
    margin-bottom: 30px;
}

.h2.small,.h2 > .small,h2.small,h2 > .small {
    display: block;
    font-weight: bold;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.h3,h3 {
    font-weight: normal;
    font-size: 35px;
    line-height: 40px;
    margin-bottom: 30px;
}

.h4,h4 {
    font-weight: bold;
    font-size: 25px;
    line-height: 35px;
    margin-bottom: 25px;
}

.h5,h5 {
    font-weight: normal;
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 25px;
}

p {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 30px;
    letter-spacing: -0.008em;
}

.tiny-text {
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 8px;
}

.small-text {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 0;
    letter-spacing: -0.02em;
}

.large-text {
    font-size: 22px;
    line-height: 29px;
    margin-bottom: 30px;
}

header, section, footer {
    max-width: 1440px;
    /* force boxed layout - optional */
    margin: auto;
    padding: 0;
}

.bg-success {
    background-color: #009722 !important;
}

@media (max-width: 991px) {
    .h1, h1 {
        font-weight: normal;
        font-size: 30px;
        line-height: 35px;
        margin-bottom: 20px;
    }

    .h2, h2 {
        font-weight: normal;
        font-size: 30px;
        line-height: 35px;
        margin-bottom: 30px;
    }

    .h2.small, .h2 > .small, h2.small, h2 > .small {
        display: block;
        font-weight: bold;
        font-size: 16px;
        line-height: 18px;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .h2 > .small, h2 > .small {
        margin-bottom: 20px;
    }

    .h3, h3 {
        font-weight: normal;
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 20px;
    }

    .h4, h4 {
        font-weight: bold;
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 15px;
    }

    .h5, h5 {
        font-weight: normal;
        font-size: 18px;
        line-height: 20px;
        margin-bottom: 15px;
    }

    p {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 20px;
        letter-spacing: 0;
    }

    .tiny-text {
        font-size: 12px;
        line-height: 16px;
        margin-bottom: 8px;
    }

    .small-text {
        font-size: 14px;
        line-height: 18px;
        margin-bottom: 0;
    }

    .large-text {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 20px;
    }
}

.blue {
    color: #003B79 !important;
}

#fade-in {
    opacity: 0;
    transition: opacity 2s ease;
}

#fade-in.visible {
    opacity: 1;
}

.v-centered {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    align-items: stretch;
}

.more {
    display: inline-block;
    font-weight: bold;
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
    color: var(--boom-primary);
    background: transparent url(../img/arrow-right-orange.svg) center right 5px/22px no-repeat;
    padding-right: 45px;
}

.more.white {
    color: #FFFFFF;
    background: transparent url(../img/arrow-right-white.svg) center right 5px/22px no-repeat;
}

.more.white:hover, .more.white:active, .more.white:focus {
    color: #FFFFFF;
}

.more:hover, .more:active, .more:focus {
    color: var(--boom-primary);
    text-decoration: none;
    background-position: center right;
    transition: background-position 0.3s ease;
}

.prev {
    font-weight: bold;
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
    color: var(--boom-primary);
    background: transparent url(../img/arrow-left-orange.svg) center left 5px/22px no-repeat;
    padding-left: 45px;
}

.prev:hover, .prev:active, .prev:focus {
    color: var(--boom-primary);
    text-decoration: none;
    background-position: center left;
    transition: background-position 0.3s ease;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 0;
    list-style: none;
    background-color: transparent;
    font-weight: bold;
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
}

.breadcrumb li {
    position: relative;
    padding-right: 15px;
}

.breadcrumb li::after {
    content: "/";
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-55%);
}

.breadcrumb li:last-of-type::after {
    content: "";
}

.breadcrumb a {
    color: var(--boom-secondary);
}

.breadcrumb a:hover, .breadcrumb a:active, .breadcrumb a:focus {
    color: var(--boom-secondary);
}

@media (min-width: 992px) {
    .d-lg-grid {
        display: grid !important;
    }
}

.img-contain {
    object-fit: contain;
}

.img-cover {
    object-fit: cover;
}

/* forms */
label {
    font-size: 14px;
    font-weight: bold;
    line-height: 24px;
}

input[type=text], input[type=email], input[type=number], input[type=password], select.form-control {
    font-size: 16px;
    line-height: 24px;
    color: var(--boom-secondary);
    padding: 12px 16px;
    border: solid 1px rgba(156, 156, 156, 0.3);
    border-radius: 8px;
    height: 48px;
}

select.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent url(../img/header/arrow-dropdown.svg) center right 16px no-repeat;
    padding-right: 37px;
}

.form-check {
    padding-left: 36px;
}

.form-check-label {
    font-size: 16px;
    line-height: 20px;
}

.form-check-label a {
    font-weight: 600;
    color: var(--boom-primary);
}

.form-check-label a:hover, .form-check-label a:active, .form-check-label a:focus {
    color: var(--boom-primary);
    text-decoration: underline;
}

.custom-check-input, .custom-radio-input {
    position: fixed;
    top: -1000px;
    left: -1000px;
}

.custom-check-input + label {
    display: inline-block;
    position: relative;
    padding-left: 34px;
    font-weight: normal;
}

.custom-check-input + label::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    display: block;
    width: 24px;
    height: 24px;
    border: solid 1px rgba(156, 156, 156, 0.3);
    border-radius: 4px;
    background-color: #FFFFFF;
    margin-top: 5px;
}

.custom-check-input:focus + label::before {
    border: solid 1px var(--boom-primary);
}

.custom-check-input:checked + label::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 4px;
    display: block;
    width: 16px;
    height: 16px;
    background-color: var(--boom-primary);
    border-radius: 1px;
    margin-top: 5px;
}

.custom-radio-input + label {
    display: inline-block;
    position: relative;
    padding-left: 34px;
    font-weight: normal;
    margin-right: 20px;
}

.custom-radio-input + label::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: block;
    width: 24px;
    height: 24px;
    border: solid 1px rgba(156, 156, 156, 0.3);
    border-radius: 12px;
}

.custom-radio-input:focus + label::before {
    border: solid 1px var(--boom-primary);
}

.custom-radio-input:checked + label::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 4px;
    transform: translateY(-50%);
    display: block;
    width: 16px;
    height: 16px;
    background-color: var(--boom-primary);
    border-radius: 8px;
}

.button-check-input {
    position: fixed;
    top: -1000px;
    left: -1000px;
}

.button-check-input + label {
    display: inline-block;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    color: #666;
    background-color: #f5f5f5;
    height: 40px;
    border: 0;
    border-radius: 5px;
    padding: 8px 15px;
    margin: 0 8px 8px 0;
}

.button-check-input:focus + label::before {
    border: solid 1px var(--boom-primary);
}

.button-check-input:checked + label {
    color: #FFFFFF;
    background-color: #666666;
}

@media (max-width: 991px) {

    .button-check-input + label {
        color: #9B9B9B;
        background-color: #FFFFFF;
        height: 40px;
        border: solid 1px var(--boom-primary);
        border-radius: 5px;
        padding: 8px 15px;
        margin: 0 8px 8px 0;
        font-size: 14px;
    }

    .button-check-input:focus + label::before {
        background-color: var(--boom-primary);
    }

    .button-check-input:checked + label {
        color: #FFFFFF;
        background-color: var(--boom-primary);
    }
}

::-webkit-input-placeholder {
    color: #666666;
}

::-moz-placeholder {
    color: #666666;
}

:-ms-input-placeholder {
    color: #666666;
}

:-moz-placeholder {
    color: #666666;
}

.feedback {
    margin-top: 30px;
    border-radius: 4px;
    color: #ffffff;
    padding: 20px 20% 20px 60px;
}

.feedback.bg-success {
    background: #009722 url(../img/check.svg) center left 20px/16px no-repeat;
}

/* buttons */
.btn {
    /*height: 46px;
    width: 320px;*/
    text-align: center;
    border-radius: 5px;
    /*padding: 14px 45px 13px 45px;*/
    font-weight: 600;
    font-size: 14px;
    /*letter-spacing: 0;
    line-height: 18px;*/
    color: #FFFFFF;
}

.astext {
    color: var(--boom-primary);
    font-weight: bold;
    font-size: 14px;
    line-height: 18px;
}

.btn-search {
    height: 50px;
    width: 159px;
    font-weight: 400;
    position: relative;
    background-color: var(--boom-secondary);
    border: solid 1px var(--boom-secondary) !important;
    transition: background-color 0.2s ease;
    text-align: left;
    padding: 14px 19px 13px 19px;
    background: var(--boom-secondary) url(../img/arrow-right-white.svg) center right 19px/22px no-repeat;
}

.btn-search:hover, .btn-search:focus, .btn-search:active {
    background-color: #1a1a1a !important;
    color: #FFFFFF;
}

.btn-search:disabled {
    border: solid 1px var(--boom-secondary) !important;
    background-color: var(--boom-secondary);
    opacity: 0.5;
}

.btn-search:disabled:hover {
    background-color: var(--boom-secondary);
}

.btn-cmp {
    background-color: var(--boom-secondary);
    border: solid 1px var(--boom-secondary) !important;
    transition: background-color 0.2s ease;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.btn-cmp:hover, .btn-cmp:focus, .btn-cmp:active {
    background-color: #1a1a1a !important;
    color: #FFFFFF;
}

.btn-cmp:disabled {
    border: solid 1px var(--boom-secondary) !important;
    background-color: var(--boom-secondary);
    opacity: 0.5;
}

.btn-cmp:disabled:hover {
    background-color: var(--boom-secondary);
}

.btn-primary {
    background-color: var(--boom-secondary);
    border: solid 1px var(--boom-secondary) !important;
    transition: background-color 0.2s ease;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background-color: #1a1a1a !important;
    color: #FFFFFF;
}

.btn-primary:disabled {
    border: solid 1px var(--boom-secondary) !important;
    background-color: var(--boom-secondary);
    opacity: 0.5;
}

.btn-primary:disabled:hover {
    background-color: var(--boom-secondary);
}

.btn-secondary {
    background-color: var(--boom-primary);
    border: solid 1px var(--boom-primary) !important;
    transition: all 0.2s ease;
}

.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active {
    background-color: #fca12d !important;
    color: #FFFFFF;
}

.btn-secondary.btn-outline {
    background-color: transparent;
    color: var(--boom-primary);
}

.cart-icon {
    background-image: url(../img/shopping-cart-white.svg);
    background-position: center left 15px;
    background-repeat: no-repeat;
    background-size: 16px;
}

/* helpers */
/* header */
header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--boom-primary);
    height: 110px;
    z-index: 500;
}

header.landing .lang-selector {
    padding-right: 0;
    padding-left: 30px;
}

.main-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-menu .search-brand, .main-menu .menu-brand {
    margin-right: auto;
}
.main-menu .search-brand img, .main-menu .menu-brand img {
    width: 80px;
}

.main-menu .menu-toggler {
    display: block;
    width: 40px;
    height: 40px;
    overflow: hidden;
    text-indent: -1000px;
    border: none;
    background: transparent center/30px no-repeat;
}

.main-menu .menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin-bottom: 0;
}

.main-menu .menu .nav-item {
    position: relative;
    border-bottom: solid 1px transparent;
    margin: 0 15px;
}

.main-menu .menu .nav-item.active {
    border-bottom-color: var(--boom-secondary);
}

.main-menu .menu .nav-item.submenu-toggler {
    padding-right: 20px;
}

.main-menu .menu .nav-item.submenu-toggler > a::after {
    content: "";
    position: absolute;
    top: 5px;
    right: 0;
    display: block;
    width: 20px;
    height: 20px;
    background: transparent url(../img/header/arrow-dropdown.svg) center no-repeat;
}

.main-menu .menu .nav-item.submenu-toggler:hover > a::after, .main-menu .menu .nav-item.submenu-toggler:active > a::after {
    background: transparent url(../img/header/arrow-dropdown.svg) center no-repeat;
    transform: rotate(180deg);
}

.main-menu .menu .nav-item.submenu-toggler:hover .submenu, .main-menu .menu .nav-item.submenu-toggler:active .submenu {
    position: absolute;
    top: 30px;
    left: 50%;
    opacity: 1;
    transition: opacity 0.5s ease-in 0.1s, position 0.5s ease-in 0.1s;
}

.main-menu .menu .nav-item a {
    display: block;
    background-color: transparent;
    border: none;
    color: var(--boom-secondary);
    font-size: 18px;
    line-height: 30px;
    padding: 0 5px;
}

.main-menu .menu .nav-item .submenu {
    display: block;
    position: fixed;
    top: -2000px;
    left: -2000px;
    transform: translateX(-50%);
    width: 1070px;
    list-style: none;
    padding: 20px;
    background-color: #FFFFFF;
    opacity: 0;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);
}

.main-menu .menu .nav-item .submenu .more {
    display: inline-block;
    font-weight: bold;
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
    color: var(--boom-primary);
    background: transparent url(../img/arrow-right-orange.svg) center right 15px/22px no-repeat;
    padding: 10px 55px 10px 10px;
}

.main-menu .menu .nav-item .submenu .more.white {
    color: #FFFFFF;
    background: transparent url(../img/arrow-right-white.svg) center right 15px/22px no-repeat;
}

.main-menu .menu .nav-item .submenu .more.white:hover, .main-menu .menu .nav-item .submenu .more.white:active, .main-menu .menu .nav-item .submenu .more.white:focus {
    color: #FFFFFF;
}

.main-menu .menu .nav-item .submenu .more:hover, .main-menu .menu .nav-item .submenu .more:active, .main-menu .menu .nav-item .submenu .more:focus {
    color: var(--boom-primary);
    text-decoration: none;
    background-position: center right 10px;
    transition: background-position 0.3s ease;
}

.main-menu .menu .nav-item .submenu ul {
    list-style: none;
}

.main-menu .menu .nav-item .submenu .menu-blurb {
    padding: 60px 15px 20px;
    background: transparent url() 15px 15px no-repeat;
    font-size: 25px;
    line-height: 70px;
    color: var(--boom-secondary);
}

.main-menu .menu .nav-item .submenu .menu-blurb span {
    display: block;
    font-size: 16px;
    line-height: 17px;
}

.main-menu .menu .nav-item .submenu .menu-blurb.education {
    background-image: url(../img/cerchi/submenu/education.svg);
}

.main-menu .menu .nav-item .submenu .menu-blurb.training {
    background-image: url(../img/cerchi/submenu/training.svg);
}

.main-menu .menu .nav-item .submenu .menu-blurb.innovation {
    background-image: url(../img/cerchi/submenu/innovation.svg);
}

.main-menu .menu .nav-item .submenu .menu-blurb.starthub {
    background-image: url(../img/cerchi/submenu/starthub.svg);
}

.main-menu .menu .nav-item .submenu .menu-blurb:hover {
    text-decoration: none;
    background-position: 15px 10px;
    transition: background-position 0.3s ease;
}
.main-menu .cart, .main-menu .search-toggler, .main-menu .menu-toggler {
    display: block;
    width: 30px;
    height: 30px;
    overflow: hidden;
    text-indent: -1000px;
    border: none;
    background: transparent url(../img/header/search.svg) center/20px no-repeat;
    margin-left: 20px;
}

.main-menu .menu-toggler {
    background: transparent url(../img/hamburger.svg) center/30px no-repeat;
}

.main-menu .cart {
    background: transparent url(../img/header/shopping-cart.svg) center/20px no-repeat;
}

.lang-selector {
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    font-size: 16px;
    padding-right: 20px;
    width: auto;
    margin-left: 30px;
}

.lang-selector.open .languages {
    width: 250px;
    padding: 0 5px;
}

.lang-selector .languages {
    text-align: right;
    width: 0;
    display: flex;
    justify-content: space-around;
    height: 44px;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    background: white;
    border-radius: 8px;
}

.lang-selector .languages * {
    display: inline-block;
    height: 44px;
    line-height: 44px;
    text-decoration: none;
    border: none;
    background: transparent;
    color: var(--boom-secondary);
}

.lang-selector .lang-switch {
    display: inline-block;
    height: 44px;
    max-width: 40px;
    font-weight: normal;
    padding: 0 40px 0 5px;
    background: transparent url("../img/header/arrow-lang.svg") center right/10px no-repeat;
}

.lang-selector .lang-switch::before {
    content: attr(data-attrib-lang);
    display: inline-block;
    opacity: 1;
    transition: opacity 0.1s;
    transition-delay: 0.5s;
}

.lang-selector.open .lang-switch {
    padding: 0 10px;
}

.lang-selector.open .lang-switch::before {
    content: "";
    opacity: 0;
    transition: opacity 0.1s;
    transition-delay: 0.5s;
}

/* search modal */
.search-ovl-new {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 510;
}

.search-ovl-new .ovl {
    height: 100vh;
    max-height: 1000px;
    overflow: hidden;
}

.search-ovl-new.open {
    display: block;
}

.search-ovl-new .searching {
    background-color: #FFFFFF;
}

.search-ovl-new .searching .container {
    border-bottom: solid 1px rgba(151, 151, 151, 0.3);
}

.search-ovl-new section {
    background-color: #FFFFFF;
}

.search-ovl-new .argument {
    border: solid 1px rgb(151, 151, 151);
    border: solid 1px rgba(151, 151, 151, 0.15);
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border-radius: 5px;
    padding: 28px 23px;
    font-size: 16px;
    line-height: 21px;
    color: var(--boom-secondary);
    background-color: transparent;
    margin: 0 15px 15px 0;
}

.search-ovl-new .argument.active, .search-ovl-new .argument:hover, .search-ovl-new .argument:active, .search-ovl-new .argument:focus {
    background-color: #666666;
    color: #FFFFFF;
}

.search-ovl-new .search-header {
    max-width: 1440px;
    margin: auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 110px;
    background-color: var(--boom-primary);
}

.search-ovl-new .search-close {
    font-size: 18px;
    line-height: 23px;
    letter-spacing: 0;
    color: var(--boom-secondary);
    padding: 5px 40px 5px 10px;
    height: 30px;
    background: transparent url(../img/icon-close-black.svg) center right 14px/14px no-repeat;
    border: none;
}

.search-ovl-new .search {
    align-items: center;
    background-color: #FFFFFF;
    padding: 40px 0 30px 0;
}

.search-ovl-new .search input[type=text] {
    font-size: 35px;
    line-height: 46px;
    color: #020202;
    border: none;
    padding: 20px 20px 20px 80px;
    background: transparent url(../img/header/search.svg) center left/45px no-repeat;
}

.search-ovl-new .search input[type=text]::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #020202;
}

.search-ovl-new .search input[type=text]::-moz-placeholder {
    /* Firefox 19+ */
    color: #020202;
}

.search-ovl-new .search input[type=text]:-ms-input-placeholder {
    /* IE 10+ */
    color: #020202;
}
.search-ovl-new .search input[type=text]:-moz-placeholder {
    /* Firefox 18- */
    color: #020202;
}

.search-ovl {
    display: none;
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    z-index: 10;
}

.search-ovl.open {
    display: block;
}

.search-ovl section {
    background-color: var(--boom-primary);
    padding: 30px 0;
}

.search-ovl .search-header {
    display: flex;
    align-items: center;
}

.search-ovl .search-close {
    font-weight: bold;
    line-height: 20px;
    color: #FFFFFF;
    padding: 5px 40px 5px 10px;
    height: 30px;
    background: transparent url(../img/close.svg) center right 10px/10px no-repeat;
    border: none;
}

.search-ovl .search {
    align-items: center;
    padding: 40px 0 10px 0;
}

.search-ovl .search input[type=text] {
    font-size: 44px;
    line-height: 44px;
    color: #FFFFFF;
    border: solid 1px rgba(255, 255, 255, 0.5);
    padding: 20px 20px 20px 80px;
    background: transparent url(../img/search.svg) center left/54px no-repeat;
}

.search-ovl .search input[type=text]::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #FFFFFF;
}

.search-ovl .search input[type=text]::-moz-placeholder {
    /* Firefox 19+ */
    color: #FFFFFF;
}

.search-ovl .search input[type=text]:-ms-input-placeholder {
    /* IE 10+ */
    color: #FFFFFF;
}

.search-ovl .search input[type=text]:-moz-placeholder {
    /* Firefox 18- */
    color: #FFFFFF;
}

@media (max-width: 991px) {
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 80px;
    }

    header.landing .landing-menu a {
        font-size: 11px;
        line-height: 14px;
        padding: 11px 15px 10px;
    }

    header.landing .lang-selector {
        padding-right: 0;
        padding-left: 20px;
    }

    header.landing .lang-selector {
        position: relative;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: flex-end;
        font-size: 14px;
        line-height: 35px;
        width: 60px;
    }

    header.landing .lang-selector.open .languages {
        height: auto;
        box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);
    }

    header.landing .lang-selector .languages {
        position: absolute;
        top: 35px;
        right: -5px;
        text-align: center;
        width: 60px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        height: 0;
        transition: all 0.3s ease-in-out;
        overflow: hidden;
        background: white;
        border-radius: 8px;
    }

    header.landing .lang-selector .languages * {
        display: inline-block;
        height: 35px;
        line-height: 35px;
        margin-bottom: 20px;
        text-decoration: none;
        border: none;
        background: transparent;
        color: var(--boom-secondary);
        font-size: 14px;
    }

    header.landing .lang-selector .lang-switch {
        display: inline-block;
        height: 35px;
        max-width: 40px;
        font-weight: normal;
        padding: 0 40px 0 5px;
        background: transparent url("../img/header/arrow-lang.svg") center right/10px no-repeat;
    }

    header.landing .lang-selector .lang-switch::before {
        content: attr(data-attrib-lang);
        display: inline-block;
        opacity: 1;
        transition: opacity 0.1s;
        transition-delay: 0.5s;
    }

    body {
        padding-top: 80px;
    }

    .main-menu {
        width: 100%;
    }

    .main-menu .menu-brand {
        margin-right: auto;
    }
    
    .main-menu .menu-brand img {
        width: 60px;
    }
    .main-menu .menu-toggler {
        display: block;
        width: 40px;
        height: 40px;
        overflow: hidden;
        text-indent: -1000px;
        border: none;
        background: transparent center/30px no-repeat;
    }
    
    .main-menu .menu {
        position: fixed;
        top: 80px;
        left: 100%;
        height: auto;
        width: 100%;
        min-height: calc(100vh - 80px);
        flex-direction: column;
        align-items: flex-start;
        list-style: none;
        margin-bottom: 0;
        background-color: var(--boom-primary);
        padding-top: 20px;
    }

    .main-menu .menu .enter {
        margin: 40px 0 20px 20px;
        font-size: 16px;
        font-weight: normal;
        line-height: 24px;
        padding: 8px 16px;
    }

    .main-menu .menu .nav-item {
        position: relative;
        border-bottom: solid 1px transparent;
        margin: 5px 10px;
    }

    .main-menu .menu .nav-item.active {
        border-bottom-color: transparent;
    }
    
    .main-menu .menu .nav-item.submenu-toggler {
        padding-right: 10px;
    }
    
    .main-menu .menu .nav-item.submenu-toggler > a {
        display: inline-block;
        position: relative;
        padding-right: 30px;
    }

    .main-menu .menu .nav-item.submenu-toggler > a::after {
        height: 32px;
        background-size: 14px !important;
    }

    .main-menu .menu .nav-item.submenu-toggler .submenu {
        display: block;
        max-height: 0;
        overflow: hidden;
        margin-left: 5px;
        border-radius: 0;
        padding: 0 20px;
        transition: 0.5s max-height ease;
    }

    .main-menu .menu .nav-item.submenu-toggler .submenu.open {
        max-height: 500px;
    }
    
    .main-menu .menu .nav-item.submenu-toggler .submenu > ul {
        padding-top: 25px;
    }
    
    .main-menu .menu .nav-item.submenu-toggler .submenu-toggle-btn {
        position: relative;
        display: inline-block;
        background-color: transparent;
        border: none;
        color: var(--boom-secondary);
        font-size: 30px;
        line-height: 35px;
        padding: 0 30px 0 5px;
    }

    .main-menu .menu .nav-item.submenu-toggler .submenu-toggle-btn::after {
        content: "";
        position: absolute;
        top: 5px;
        right: 0;
        display: block;
        width: 20px;
        height: 32px;
        background: transparent url(../img/header/arrow-dropdown.svg) center/14px no-repeat;
    }

    .main-menu .menu .nav-item.submenu-toggler .submenu-toggle-btn.open::after {
        transform: rotate(180deg);
    }
    .main-menu .menu .nav-item.submenu-toggler .submenu-toggle-btn.open + a + .submenu {
        display: block;
        max-height: 600px;
        transition: 0.5s max-height ease;
    }
    
    .main-menu .menu .nav-item.submenu-toggler .submenu-toggle-btn.open + a + .submenu a {
        display: inline-block;
    }
    
    .main-menu .menu .nav-item a {
        display: inline-block;
        background-color: transparent;
        border: none;
        color: var(--boom-secondary);
        font-size: 30px;
        line-height: 35px;
        padding: 0 5px;
    }
    
    .main-menu .menu .nav-item .submenu {
        position: static !important;
        width: 100%;
        max-width: initial;
        list-style: none;
        padding: 5px 15px;
        background-color: #FFFFFF;
        opacity: 1;
        box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        transform: none !important;
        margin-top: 10px;
    }
    
    .main-menu .menu .nav-item .submenu .row {
        flex-direction: column;
        align-items: stretch;
    }

    .main-menu .menu .nav-item .submenu .row .col-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .main-menu .menu .nav-item .submenu .row .col-3 .menu-blurb {
        padding: 10px 0 10px 68px;
        background-position: center left 5px;
        font-weight: bold;
        font-size: 23px;
        line-height: 30px;
        color: var(--boom-secondary);
    }

    .main-menu .menu .nav-item .submenu .row .col-3 .menu-blurb span {
        display: block;
        font-weight: normal;
        font-size: 16px;
        line-height: 17px;
    }

    .main-menu .menu .nav-item .submenu .row .col-3 .menu-blurb.education {
        background-size: 34px;
    }

    .main-menu .menu .nav-item .submenu .row .col-3 .menu-blurb.training {
        background-size: 32px;
    }

    .main-menu .menu .nav-item .submenu .row .col-3 .menu-blurb.innovation {
        background-size: 46px;
    }

    .main-menu .menu .nav-item .submenu .row .col-3 .menu-blurb.starthub {
        background-size: 34px;
    }

    .main-menu .menu .nav-item .submenu .row .col-3 .menu-blurb:hover {
        background-position: center left 5px;
    }

    .main-menu .menu .nav-item .submenu .more {
        display: inline-block;
        font-weight: bold;
        font-size: 14px;
        line-height: 18px;
        text-transform: uppercase;
        color: var(--boom-primary);
        background: transparent url(../img/arrow-right-orange.svg) center right 15px/22px no-repeat;
        padding: 10px 55px 10px 10px;
        margin-bottom: 25px;
    }

    .main-menu .menu .nav-item .submenu .more.white {
        color: #FFFFFF;
        background: transparent url(../img/arrow-right-white.svg) center right 15px/22px no-repeat;
    }

    .main-menu .menu .nav-item .submenu .more.white:hover, .main-menu .menu .nav-item .submenu .more.white:active, .main-menu .menu .nav-item .submenu .more.white:focus {
        color: #FFFFFF;
    }

    .main-menu .menu .nav-item .submenu .more:hover, .main-menu .menu .nav-item .submenu .more:active, .main-menu .menu .nav-item .submenu .more:focus {
        color: var(--boom-primary);
        text-decoration: none;
        background-position: center right 10px;
        transition: background-position 0.3s ease;
    }

    .main-menu .menu-toggler.open + .menu {
        left: 0;
        transition: left 0.3s ease;
    }

    .main-menu .menu-toggler {
        position: relative;
        display: block;
        width: 45px;
        height: 30px;
        overflow: hidden;
        text-indent: -1000px;
        border: none;
        margin-left: 20px;
    }

    .main-menu .menu-toggler::before {
        content: "";
        position: absolute;
        top: 7px;
        left: 0;
        display: block;
        width: 100%;
        height: 1px;
        background-color: var(--boom-secondary);
        transition: 0.3s all linear;
    }

    .main-menu .menu-toggler::after {
        content: "";
        position: absolute;
        bottom: 7px;
        left: 0;
        display: block;
        width: 100%;
        height: 1px;
        background-color: var(--boom-secondary);
        transition: 0.3s all linear;
    }

    .main-menu .menu-toggler.open::before {
        transform: rotate(19deg);
        transform-origin: 0 0;
        transition: 0.3s all linear;
    }

    .main-menu .menu-toggler.open::after {
        transform: rotate(-19deg);
        transform-origin: 0 0;
        transition: 0.3s all linear;
    }

    .lang-selector {
        flex-wrap: nowrap;
        align-items: center;
        justify-content: flex-end;
        font-size: 23px;
        line-height: 25px;
        padding: 0 20px 0 15px;
        width: 100%;
        margin: 0;
    }

    .lang-selector.open .languages {
        width: 280px;
        padding: 0 5px;
    }

    .lang-selector .languages {
        text-align: right;
        width: 0;
        display: flex;
        justify-content: space-around;
        height: 44px;
        transition: all 0.3s ease-in-out;
        overflow: hidden;
        background: white;
        border-radius: 8px;
    }

    .lang-selector .languages * {
        display: inline-block;
        height: 44px;
        font-size: 18px;
        line-height: 44px;
        text-decoration: none;
        border: none;
        background: transparent;
        color: var(--boom-secondary);
    }

    .lang-selector .lang-switch {
        display: inline-block;
        height: 44px;
        max-width: 50px;
        font-weight: normal;
        padding: 0 50px 0 5px;
        background: transparent url("../img/header/arrow-lang.svg") center right/10px no-repeat;
    }

    .lang-selector .lang-switch::before {
        content: attr(data-attrib-lang);
        display: inline-block;
        opacity: 1;
        transition: opacity 0.1s;
        transition-delay: 0.5s;
    }

    .lang-selector.open .lang-switch {
        padding: 0 10px;
    }

    .lang-selector.open .lang-switch::before {
        content: "";
        opacity: 0;
        transition: opacity 0.1s;
        transition-delay: 0.5s;
    }

    /* search modal */
    .search-ovl-new {
        position: fixed;
    }

    .search-ovl-new .ovl {
        height: 100vh;
        max-height: 1000px;
        overflow: auto;
    }

    .search-ovl-new .search-brand {
        margin-right: auto;
    }

    .search-ovl-new .search-brand img {
        width: 60px !important;
    }

    .search-ovl-new .search-close {
        background: transparent url(../img/icon-close-black.svg) center right 14px/14px no-repeat;
        overflow: hidden;
        text-indent: -1000px;
    }

    .search-ovl-new .search-header {
        max-width: 1440px;
        margin: auto;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 80px;
        background-color: var(--boom-primary);
    }

    .search-ovl-new .search {
        padding: 20px 0 20px 0;
    }

    .search-ovl-new .search input[type=text] {
        font-size: 22px;
        line-height: 41px;
        padding: 10px 10px 10px 50px;
        background: transparent url(../img/search.svg) center left/30px no-repeat;
    }

    .search-ovl-new .search-suggestions {
        padding-top: 45px;
    }

    .search-ovl-new .suggestions-entries .btn {
        padding: 15px 25px;
        font-size: 14px;
        line-height: 20px;
        margin: 0 15px 15px 0;
    }

    .search-ovl-new .suggestions-entries .btn:hover, .search-ovl-new .suggestions-entries .btn:focus, .search-ovl-new .suggestions-entries .btn:active {
        background-color: rgba(255, 255, 255, 0.05) !important;
    }

    .search-ovl {
        position: fixed;
    }

    .search-ovl section {
        height: calc(100vh - 110px);
        padding-top: 30px;
    }

    .search-ovl .search-brand {
        margin-top: -10px;
        margin-right: auto;
    }

    .search-ovl .search-brand img {
        width: 120px !important;
    }

    .search-ovl .search-close {
        padding: 5px;
        background: transparent url(../img/close.svg) center right 10px/20px no-repeat;
        overflow: hidden;
        text-indent: -1000px;
    }

    .search-ovl .search input[type=text] {
        font-size: 22px;
        line-height: 41px;
        padding: 10px 10px 10px 50px;
        background: transparent url(../img/search.svg) center left/30px no-repeat;
    }

    .search-ovl .search-suggestions {
        padding-top: 45px;
    }

    .search-ovl .suggestions-entries .btn {
        padding: 15px 25px;
        font-size: 14px;
        line-height: 20px;
        margin: 0 15px 15px 0;
    }

    .search-ovl .suggestions-entries .btn:hover, .search-ovl .suggestions-entries .btn:focus, .search-ovl .suggestions-entries .btn:active {
        background-color: rgba(255, 255, 255, 0.05) !important;
    }
}

.landing-menu {
    list-style: none;
    margin-bottom: 0;
}

/* blocks */
/*Home/Network barra "Sei dipendente..."*/
.cmp-result {
    padding: 40px 70px 10px 70px;
    margin-left: 0;
    margin-right: 0;
    background-color: var(--boom-primary);
    border: solid 1px var(--boom-primary);
    border-radius: 8px;
}

@media (max-width: 991px) {
    .cmp-result {
        padding: 20px 15px 10px 15px;
        justify-content: center;
    }
}
/* Test carousel */
.swiper-test-carousel {
    height: 600px;
}

.swiper-test-carousel .swiper-slide > img, .swiper-test-img {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    z-index: 99;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);
    /*overflow: hidden;*/
}

.swiper-test-carousel .swiper-pagination {
    position: static;
    text-align: left;
    /*margin-top: 60px;*/
}

.swiper-test-carousel .swiper-pagination .swiper-pagination-bullet {
    width: 60px;
    height: 60px;
    background-color: transparent;
    color: var(--boom-secondary);
    font-size: 25px;
    line-height: 60px;
    text-align: center;
    opacity: 1;
    margin: 0 10px 0 0;
}
.swiper-test-carousel .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--boom-secondary);
    color: #FFFFFF;
}

@media (max-width: 991px) {
    .swiper-test-img-parent {
        display: flex;
        justify-content: center !important;
    }

    .swiper-test-text {
        text-align: center;
        margin-top: 30px;
    }

    .swiper-test-pagination {
        text-align: center !important;
    }
}

    /* Homepage carousel */
.swiper-home-carousel, .landing-heading {
    height: 600px;
}

.swiper-home-carousel .swiper-slide > img, .landing-heading .swiper-slide > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 37.917%;
    height: 600px;
    object-fit: cover;
}

.swiper-home-carousel .swiper-slide .btn, .landing-heading .swiper-slide .btn {
    width: 350px;
    max-width: 100%;
}

.swiper-home-carousel .swiper-pagination, .landing-heading .swiper-pagination {
    position: static;
    text-align: left;
    margin-top: 60px;
}

.swiper-home-carousel .swiper-pagination .swiper-pagination-bullet, .landing-heading .swiper-pagination .swiper-pagination-bullet {
    width: 60px;
    height: 60px;
    background-color: transparent;
    color: var(--boom-secondary);
    font-size: 25px;
    line-height: 60px;
    text-align: center;
    opacity: 1;
    margin: 0 10px 0 0;
}

.swiper-home-carousel .swiper-pagination .swiper-pagination-bullet-active, .landing-heading .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--boom-secondary);
    color: #FFFFFF;
}

@media (max-width: 991px) {

    .swiper-home-carousel, .landing-heading {
        height: auto;
    }

    .swiper-home-carousel .swiper-slide, .landing-heading .swiper-slide {
        padding: 220px 0 20px;
    }

    .swiper-home-carousel .swiper-slide > img, .landing-heading .swiper-slide > img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 201px;
        object-fit: cover;
    }

    .swiper-home-carousel .swiper-slide p, .landing-heading .swiper-slide p {
        height: 150px;
    }

    .swiper-home-carousel .swiper-pagination, .landing-heading .swiper-pagination {
        position: static;
        margin-top: 20px;
    }

    .swiper-home-carousel .swiper-pagination .swiper-pagination-bullet, .landing-heading .swiper-pagination .swiper-pagination-bullet {
        width: 51px;
        height: 51px;
        background-color: transparent;
        color: var(--boom-secondary);
        font-size: 20px;
        line-height: 51px;
        text-align: center;
        opacity: 1;
        margin: 0 10px 0 0;
    }

    .swiper-home-carousel .swiper-pagination .swiper-pagination-bullet-active, .landing-heading .swiper-pagination .swiper-pagination-bullet-active {
        background-color: var(--boom-secondary);
        color: #FFFFFF;
    }

    .landing-heading .swiper-slide {
        padding-bottom: 60px;
    }

    .landing-heading .swiper-slide p {
        height: auto;
    }
}

/* Homepage blocco arancione */
.orange-block {
    position: relative;
    height: 480px;
    background-color: var(--boom-primary);
}

.orange-block > img {
    position: absolute;
    top: 0;
    right: 0;
    width: 37.917%;
    height: 480px;
    object-fit: cover;
}

@media (max-width: 991px) {

    .orange-block {
        height: auto;
        padding: 270px 0 50px;
    }

    .orange-block > img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    .orange-block .more {
        margin-top: 20px;
    }
}

/* Homepage offerta */
.offer {
    padding: 70px 0 0;
}

.custom-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    height: 300px;
    margin: 40px 30px 90px 0;
    padding: 30px;
    border: solid 1px var(--boom-primary);
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.custom-card.centered {
    margin: 50px 0 30px;
    padding: 0 30px 30px;
    height: 410px;
}

.custom-card.centered img {
    position: static;
    margin: -50px 0 30px;
    right: auto;
    width: 350px;
    height: 200px;
}

.custom-card.centered .h3, .custom-card.centered p {
    max-width: initial;
}

.custom-card .h3, .custom-card p {
    max-width: 50%;
}

.custom-card .more {
    margin-top: auto;
    align-self: flex-end;
}

.custom-card img {
    position: absolute;
    top: -80px;
    right: -30px;
    width: 50%;
    height: 300px;
    object-fit: cover;
}

.custom-card:not(.centered):hover {
    background-color: var(--boom-primary);
    transition: background-color 0.3s ease;
}

.custom-card:not(.centered):hover .more {
    color: #FFFFFF;
    background: transparent url(../img/arrow-right-white.svg) center right 5px/22px no-repeat;
}

.custom-card:not(.centered):hover .more:hover, .custom-card:not(.centered):hover .more:active, .custom-card:not(.centered):hover .more:focus {
    color: #FFFFFF;
    background-position: center right;
    transition: background-position 0.3s ease;
}

@media (max-width: 991px) {
    .offer {
        padding: 50px 0 30px;
    }

    .offer .h2.small {
        margin-bottom: 50px;
    }

    .custom-card {
        height: auto;
        margin: 40px 0 30px;
        padding: 0 20px 20px;
        border: none;
        border-radius: 0;
        box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);
    }

    .custom-card img {
        position: static !important;
        margin: -50px 0 30px !important;
        right: auto !important;
        width: 350px !important;
        height: 200px !important;
    }

    .custom-card .h3, .custom-card p {
        max-width: initial;
    }

    .custom-card.centered {
        margin: 30px 0 50px;
        padding: 0 20px 20px;
        height: auto;
        border: solid 1px var(--boom-primary);
        border-radius: 5px;
        box-shadow: none;
    }

    .custom-card.centered img {
        position: static !important;
        margin: -50px auto 20px !important;
        left: 50%;
        right: auto;
        width: 400px;
        height: 200px;
    }

    .custom-card.centered .h3, .custom-card.centered p {
        max-width: initial;
    }

    .custom-card .h3, .custom-card p {
        max-width: 60%;
    }

    .custom-card img {
        position: absolute;
        top: -30px;
        right: -30px;
        width: 150px;
        height: 150px;
        object-fit: cover;
    }
}

/* Homepage progetto */
.project {
    height: 500px;
    background: transparent url(../img/cerchi/01_cerchi_home.svg) center left -20%/50% no-repeat;
}

.project.landing {
    height: auto;
    background: transparent url(../img/cerchi/01_cerchi_home.svg) top left -20%/48% no-repeat;
    padding: 40px 0 80px;
}

@media (max-width: 991px) {

    .project {
        height: auto;
        background: transparent;
        padding: 0 0 30px;
    }

    .project .more {
        margin-top: 20px;
    }

    .project.landing {
        height: auto;
        background: transparent;
        padding: 20px 0 50px;
        border-bottom: solid 1px rgba(151, 151, 151, 0.3);
    }
}

/* Homepage modello Boom */
.model {
    padding: 70px 0;
    background: transparent url(../img/cerchi/02_cerchi_home.svg) center right -15%/40% no-repeat;
}

.model .steps {
    list-style: none;
}

.model .steps li {
    padding: 30px 0 25px 110px;
    background: transparent center left no-repeat;
}

.model .steps .step-education {
    background-image: url(../img/cerchi/bullets/homepage/step-1.svg);
}

.model .steps .step-innovation {
    background-image: url(../img/cerchi/bullets/homepage/step-2.svg);
}

.model .steps .step-learning {
    background-image: url(../img/cerchi/bullets/homepage/final-goal.svg);
}

@media (max-width: 991px) {
    .model {
        padding: 30px 0 40px;
        background: transparent;
    }

    .model .steps {
        margin-top: 30px;
    }

    .model .steps li {
        padding: 0 0 0 110px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 90px;
        margin-bottom: 30px;
    }
}

/* Homepage numeri CRIF */
.numbers {
    padding: 40px 0;
    border: solid 1px rgba(151, 151, 151, 0.3);
    border-width: 1px 0;
    text-align: center;
}

.big-numbers {
    font-size: 50px;
    line-height: 70px;
    color: var(--boom-primary);
}

.count-num {
    font-size: 120px;
    line-height: 70px;
}

.number-label {
    font-size: 18px;
    line-height: 22px;
}

@media (max-width: 991px) {
    .numbers {
        padding: 50px 0 20px;
    }

    .big-numbers {
        font-size: 40px;
        line-height: 60px;
        margin-bottom: 10px;
    }

    .count-num {
        font-size: 80px;
        line-height: 60px;
    }

    .number-label {
        font-size: 18px;
        line-height: 20px;
        margin-bottom: 40px;
    }
}

/* Homepage carosello partner */
.partners {
    padding: 50px 0 70px;
}

.swiper-partners {
    padding: 20px 0 80px;
}

.swiper-partners .swiper-slide {
    text-align: center;
}

.swiper-partners .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    background-color: transparent;
    border: solid 1px var(--boom-primary);
    opacity: 1;
    margin: 0 10px 0 0;
    border-radius: 6px;
}

.swiper-partners .swiper-pagination-bullet-active {
    background-color: var(--boom-primary);
    width: 30px;
}

/* =========== PAGINE INTERNE =========== */
/* Heading pagine interne */
.heading {
    height: 190px;
    background-color: var(--boom-primary);
}

.heading p {
    font-size: 20px;
}

.heading.extended {
    height: 320px;
    padding-top: 70px;
}

.bg-offer {
    background: var(--boom-primary) url(../img/cerchi/offerta/offerta.svg) bottom -170px left 117%/687px no-repeat;
}

.bg-education {
    background: var(--boom-primary) url(../img/cerchi/offerta/education.svg) bottom -170px left 88%/540px no-repeat;
}

.bg-learning {
    background: var(--boom-primary) url(../img/cerchi/offerta/learning.svg) bottom -170px left 88%/450px no-repeat;
}

.bg-innovation {
    background: var(--boom-primary) url(../img/cerchi/offerta/innovation.svg) bottom -170px left 86%/660px no-repeat;
}

.bg-starthub {
    background: var(--boom-primary) url(../img/cerchi/offerta/starthub.svg) bottom -140px left 88%/460px no-repeat;
}

.bg-network {
    background: var(--boom-primary) url(../img/cerchi/offerta/education.svg) bottom -70px left 88%/350px no-repeat;
}

.bg-corporate_community {
    background: var(--boom-primary) url(../img/cerchi/offerta/education.svg) bottom -30px left 88%/540px no-repeat;
}

.bg-esplora_boom {
    background: var(--boom-primary) url(../img/cerchi/offerta/education.svg) bottom -30px left 88%/540px no-repeat;
}

.bg-esplora {
    background: var(--boom-primary) url(../img/cerchi/offerta/education.svg) bottom -30px left 88%/540px no-repeat;
}


@media (max-width: 991px) {

    .heading {
        height: auto;
        padding: 50px 0 30px;
    }

    .heading p {
        font-size: 18px;
    }

    .heading.extended {
        min-height: 250px;
        padding: 70px 0 30px;
    }

    .heading.extended .container {
        height: auto;
    }

    .bg-offer {
        background: var(--boom-primary) url(../img/cerchi/offerta/offerta-mobile.svg) top 20px left 20px/45px no-repeat !important;
    }

    .bg-education {
        background: var(--boom-primary) url(../img/cerchi/offerta/education-mobile.svg) top 20px left 20px/45px no-repeat !important;
    }

    .bg-learning {
        background: var(--boom-primary) url(../img/cerchi/offerta/learning-mobile.svg) top 20px left 20px/45px no-repeat !important;
    }

    .bg-innovation {
        background: var(--boom-primary) url(../img/cerchi/offerta/innovation-mobile.svg) top 20px left 20px/45px no-repeat !important;
    }

    .bg-starthub {
        background: var(--boom-primary) url(../img/cerchi/offerta/starthub-mobile.svg) top 20px left 20px/45px no-repeat !important;
    }

    .bg-network {
        background: var(--boom-primary) url(../img/cerchi/offerta/network-mobile.svg) top 20px left 20px/45px no-repeat !important;
    }

    .bg-corporate_community {
        background: var(--boom-primary) url(../img/cerchi/offerta/corporate_community-mobile.svg) top 20px left 20px/45px no-repeat !important;
    }

    .bg-esplora_boom {
        background: var(--boom-primary) url(../img/cerchi/offerta/corporate_community-mobile.svg) top 20px left 20px/45px no-repeat !important;
    }

    .bg-esplora {
        background: var(--boom-primary) url(../img/cerchi/offerta/corporate_community-mobile.svg) top 20px left 20px/45px no-repeat !important;
    }
}

/* Lancio testo grande inizio pagina */
.launch {
    padding: 80px 0 40px;
}

.launch p {
    font-size: 40px;
    line-height: 45px;
}

@media (max-width: 991px) {
    .launch {
        padding: 30px 0 20px;
    }

    .launch p {
        font-size: 30px;
        line-height: 36px;
    }
}

/* Contatti */
.contact-infos {
    list-style: none;
    margin-bottom: 50px;
}

.contact-infos li {
    padding-left: 30px;
    background: transparent url() center left no-repeat;
}

.contact-infos li p {
    margin-bottom: 0;
}

.contact-infos .location {
    background-image: url(../img/contatti/location.svg);
}

.contact-infos .phone {
    background-image: url(../img/contatti/phone.svg);
}

.contact-infos .fax {
    background-image: url(../img/contatti/fax.svg);
}

.contacts .cta-box {
    display: flex;
    flex-direction: column;
    padding: 28px;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.contacts .cta-box .h4 {
    margin-bottom: 15px;
}

.contacts .cta-box p {
    margin-bottom: 20px;
}

.contacts .cta-box .btn {
    margin-bottom: 25px;
}

.contacts .cta-box .more {
    margin-left: auto;
    align-self: flex-end;
}

.contact-form {
    padding: 0 12% 40px 10%;
}

.contact-form .form-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-form .form-header p {
    font-size: 14px;
    line-height: 20px;
}

.contact-form .role-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    margin-bottom: 10px;
}

.contact-form .role-buttons input[type=radio] {
    position: fixed;
    top: -1000px;
    left: -1000px;
}

.contact-form .role-buttons input[type=radio]:focus + label, .contact-form .role-buttons input[type=radio]:checked + label {
    border: solid 1px var(--boom-primary);
    text-decoration: none;
}

.contact-form .role-buttons label {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    color: #666666;
    height: 80px;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.contact-form .role-buttons label:hover {
    border: solid 1px var(--boom-primary);
    text-decoration: none;
}

.contact-form .form-group {
    margin-top: 20px;
}

.landing-form .contact-form, .startup-form .contact-form {
    padding: 0 15px 30px;
}

.landing-form .contact-form .form-header, .startup-form .contact-form .form-header {
    padding-top: 80px;
    margin-bottom: 0;
}

.landing-form .contact-form .contact-form, .startup-form .contact-form .contact-form {
    padding-top: 20px;
}

@media (max-width: 991px) {

    .contact-form {
        padding: 0 0 40px;
    }

    .contact-form .role-buttons {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }

    .contact-form .form-header {
        margin-bottom: 0;
    }
}

/* offerta */
.need-space, .whats-boom {
    position: relative;
    height: 570px;
}

.need-space > img, .whats-boom > img {
    position: absolute;
    top: 0;
    right: 0;
    width: 48%;
    height: 570px;
    object-fit: cover;
}

.cta-hero {
    background-color: var(--boom-primary);
    padding: 55px 0;
    color: #FFFFFF !important;
}

.cta-hero.col-12 {
    border-radius: 8px;
    margin-bottom: 40px;
    padding: 55px 15px;
}

.cta-hero .btn {
    margin-top: 20px;
    width: 210px;
}

.acceleration-hero {
    margin-top: 47px;
    background-color: var(--boom-primary);
    padding: 55px 0;
    color: #FFFFFF !important;
}

.acceleration-hero.col-12 {
    border-radius: 8px;
    margin-bottom: 40px;
    padding: 55px 15px;
}

.acceleration-hero .btn {
    margin-top: 20px;
    width: 210px;
}

@media (max-width: 991px) {

    .need-space, .whats-boom {
        position: relative;
        height: auto;
        padding: 220px 0 20px;
    }

    .need-space > img, .whats-boom > img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .cta-hero .btn {
        width: 100%;
    }
}

/* Education */
.filters {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 30px;
}

.filters button {
    display: inline-block;
    border: solid 1px var(--boom-primary);
    background-color: transparent;
    font-size: 16px;
    line-height: 20px;
    color: #666666;
    padding: 10px 15px;
    margin: 0 15px 15px 0;
    border-radius: 5px;
}

.filters button.active, .filters button:hover, .filters button:active, .filters button:focus {
    background-color: var(--boom-primary);
    color: #FFFFFF;
}

.education-shop {
    border-top: solid 1px rgba(151, 151, 151, 0.3);
}

.education-shop .border-right {
    border-right: solid 1px rgba(151, 151, 151, 0.3);
}

.education-shop .clear-all {
    display: none;
    color: #9B9B9B;
    background-color: transparent;
    text-decoration: underline;
}

.education-shop .clear-all.active {
    display: inline-block;
}

.shop-filters .h4 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.shop-filters .profile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.shop-filters .profile .form-group {
    margin: 0;
    padding: 0;
}

.shop-filters .custom-check-input + label {
    font-size: 16px;
    color: var(--boom-secondary);
}

.shop-filters .custom-check-input + label::before {
    top: 35%;
    transform: translateY(-50%);
}

.shop-filters .custom-check-input:checked + label::after {
    top: 35%;
    transform: translateY(-50%);
    left: 4px;
    display: block;
    width: 16px;
    height: 16px;
    background-color: var(--boom-primary);
    border-radius: 1px;
    margin-top: 5px;
}

.education-results {
    padding: 0 0 60px;
}

.education-results .card.shop-card .h4 {
    min-height: 70px;
}

.education-results .card.shop-card .card-body {
    height: 290px;
    padding: 20px;
}

.education-results .card.shop-card .details {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    min-height: 115px;
    margin-bottom: 10px;
}

.education-results .card.shop-card .details strong {
    font-weight: 600;
}

.education-results .card.shop-card .details .full-price {
    color: #666666;
    text-decoration: line-through;
}

.education-results .card.shop-card .details .detail.note {
    font-size: 16px;
}

.education-results .card.shop-card .details .note {
    color: #009722;
    font-size: 14px;
    display: block;
    text-align: right;
    font-weight: 600;
}

.education-results .card.shop-card .tag {
    display: inline-block;
    font-size: 16px;
    line-height: 24px;
    color: #666666;
    background-color: #f5f5f5;
    height: 40px;
    border: 0;
    border-radius: 5px;
    padding: 8px 15px;
    margin: 0 8px 8px 0;
}

.education-results .card.shop-card .card-footer {
    background-color: transparent;
    padding: 30px;
    border-top: solid 1px rgba(151, 151, 151, 0.3);
    text-align: center;
}

.education-results .card {
    border: none;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);
    padding: 0;
    margin-bottom: 30px;
}

.education-results .card .h4 {
    margin-bottom: 10px;
}

.education-results .card .card-body {
    height: 210px;
    padding: 20px 30px;
    overflow: hidden;
}

.education-results .card .card-footer {
    background-color: transparent;
    padding: 10px 30px 30px;
    border-top: solid 1px rgba(151, 151, 151, 0.3);
    text-align: center;
}

.education-results .card .expand {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 20px;
    font-weight: bold;
    color: var(--boom-primary);
    text-transform: uppercase;
    background-color: transparent;
    padding-right: 30px;
    margin-bottom: 10px;
}

.education-results .card .expand::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 20px;
    height: 20px;
    background: transparent url(../img/dropdown/dropdown_arancione.svg) center no-repeat;
}

.education-results .card .details {
    text-align: left;
    padding: 10px 0 20px;
}

.education-results .card .details .h4 {
    font-size: 16px;
    line-height: 22px;
    font-weight: bold;
    margin-bottom: 0;
}

.education-results .card .details p {
    font-size: 16px;
    line-height: 22px;
    font-weight: normal;
    margin-bottom: 15px;
}

.education-results .card .details ul {
    padding-left: 25px;
}

.education-results .card .details li {
    padding-left: 10px;
}

.course-detail-contacts {
    border-top: solid 1px rgba(151, 151, 151, 0.3);
}

@media (max-width: 991px) {
    .education-results .card .h4, .education-results .card.shop-card .h4 {
        min-height: 50px;
    }

    .education-results .card .card-body, .education-results .card.shop-card .card-body {
        height: auto;
        padding: 20px;
    }

    .education-results .card .details, .education-results .card.shop-card .details {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 10px;
    }

    .education-results .card .details .detail, .education-results .card.shop-card .details .detail {
        margin-bottom: 15px;
    }

    .education-results .card .tag, .education-results .card.shop-card .tag {
        display: inline-block;
        font-size: 14px;
        line-height: 25px;
        color: #666666;
        background-color: #FFFFFF;
        height: 35px;
        border: solid 1px var(--boom-primary);
        border-radius: 5px;
        padding: 5px 15px;
        margin: 0 8px 8px 0;
    }
}

.shop-search {
    position: relative;
}

.shop-search .search {
    border-radius: 30px;
    padding-right: 60px;
}

.shop-search .search-btn {
    position: absolute;
    top: 0;
    right: 15px;
    display: block;
    height: 50px;
    width: 70px;
    text-indent: -1000px;
    overflow: hidden;
    background: transparent url(../img/header/search.svg) center no-repeat;
}

.sorting {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.sorting input[type=radio] {
    position: fixed;
    top: -1000px;
    left: -1000px;
}

.sorting .by-date + label, .sorting .by-price + label {
    background-color: transparent;
    border: none;
    margin-left: 20px;
    margin-bottom: 0;
    color: #666666;
    font-size: 16px;
}

.sorting .by-date:checked + label, .sorting .by-price:checked + label {
    color: var(--boom-primary);
}

.sorting .sort-up + label, .sorting .sort-down + label {
    text-indent: 1000px;
    overflow: hidden;
    background: transparent url(../img/sort-amount-up-off.svg) center/16px no-repeat;
    border: none;
    margin-left: 10px;
    margin-bottom: 0;
    display: inline-block;
    width: 25px;
    height: 30px;
}

.sorting .sort-up:checked + label, .sorting .sort-down:checked + label {
    background: transparent url(../img/sort-amount-up-on.svg) center/16px no-repeat;
}

.sorting .sort-down + label {
    background: transparent url(../img/sort-amount-down-off.svg) center/16px no-repeat;
    margin-left: 0;
}

.sorting .sort-down:checked + label {
    background: transparent url(../img/sort-amount-down-on.svg) center/16px no-repeat;
}

.open-shop-filters {
    display: block;
    width: 24px;
    height: 24px;
    text-indent: -1000px;
    overflow: hidden;
    background: transparent url(../img/sliders-h.svg) center no-repeat;
}

.close-shop-filters {
    display: block;
    width: 24px;
    height: 24px;
    text-indent: -1000px;
    overflow: hidden;
    background: transparent url(../img/close-filters.svg) center no-repeat;
}

@media (max-width: 991px) {
    .education-shop {
        border-top: none;
    }

    .education-shop .border-right {
        border-right: none !important;
    }

    .shop-filters {
        position: fixed;
        top: 0;
        left: 100%;
        width: 100%;
        height: 100vh;
        background-color: #FFFFFF;
        padding: 30px 0;
        z-index: 1000;
        overflow: auto;
        transition: left 0.5s ease;
    }

    .shop-filters.open {
        left: 0;
    }

    .shop-filters > * {
        padding-left: 20px;
        padding-right: 20px;
    }

    .shop-filters .h4 {
        font-size: 25px;
        line-height: 35px;
        margin-top: 25px;
        margin-bottom: 25px;
    }

    .shop-filters .profile {
        display: flex;
        flex-direction: row;
    }

    .shop-filters .profile .h4 {
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .sorting {
        justify-content: space-between;
    }

    .education-results {
        padding: 0 0 20px;
    }

    .education-results .card .card-body {
        height: auto;
        min-height: 180px;
        padding: 20px;
        overflow: hidden;
    }
}

/* altri servizi */
.other-services {
    border-top: solid 1px rgba(151, 151, 151, 0.3);
    padding: 60px 0 30px;
}

@media (max-width: 991px) {
    .other-services {
        padding: 40px 0 30px;
    }
}

/* Network */
.network-shop {
    border-top: solid 1px rgba(151, 151, 151, 0.3);
}

.network-shop .border-right {
    border-right: solid 1px rgba(151, 151, 151, 0.3);
}

.network-shop .clear-all {
    display: none;
    color: #9B9B9B;
    background-color: transparent;
    text-decoration: underline;
}

.network-shop .clear-all.active {
    display: inline-block;
}

.shop-filters .h4 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.shop-filters .profile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.shop-filters .profile .form-group {
    margin: 0;
    padding: 0;
}

.shop-filters .custom-check-input + label {
    font-size: 16px;
    color: var(--boom-secondary);
}

.shop-filters .custom-check-input + label::before {
    top: 35%;
    transform: translateY(-50%);
}

.shop-filters .custom-check-input:checked + label::after {
    top: 35%;
    transform: translateY(-50%);
    left: 4px;
    display: block;
    width: 16px;
    height: 16px;
    background-color: var(--boom-primary);
    border-radius: 1px;
    margin-top: 5px;
}

.network-results {
    padding: 0 0 60px;
}

.network-results .card.shop-card .h4 {
    min-height: 70px;
}

.network-results .card.shop-card .card-body {
    height: 238px;
    padding: 20px;
}

.network-results .card.shop-card .details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 10px;
}

.network-results .card.shop-card .details strong {
    font-weight: 600;
}

.network-results .card.shop-card .details .detail.full {
    grid-row: 1/3;
}

.network-results .card.shop-card .details .detail .orange {
    color: var(--boom-primary);
}

.network-results .card.shop-card .details .detail.note {
    font-size: 16px;
}

.network-results .card.shop-card .details .note {
    color: #009722;
    font-size: 14px;
    display: block;
    text-align: right;
    font-weight: 600;
}

.network-results .card.shop-card .tag {
    display: inline-block;
    font-size: 16px;
    line-height: 24px;
    color: #666666;
    background-color: #f5f5f5;
    height: 40px;
    border: 0;
    border-radius: 5px;
    padding: 8px 15px;
    margin: 0 8px 8px 0;
}

.network-results .card.shop-card .card-footer {
    background-color: transparent;
    padding: 30px;
    border-top: solid 1px rgba(151, 151, 151, 0.3);
    text-align: center;
}

.network-results .card {
    border: none;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);
    padding: 0;
    margin-bottom: 30px;
}

.network-results .card .h4 {
    margin-bottom: 10px;
}

.network-results .card .card-body {
    height: 210px;
    padding: 20px 30px;
    overflow: hidden;
}

.network-results .card .card-footer {
    background-color: transparent;
    padding: 10px 30px 30px;
    border-top: solid 1px rgba(151, 151, 151, 0.3);
    text-align: center;
}

.network-results .card .expand {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 20px;
    font-weight: bold;
    color: var(--boom-primary);
    text-transform: uppercase;
    background-color: transparent;
    padding-right: 30px;
    margin-bottom: 10px;
}

.network-results .card .expand::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 20px;
    height: 20px;
    background: transparent url(../img/dropdown/dropdown_arancione.svg) center no-repeat;
}

.network-results .card .details {
    text-align: left;
    padding: 0 0 20px;
}

.network-results .card .details .h4 {
    font-size: 16px;
    line-height: 22px;
    font-weight: bold;
    margin-bottom: 0;
}

.network-results .card .details p {
    font-size: 16px;
    line-height: 22px;
    font-weight: normal;
    margin-bottom: 15px;
}

.network-results .card .details ul {
    padding-left: 25px;
}

.network-results .card .details li {
    padding-left: 10px;
}

.course-detail-contacts {
    border-top: solid 1px rgba(151, 151, 151, 0.3);
}

@media (max-width: 991px) {

    .network-results .card .h4, .network-results .card.shop-card .h4 {
        min-height: 50px;
    }

    .network-results .card .card-body, .network-results .card.shop-card .card-body {
        height: auto;
        padding: 20px;
    }

    .network-results .card .details, .network-results .card.shop-card .details {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 10px;
    }

    .network-results .card .details .detail, .network-results .card.shop-card .details .detail {
        margin-bottom: 15px;
    }

    .network-results .card .tag, .network-results .card.shop-card .tag {
        display: inline-block;
        font-size: 14px;
        line-height: 25px;
        color: #666666;
        background-color: #FFFFFF;
        height: 35px;
        border: solid 1px var(--boom-primary);
        border-radius: 5px;
        padding: 5px 15px;
        margin: 0 8px 8px 0;
    }
}

.shop-search {
    position: relative;
}

.shop-search .search {
    border-radius: 30px;
    padding-right: 60px;
}

.shop-search .search-btn {
    position: absolute;
    top: 0;
    right: 15px;
    display: block;
    height: 50px;
    width: 70px;
    text-indent: -1000px;
    overflow: hidden;
    background: transparent url(../img/header/search.svg) center no-repeat;
}

.sorting {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.sorting input[type=radio] {
    position: fixed;
    top: -1000px;
    left: -1000px;
}

.sorting .by-date + label, .sorting .by-price + label {
    background-color: transparent;
    border: none;
    margin-left: 20px;
    margin-bottom: 0;
    color: #666666;
    font-size: 16px;
}

.sorting .by-date:checked + label, .sorting .by-price:checked + label {
    color: var(--boom-primary);
}

.sorting .sort-up + label, .sorting .sort-down + label {
    text-indent: 1000px;
    overflow: hidden;
    background: transparent url(../img/sort-amount-up-off.svg) center/16px no-repeat;
    border: none;
    margin-left: 10px;
    margin-bottom: 0;
    display: inline-block;
    width: 25px;
    height: 30px;
}

.sorting .sort-up:checked + label, .sorting .sort-down:checked + label {
    background: transparent url(../img/sort-amount-up-on.svg) center/16px no-repeat;
}

.sorting .sort-down + label {
    background: transparent url(../img/sort-amount-down-off.svg) center/16px no-repeat;
    margin-left: 0;
}

.sorting .sort-down:checked + label {
    background: transparent url(../img/sort-amount-down-on.svg) center/16px no-repeat;
}

.open-shop-filters {
    display: block;
    width: 24px;
    height: 24px;
    text-indent: -1000px;
    overflow: hidden;
    background: transparent url(../img/sliders-h.svg) center no-repeat;
}

.close-shop-filters {
    display: block;
    width: 24px;
    height: 24px;
    text-indent: -1000px;
    overflow: hidden;
    background: transparent url(../img/close-filters.svg) center no-repeat;
}

@media (max-width: 991px) {

    .network-shop {
        border-top: none;
    }

    .network-shop .border-right {
        border-right: none !important;
    }

    .shop-filters {
        position: fixed;
        top: 0;
        left: 100%;
        width: 100%;
        height: 100vh;
        background-color: #FFFFFF;
        padding: 30px 0;
        z-index: 1000;
        overflow: auto;
        transition: left 0.5s ease;
    }

    .shop-filters.open {
        left: 0;
    }

    .shop-filters > * {
        padding-left: 20px;
        padding-right: 20px;
    }

    .shop-filters .h4 {
        font-size: 25px;
        line-height: 35px;
        margin-top: 25px;
        margin-bottom: 25px;
    }

    .shop-filters .profile {
        display: flex;
        flex-direction: row;
    }

    .shop-filters .profile .h4 {
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .sorting {
        justify-content: space-between;
    }

    .network-results {
        padding: 0 0 20px;
    }

    .network-results .card .card-body {
        height: auto;
        min-height: 180px;
        padding: 20px;
        overflow: hidden;
    }
}

/* Network company detail */
.network-detail-heading {
    padding-top: 31px;
}

.network-detail-heading .company-logo {
    position: absolute;
    /*top: 0;  left: 0;*/
    width: 240px;
    height: 240px;
    border-radius: 50%;
    z-index: 99;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);
    /*overflow: hidden;*/
}

.company-detail {
    position: relative;
}

.company-detail .h4 {
    line-height: 30px;
}

.company-detail p {
    font-size: 16px;
    line-height: 22px;
}

.company-detail .company-detail-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
}

.company-detail .company-detail-banner + .container .col-lg-8 {
    padding-top: 28%;
}

.company-detail .arrow-content {
    display: block;
    padding: 15px 0 0 45px;
    margin-bottom: 20px;
    background: transparent url(../img/arrow-right-orange.svg) top 18px left no-repeat;
}

.company-detail .icon-skill {
    display: block;
    height: 50px;
    color: #666666;
    line-height: 20px;
    padding: 15px 0 15px 60px;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.company-detail .tag {
    display: inline-block;
    font-size: 16px;
    line-height: 24px;
    color: #666666;
    background-color: #f5f5f5;
    height: 40px;
    border: 0;
    border-radius: 5px;
    padding: 8px 15px;
    margin: 0 8px 8px 0;
}

.company-detail .company-calendar {
    border: solid 1px rgba(151, 151, 151, 0.3);
    border-radius: 5px;
}

.company-detail .company-calendar .btn {
    display: block;
    width: 100%;
    height: 60px;
    font-size: 14px;
    line-height: 20px;
    padding: 20px 10px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--boom-primary);
}

.company-detail .company-calendar .btn::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 10px;
    background: transparent url(../img/dropdown/dropdown_arancione.svg) center no-repeat;
    transform: rotate(180deg);
}

.company-detail .company-calendar .btn.collapsed::after {
    transform: rotate(0);
}

.company-detail .company-calendar #companies .col-lg-6 {
    border-top: solid 1px rgba(151, 151, 151, 0.3);
    padding: 10px 15px;
}

.company-detail .company-calendar #companies .col-lg-6:nth-of-type(odd) {
    border-right: solid 1px rgba(151, 151, 151, 0.3);
}

.company-detail .company-calendar #companies .h5 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.company-detail .company-calendar #companies .date {
    font-size: 16px;
    color: #666666;
    margin: 0;
}

.company-details-table .contacts {
    display: block;
    padding-bottom: 10px;
}

.company-details-table .contacts a {
    color: var(--boom-secondary);
    text-decoration: underline;
}

.company-details-table .h5 {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.company-details-table .h5.badge-icon {
    padding-left: 30px;
}

.company-details-table tr:first-of-type th, .company-details-table tr:first-of-type td {
    border: none;
}

.company-details-table th {
    font-weight: bold;
    text-transform: uppercase;
    padding: 20px 20px 20px 0;
}

.company-details-table td {
    padding: 20px 10px 20px 0;
}

.company-details-table td .full-price {
    text-decoration: line-through;
}

.company-details-table td:nth-of-type(2) {
    color: #009722;
    font-weight: 600;
    text-align: right;
}

.company-details-table td:last-of-type {
    padding-right: 0;
}

.company-details-table .partner-container {
    display: flex;
    height: 140px;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);
}

.mobile-float-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 76px;
    border-top: solid 1px rgba(151, 151, 151, 0.3);
    background-color: #FFFFFF;
    padding: 0 15px;
    z-index: 10;
}

.mobile-float-cta a {
    color: var(--boom-secondary) !important;
}

.mobile-float-cta .btn {
    padding-left: 55px;
}

.company-results {
    padding: 0 0 60px;
}

.company-results .card.profile-card .h4 {
    min-height: 70px;
}

.company-results .card.profile-card .card-body {
    padding: 20px;
}

.company-results .card.profile-card .profile-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 10px;
}

.company-results .card.profile-card .profile-details strong {
    font-weight: 600;
}

.company-results .card.profile-card .profile-details .dark {
    color: #666666;
}

.company-results .card.profile-card .profile-details .detail.full {
    grid-row: 1/3;
}

.company-results .card.profile-card .profile-details .detail .orange {
    color: var(--boom-primary);
}

.company-results .card.profile-card .profile-details .detail.note {
    font-size: 16px;
}

.company-results .card.profile-card .profile-details .note {
    color: #009722;
    font-size: 14px;
    display: block;
    text-align: right;
    font-weight: 600;
}

.company-results .card.profile-card .tag {
    display: inline-block;
    font-size: 16px;
    line-height: 24px;
    color: #666666;
    background-color: #f5f5f5;
    height: 40px;
    border: 0;
    border-radius: 5px;
    padding: 8px 15px;
    margin: 0 8px 8px 0;
}

.company-results .card.profile-card .card-footer {
    background-color: transparent;
    padding: 30px;
    border-top: solid 1px rgba(151, 151, 151, 0.3);
    text-align: center;
}

.company-results .card {
    border: none;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);
    padding: 0;
    margin-bottom: 30px;
}

.company-results .card .h4 {
    margin-bottom: 10px;
}

.company-results .card .card-body {
    height: 210px;
    padding: 20px 30px;
    overflow: hidden;
}

.company-results .card .card-footer {
    background-color: transparent;
    padding: 10px 30px 30px;
    border-top: solid 1px rgba(151, 151, 151, 0.3);
    text-align: center;
}

.company-results .card .expand {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 20px;
    font-weight: bold;
    color: var(--boom-primary);
    text-transform: uppercase;
    background-color: transparent;
    padding-right: 30px;
    margin-bottom: 10px;
}

.company-results .card .expand::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 20px;
    height: 20px;
    background: transparent url(../img/dropdown/dropdown_arancione.svg) center no-repeat;
}

.company-results .card .details {
    text-align: left;
    padding: 0 0 20px;
}

.company-results .card .details .h4 {
    font-size: 16px;
    line-height: 22px;
    font-weight: bold;
    margin-bottom: 0;
}

.company-results .card .details p {
    font-size: 16px;
    line-height: 22px;
    font-weight: normal;
    margin-bottom: 15px;
    color: #666666;
}

.company-results .card .details ul {
    padding-left: 25px;
}

.company-results .card .details li {
    padding-left: 10px;
}

@media (max-width: 991px) {

    .network-detail-heading {
        padding-top: 31px;
    }

    .network-detail-heading .company-logo {
        position: absolute;
        top: 150px;
        width: 100px;
        height: 100px;
    }

    .company-detail .company-detail-banner {
        width: 100%;
        height: 200px;
    }

    .company-detail .company-detail-banner img {
        height: 100%;
        object-fit: cover;
    }

    .company-detail .company-detail-banner + .container .col-lg-8 {
        padding-top: 240px;
    }

    .company-detail .arrow-content {
        margin-bottom: 5px;
    }

    .company-detail .tag {
        display: inline-block;
        font-size: 14px;
        line-height: 25px;
        color: #666666;
        background-color: #FFFFFF;
        height: 35px;
        border: solid 1px var(--boom-primary);
        border-radius: 5px;
        padding: 5px 15px;
        margin: 0 8px 8px 0;
    }

    .company-results .tab-btn {
        font-size: 16px;
    }
}

/* Search */
.argument-list {
    padding: 60px 0 0 0;
}

.art-list {
    padding: 60px 0 0 0;
}

.art-list .wrapper {
    padding-top: 15px;
}

.art-list .art {
    width: 600px;
    position: relative;
    display: flex;
    border: solid 1px rgba(151, 151, 151, 0.3);
    border-radius: 5px;
    margin: 0 0 19px 0;
}

.art-list img {
    width: 76px;
    height: 76px;
    max-width: 45%;
    object-fit: cover;
    margin-right: 33px;
}

.art-list a {
    font-size: 16px;
    font-weight: bold;
    line-height: 21px;
    color: var(--boom-secondary);
}

.art-list p.metadata {
    font-size: 14px;
    line-height: 18px;
    color: #666666;
    padding-top: 8px;
    margin-bottom: 0;
}

/* Learning */
.shop-banners img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.learning-search {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    border: solid 1px rgba(151, 151, 151, 0.3);
    border-radius: 25px;
    padding: 10px 20px 10px 100px;
}

.learning-search input[type=text] {
    border: solid 1px transparent;
    margin-right: 20px;
    height: 40px;
    line-height: 20px;
    padding: 10px;
}

.learning-search button {
    width: 40px;
    height: 40px;
    background: transparent url(../img/header/search.svg) center no-repeat;
    overflow: hidden;
    text-indent: -1000px;
}

.path {
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);
}

.path .row {
    align-items: stretch;
}

.path .h5 {
    font-size: 16px;
    font-weight: bold;
    line-height: 20px;
    color: #666666;
    margin-bottom: 15px;
}

.path .col-12 img {
    position: absolute;
    top: 0;
    left: 15px;
    right: 15px;
    width: 300px;
    max-width: calc(100% - 30px);
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.path .col-12 .wrapper {
    padding: 30px 30px 30px 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.path .col-12:first-of-type .wrapper {
    padding-left: 30px;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.98) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.98) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.98) 100%);
}

.path .col-12:first-of-type .wrapper p {
    margin: 0;
    color: #FFFFFF;
}

.path .col-12:nth-of-type(3) .wrapper, .path .col-12:nth-of-type(4) .wrapper {
    padding-top: 65px;
}

.path .col-12:first-of-type .wrapper, .path .col-12:nth-of-type(4) .wrapper {
    flex-direction: column-reverse;
    justify-content: space-between;
}

.path ul {
    list-style: none;
    margin: 0;
}

.path ul li {
    padding: 5px 0;
}

.path ul li:last-of-type {
    padding-bottom: 0;
}

.path ul a {
    color: #666666;
    line-height: 22px;
}

.path ul a.active {
    color: var(--boom-primary);
}

@media (max-width: 991px) {

    .path .col-12 img {
        width: 100%;
        max-width: calc(100% - 30px);
        height: 250px;
    }

    .path .col-12 .wrapper {
        padding: 20px;
    }

    .path .col-12:first-of-type .wrapper {
        padding: 20px;
        height: 250px;
    }

    .path .col-12:nth-of-type(3) .wrapper, .path .col-12:nth-of-type(4) .wrapper {
        padding-top: 0;
    }

    .path .col-12:first-of-type .wrapper, .path .col-12:nth-of-type(4) .wrapper {
        flex-direction: column-reverse;
        justify-content: space-between;
    }

    .path .col-12 a {
        color: #666666;
        line-height: 22px;
    }

    .path .col-12 a.active {
        color: var(--boom-primary);
    }
}

/* Innovation */
.innovation-actions {
    padding: 0 0 50px;
}

.innovation-actions .card {
    border: none;
    border-radius: 0;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.innovation-actions .card-header, .innovation-actions .card-body, .innovation-actions .card-footer {
    background-color: transparent;
    border: none;
    border-radius: 0;
    padding: 30px;
}

.innovation-actions .card-header {
    height: 200px;
    overflow: hidden;
}

.innovation-actions .card-header .h4 {
    margin-bottom: 10px;
}

.innovation-actions .card-header p {
    font-size: 16px;
    line-height: 22px;
}

.innovation-actions .card-body {
    height: 300px;
    overflow: hidden;
    padding: 0 30px;
}

.innovation-actions .card-body .h5 {
    font-size: 16px;
    font-weight: bold;
    line-height: 22px;
    margin-bottom: 5px;
    color: #666666;
}

.innovation-actions .card-body p {
    font-size: 16px;
    line-height: 22px;
    color: #666666;
    margin-bottom: 10px;
    letter-spacing: -0.02rem;
}

.innovation-actions .card-body p + .h5 {
    margin-top: 20px;
}

@media (max-width: 991px) {

    .innovation-actions {
        padding: 0 0 20px;
    }

    .innovation-actions .card-header, .innovation-actions .card-body, .innovation-actions .card-footer {
        padding: 20px;
    }

    .innovation-actions .card-header {
        height: auto;
    }

    .innovation-actions .card-body {
        height: auto;
        padding: 0 30px;
    }

    .innovation-actions .card-body .h5 {
        font-size: 16px;
        font-weight: bold;
        line-height: 22px;
        margin-bottom: 5px;
        color: #666666;
    }

    .innovation-actions .card-body p {
        font-size: 16px;
        line-height: 22px;
        color: #666666;
        margin-bottom: 10px;
        letter-spacing: -0.02rem;
    }

    .innovation-actions .card-body p + .h5 {
        margin-top: 20px;
    }
}

/* chi siamo */
.text-box {
    padding: 60px 0;
}

@media (max-width: 991px) {
    .text-box {
        padding: 20px 0;
    }
}

.partnership {
    padding: 50px 0 100px;
    background: transparent url(../img/cerchi/01_cerchi_home.svg) center left -20%/50% no-repeat;
    border-bottom: solid 1px rgba(151, 151, 151, 0.3);
}

@media (max-width: 991px) {
    .partnership {
        padding: 30px 0 30px;
        background: transparent;
    }
}

.split-cta {
    margin-top: 30px;
    height: 300px;
    border-top: solid 1px rgba(151, 151, 151, 0.3);
}

.split-cta .btn {
    padding: 19px 80px 19px;
}

.split-cta .row {
    height: 100%;
}

.split-cta .col-12 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
}

.split-cta .contacts {
    background-color: var(--boom-primary);
    height: 100%;
    align-items: center;
    color: #fff;
}

.split-cta .contacts .h3 {
    margin-top: 8px;
    margin-bottom: 20px;
}

.split-cta .startups {
    background-color: transparent;
    height: 100%;
    align-items: stretch;
    padding: 0 5%;
    text-align: center;
}

.split-cta .startups .h4 {
    margin-bottom: 15px;
}

.split-cta .startups p {
    margin-bottom: 25px;
}

.split-cta .startups .more {
    margin-top: 25px;
    align-self: center;
}

@media (max-width: 991px) {
    .split-cta {
        height: auto !important;
    }

    .split-cta .btn {
        padding: 19px 80px 19px;
    }

    .split-cta .row {
        height: auto;
    }

    .split-cta .col-12 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
    }

    .split-cta .contacts {
        height: auto !important;
        padding: 30px 20px;
    }

    .split-cta .contacts .h3 {
        text-align: center;
    }

    .split-cta .startups {
        height: auto !important;
        padding: 30px 20px 50px;
    }
}

/* news */
.cat-filters {
    padding: 80px 0 0 0;
}

.cat-filters .category {
    border: solid 1px #f5f5f5;
    border-radius: 5px;
    padding: 8px 15px;
    font-size: 16px;
    line-height: 24px;
    color: #666666;
    background-color: #f5f5f5;
    margin: 0 15px 15px 0;
}

.cat-filters .category.active, .cat-filters .category:hover, .cat-filters .category:active, .cat-filters .category:focus {
    background-color: #666666;
    color: #FFFFFF;
}

@media (max-width: 991px) {
    .cat-filters {
        padding: 30px 0 20px;
    }
}

.viewing {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-top: 34px;
    padding-bottom: 34px;
}

.viewing input[type=radio] {
    position: fixed;
    top: -1000px;
    left: -1000px;
}

.viewing .lista + label {
    background-color: transparent;
    background: transparent url(../img/listaOFF@2x.svg) left/16px no-repeat;
    border: none;
    display: inline-block;
    margin-left: 15px;
    margin-bottom: 0;
    color: #666666;
    font-size: 16px;
    padding-left: 30px;
}

.viewing .lista:checked + label {
    color: var(--boom-primary);
    background: transparent url(../img/listaON@2x.svg) left/16px no-repeat;
}

.viewing .calendario + label {
    background: transparent url(../img/calOFF@2x.svg) left/16px no-repeat;
    border: none;
    margin-left: 15px;
    margin-bottom: 0;
    display: inline-block;
    padding-left: 30px;
    color: #666666;
    font-size: 16px;
}

.viewing .calendario:checked + label {
    color: var(--boom-primary);
    background: transparent url(../img/calON@2x.svg) left/16px no-repeat;
}

.article-list article {
    position: relative;
    display: flex;
    margin-bottom: 65px;
}

.article-list article .category {
    position: absolute;
    top: 15px;
    left: 30px;
    border: solid 1px #666666;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    background-color: #666666;
    margin: 0 15px 15px 0;
}

.article-list article .category.active, .article-list article .category:hover, .article-list article .category:active, .article-list article .category:focus {
    background-color: #666666;
    border-color: #FFFFFF;
}

.article-list article img {
    width: 560px;
    height: 320px;
    max-width: 45%;
    object-fit: cover;
    margin-right: 5%;
}

.article-list article p.metadata {
    font-size: 14px;
    line-height: 24px;
    color: #9B9B9B;
}

.article-list article p {
    font-size: 16px;
    line-height: 24px;
    color: #313434;
}

@media (max-width: 991px) {

    .article-list article {
        flex-direction: column;
        margin-bottom: 65px;
    }

    .article-list article img {
        height: 250px;
        max-width: 100%;
        margin-right: 0;
    }

    .article-list article p.metadata {
        margin: 20px 0;
    }
}

.pagination {
    display: flex;
    justify-content: center;
    margin-bottom: 65px;
}

.pagination button {
    border: solid 1px var(--boom-primary);
    border-radius: 5px;
    padding: 10px 35px;
    font-size: 16px;
    line-height: 24px;
    color: var(--boom-primary);
    background-color: transparent;
    margin: 0 15px 15px 0;
    width: 250px;
}

.pagination button.active, .pagination button:hover, .pagination button:active, .pagination button:focus {
    background-color: var(--boom-primary);
    border-color: #FFFFFF;
    color: #FFFFFF;
}

.heading-news {
    padding: 65px 0 40px;
}

.heading-news .category {
    border: solid 1px var(--boom-primary);
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
    background-color: var(--boom-primary);
    margin: 0 0 0 15px;
}

.heading-news .category.active, .heading-news .category:hover, .heading-news .category:active, .heading-news .category:focus {
    background-color: var(--boom-primary);
    border-color: #FFFFFF;
}

.share-wrapper {
    position: absolute;
    top: 0;
    left: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.share-wrapper .share-icon {
    display: block;
    width: 58px;
    height: 58px;
    border: solid 1px transparent;
    border-radius: 30px;
    margin-bottom: 15px;
    text-indent: -1000px;
    overflow: hidden;
}

.share-wrapper .share-icon:hover, .share-wrapper .share-icon:active, .share-wrapper .share-icon:focus {
    border-color: var(--boom-primary);
}

.share-wrapper .bookmark {
    background: transparent url(../img/news/preferiti.png) center/contain no-repeat;
}

.share-wrapper .link {
    background: transparent url(../img/news/share.png) center/contain no-repeat;
}

.share-wrapper .whatsapp {
    background: transparent url(../img/news/whatsapp.png) center/contain no-repeat;
}

.share-wrapper .linkedin {
    background: transparent url(../img/news/linkedin.png) center/contain no-repeat;
}

.share-wrapper .twitter {
    background: transparent url(../img/news/twitter.png) center/contain no-repeat;
}

.single-post .article-heading .metadata {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: #9B9B9B;
    margin-bottom: 20px;
}

.single-post .article-heading .h1 {
    font-size: 40px;
    line-height: 45px;
    font-weight: bold;
    margin-bottom: 50px;
}

.single-post .article-body {
    padding-bottom: 20px;
}

.single-post .article-body .img-strip {
    margin-bottom: 60px;
}

.single-post .article-body p {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 80px;
}

.single-post .article-body p.headline {
    font-size: 40px;
    line-height: 45px;
    margin: 50px 0 60px;
}

@media (max-width: 991px) {

    .heading-news {
        padding: 10px 0 20px;
    }

    .heading-news .category {
        border-radius: 5px;
        padding: 10px;
        font-size: 14px;
        line-height: 15px;
        margin: 0 5px;
    }

    .share {
        top: 90px;
        height: 80px;
        z-index: 10;
    }

    .share-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .share-wrapper .share-icon {
        width: 58px;
        height: 58px;
        margin: 0 5px 15px;
        background-color: #FFFFFF;
        box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);
    }

    .single-post .article-heading .metadata {
        font-size: 14px;
        line-height: 20px;
        font-weight: 600;
        color: #9B9B9B;
        margin-bottom: 20px;
    }

    .single-post .article-heading .h1 {
        font-size: 36px;
        line-height: 40px;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .single-post .article-body {
        padding-bottom: 20px;
    }

    .single-post .article-body .img-strip {
        margin-bottom: 30px;
    }

    .single-post .article-body .img-strip > .col-12 {
        margin-bottom: 30px;
    }

    .single-post .article-body p {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 20px;
        letter-spacing: 0;
    }

    .single-post .article-body p.headline {
        font-size: 30px;
        line-height: 36px;
        margin: 30px 0 30px;
    }
}

.related-news {
    padding-bottom: 50px;
}

.related-news .h2 {
    margin: 40px 0 60px;
}

.dedicated-services {
    padding: 47px 0 0;
    justify-content: center;
}

.dedicated-services .col-12 {
    padding-left: 15px;
    min-height: 235px;
}

.dedicated-services .service-wrapper {
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);
}

.dedicated-services .service-wrapper .card-body {
    padding-top: 10px !important;
    color: #666666;
}

.dedicated-services .service {
    position: relative;
    width: 100%;
    height: 151px;
    padding: 91.5px 0px 14.5px 18.5px;
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 22px;
    font-weight: bold;
    background-color: transparent;
}

.dedicated-services .service::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 35%;
    display: block;
    width: 60px;
    height: 60px;
    transform: translate(-50%, -50%);
    background: var(--boom-secondary) url() center/60px no-repeat;
    border-radius: 50px;
    transition: 0.5s background-color ease;
}

.dedicated-services .service::after {
    content: "-";
    position: absolute;
    right: 10px;
    top: 91.5px;
    display: block;
    width: 28px;
    height: 28px;
    font-size: 22px;
    font-weight: 600;
    line-height: 22px;
    transform: translateY(50%);
}

.dedicated-services .service.collapsed::before {
    background-color: var(--boom-primary);
    transition: 0.5s background-color ease;
}

.dedicated-services .service.collapsed::after {
    content: "+";
    position: absolute;
    right: 10px;
    top: 91.5px;
    display: block;
    width: 28px;
    height: 28px;
    font-size: 22px;
    font-weight: 600;
    line-height: 22px;
    transform: translateY(50%);
}

.dedicated-services .topup::before {
    background-image: url(../img/cerchi/bullets/starthub/SH_1.svg);
}

.dedicated-services .topup.collapsed::before {
    background-image: url(../img/cerchi/bullets/starthub/01.svg);
}

.dedicated-services .hotdesk::before {
    background-image: url(../img/cerchi/bullets/starthub/SH_2.svg);
}

.dedicated-services .hotdesk.collapsed::before {
    background-image: url(../img/cerchi/bullets/starthub/02.svg);
}

.dedicated-services .match::before {
    background-image: url(../img/cerchi/bullets/starthub/SH_3.svg);
}

.dedicated-services .match.collapsed::before {
    background-image: url(../img/cerchi/bullets/starthub/04.svg);
}

.dedicated-services .newsletter::before {
    background-image: url(../img/cerchi/bullets/starthub/SH_4.svg);
}

.dedicated-services .newsletter.collapsed::before {
    background-image: url(../img/cerchi/bullets/starthub/03.svg);
}

@media (max-width: 991px) {

    .dedicated-services {
        padding: 0 0 50px;
    }

    .dedicated-services .col-12 {
        margin: 10px 0;
        min-height: initial;
    }
}

.our-startups {
    padding: 90px 0 30px;
}

.swiper-startup {
    padding: 15px 15px 40px;
}

.swiper-startup .card {
    border: none;
    border-radius: 0;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);
}

.swiper-startup .card .img-wrapper {
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-startup .card p {
    padding: 0 30px 35px;
}

.swiper-startup .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    background-color: transparent;
    border: solid 1px var(--boom-primary);
    opacity: 1;
    margin: 0 10px 0 0;
    border-radius: 6px;
}

.swiper-startup .swiper-pagination-bullet-active {
    background-color: var(--boom-primary);
    width: 30px;
}

.newsletter-form {
    padding: 30px 0 0;
    max-width: 580px;
    color: var(--boom-secondary) !important;
}

.newsletter-form a {
    color: var(--boom-secondary) !important;
    text-decoration: underline;
}

/* news calendar */
.calendar-month {
    font-size: 25px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.calendar-month-prev {
    width: 60px;
    height: 60px;
    background-image: url(../img/news/Arrow-Left_OFF@2x.svg);
    background-repeat: no-repeat;
}

.calendar-month-next {
    width: 60px;
    height: 60px;
    background-image: url(../img/news/Arrow-Right_ON@2x.svg);
    background-repeat: no-repeat;
}

.responsive-calendar .header {
    display: inline-block;
    font-weight: bold;
    text-transform: uppercase;
    padding: 1rem;
    text-align: center;
}

.responsive-calendar .day {
    display: inline-block;
    position: relative;
    font-size: 25px;
    font-weight: bold;
    height: 185px;
    border: 1px solid #f5f5f5;
    padding: 2rem 0.5rem;
    text-align: center;
}

.responsive-calendar .day a.day-tooltip, .responsive-calendar .day a.day-tooltip:hover {
    color: #EE7D11;
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 32px;
    text-decoration: none;
    text-align: left;
}

.responsive-calendar .day.header {
    border-bottom: 1px gray solid;
}

.responsive-calendar .not-current {
    background-color: #f5f5f5;
}

.tooltip-inner {
    background-color: white !important;
    font-size: 16px;
    color: var(--boom-secondary) !important;
    border-radius: 0 !important;
    padding: 10px;
    filter: drop-shadow(rgba(0, 0, 0, 0.3) 0 2px 10px);
    max-width: 324px;
    margin-left: 185px;
}

.tooltip.show {
    opacity: 1;
}

.bs-tooltip-bottom .arrow::before {
    border-bottom-color: #FFFFFF !important;
    z-index: 1;
    position: absolute;
    left: -67px;
    transform: rotate(-135deg);
    top: 3px;
}

.bs-tooltip-top .arrow::before {
    border-top-color: #FFFFFF !important;
    z-index: 1;
    position: absolute;
    left: -67px;
    transform: rotate(135deg);
    top: -3px;
}

/* Course detail */
.course-detail {
    position: relative;
}

.course-detail .h4 {
    font-size: 21px;
}

.course-detail p {
    font-size: 16px;
    line-height: 22px;
}

.course-detail .course-detail-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
}

.course-detail .course-detail-banner + .container .col-lg-8 {
    padding-top: 28%;
}

.course-detail .arrow-content {
    display: block;
    padding: 15px 0 0 45px;
    margin-bottom: 20px;
    background: transparent url(../img/arrow-right-orange.svg) top 18px left no-repeat;
}

.course-detail .icon-skill {
    display: block;
    height: 50px;
    color: #666666;
    line-height: 20px;
    padding: 15px 0 15px 60px;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.course-detail .tag {
    display: inline-block;
    font-size: 16px;
    line-height: 24px;
    color: #666666;
    background-color: #f5f5f5;
    height: 40px;
    border: 0;
    border-radius: 5px;
    padding: 8px 15px;
    margin: 0 8px 8px 0;
}

.course-detail .course-calendar {
    border: solid 1px rgba(151, 151, 151, 0.3);
    border-radius: 5px;
}

.course-detail .course-calendar .btn {
    display: block;
    width: 100%;
    height: 60px;
    font-size: 14px;
    line-height: 20px;
    padding: 20px 10px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--boom-primary);
}

.course-detail .course-calendar .btn::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 10px;
    background: transparent url(../img/dropdown/dropdown_arancione.svg) center no-repeat;
    transform: rotate(180deg);
}

.course-detail .course-calendar .btn.collapsed::after {
    transform: rotate(0);
}

.course-detail .course-calendar #courses .col-lg-6 {
    border-top: solid 1px rgba(151, 151, 151, 0.3);
    padding: 10px 15px;
}

.course-detail .course-calendar #courses .col-lg-6:nth-of-type(odd) {
    border-right: solid 1px rgba(151, 151, 151, 0.3);
}

.course-detail .course-calendar #courses .h5 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.course-detail .course-calendar #courses .date {
    font-size: 16px;
    color: #666666;
    margin: 0;
}

.course-details-table .h5 {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.course-details-table .h5.badge-icon {
    padding-left: 30px;
}

.course-details-table tr:first-of-type th, .course-details-table tr:first-of-type td {
    border: none;
}

.course-details-table th {
    font-weight: bold;
    text-transform: uppercase;
    padding: 20px 10px 20px 0;
}

.course-details-table td {
    padding: 20px 10px 20px 0;
}

.course-details-table td .full-price {
    text-decoration: line-through;
}

.course-details-table td:nth-of-type(2) {
    color: #009722;
    font-weight: 600;
    text-align: right;
}

.course-details-table td:last-of-type {
    padding-right: 0;
}

.course-details-table .partner-container {
    display: flex;
    height: 140px;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);
}

.mobile-float-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 76px;
    border-top: solid 1px rgba(151, 151, 151, 0.3);
    background-color: #FFFFFF;
    padding: 0 15px;
    z-index: 10;
}

.mobile-float-cta a {
    color: var(--boom-secondary) !important;
}

.mobile-float-cta .btn {
    padding-left: 55px;
}

@media (max-width: 991px) {

    .course-detail .course-detail-banner {
        width: 100%;
        height: 200px;
    }

    .course-detail .course-detail-banner img {
        height: 100%;
        object-fit: cover;
    }

    .course-detail .course-detail-banner + .container .col-lg-8 {
        padding-top: 240px;
    }

    .course-detail .arrow-content {
        margin-bottom: 5px;
    }

    .course-detail .tag {
        display: inline-block;
        font-size: 14px;
        line-height: 25px;
        color: #666666;
        background-color: #FFFFFF;
        height: 35px;
        border: solid 1px var(--boom-primary);
        border-radius: 5px;
        padding: 5px 15px;
        margin: 0 8px 8px 0;
    }
}

/* Shop Bundles */
.card.module {
    height: 530px;
    border: 0;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
}

.card.module .card-header {
    background-color: #FFFFFF;
    border-bottom: 0;
    padding: 25px 30px 0;
}

.card.module .card-body {
    padding: 25px 30px 20px;
}

.card.module .card-footer {
    border-top: solid 1px rgba(151, 151, 151, 0.3);
    background-color: #FFFFFF;
    padding: 25px 30px 30px;
}

.card.module .h4 {
    margin-bottom: 0;
    font-size: 25px;
}

.card.module .h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
}

.card.module p {
    margin-bottom: 20px;
}

.card.profile-card.module {
    height: 316px;
    border: 0;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
}

.card.profile-card.module .card-header {
    background-color: #FFFFFF;
    border-bottom: 0;
    padding: 25px 30px 0;
}

.card.profile-card.module .card-body {
    padding: 25px 30px 20px;
}

.card.profile-card.module .card-footer {
    border-top: solid 1px rgba(151, 151, 151, 0.3);
    background-color: #FFFFFF;
    padding: 25px 30px 30px;
}

.card.profile-card.module .h4 {
    margin-bottom: 0;
    font-size: 25px;
}

.card.profile-card.module .h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
}

.card.profile-card.module p {
    margin-bottom: 20px;
}

/* personal area */
.personal-area {
    padding: 35px 0 0;
}

.access {
    padding: 35px 0 200px;
}

.account-info, .login-form, .signin-form {
    padding: 40px 50px 30px 0;
}

.account-info .form-group, .login-form .form-group, .signin-form .form-group {
    position: relative;
}

.account-info button.btn, .login-form button.btn, .signin-form button.btn {
    width: 210px;
}

.account-info {
    padding: 0 0 30px;
}

.account-info .content {
    padding: 0 35px;
}

.signin-form {
    padding: 40px 50px 30px;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);
}

.show-pass {
    display: block;
    width: 46px;
    height: 46px;
    background: transparent url(../img/eye.svg) center/18px no-repeat;
    position: absolute;
    bottom: 0;
    right: 0;
    text-indent: -1000px;
    overflow: hidden;
}

.tab-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    color: var(--boom-secondary) !important;
    line-height: 22px;
    text-align: center;
    color: #666666;
    height: 80px;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.tab-btn.active, .tab-btn:hover, .tab-btn:focus, .tab-btn:checked {
    border: solid 2px var(--boom-primary);
    text-decoration: none;
}

.tab-btn strong {
    margin-left: 5px;
}

@media (max-width: 991px) {
    .account-info {
        padding: 0 0 30px;
    }

    .account-info .container {
        padding: 15px;
    }

    .account-info .container-fluid {
        padding: 0;
    }
}

/* footer */
footer {
    background-color: var(--boom-secondary);
    color: #FFFFFF;
    padding: 50px 0 50px;
}

footer a {
    color: #FFFFFF !important;
    text-decoration: underline;
}

footer .boom-logo img {
    width: 98px;
    margin-bottom: 50px;
}

footer .footer-menu .menu {
    list-style: none;
}

footer .footer-menu .menu .nav-link {
    font-size: 15px;
    color: #FFFFFF;
    padding: 5px 0;
    text-decoration: none;
}

footer hr {
    height: 1px;
    border-top: solid 1px rgba(255, 255, 255, 0.3);
    margin: 25px 0;
}

footer .social {
    display: grid;
    grid-template-columns: repeat(3, 30px);
    grid-template-rows: repeat(3, 30px);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}

footer .social .icon {
    overflow: hidden;
    text-indent: -1000px;
    background: transparent url() center no-repeat;
}

footer .social .linkedin {
    background-image: url(../img/footer/linkedin.svg);
    background-size: 22px;
}

footer .social .facebook {
    background-image: url(../img/footer/facebook.svg);
    background-size: 9px;
}

footer .social .youtube {
    background-image: url(../img/footer/youtube.svg);
    background-size: 28px;
}

footer .social .instagram {
    background-image: url(../img/footer/instagram.svg);
    background-size: 20px;
}

footer .social .twitch {
    background-image: url(../img/footer/twitch.svg);
    background-size: 20px;
}

footer .social .email {
    background-image: url(../img/footer/email.svg);
    background-size: 20px;
}

footer.landing .boom-logo img {
    margin-bottom: 0;
}

footer.landing .social {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    grid-column-gap: 0;
    grid-row-gap: 0;
}

footer.landing .social .icon {
    display: block;
    width: 30px;
    height: 30px;
    margin: 0 20px 10px 0;
}

footer.landing .social .icon:last-of-type {
    margin-right: 0;
}

@media (max-width: 991px) {
    footer {
        padding: 30 0 80px;
    }

    footer .boom-logo img {
        width: 66px;
        margin-bottom: 40px;
    }

    footer .footer-menu {
        margin-bottom: 35px;
    }

    footer hr {
        margin: 15px 0 35px;
    }

    footer .social {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0 10%;
        grid-column-gap: 0;
        grid-row-gap: 0;
    }

    footer .social .icon {
        display: block;
        width: 30px;
        height: 30px;
        margin: 0 10px 15px;
    }

    footer .tiny-text {
        text-align: left;
        padding-bottom: 10px;
    }

    footer.landing {
        padding: 30px 0 40px;
    }

    footer.landing .boom-logo {
        display: block;
    }

    footer.landing .boom-logo img {
        display: block;
        margin: 0 auto 40px;
    }

    footer.landing .social {
        margin-bottom: 30px;
        padding: 0;
    }

    footer.landing .social .icon {
        display: block;
        width: 30px;
        height: 30px;
        margin: 0 10px 15px;
    }
}
    /*# sourceMappingURL=custom.min.css.map */
