@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;700&display=swap');

:root {
    --blue: #0d6496;
    --light-blue: #6ecaf2;
    --button-blue: #064160;
    --dark-blue: #094372;
    --dark-button: #0c679c;
    --hover-button: #0a4c7b;
    --white: #ffffff;
    --light_grey: #f1f1f1;
}

body {
    font-family: "Raleway", sans-serif;
    margin: 0;
    background-image: url(../images/angelo-blue.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-position: top center;
}

.wrapper{
    overflow-x: hidden;
}

/*GESTIONE COOKIE - START*/

.word-wrap{
    word-wrap: anywhere;
}

.width-10{
    max-width: 10%;
    width: 10%;
}

.width-20{
    max-width: 20%;
    width: 20%;
}

.width-30{
    max-width: 30%;
    width: 30%;
}



.cookie-bar{
    position:fixed;
    bottom:0;
    width:100%;
    border-top:2px solid var(--sel_color);
    background:#fff;
    z-index:1031;
    padding: 40px 20px 20px 20px;
    display: none;
    text-align: center;
}
.cookie-bar.active{
    display: block;
}
.cookie-bar p{
    position: relative;
    margin-bottom: 20px;
    box-sizing: border-box;
    padding: 0 15px;
    color: var(--default_color);
    margin-top: 0;
}
.cookie-bar p a{
    font-style: italic;
    color: var(--default_color);
    text-decoration: underline;
}
.cookie-bar>a{
    display: inline-block;
    padding: 5px 15px;
    color: #fff;
    margin-top: 10px;
    margin-top: 10px;
    text-decoration: none;
}
.popup-cookie .inner-popup .buttons-container>a,
.cookie-bar .buttons-container>a{
    font-size:12px;
    padding: 10px 20px 7px;
}
.cookie-bar .buttons-container>a.settings-cookie-opener{
    background-color: transparent;
    color:var(--default_color);
    text-decoration: underline;
    font-weight: 600;
    border:none;
}
.cookie-bar .buttons-container>a.accept-all{
    color: #fff;
    background-color: #064160;
}
.cookie-bar .buttons-container>a.reject-all{
    background-color: #fff;
    color: var(--default_color);
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none !important;
    font-size: 11px;
    padding: 5px 5px 10px 2px;
}

.close-cookie{
    background-color: #fff;
    color: #064160 !important;
    position: absolute;
    right: 34px;
    top: -9px;
    text-decoration: none !important;
    font-size: 18px;
    padding: 5px 5px 10px 2px;
}

.popup-cookie{
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1032;
    top: 0;
    left: 0;
}

.popup-cookie.active{
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}

.cookie-bar .buttons-container > a.reject-all {
    background-color: #fff;
    color: var(--default_color);
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none !important;
    font-size: 11px;
    padding: 5px 5px 10px 2px;
}

/*popup*/
.popup-cookie .overlay-popup{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.6);

}

.popup-cookie .inner-popup>a{
    position: absolute;
    right: 25px;
    top:10px;
    color: var(--default_color);
    z-index: 2;
    display: block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 20px;
    border: 1px solid var(--default_color);
    background-color: #fff;
    border-radius: 0%;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.popup-cookie .inner-popup{
    position: relative;
    width: 850px;
    max-width: 80%;
    z-index: 1201;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.popup-cookie .content{
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    background: #fff;
    width: 100%;
    padding: 20px 15px 10px;
    box-sizing: border-box;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}
.popup-cookie .content .description{
    padding: 0;
    margin: 0
}
.popup-cookie .content p{
    color:var(--default_color);
    font-weight: 400;
    line-height: 1rem
}
.popup-cookie .content>.description>p{
    line-height: 1rem;
    font-size:0.75rem;
    font-weight: 300;
}
.popup-cookie .content h3{
    color:var(--default_color);
    margin: 0 0 10px
}
.popup-cookie .content .list-cookies{
    margin-top: 15px;
    list-style: none;
    padding-left: 0;
}
.popup-cookie .content .list-cookies>li{
    padding: 10px 15px;
    background-color: var(--background_light_grey);
    margin-bottom: 3px;
    cursor: pointer;
    font-size:12px;
    font-weight: 401;
}
.popup-cookie .content .list-cookies>li>a{
    color:var(--default_color);
    font-weight: 401;
    line-height: 1rem;
}
.popup-cookie .content .list-cookies>li>a>i{
    display: inline-block;
    margin-right: 5px;
}
.popup-cookie .content .list-cookies>li>.status-cookie-item{
    float: right;
    width: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: right;
}
.popup-cookie .content .list-cookies>li>.status-cookie-item p{
    margin: 0;
    display: inline-block;
    padding-right: 5px;
    line-height: 22px;
}
.popup-cookie .content .list-cookies>li>.status-cookie-item .switch-option{
    width: 40px;
    border: 1px solid #f2f2f2;
    border-radius: 20px;
    height: 21px;
    position: relative;
    background-color: #e3e1e9;
    transition: background-color 400ms;
    /*overflow: hidden;*/
}
.popup-cookie .content .list-cookies>li>.status-cookie-item .switch-option.on{
    background-color: #1bbc9b;
}
.popup-cookie .content .list-cookies>li>.status-cookie-item .switch-option>input{
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}
.popup-cookie .content .list-cookies>li>.status-cookie-item .switch-option .switcher{
    background-color: #fff;
    content: "";
    left: -1px;
    top: -2px;
    position: absolute;
    transition: 400ms;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: block;
    border: 1px solid #f2f2f2;
}
.popup-cookie .content .list-cookies>li>.status-cookie-item .switch-option.on .switcher{
    left: 18px;
}
.popup-cookie .content .list-cookies>li>ul{
    margin-top: 10px;
    display: none;
    list-style: none;
    padding-left: 0;
}
.popup-cookie .content .list-cookies > li > ul >li p{
    font-weight: 401;
}
.popup-cookie .content .list-cookies>li>ul.visible{
    display: block;
}
.popup-cookie .content .list-cookies>li>.status-cookie-item>ul>li p{
    font-size: 12px;
}
.popup-cookie .content .table-list-cookie{
    margin-top: 20px;
    box-sizing: border-box;
}
.popup-cookie .content .table-list-cookie>.inner-table{
    border: 2px solid #064160;
}
.popup-cookie .content .table-list-cookie>.inner-table>.row-list{
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #d7d7d7;
}
.popup-cookie .content .table-list-cookie>.inner-table>.row-list>div{
    padding: 5px 15px;
    box-sizing: border-box;
}
.popup-cookie .content .table-list-cookie>.inner-table>.row-list.header>div{
    background-color: var(--sel_color);
}
.popup-cookie .content .table-list-cookie>.inner-table>.row-list.header p{
    font-weight: 600;
    color: #fff;
    margin: 0;
    font-size: 12px;
}
.popup-cookie .content .table-list-cookie>.inner-table>.row-list.header{
    background-color: #064160;
}
.popup-cookie .content .table-list-cookie>.inner-table>.row-list.body{
    background-color: #fff;
}
.popup-cookie .content .table-list-cookie>.inner-table>.row-list.body h5{
    font-size: 16px;
    font-weight: 600;
    color:var(--sel_color);
    margin: 0;
}
.popup-cookie .content .table-list-cookie>.inner-table>.row-list.body p{
    font-weight: 300;
    color: var(--default_color);
    margin: 0;
    font-size: 0.75rem;
    line-height: 1rem;
}
.popup-cookie .inner-popup .buttons-container{
    background-color: #fff;
    padding: 10px 30px 20px;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    box-sizing: border-box;
    text-align: center;

}
.popup-cookie .inner-popup .buttons-container>a{
    margin-top: 0;
    font-weight: 600;
    background-color: #064160;
    color: #ffffff;
    text-decoration: none;
    border-radius: 1000vh;
}
@media(max-width: 575px){
    .cookie-bar .buttons-container > a:not(.reject-all){
        width: 55%;
        display: inline-block;
        margin-bottom: 10px;
    }
    .cookie-bar .buttons-container > a.reject-all{
        margin-right: 0;
    }
    .cookie-bar p{
        font-size: 13px;
    }
    .popup-cookie .inner-popup{
        max-width: 100%;
        width: 100%;
        bottom: 0;
        border-radius: 0;
    }
    .popup-cookie .content h3{
        font-size: 1.2rem;
    }
}
/*GESTIONE COOKIE - END*/







/* --------- NavBar Start --------- */

/* -- Mobile NavBar Start -- */

.mobile_containter {
    display: none;
}

.mobile_topnav {
    position: fixed;
    height: 80px;
    width: 100%;
    background-color: transparent;
    top: 0;
    z-index: 5;
    transition: 0.4s;
}
.mobile_topnav.scrolled {
    background-color: var(--button-blue);
}

.hamburger {
    z-index: 100;
    position: fixed;
    right: 0;
    display: block;
    width: 40px;
    cursor: pointer;
    height: 35px;
    appearance: none;
    background: none;
    outline: none;
    border: none;
    margin: 20px;
    top: 0;
}

.hamburger .bar,
.hamburger:after,
.hamburger:before {
    content: "";
    display: block;
    width: 100%;
    height: 4px;
    background-color: white;
    margin: 6px 0px;
    transition: 0.4s;
}

.hamburger.is-active::before {
    transform: rotate(45deg) translate(8px, 6px);
}

.hamburger.is-active .bar {
    opacity: 0;
}

.hamburger.is-active::after {
    transform: rotate(-45deg) translate(8px, -6px);
}

.mobile_navbar {
    display: block;
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    min-height: 100vh;
    z-index: 98;
    background-color: #064160;
    padding-top: 150px;
    transition: 0.4s;
    margin-left: 20%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 30px;
}

.mobile_navbar.is-active {
    left: 0;
}

.mobile_navbar a {
    display: block;
    margin-bottom: 10px;
    color: white;
    text-decoration: none;
    font-size: 24px;
    width: 100%;
    max-width: 220px;
}

.mobile_topnav-shop{
    position: fixed;
    right: 80px;
    font-size: 20px;
    top: 28px;
    z-index: 5;
    color: #fff;
    text-decoration: none;
}

.mobile_topnav-logo{
    position: fixed;
    left: 40px;
    top: 20px;
    z-index: 5;
}

.mobile_navbar a:hover {
    transition: 0.4s ease;
    color: var(--light-blue);
}

.mobile_navbar li {
    padding: 0;
    list-style: none;
}

.fa-solid.fa-bag-shopping:hover{
    color: var(--light-blue);
    transition: 0.4s ease;
}



ul.dropdown_menu-mobile{
    display: none;
    top: 100%;
    overflow: hidden;
    padding: 0px 0px;
}

ul.dropdown_menu-mobile li{
    list-style-type: none;
}

ul.dropdown_menu-mobile li a{
    text-decoration: none;
    font-size: 18px;
    color: var(--white);
}
/* -- Mobile NavBar End -- */

/* -- Dekstop NavBar Start -- */

.desktop_navbar {
    position: fixed;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    background-color: transparent;
    width: 100%;
    padding: 15px 50px;
    height: 60px;
    top: 0;
    margin-bottom: 40px;
    transition: 0.5s;
}

.desktop_navbar-links {
    display: flex;
    list-style-type: none;
}

.desktop_navbar-link {
    padding: 0 10px;
}

.desktop_navbar-link a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    cursor: pointer;
}

.desktop_navbar-link a:hover {
    transition: 0.4s ease;
    color: var(--light-blue);
}

.fa-solid.fa-bag-shopping {
    color: var(--white);
}

.desktop_navbar.scrolled {
    height: 55px;
    background-color: #064160;
}


ul.dropdown_menu{
    display: none;
    position: absolute;
    top: 100%;
    overflow: hidden;
    background-color: white;
    padding: 10px 20px;
}

ul.dropdown_menu li{
    list-style-type: none;
    padding: 10px 0px;
}

ul.dropdown_menu li a{
    text-decoration: none;
    padding: 10px ;
    color: var(--button-blue);
}

/* -- Dekstop NavBar End -- */

/* --------- NavBar End --------- */

/* --------- Landing Page Start --------- */
.landing_page-container {
    display: block;
}

.landing_page {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0px 15px;
}

.landing_page-text {
    color: var(--white);
    text-align: center;
}

.landing_page-caption {
    margin: 0;
    font-weight: 600;
}

.landing_page-subtitle {
    margin-bottom: 5px;
}

.landing_page-cards {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    margin-top: 30px;
}

.card {
    width: 100%;
    margin: 0;
    background-color: var(--white);
    padding: 20px 20px;
    position: relative;
    border: 6px solid transparent;
    border-radius: 0;
    transition: border-color 200ms;
    box-sizing: border-box;
}

.card:hover {
    transition: 0.4s;
    background-color: var(--light_grey);
    border-color: var(--blue);
}
.card > a{
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.card-link {
    text-decoration: none;
    text-align: center;
    color: var(--blue);
    flex: 0 0 25%;
    padding: 0 15px;
    box-sizing: border-box;
    margin-bottom: 20px;
}
.card-link h2{
    height: 60px;
}
.card-link h2.mb-0{
    margin-bottom: 0
}

/* --------- Landing Page End --------- */

/* --------- Footer Start --------- */

.footer {
    bottom: 0;
    width: 100%;
    background-color: var(--dark-blue);
    padding: 10px 15px;
    box-sizing: border-box;
    line-height: 20px;
}
.footer-text,
.footer-text>a {
    color: var(--white);
    text-align: center;
    font-size: 14px;
    text-decoration: none;
    margin: 0;
}
/* --------- Footer End --------- */

@media (max-width: 1000px) {

    .desktop_navbar {
        display: none;
    }

    .landing_page-container {
        padding-top: 100px;
    }

    .mobile_containter {
        display: flex;
    }

    .landing_page {
        margin: 0;
    }

    .landing_page-cards {
        display: flex;
        flex-direction: row;
        margin: 10px 0;
        width: 100%;
        flex-wrap: wrap;
    }

    .card {
        margin: 10px 0;
        padding: 10px;
        position: relative;
    }

    .card-link{
        flex: 0 0 50%;
        box-sizing: border-box;
        max-width: 50%;
    }
    .card-link,
    .card {
        height: auto;
    }
    .card-link h2 {
        height: auto;
        font-size: 1.2rem;
    }
    .card > a {
        max-width: 100%;
    }
}
@media (max-width: 500px) {
    .landing_page{
        height: auto;
    }
    footer{
        position: absolute;
        bottom: 0;
    }
    .landing_page{
        margin-top: 90px;
    }
    .landing_page-cards{
        padding-bottom: 50px;
    }

    .card-link{
        flex: 0 0 100%;
        box-sizing: border-box;
        max-width: 100%;
    }

}
