/* 
Rolex ==> Riga 21
Boutique ==> Riga 311
Richard Mille ==> Riga 431
Audemars Piguet==> Riga 566
*/

* {
    margin: 0;
    padding: 0;
}

html {
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}

body {
    color: white;
    background-color: black;
    overflow-x: hidden;
}

/* Return to home button */

.return-home {
    background-color: rgba(255, 255, 255, 0.1);
    text-shadow: 4px 4px 2px rgba(255, 255, 255, 1);
    border-radius: 2000px;
    height: 100px;
    width: 100px;
    position: fixed;
    bottom: 3%;
    left: 1.5%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 1s;
    z-index: 100;
}

.return-home > img {
    height: 70px;
    opacity: 0.2;
    padding-bottom: 5px;
    transition: 1s;
}

.return-home > img:hover {
    opacity: 0.5;
}

/* ------------------------- Header ------------------------- */

header {
    overflow: hidden;
    height: 100vh;
}

.vid-bg {
    position: absolute;
    right: 0;
    bottom: 0;
    min-height: 100%;
    min-width: 100%;
}

.logo {
    font-family: 'Big Shoulders Stencil Text', cursive;
    font-weight: 600;
    padding-top: 35px;
    font-size: 25px;
}

header > .nav {
    height: 60px;
    width: 100%;
    text-align: center;
}

.menu-area {
    padding-top: 10px;
}

.menu-area > li {
    display: inline-block;
    list-style: none;
    letter-spacing: 2.5px;
    padding: 0px 20px;
}

.menu-area > li > a {
    text-decoration: none;
    color: white;
    transition: 1s;
}

.menu-area > li > a:hover {
    color: rgb(253, 249, 184);
}

.current {
    border-bottom: 2px solid white;
    transition: 1s;
}

.current:hover {
    border-radius: 20px;
    border-color: rgb(221, 221, 221);
}

.not-current {
    transition: 0.5s;
}

.not-current:hover {
    color: rgb(182, 135, 135);
}

header > .banner-text {
    position: relative;
    top: 40%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}

header > .banner-text > h2 {
    font-size: 70px;
}

.banner-text > p{
    font-size: 23px;
    padding: 0px;
}

.arrow {
    height: 150px;
    cursor: pointer;
}

/* ------------------------- SHOWCASE1 ------------------------- */

.showcase1-home {
    width: 100%;
    height: 40vh;
}

.showcase1-home > h2, p {
    padding-left: 180px;
}

.showcase1-home > h2 {
    font-size: 30px;
    padding-top: 150px;
    padding-bottom: 50px;
}

.showcase1-home > p {
    padding-right: 300px;
    letter-spacing: 2px;
    line-height: 1.5;
    font-size: 20px;
}

/* ------------------------- SHOWCASE2 ------------------------- */

.showcase2-home {
    margin-top: 300px;
    width: 100%;
    height: 600px;
    background: url(Images/Home-Rolex/Watch1.png) no-repeat;
    background-size: cover;
}

/* ------------------------- SHOWCASE3 ------------------------- */

.showcase3-home {
    text-align: center;
    margin-top: 210px;
}

.showcase3-home > h2 {
    font-size: 40px;
}

.showcase3-home > img {
    padding-top: 100px;
    height: 400px;
}

/* ------------------------- SHOWCASE4 ------------------------- */

.showcase4-home {
    width: 100%;
    height: 300px;
}

.showcase4-home > h2, p {
    padding-left: 180px;
}

.showcase4-home > h2 {
    font-size: 30px;
    padding-top: 50px;
    padding-bottom: 50px;
}

.showcase4-home > p {
    padding-right: 550px;
    letter-spacing: 2px;
    line-height: 1.5;
    font-size: 20px;
}

/* ------------------------- SHOWCASE5 ------------------------- */

.header2 {
    overflow: hidden;
    height: 80vh;
}

/* ------------------------- SHOWCASE6 ------------------------- */

.showcase6-home {
    width: 100%;
    height: 500px;
}

.showcase6-home > h2, p {
    padding-left: 180px;
}

.showcase6-home > h2 {
    font-size: 30px;
    padding-top: 150px;
    padding-bottom: 50px;
}

.showcase6-home > p {
    padding-right: 550px;
    letter-spacing: 2px;
    line-height: 1.5;
    font-size: 20px;
}

/* ------------------------- SHOWCASE7 ------------------------- */

.showcase7-home {
    padding-left: 350px;
}

.showcase7-home > img {
    padding-left: 350px;
    height: 400px;
}

/* ------------------------- BUY SECTION ------------------------- */

.buy__section {
    text-align: center;
    margin-top: 30px;
}

.buy__section > img {
    display: block;
}

.buy__button {
    padding: 10px 20px;
    border-radius: 100px;
    border: none;
    outline: none;
    font-size: 30px;
    font-weight: 600;
    color: white;
    border: 4px solid rgb(153, 153, 153);
    background-color: transparent;
    cursor: pointer;
    transition: 1s;
    transition-timing-function: ease;
}
.buy__button:hover {
    border: 4px solid white;
    color: rgb(153, 153, 153);
    background-color: white;
}

.discover__text {
    padding-top: 30px;
}

.logo1__discover {
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: 290px;
}

.logo2__discover {
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: 170px;
    padding-bottom: 100px;
}


/* FOOTER */

footer {
    text-align: center;
    background-color: rgba(178, 178, 178, 0.16);
}

footer > h2 {
    font-weight: 300;
    padding-top: 35px;
    padding-bottom: 35px;
}

footer > img {
    padding-bottom: 35px;
}

footer > p {
    padding: 20px 0px;
}

footer > hr {
    border: 0.2px solid rgba(255, 255, 255, 0.15);
}

footer > .logo {
    font-size: 40px;
    opacity: 0.8;
    padding-bottom: 30px;
}

.hr1 {
    margin-top: 35px;
}


/* ---------------------------------------------------------------------------------------------- */

/* -----------------------------------BOUTIQUE-----------------------------------*/

/* ---------------------------------------------------------------------------------------------- */

/* ---------HEADER---------- */
#info-web {
    opacity: 0.6;
    font-size: 20px;
    letter-spacing: 2px;
    padding: 0;
    padding-top: 80px;
    padding-left: 250px;
    padding-right: 250px;
}

.header-boutique {
    overflow: hidden;
    height: 70vh;
    margin-bottom: 100px;
}

.header-boutique > .banner-text > h2{
    margin-top: 100px;
}


.logo {
    font-family: 'Big Shoulders Stencil Text', cursive;
    font-weight: 600;
    padding-top: 35px;
    font-size: 25px;
}

.nav {
    background-color: transparent;
    height: 60px;
    position: absolute;
    width: 100%;
    text-align: center;
}

.menu-area {
    padding-top: 10px;
}

.menu-area > li {
    display: inline-block;
    list-style: none;
    letter-spacing: 2.5px;
    padding: 0px 20px;
}

.menu-area > li > a {
    text-decoration: none;
    color: white;
    transition: 1s;
}

.menu-area > li > a:hover {
    color: rgb(253, 249, 184);
}

.current {
    border-bottom: 2px solid white;
    transition: 1s;
}

.current:hover {
    border-radius: 20px;
    border-color: rgb(221, 221, 221);
}

.not-current {
    transition: 0.5s;
}

.not-current:hover {
    color: rgb(182, 135, 135);
}

.banner-text {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}

.banner-text > h2 {
    font-size: 58px;
}

.banner-text > p{
    font-size: 23px;
    padding: 0px;
}

/* ---------BRANDS---------- */

.brands {
    height: 150vh;
    width: 100%;
}

#logo1-mille {
    height: 350px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#logo2-piguet {
    height: 185px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#logo3-rolex {
    height: 180px;
    display: block;
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------------------------------------------------------------------------------------------- */

/* -----------------------------------RICHARD MILLE-----------------------------------*/

/* ---------------------------------------------------------------------------------------------- */

/* ---------HEADER---------- */

.header-mille {
    overflow: hidden;
    height: 100vh;
    background: rgb(71,71,71);
    background: radial-gradient(circle, rgba(71,71,71,1) 0%, rgba(0,0,0,1) 65%);
}



.header-mille > .banner-text {
    top: 56%;
}

.header-mille > .banner-text > h2 {
    font-size: 30px;
}

/* ---------SHOWCASE1---------- */

.showcase1-mille {
    padding-bottom: 40px;
    text-align: center;
}

.showcase1-mille > img {
    height: 600px;
}

/* ---------SHOWCASE2---------- */

.showcase2-mille {
    text-align: center;
}

.showcase2-mille > h1 {
    font-size: 55px;
}

.container1 > p {
    padding: 0;
    padding-top: 40px;
    text-align: justify;
    letter-spacing: 2px;
    font-size: 20px;
    line-height: 1.5;
}

.container1 {
    max-width: 600px;
    margin: 0 auto;
}

/* ---------SHOWCASE3---------- */

.showcase3-mille {
    padding-top: 200px;
    text-align: center;
}

.showcase3-mille > img {
    height: 450px;
    border-radius: 100%;
}


/* ---------SHOWCASE4---------- */

.showcase4-mille {
    padding-left: 180px;
    padding-top: 260px;
}

.showcase4-mille > p {
    padding: 0;
    padding-top: 40px;
    letter-spacing: 2px;
    font-size: 20px;
    line-height: 1.5;
    padding-right: 400px;
}

.showcase4-mille > h1 {
    font-size: 30px;
    padding-right: 400px;
}


/* ---------SHOWCASE5---------- */

.showcase5-mille {
    padding-top: 280px;
    text-align: center;
}

.showcase5-mille > img {
    height: 600px;
}

/* ---------SHOWCASE6---------- */

.showcase6-mille {
    display: grid;
    grid-template-columns: auto auto;
    padding-top: 150px;
}

.s6-p2 > img {
    margin-top: 100px;
    height: 470px;
}

.s6-p1 > p {
    padding: 0;
    padding-top: 40px;
    letter-spacing: 2px;
    font-size: 20px;
    line-height: 1.5;
    padding-right: 50px;
}

.s6-p1 {
    padding-top: 130px;
    padding-left: 180px;
}

/* ---------SHOWCASE7---------- */

.showcase7-mille {
    text-align: center;
    padding-top: 160px;
}

.showcase7-mille > img {
    height: 640px;
}


/* ---------------------------------------------------------------------------------------------- */

/* -----------------------------------AUDEMARS PIGUET-----------------------------------*/

/* ---------------------------------------------------------------------------------------------- */


/* ---------SHOWCASE1---------- */

.showcase1-piguet {
    text-align: center;
}

/* ---------SHOWCASE2---------- */

.showcase2-piguet {
    padding-top: 150px;
    text-align: center;
}

#piguet-logoMain {
    height: 220px;
}

.showcase2-piguet > h1 {
    font-size: 55px;
}

.showcase2-piguet > p {
    padding: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
    padding-top: 40px;
    text-align: justify;
    letter-spacing: 2px;
    font-size: 20px;
    line-height: 1.5;
}

/* ---------SHOWCASE3---------- */

.showcase3-piguet {
    padding-top: 200px;
    overflow: hidden;
    height: 80vh;
    text-align: center;
}

.vid-bg-piguet {
    height: 80vh;
}

/* ---------SHOWCASE4---------- */

.showcase4-piguet {
    padding-top: 150px;
    text-align: center;
}

.showcase4-piguet > img {
    padding: 0px 20px;
    border-radius: 100%;
    transition: 0.5s ease-in-out;
}

.showcase4-piguet > img:hover {
    border-radius: 10%;
}

/* ---------SHOWCASE5---------- */

.showcase5-piguet {
    padding-top: 100px;
    padding-left: 180px;
}


.showcase5-piguet > p {
    padding: 0;
    padding-top: 40px;
    letter-spacing: 2px;
    font-size: 20px;
    line-height: 1.5;
    padding-bottom: 60px;
    padding-right: 500px;
}


/* ---------SHOWCASE6---------- */

.showcase6-piguet {
    width: 100%;
    height: 550px;
    background: url("Images/Piguet/watch5_PG.png") no-repeat;
    background-size: cover;
    text-align: center;
    position: relative;
    margin-bottom: 100px;
}

.container-piguet > img {
    height: 220px;
}

.container-piguet {     /* CENTER THE LOGO VERTICALLY AND HORIZZONTALLY */
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.buy__section > .logo1__discover {
    height: 100px;
}

/* ---------------------------------------------------------------------------------------------- */

/* -----------------------------------CONTACT-----------------------------------*/

/* ---------------------------------------------------------------------------------------------- */

/* HEADER */

.header-contact {
    overflow: hidden;
    height: 25vh;
}

#nomeSpettatore {
    color: rgb(189, 189, 38);
}

/* FORM CONTACT US */

.showcase1-contact {
    text-align: center;
}

.showcase1-contact > p {
    padding: 0%;
    letter-spacing: 1.5px;
    line-height: 2;
    font-size: 20px;
}

.showcase1-contact > h1 {
    font-size: 47px;
}


/* FORM */

.container-form {
    margin-top: 100px;
    width: 100%;
    height: 100vh;
}

.form-contact__us {
    max-width: 700px;
    background-color: rgb(46, 46, 46);
    margin: 0 auto;
    height: 550px;
    border-radius: 70px;
    padding: 0%;
}

label {
    font-size: 24px;
}


.form-firstpart {
    float: left;
    width: 350px;
    padding-left: 30px;
    margin-top: 160px;
}

#surname {
    margin-top: 50px;
    margin-bottom: 50px;
}
input {
    border-radius: 10px;
    outline: none;
    border: none;
    font-size: 15px;
    padding: 5px;
}

.form-secondpart {
    float: right;
    margin-top: 160px;
    padding-right: 30px;
}

.input-corpo {
    padding-bottom: 170px;
}

#button-submit {
    margin-top: 50px;
    margin-left: 30px;
}


/* ---------------------------------------------------------------------------------------------- */

/* -----------------------------------BUY SECTION-----------------------------------*/

/* ---------------------------------------------------------------------------------------------- */

.buy__selection {
    display: flex;
    justify-content: center;
}

#title-buyyy {
    font-size: 45px;
}

#img-buyyy_mille {
    height: 350px; 
    padding-top: 50px; 
    padding-right: 60px; 
    padding-left: 100px;
}

#img-buyyy_piguet {
    height: 350px; 
    padding-top: 50px; 
    padding-right: 100px; 
    padding-left: 140px;
}

.IMG__buySection {
    height: 410px;
}

.buy__section__TWO {
    text-align: center;
    padding-top: 170px;
   
}

.buy__section__TWO > p {
    margin: 0;
    padding: 0;
}

.buy__section__TWO > button {
    margin-top: 30px;
    margin-bottom: 30px;
}

.DIV {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 70px;
}

.buy__button__gold {
    padding: 10px 20px;
    border-radius: 100px;
    border: none;
    outline: none;
    font-size: 30px;
    font-weight: 600;
    color: #B0C400;
    border: 3px solid#607200;
    background-color: transparent;
    cursor: pointer;
    transition: 0.5s;
    transition-timing-function: ease;
}
.buy__button__gold:hover {
    border: 3px solid #B0C400;
    color: #607200;
    background-color: #B0C400;
}


/* ---------------------------------------------------------------------------------------------- */

/* -----------------------------------SHOPPING CART-----------------------------------*/

/* ---------------------------------------------------------------------------------------------- */


.shopping__cart {
    text-align: center;
    padding-top: 50px;
    height: 80vh;
}

#totale {
    font-weight: 300;
    font-size: 30px;
    margin-bottom: 70px;
}




/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */

/* -----------------------------------MEDIA QUERIES-----------------------------------*/

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */

@media only screen and (max-width: 415px) {

    body, html {
        overflow-x: hidden;
    }

    header > .nav > .menu-area {
        font-size: 13px;
    }

    header > .banner-text > h2 {
        font-size: 43px;
    }

    .showcase1-home > h2, p {
        padding-left: 25px;
    }

    .showcase1-home > p {
        padding-right: 0px;
        letter-spacing: 1px;
        line-height: 1.5;
        font-size: 15px;
        padding-right: 50px;
    }

    .showcase2-home {
        margin-top: 400px;
        width: 100%;
        height: 200px;
        background: url(Images/Home-Rolex/Watch1.png) no-repeat;
        background-size: cover;
    }

    .showcase3-home > h2 {
        font-size: 30px;
    }

    .showcase3-home > img {
        padding-top: 100px;
        height: 250px;
    }

    .showcase4-home > h2, p {
        padding-left: 25px;
    }

    .showcase4-home > p {
        padding-right: 10px;
        letter-spacing: 2px;
        line-height: 1.5;
        font-size: 15px;
    }


    .header2 {
        height: 100%;
    }

    .header2 > video{
        width: 100%;
    }

    .showcase6-home > h2 {
        font-size: 30px;
        padding-top: 150px;
        padding-bottom: 50px;
    }

    .showcase6-home > h2, p {
        padding-left: 25px;
    }

    .showcase6-home > p {
        padding-right: 30px;
        letter-spacing: 2px;
        line-height: 1.5;
        font-size: 15px;
    }

    .showcase7-home {
        margin-bottom: 100px;
    }
    
    .showcase7-home > img {
        display: none;
    }

    .logo1__discover {
        height: 200px;
    }
    
    .logo2__discover {
        height: 100px;
    }

    footer > p {
        padding: 20px 20px;
    }


    /* BOUTIQUE */

    .header-boutique {
        height: 100vh;
    }
    .header-boutique > .nav > .menu-area {
        font-size: 13px;
    }

    .header-boutique > .banner-text > h2 {
        font-size: 43px;
    }

    #info-web {
        padding-left: 30px;
        padding-right: 30px;
        font-size: 15px;
    }

    .header-boutique > .banner-text > h2{
        margin-top: 70px;
        font-size: 40px;
    }

    .header-boutique > .banner-text > p{
        font-size: 20px;
        padding-left: 60px;
        padding-right: 60px;
    }

    .brands {
        height: 100vh;
    }

    #logo1-mille {
        height: 220px;
    }
    
    #logo2-piguet {
        height: 105px;
    }
    
    #logo3-rolex {
        height: 120px;
    }


    /* RICHARD MILLE */

    .header-mille {
        height: 100vh;
    }
    .header-mille > .nav > .menu-area {
        font-size: 13px;
    }

    .header-mille > .banner-text #mille-logoMain {
        height: 230px;
    }

    .header-mille > .banner-text > h2 {
        font-size: 27px;
    }

    .showcase1-mille > img {
        height: 400px;
        padding-left: 50px;
    }

    .showcase2-mille > h1 {
        font-size: 35px;
    }
    
    .container1 > p {
        font-size: 15px;
        padding-left: 50px;
        padding-right: 50px;
    }

    .showcase3-mille > img {
        height: 230px;
    }

    .showcase4-mille {
        padding-left: 25px;
        padding-top: 260px;
    }

    .showcase4-mille > p {
        padding: 0;
        padding-top: 40px;
        letter-spacing: 2px;
        font-size: 15px;
        line-height: 1.5;
        padding-right: 30px;
    }
    
    .showcase4-mille > h1 {
        font-size: 28px;
        padding-right: 45px;
    }
    .showcase5-mille {
        padding-top: 150px;
    }

    .showcase5-mille > img {
        height: 300px;
    }

    .showcase6-mille {
        display: flex;
        flex-direction: column;
        padding-top: 150px;
    }

    .s6-p1 {
        padding-left: 25px;
    }

    .s6-p1 > p {
        font-size: 15px;
    }

    .s6-p2 > img {
        margin-top: 65px;
        height: 340px;
    }

    .showcase7-mille > img {
        height: 270px;
    }

    .showcase8-mille > .container1 > p {
       padding-top: 0px;
    }
    
    .buy__section > #logo1__discoverROLEX {
        height: 10px;
    }


    /* AUDEMARS PIGUET */

    .header-mille > .banner-text > #piguet-logoMain {
        height: 120px;
    }

    .showcase1-piguet > img {
        height: 190px;
    }

    .showcase2-piguet > h1 {
        font-size: 35px;
    }

    .showcase2-piguet > p {
        font-size: 15px;
        margin-left: 50px;
        margin-right: 50px;
    }

    .showcase3-piguet {
        padding-top: 0px;
    }

    .showcase3-piguet > video {
        width: 100%;   
    }

    .showcase4-piguet > img {
        height: 200px;
        padding-top: 30px;
    }

    .showcase4-piguet {
        padding-top: 0px;
        text-align: center;
    }

    .showcase5-piguet {
        padding-left: 25px;
    }
    
    
    .showcase5-piguet > p {
        padding-right: 50px;
        font-size: 15px;
    }

    .showcase6-piguet {
        height: 220px;
    }

    .container-piguet > img {
        height: 100px;
    }

    .logo2__discover {
        height: 10px;
    }

    .buy__section > .logo1__discover {
        height: 1000px;
    }

    /*CONTATTI*/

    .header-contact > .nav > .menu-area {
        font-size: 13px;
    }

    .showcase1-contact > h1 {
        font-size: 40px;
    }

    .showcase1-contact > p {
        font-size: 17px;
    }

    .form-contact__us {
        max-width: 330px;
        background-color: rgb(46, 46, 46);
        margin: 0 auto;
        height: 550px;
        border-radius: 70px;
        padding: 0%;
    }

    label {
        font-size: 18px;
    }

    .form-firstpart {
        float: left;
        width: 350px;
        padding-left: 30px;
        margin-top: 60px;
    }

    #surname {
        margin-top: 43px;
        margin-bottom: 43px;
    }

    .form-secondpart {
        float: right;
        margin-top: 20px;
        padding-right: 30px;
        margin-bottom: 0px;
    }

    #surname {
        width: 155px;
    }

    .button-contact > button {
        position: absolute;
        top: 830px;
        left: 50%;
        transform: translate(-80%);
    }

    /*BUY SECTION-rolex*/

    .buy__selection {
        flex-direction: column;
    }

    #title-buyyy {
        font-size: 30px;
    }

    .buy__selection > .buy__section__ONE {
        margin-bottom: 0px;
    }

    .buy__section__TWO {
        padding-top: 0px;
    }

    .buy__selection > .buy__section__ONE > img {
        height: 370px;
    }

    
    /*BUY SECTION-mille*/

    .buy__selection > .buy__section__ONE > img {
        height: 370px;
    }

    .buy__section__ONE {
        text-align: center;
    }

    #img-buyyy_mille {
        height: 250px; 
        padding-top: 50px; 
        padding-bottom: 50px; 
        padding-right: 0px; 
        padding-left: 0px;
    }

    #img-buyyy_piguet {
        height: 270px; 
        padding-top: 50px; 
        padding-right: 0px; 
        padding-left: 0px;
        padding-bottom: 50px; 
    }

    .return-home {
        height: 63px;
        width: 63px;
        bottom: 3%;
        left: 4%;
    }
    
    .return-home > img {
        height: 50px;
        opacity: 0.3;
    }

}   /*Fine media queries*/