:root{
    --grigio: #222222;
    --blue: #123154;
    --black: #1d1d1d;
}

/*----------------------------------------------------------------------------------*/
/* COMANDI GENERALI */
/*----------------------------------------------------------------------------------*/

*{
    box-sizing: border-box;
}
body{
    margin: 0;
    padding: 0;
    font-family:'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.5;
    background-color: #eeeeee;
}
img,
video{
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}
iframe{
    max-width: 100%;
}

.contenitore{
    width: 1140px;
    margin: 0 auto;
}
a{
    text-decoration: none;
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 45px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--black);
    font-size: 28px;
    font-weight: 600;
}
h3  {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
}
p{
    font-family:'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.5;
    margin: 0;
    padding: 0;
}
.button{
    display: inline-block;
    border: 1px solid var(--blue);
    padding: 9px 30px;
    margin-top: 35px;
    border-radius: 6px;
    background-color: var(--blue);
    color: #ffffff;
    box-shadow: 5px 5px 5px rgba(0,0,0,0.2);
    transition: all 0.3s;
}
.button:hover{
    transform: scale(1.1);
}

/* menu scroll down */
.scroll-down{
    position: absolute;
    left: 50%;
    bottom: 25px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}
.mouse{
    width: 20px;
    height: 40px;
    background-color: transparent;
    border: 2px solid #ffffff;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    overflow: hidden;
}
.mouse span{
    background-color: #ffffff;
    display: block;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    animation: move-wheel 1s linear infinite;
}
.arrow span{
    width: 10px;
    height: 10px;
    border: 2px solid transparent;
    border-bottom-color: #ffffff;
    border-right-color: #ffffff;
    display: block;
    transform: rotate(45deg);
    animation: arrow-down 0.5s alternate infinite;
}

@keyframes move-wheel {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(20px);
    }
}
@keyframes arrow-down {
    0% {
        opacity: 0;
    }
    25% {
        opacity: 0.25;
    }
    50% {
        opacity: 0.5;
    }
    75% {
        opacity: 0.75;
    }
    100% {
        opacity: 1;
    }
}

/*----------------------------------------------------------------------------------*/
/* PRELOAD */
/*----------------------------------------------------------------------------------*/
#preload{
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 9999;
    text-align: center;
}
#preload span{
    color: #222222;
    font-weight: bold;
}

/*----------------------------------------------------------------------------------*/
/* HEADER */
/*----------------------------------------------------------------------------------*/

#testata{
    display: flex;
    align-items: center;
    position: fixed;
    z-index: 999;
    width: 100%;
    justify-content: space-between;
    background: rgb(0,0,0);
    background: linear-gradient(180deg, rgba(0,0,0,0.40) 0%, rgba(77, 168, 219, 0.55) 100%);
}
.visibile #testata{
    background: rgb(2,1,8);
    background: linear-gradient(180deg, rgba(31, 31, 31, 0.87) 0%, rgba(31, 97, 139, 0.70) 100%);
}
#testata ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
#testata li{
    display: inline;
}
#testata .attivo{
    position: relative;
    border-bottom: 2px solid #48b2ec;
    left: 5px;
}

#testata .menu a{
    display: inline-block;
    color: #ffffff;
    border-left: 1px solid rgba(255,255,255,0.6);
    padding: 25px 35px;
    position: relative;
}
#testata .menu a::after{
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    background-color: #8ed0ff;
    bottom: 0;
    left: 0;
    transition: 0.5s;
}
#testata .menu a:hover::after{
    width: 100%;
    transition: 0.5s;
}
#testata .menu li:last-of-type a{
    border-right: 1px solid rgba(255,255,255,0.6);
}

#testata .logo{
    width: 10%;
    margin-left: 17vh;
    position: relative;
    padding-top: 10px;
    margin-bottom: 5px;
}
#testata .logo span{
    position: absolute;
    left: -43px;
    bottom: 25px;
    font-size: 9px;
    color: #ffffff;
}
#testata .contact_us{
    width: 10%;
    display: inline-block;
    padding: 8px 0;
    text-align: center;
    border: 2px solid #ffffff;
    border-radius: 7px;
    margin-right: 12vh;
    transition: 0.3s;

}
#testata .contact_us:hover{
    background-color: #8ab1db;
    transition: 0.3s;
}
#testata .contact_us a{
    color: #ffffff;
    text-decoration: none;
}
/*----------------------------------------------------------------------------------*/
/* HEADER / MOBILE */
/*----------------------------------------------------------------------------------*/

.header_mobile{
    position: absolute;
    top: -500px;
    left: 0;
    width: 100%;
    height: auto;
    background-color: #5aa7f8;
    margin: 0;
    padding: 25px 0 25px 55px;
    z-index: 30;
    transition: all 0.4s;
}
.header_mobile .attivo{
    font-weight: bold;
}
.header_mobile ul{
    list-style: circle;
    padding: 0;
    margin: 0;
}
.header_mobile li{
    font-size: 27px;
    margin-bottom: 15px;
}
.header_mobile .put a{
    color: #ffffff;
    display: inline-block;
    border: 1px solid #ffffff;
    padding: 3px 10px;
    margin: 5px 0;
}
.header_mobile a{
    color: #ffffff;
}
.burger{
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 42px;
    z-index: 35;
    display: none;
}
.menu_aperto .header_mobile {
    top: 0;
    transition: all 0.4s;
}


/*----------------------------------------------------------------------------------*/
/* CONTACTS FINALE */
/*----------------------------------------------------------------------------------*/

#contacts h3{
    color: #61b3d2;
}

/*----------------------------------------------------------------------------------*/
/* CAROSELLO */
/*----------------------------------------------------------------------------------*/
#introduction{
    position: relative;
    top: 0;
    left: 0;
}
.carosello_img img{
    object-fit: cover;
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
    max-width: 100%;
}
.carosello{
    margin: 0;
    padding: 0;
    height: 100vh;
}
.carosello::after{
    content: "";
    top: 0;
    left: 0;
    position: absolute;
    background-color: rgba(0,0,0,0.42);
    width: 100%;
    height: 100%;
}
.logo_mobile{
    z-index: 1;
    display: none;
    padding-bottom: 20px;
    position: relative;
}

.slick-dots li {
    display: inline-block;
}
.slick-dots ul{
    list-style: none;
}
.slick-dots{
    width: 200px;
    margin: 0 0 10px 20px;
    padding: 0;
}
.slick-dots button{
    font-size: 0;
    display: inline-block;
    border-radius: 50%;
    border: 2px solid #b8b8b8;
    background-color: transparent;
    width: 15px;
    height: 15px;
    position: relative;
    top: -50px;
    margin-right: 5px;
    z-index: 1;
}
.slick-dots .slick-active button{
    background-color: var(--blue);
    border-color: var(--blue);
    border-radius: 50%;
}
/*----------------------------------------------------------------------------------*/
/* INTRODUCTION */
/*----------------------------------------------------------------------------------*/

#introduction .text{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    text-align: center;
    padding-top: 40vh;
}

#introduction .principalname{
    padding-bottom: 40px;
}


/*----------------------------------------------------------------------------------*/
/* MISSON */
/*----------------------------------------------------------------------------------*/
#mission{
    margin: 0;
    padding: 30px 0 60px;
    background: rgb(197,225,255);
    background: linear-gradient(90deg, rgba(197,225,255,1) 0%, rgba(240,240,240,1) 32%, rgba(230,230,230,1) 70%, rgba(211,232,255,1) 100%);}

#mission .contenitore{
    text-align: center;
}

#mission .contenitore p{
    color: var(--black);
    font-size: 15px;
}
/*----------------------------------------------------------------------------------*/
/* CHANNELS */
/*----------------------------------------------------------------------------------*/
#channels{
    padding-top: 20px;
}
#channels .contenitore{
    text-align: center;
}
#channels .contenitore p{
    color: var(--black);
    font-size: 15px;
}
#channels .riga_box{
    display: flex;
    justify-content: space-between;
    margin: 40px 110px 40px;
}
#channels .riga_box .box{
    width: 22%;
    height: 21vw;
    background-color: #3D6A9B;
    overflow: hidden;
    border-radius: 5px;
    position: relative;
    transition: all 0.5s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}

#channels .riga_box .box::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.2);
}

#channels .riga_box .box .img{
    object-fit: cover;
    height: 100%;
}

#channels .underbox{
    background-color: rgba(0,0,0,0.5);
    position: absolute;
    bottom: 0;
    left: 0;
    height: 25%;
    width: 100%;
    text-align: center;
    padding-top: 10%;
    transition: 0.4s;
}
#channels .box:hover .underbox{
    height: 55%;
    transition: 0.4s;
}
#channels .box .underbox p:first-of-type{
    position: relative;
}
#channels .box .underbox p:first-of-type::after{
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #ffffff;
    transition: 0.3s;
}
#channels .box:hover .underbox p:first-of-type::after{
    width: 80%;
    transition: 0.3s;
}
#channels .box:hover .under_strick{
    display: block;
}
#channels .underbox .under_strick{
    display: none;
    padding-top: 15px;
    font-size: 12px;
}

/*----------------------------------------------------------------------------------*/
/* ABOUT */
/*----------------------------------------------------------------------------------*/
.about .contenitore{
    text-align: center;

}


/*----------------------------------------------------------------------------------*/
/* WHY TRAVEL RETAIL */
/*----------------------------------------------------------------------------------*/
#whytravelretail{
    position: relative;
    text-align: center;
}
.video{
    height: 75vh;
    top: 0;
    left: 0;
    position: relative;
    overflow: hidden;
}
#whytravelretail .contenitore{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    height: 75vh;
    margin: 0 auto;
    justify-content: space-between;
    background-color: rgba(0,0,0,0.6);
    padding: 50px 100px 40px;
    text-align: left;
}

#whytravelretail .contenitore h3{
    font-weight: bold;
}

#whytravelretail .why{
    width: 50%;
    padding-right: 35px;
}
#whytravelretail .why p{
    padding-top: 20px;
}
#whytravelretail .how{
    width: 50%;
    border-left: 1px solid #ffffff;
    padding-left: 40px;
    position: relative;
}
#whytravelretail .how .dis_text{
    color: #62c0ff;
    padding: 25px 0 25px 47px;
}
#whytravelretail .how::after{
    position: absolute;
    content: "";
    top: 13vh;
    left: 4vh;
    width: 100%;
    height: 100%;
    background: url("../img/freccia_down.png") no-repeat;
    z-index: 1;
}

/*----------------------------------------------------------------------------------*/
/* GLOBAL PRESENCE */
/*----------------------------------------------------------------------------------*/

.global_pr .contenitore{
    text-align: center;
    padding-top: 45px;
}
#global_presence{
    background: url("../img/sfondo_cartina.jpg") no-repeat center;
    background-size: cover;
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
    text-align: center;
}
#global_presence::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.23);
}
#global_presence .contenitore{
    display: flex;
    justify-content: space-between;

}
#global_presence .presence01{
    width: 45%;
    background-color: rgba(0,0,0,0.7);
    text-align: center;
    z-index: 1;
    border-radius: 7px;
    padding-top: 25px;
    padding-bottom: 20px;
}

#global_presence .presence02{
    width: 45%;
    background-color: rgba(0,0,0,0.7);
    text-align: center;
    z-index: 1;
    border-radius: 7px;
    padding-top: 25px;
    padding-bottom: 25px;
}
.presence01 .figura_positioning{
    padding-top: 40px;
    text-align: center;
}
.presence02 .figura_positioning{
    padding-top: 18px;
    text-align: center;
}

/*----------------------------------------------------------------------------------*/
/* BRANDS PORTFOLIO */
/*----------------------------------------------------------------------------------*/

#portfolio{
    margin-top: 65px;
}
#portfolio .contenitore{
    text-align: center;
}
#portfolio .contenitore h3{
    color: var(--grigio);
    margin-top: 40px;
}

#portfolio .riga_brands{
    display: flex;
    justify-content: space-between;
    margin: 0 100px;
}

#portfolio .riga_brands:last-of-type{
    margin-top: 40px;

}
#portfolio .riga_brands:last-of-type .box:nth-child(3),
#portfolio .riga_brands:last-of-type .box:nth-child(2)
{
    opacity: 0;
}
/* #portfolio .riga_brands:first-of-type .box:nth-child(3){
    opacity: 0;
} */

#portfolio .riga_brands .comingsoon{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;

}

#portfolio .riga_brands .comingsoon p{
    color: #cb8f24;
    font-size: 20px;
}
#portfolio .riga_brands a{
    height: 175px;
}

#portfolio .riga_brands:last-of-type{
    margin-bottom: 70px;
}
#portfolio .box{
    width: 28%;
    height: 30vw;
    border-radius: 2px;
    overflow: hidden;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all 0.3s;

}
#portfolio .box img{
    object-fit: cover;
    cursor: pointer;
}
#portfolio .box:hover{
    transform: scale(1.1);
    transition: 0.3s;

}
#portfolio .box:hover::after{
    opacity: 1;
}
#portfolio .box:hover::before{
    opacity: 1;
}
#portfolio .box::after{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1;
    opacity: 0;
    transition: all 0.3s;
}
#portfolio .box::before{
    content: "\f002";
    font-family: "Font Awesome 5 Free", sans-serif;
    font-weight: bold;
    font-size: 23px;
    top: 43%;
    opacity: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    color: #fdfdfd;
    transition: all 0.3s;
    z-index: 2;
}

/*----------------------------------------------------------------------------------*/
/* TRUST US */
/*----------------------------------------------------------------------------------*/

#trust_us {
    background: url("../img/agreement.jpg") no-repeat center bottom;
    background-size: cover;
    display: flex;
    text-align: center;
    justify-content: center;
    padding: 180px 0;
    position: relative;
    margin-bottom: 50px;
}
#trust_us::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.59);
    width: 100%;
    height: 100%;
}
#trust_us p{
    z-index: 1;
}
/*----------------------------------------------------------------------------------*/
/* CONTACS */
/*----------------------------------------------------------------------------------*/
#contacts{
    background: url("../img/sfondo_contacts.jpg") no-repeat center;
    background-size: cover;
    position: relative;
    margin: 0;
    padding: 0;
    height: 70vh;
}
#finale #contacts{
    height: 93vh;
    display: flex;
    align-items: center;
}
@media (max-width: 991px){
   #finale #contacts{
       height: auto;
     padding-top: 150px;
     padding-bottom: 50px;
   }
}
#contacts::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.6);
    width: 100%;
    height: 100%;
}
#contacts .contenitore{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 90px 0;
}

#contacts .contacts_text{
    width: 45%;
    z-index: 1;
    text-align: center;
}
#contacts .contacts_text h2{
    color: #fff;
    margin: 20px 0 0;
}
#contacts .contacts_text h3{
    margin-bottom: 20px;
    margin-top: 0;
    color: #80d4ff;
}
#contacts .contacts_text a{
    color: #ffffff;
    text-decoration: none;
}
#contacts .contacts_text i{
    margin: 10px 15px 10px 0;
    color: #80d4ff;
    font-size: 22px;
}
#contacts .contacts_map{
    width: 43%;
    z-index: 1;
    border-radius: 5px;
    overflow: hidden;
    height: 450px;
}
#contacts .company_datas{
    margin-top: 20px;
}

/*----------------------------------------------------------------------------------*/
/* FOOTER */
/*----------------------------------------------------------------------------------*/
.footer{
    padding: 10px 0 10px;
    text-align: center;
    z-index: 1;
    color: #ffffff;
    background-color: #346594;
}
#finale .footer{
    height: 7vh;
}
.footer p{
    font-size: 12px;
    color: #ffffff;
}
.footer a{
    color: #ffffff;
    text-decoration: underline;
}
/*----------------------------------------------------------------------------------*/
/* ABOUT US */
/*----------------------------------------------------------------------------------*/
#intro_insert{
    height: 50vh;
    background: url("../img/sfondo_cartina.jpg") no-repeat center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#intro_insert::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(13, 37, 57, 0.4);
    width: 100%;
    height: 100%;
}
#intro_insert h1{
    color: #ffffff;
    font-size: 40px;
    z-index: 1;
}
#story h2{
    color: var(--blue);
}

#story .contenitore{
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
}
#story .story_picture{
    width: 42%;
}
#story img{
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}
#story .text_picture{
    width: 56%;
    padding-left: 90px;
    padding-right: 40px;
    padding-top: 30px;
    border-top: 2px solid #8ac4de;
    border-left: 2px solid #8ac4de;
    position: relative;
    top: 50px;
    left: -70px;
}
#story .text_picture p{
    color: var(--grigio);
    padding-top: 20px;
    padding-bottom: 20px;
}
#story_cards .contenitore{
    display: flex;
    justify-content: space-between;
    margin-top: 90px;
    margin-bottom: 60px;
}
#story_cards .contenitore .ourvalues{
    width: 45%;
    background-color: rgba(55, 112, 160, 0.28);
    border-radius: 10px;
    text-align: center;
    padding: 20px;
    transition: 0.3s;
}
#story_cards .contenitore .ourvalues:hover,
#story_cards .contenitore .ourmission:hover{
    transform: scale(1.05);
    transition: 0.3s;
}
#story_cards .contenitore .ourmission{
    width: 45%;
    background-color: rgba(55, 112, 160, 0.28);
    border-radius: 10px;
    text-align: center;
    padding: 20px;
}
#story_cards .contenitore p{
    color: var(--grigio);
    padding-bottom: 30px;
}
#story_cards i{
    padding-right: 20px;
    color: #2a7bb1;
}

#stand_group{
    margin-bottom: 50px;
}

/*----------------------------------------------------------------------------------*/
/* BRANDS SERVICE */
/*----------------------------------------------------------------------------------*/

#brands{
    padding: 50px 0;
    text-align: center;
}
#brands img{
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}
#brands h3{
    color: var(--blue);
    font-weight: bold;
    padding-bottom: 20px;
    font-size: 25px;
    margin-top: 0;
}
#brands .contenitore{
    text-align: left;
}
#brands .global_travel{
    display: flex;
    justify-content: space-between;
}
#brands .global_image{
    width: 50%;
}
#brands .global_text{
    width: 50%;
    color: var(--grigio);
    border-top: 2px solid var(--blue);
    border-left: 2px solid var(--blue);
    padding-left: 50px;
    padding-right: 40px;
    margin-top: 40px;
    position: relative;
    top: 0;
    left: -50px;
}
#brands .global_text li{
    padding-bottom: 15px;
}
#brands .global_text h3{
    color: var(--grigio);
    font-weight: bold;
    margin-left: 15px;
    padding-top: 40px;
}

#brands .domestic_markets{
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    margin-bottom: 60px;
}
#brands .domestic_img{
    width: 50%;
}
#brands .domestic_text{
    width: 50%;
    color: var(--grigio);
    padding: 0 55px 45px 55px;
    border-top: 2px solid var(--blue);
    border-right: 2px solid var(--blue);
    position: relative;
    top: 35px;
    right: -40px;
}
#brands .domestic_text li{
    padding-bottom: 15px;
}
#brands .domestic_text p{
    color: var(--grigio);
}
#brands .domestic_text h3{
    color: var(--grigio);
    font-weight: bold;
    padding-top: 35px;
    margin-top: 30px;
}

/*----------------------------------------------------------------------------------*/
/* RETAIL SERVICE */
/*----------------------------------------------------------------------------------*/
#retail_service .contenitore{
    display: flex;
    justify-content: space-between;
    text-align: left;
}
#retail_service{
    margin: 50px 0;
    text-align: center;
}
#retail_service h3{
    color: var(--blue);
    font-weight: bold;
    padding-bottom: 20px;
    font-size: 25px;
}
#retail_service .retail_img{
    width: 50%;
}
#retail_service .retail_text{
    width: 50%;
    color: var(--grigio);
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 30px 55px 30px 35px;
    border-top: 2px solid var(--blue);
    border-right: 2px solid var(--blue);
    position: relative;
    top: 30px;
    right: -50px;
}
#retail_service .retail_text h3{
    color: var(--grigio);
    font-weight: bold;
}
#retail_service img{
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}
/*----------------------------------------------------------------------------------*/
/* SCROLL TOP */
/*----------------------------------------------------------------------------------*/
#scrolltop{
    display: flex;
    position: fixed;
    right: 30px;
    bottom: 20px;
    color: #949494;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
    z-index: 4;
}
.visibile #scrolltop{
    opacity: 1;
    visibility: visible;
    transition: all 0.4s;
}

#scrolltop:active{
    background-color: #8a8a8a;
}

#scrolltop i{
    position: relative;
    left: 0;
    top: 6px;
}
/*----------------------------------------------------------------------------------*/
/* RESPONSIVE */
/*----------------------------------------------------------------------------------*/

@media (max-width: 767px) /*SMARTPHONE*/
{
    .contenitore{
        width: 90%;
    }
    #testata{
        display: none;
    }
    .burger{
        display: inline-block;
    }
    h1{
        font-size: 35px;
    }
    .logo_mobile{
        display: block;
    }
    #introduction .text{
        padding-top: 22vh;
    }
    #channels .riga_box{
        flex-wrap: wrap;
        margin: 40px 35px 40px;
    }
    #channels .riga_box .box {
        width: 47%;
        height: 23vh;
        margin-bottom: 20px;
    }
    .video{
        height: 30vh;
        padding: 0;
        margin: 0;
    }
    #whytravelretail .contenitore{
        position: relative;
        display: block;
        background-color: transparent;
        padding: 0 10px 20px;
        margin: 0;
    }
    #whytravelretail .contenitore p{
        color: var(--grigio);
    }
    #whytravelretail .contenitore h3{
        color: var(--grigio);
    }
    #whytravelretail .why{
        width: 100%;
        padding: 0 0 10px 0 ;
        margin: 0;
    }
    #whytravelretail .contenitore .why p:nth-child(2){
        display: none;
    }
    #whytravelretail .how{
        width: 100%;
        padding: 0;
        margin: 0;
        border-left: none;
    }
    #whytravelretail .how:after{
        left: -3px;
        top: 10vh;
        background: url("../img/freccia_down.png") no-repeat;
    }

    .global_pr .contenitore{
        margin-top: 45px;
    }
    #global_presence{
        padding-top: 40px;
        padding-bottom: 40px;
    }
    #global_presence .contenitore{
        display: block;
    }
    #global_presence .presence01{
        width: 100%;
        padding-top: 5px;
        margin-bottom: 15px;
            }
    #global_presence .presence02{
        width: 100%;
        padding-top: 5px;
    }
    #portfolio .riga_brands{
        margin: 0 10px;
    }
    #portfolio .box {
        width: 32%;
        height: 130px;
    }
    #contacts{
        height: auto;
    }
    #contacts .contenitore{
        display: block;
        padding: 0 20px 20px;
    }
    #contacts .contacts_text{
        width: 100%;
        z-index: 2;
        position: relative;
        margin-bottom: 25px;

    }
    #contacts .contacts_map {
        width: 90%;
        z-index: 2;
        position: relative;
        margin: 0 auto;
        height: 100VW;

    }

    .footer{
        position: relative;
    }
    #story .contenitore{
        display: block;
    }
    #story .story_picture{
        width: 65%;
        margin: 0 auto;

    }
    #story .text_picture{
        width: 100%;
        padding: 5px 0 0 30px;
        top: 0;
        left: 0;
        margin-top: 40px;
    }
    #story_cards .contenitore{
        display: block;
    }
    #story_cards .contenitore .ourvalues{
        width: 100%;
        margin-bottom: 20px;
    }
    #story_cards .contenitore .ourmission{
        width: 100%;
    }
    #brands .global_travel {
        display: block;
    }
    #brands .global_image{
        width: 80%;
        margin: 0 auto;
    }
    #brands .global_text {
        width: 100%;
        padding: 0;
        margin-top: 15px;
        top: 0;
        left: 0;
        border: none;
    }
    #brands .domestic_markets {
        display: block;

    }
    #brands .domestic_text {
        width: 100%;
        padding: 0 15px 50px 10px;
        top: 0;
        right: 0;
        border: none;
    }
    #brands .domestic_img {
        width: 80%;
        margin: 0 auto;
    }
    #retail_service .contenitore {
        display: block;
    }
    #retail_service .retail_text {
        width: 100%;
        padding: 0 10px 20px 10px;
        top: 0;
        right: 0;
        border: none;
    }
    #retail_service .retail_img {
        width: 80%;
        margin: 0 auto;
    }
    #channels .box .underbox p:first-of-type{
        display: none;
    }
    #channels .box .underbox p:last-of-type{
        top: -22px;
        position: relative;
        display: block;
    }
    #channels .underbox{
        background-color: rgba(0,0,0,0.4);
        height: 40%;
            }
}
@media (min-width: 768px) and (max-width: 991px) /*TABLE VERTICALI E SMATPHONE GRANDI*/
{
    .contenitore{
        width: 750px;
    }
    #testata .menu a{
        font-size: 14px;
        padding: 20px 15px;
    }
    #testata .logo{
        margin-left: 5vh;
    }
    #testata .logo span{
        display: none;
    }
    #testata .contact_us{
        width: 18%;
        text-align: center;
        margin-right: 4vh;
    }
    #channels .riga_box{
        flex-wrap: wrap;

    }
    #channels .riga_box .box{
        width: 48%;
        margin-bottom: 20px;
        height: 39vh;
    }
    #whytravelretail .contenitore{
        position: static;
        display: block;
        padding: 20px 30px;
        margin: 0;
        height: auto;
        background-color: transparent;
        color: var(--grigio);
    }
    .video{
        height: 65vh;
    }
    #whytravelretail .contenitore .why{
        width: 100%;
        padding-bottom: 20px;
    }
    #whytravelretail .contenitore .why h3,
    #whytravelretail .contenitore .why p{
        color: var(--grigio);
    }
    #whytravelretail .contenitore .how{
        width: 100%;
        border-left: none;

    }
    #whytravelretail .contenitore .how h3,
    #whytravelretail .contenitore .how p{
        color: var(--grigio);
    }
    #whytravelretail .how::after{
        left: 0;
        top: 11vh;
        background: url("../img/freccia_down.png") no-repeat;
    }
    .global_pr .contenitore{
        padding-top: 0;
    }
    #portfolio .riga_brands{
        margin: 0 30px;
    }
    #portfolio .box{
        width: 30%;
    }
    #contacts .contenitore{
        padding: 0 20px 0;
    }
    #contacts .contacts_map{
        width: 47%;
    }

    #story .contenitore{
        display: block;
    }
    #story .story_picture{
        width: 50%;
        margin: 0 auto;
    }
    #story .text_picture {
        width: 90%;
        top: -60px;
        left: 0;
        padding-left: 40px;
        padding-right: 10px;
        padding-top: 25px;
        margin-top: 20px;
    }
    #story_cards .contenitore{
        margin-top: 20px;
    }
    #brands .global_travel {
        display: block;
    }
    #brands .global_image{
        width: 60%;
        margin: 0 auto;
    }
    #brands .global_text {
        width: 100%;
        padding: 0;
        margin-top: 15px;
        padding-right: 20px;
        top: 0;
        left: 0;
        border: none;
    }
    #brands .domestic_markets {
        display: block;
    }
    #brands .domestic_text {
        width: 100%;
        padding: 0 15px 50px 10px;
        top: 0;
        right: 0;
        border: none;
    }
    #brands .domestic_img {
        width: 60%;
        margin: 0 auto;
    }
    #retail_service .contenitore {
        display: block;
    }
    #retail_service .retail_text {
        width: 100%;
        padding: 0 10px 20px 10px;
        top: 0;
        right: 0;
        border: none;
    }
    #retail_service .retail_img {
        width: 60%;
        margin: 0 auto;
    }
}
@media (min-width: 992px) and (max-width: 1199px) /*TABLET ORIZZONTALI E SCHERMI PICCOLI*/
{
    .contenitore{
        width: 960px;
    }
    #testata .menu a{
        padding: 25px 21px;
    }
    #testata .logo{
        margin-left: 10vh;
    }
    #testata .logo span{
        left: -37px;
        bottom: 25px;
        font-size: 8px;
    }
    #testata .contact_us{
        width: 11%;
        margin-right: 5vh;
    }
    #retail_service .retail_text{
        padding: 30px 30px 30px 10px;
    }

    #whytravelretail .contenitore{
        height: 73vh;
    }
    #brands .global_text{
        width: 65%;
        padding-left: 50px;
        padding-right: 0;
        margin-top: 40px;
    }
    #brands .domestic_text{
        width: 65%;
        padding: 0 55px 45px 30px;

    }
    #whytravelretail .why p:nth-child(2){
        display: none;
    }
    #whytravelretail .contenitore {
        top: 1vh;
    }

}
@media (min-width: 1200px) /*SCHERMI GRANDI*/
{

}

/* contributi */

#contributi{
   display: flex;
   align-items: center;
   justify-content: center;
    height: 98vh;
}
#contributi h1{
    padding-bottom: 50px;
    color: var(--black);
}
#contributi p, #contributi li, #contributi h3{
    color: var(--black) !important;
    line-height: 1.7;
}
@media (max-width: 991px){
   #contributi{
      padding-top: 100px;
      padding-bottom: 50px;
      height: auto;
   }
}