@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


:root{
    --title: "Raleway", sans-serif;
    --sub:"Work Sans", sans-serif;
    --text:"Montserrat", sans-serif;
}

*{
    margin:0;
    transition: all 400ms ease;
}

html{
    scroll-behavior: smooth;
}

body::-webkit-scrollbar{
    display: none;
}

.animOne{
    animation: one ease 600ms forwards 1;
    opacity: 0;
}

@keyframes one {
    0%{
        opacity: 0;
        transform: translateX(30px);
    }

    100%{
        opacity: 100%;
        transform: translateX(0);
    }
}

.animTwo{
    animation: two ease 600ms forwards 1;
    opacity: 0;
}

@keyframes two {
    0%{
        opacity: 0;
    }

    100%{
        opacity: 100%;
    }
}


.mainP{
    font-family: var(--text);
    z-index: 3;
    color: white;
    width: 420px;
    font-size: 22px;
    text-align: center;
}

.landing{
    position: relative;
    width:100%;
    height: 100vh;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    overflow: hidden;
}


.photo{
    z-index: -1;
    background-image: url(img/portada.jpg);
    background-position: center;
    background-size: 40% center;
    background-repeat: no-repeat;
    width:100%;
    height: 120%;
    position: absolute;
    background-size: cover;
    top:0;
    left: 0;
}

.gradient{
    z-index: 3;
    width:100%;
    height: 100vh;
    position: absolute;
    background-image: linear-gradient(rgba(0, 0, 0, 0),rgba(0, 0, 0, 0.666), black);
}

/* == main information !! *==*/

.landingInfo{
    width: 700px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    color: white;
    z-index: 5;
    box-sizing: border-box;
    margin: 0 0 100px 100px;
}

.mainTitle{
    font-family: var(--text);
    font-size: 40px;
}

.mainSub{
    font-family: var(--sub);
    font-size: 18px;
    margin: 8px 0;
    font-weight: normal;
}

.agenda{
    padding: 15px 40px;
    background-color: white;
    font-size: 17px;
    color:black;
    font-family: var(--sub);
    text-decoration: none;
    margin-top: 15px;
}

.agenda:hover{
    color: black;
    background-color: orange;
}


.calendar{
    background-color: black;
    overflow: hidden;
    padding: 40px 0;
}

.rowCTALanding{
    display: flex;
}

.agendaOne{
    margin-right: 15px;
}


@media (max-width:850px) {
    .landingInfo{
        width: 500px;
    }

    .mainTitle{
        font-size: 25px;
    }

    .mainSub{
        font-size: 15px;
    }

    .agenda{
        font-size: 15px;
    }
}

@media (max-width:630px) {
    .landing{
        padding-left: 0;
        justify-content: center;
        align-items: center;
    }
    .landingInfo{
        width: 500px;
        margin:0 0 0 0;
    }

    .mainTitle{
        font-size: 25px;
    }

    .mainSub{
        font-size: 15px;
    }

    .agenda{
        font-size: 15px;
    }

    .rowCTALanding{
        flex-direction: column;
    }
}

@media (max-width:550px) {
    .landingInfo{
        width: 300px;
        margin-top: 50px;
    }

    .mainTitle{
        font-size: 20px;
    }
    .mainSub{
        font-size: 12px;
    }
}


/* == steps para agendar == */
.steps{
    width: 100%;
    padding: 100px 0;
    background-color: white;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    overflow: hidden;
}

.titleSteps{
    font-family: var(--title);
    font-weight: normal;
    font-size: 34px;
    text-align: center;
}

.stepGrid{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    margin: 40px 0;
}

.step{
    width: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 400ms ease;
    opacity: 0;
    transform: translateY(40px);
}


.stepPic{
    width: 70px;
    height: 70px;
    background-position: center;
    background-size: cover;
    margin-bottom: 20px;
    background-repeat: no-repeat;
}

.stepMiniTitle{
    font-family: var(--title);
    font-size: 22px;
    font-weight: normal;
    text-align: center;
    width: 250px;
    margin-bottom: 12px;
}

.stepP{
    font-family: var(--text);
    text-align: center;
    font-size: 15px;
    width: 250px;
}

.stepOne{
    background-image: url(img/image\ 62.png);
}

.stepTwo{
    background-image: url(img/image\ 63.png);
}
.stepThree{
    background-image: url(img/image\ 64.png);
}

.rowCTA{
    margin-top: 40px;
}

.CTASteps{
    position: relative;
    padding: 15px 40px;
    text-align: center;
    font-family: var(--text);
    text-decoration: none;
    border: solid 2px black;
    margin: 20px 14px;
    color: black;
    transition: all 400ms ease;
    z-index: 1;
}

.CTASteps::after{
    content:'';
    background-color: black;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: bottom;
    transform:scaleY(0);
    z-index: -1;
    transition: all 400ms ease;
}

.CTASteps:hover::after{
    transform-origin: bottom;
    transition-delay: 100ms;
    transform:scaleY(1);
    transition: all 400ms ease;
}

.CTASteps:hover{
    color:white;
    transition: all 400ms ease;
}


@media (max-width:620px) {
    .step{
        margin: 30px 0;
    }

    .rowCTA{
        display:flex;
        justify-content: flex-start;
        align-items: flex;
        margin-top: 20px;
        flex-direction: column;
    }
    .CTASteps{
        position: relative;
        padding: 15px 40px;
        text-align: center;
        font-family: var(--text);
        text-decoration: none;
        border: solid 2px black;
        margin: 14px 0;
        color: black;
        transition: all 400ms ease;
        z-index: 1;
    }

    .titleSteps{
        font-size: 30px;
        width: 350px;
    }
}


/* == about "" = */

.about{
    width: 100%;
    height: auto;
    padding: 70px 0;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: center;
    background-color: black;
    align-items: center;
}

.rightAbt{
    width:50%;
    height: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    background-color: black;
}

.picAbt{
    width: 100%;
    height: 100%;
    background-image: url(img/cuarta.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    z-index: 1;
    opacity: 50%;
    top:0;
    left: 0;
}

.picLocation{
    width: 100%;
    height: 100%;
    background-image: url(img/locationPic.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    background-color: red;
    z-index: 1;
    opacity: 50%;
    top:0;
    left: 0;
}



.titleAbt{
    z-index: 3;
    text-align: left;
    color: rgb(227, 174, 76);
    font-family: var(--title);
    font-weight: normal;
    font-size: 40px;
    text-align: left;
    width: 300px;
}

.subAbt{
    z-index: 3;
    text-align: left;
    color: white;
    font-family: var(--text);
    font-weight: normal;
    text-align: left;
    font-size: 24px;
    width: 300px;
}


.leftAbt{
    width:50%;
    height: 700px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    padding-left: 100px;
    box-sizing: border-box;
    overflow: hidden;
    background-color: black;
}

.abtText{
    width: 500px;
    color: white;
    font-family: var(--sub);
    font-size: 16px;
    text-align: left;
}

.abtA{
    margin-top: 20px;
    padding: 16px 40px;
    border: solid 2px white;
    font-family: var(--text);
    font-size: 14px;
    text-decoration: none;
    background-color:transparent;
    color: white;
    transition: all 400ms ease-in;
}

.abtA:hover{
    background-color: white;
    color: black;
}

@media (max-width:1210px) {
    .rightAbt{
        width: 40%;
    }

    .leftAbt{
        width: 60%;
    }
}

@media (max-width:1020px) {
    .rightAbt{
        width: 100%;
        height: 500px;
    }

    .leftAbt{
        width: 100%;
        height: 500px;
    }

    .about{
        flex-direction: column;
    }
}

@media (max-width:680px) {
    .rightAbt{
        width: 100%;
    }

    .leftAbt{
        width: 100%;
        padding-left: 0;
        justify-content: center;
        align-items: center;
    }

    .abtText{
        width: 300px;
    }

    .about{
        flex-direction: column;
    }
}



/*==?? servicoos == ?*/
.novios{
    width: 100%;
    height: auto;
    padding: 70px 0;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.noviosTitle{
    font-family: var(--title);
    font-weight: normal;
    font-size: 24px;
    width: 900px;
}

.gridPics{
    display: flex;
    margin-top: 30px;
}

.picLeft{
    width: 450px;
    height: 400px;
    background-image: url(img/novena.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: saturate(1.4);
}

.picsRight{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-left: 20px;
}

.picRight{
    width: 450px;
    height: 190px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: saturate(1.5);
}

.pcROne{
    background-image: url(img/sexta.png);
}


.pcRTwo{
    background-image: url(img/septima.png);
}

@media (max-width:950px) {
    .noviosTitle{
        width: 700px;
    }

    .picLeft{
        width: 350px;
    }

    .picRight{
        width: 350px;
    }
}

@media (max-width:750px) {
    .noviosTitle{
        width: 400px;
    }

    .picLeft{
        width: 400px;
        height: 200px;
    }

    .gridPics{
        flex-direction: column;
    }

    .picsRight{
        flex-direction: column;
        margin-left: 0;
    }

    .picRight{
        width: 400px;
    }
}


@media (max-width:450px) {
    .noviosTitle{
        width: 300px;
        font-size: 17px;
    }

    .picLeft{
        width: 300px;
        height: 300px;
    }

    .gridPics{
        flex-direction: column;
    }

    .picsRight{
        flex-direction: column;
        margin-left: 0;
    }

    .picRight{
        width: 300px;
    }
}

/* == services == */
.services{
    width: 100%;
    height: auto;
    padding: 100px;
    background-color: black;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    box-sizing: border-box;
    align-items: center;
}

.serviceTitle{
    font-family: var(--title);
    font-size: 28px;
    color: white;
    font-weight: normal;
    width: 700px;
    text-align: center;
}

.rowService{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.service{
    background-color: black;
    width: 500px;
    height: 500px;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    margin: 20px;
    display: flex;;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 50px 0 0 50px;
    color: white;
}

.gradService{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 3;
    background-image: linear-gradient(rgba(0, 0, 0, 0.266),rgba(0, 0, 0, 0.666), black);
}

.picService{
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    background-size: cover;
    position: absolute;
    z-index: 2;
}

.rentaPic{
    background-image: url(img/tercera.jpg);
}

.sastrePic{
    background-image: url(img/octavo.png);
}

.servTitle{
    z-index: 4;
    font-family: var(--text);
    font-weight: normal;
    font-size: 30px;
    width: 350px;
    margin-bottom: 12px;
}

.servP{
    z-index: 4;
    font-family: var(--text);
    font-weight: normal;
    font-size: 18px;
    width: 350px;
}

@media (max-width:1060px) {
    .service{
        width: 400px;
        height: 400px;
    }
}

@media (max-width:900px) {
    .service{
        width: 600px;
        height: 400px;
    }

    .rowService{
        flex-direction: column;
    }
}

@media (max-width:680px) {
    .service{
        width: 400px;
        height: 400px;
    }

    .serviceTitle{
        width: 400px;
    }

}

@media (max-width:450px) {
    .service{
        width: 320px;
        height: 400px;
        padding: 30px 0 0 30px;
    }

    .serviceTitle{
        width: 320px;
    }

    .servTitle{
        width: 200px;
        font-size: 27px;
    }

    .servP{
        width: 200px;
        font-size: 14px;
    }
}

/* == part of the suit == */
.suits{
    width: 100%;
    height: auto;
    padding: 60px 0;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    background-color: black;
    flex-wrap: wrap;
}

.suit{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items:center;
    box-sizing: border-box;
    overflow: hidden;
    width: 320px;
    margin-top: 30px;
    text-align: center;
}

.suitPic{
    width: 300px;
    height: 400px;
    box-sizing: border-box;
    background-image: url(img/doce.JPG);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.suitP{
    color:white;
    font-family: var(--text);
    font-size: 18px;
    text-align: center;
    margin-top: 20px;
}

/* == accesorio ==*/
.accesorio{
    width: 100%;
    height: auto;
    padding: 100px 0;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
}

.acc{
    width: 800px;
    height: 500px;
    position: relative;
    padding: 50px 0 0 50px;
    box-sizing: border-box;
    overflow: hidden;
    z-index: 11;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.gradAcc{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 3;
    background-image: linear-gradient(rgba(0, 0, 0, 0.266),rgba(0, 0, 0, 0.666), black);
}

.accPic{
    z-index: 1;
    position: absolute;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
    top: 0;
    background-image: url(img/segund.png);
    left: 0;
}

.sPicOne{
    background-image: url(img/traje\ uno.png);
}

.sPicTwo{
    background-image: url(img/traje\ dos.png);
}

.sPicThree{
    background-image: url(img/traje\ 4.png);
}
.accTtitle{
    z-index: 4;
    font-family: var(--text);
    font-weight: normal;
    font-size: 30px;
    width: 350px;
    color: white;
    margin-bottom: 12px;
}

.accP{
    z-index: 4;
    font-family: var(--text);
    font-weight: normal;
    font-size: 18px;
    color:white;
    width: 350px;
}

@media (max-width:850px) {
    .acc{
        width: 600px;
    }
}

@media (max-width:670px) {
    .acc{
        width: 450px;
    }
}

@media (max-width:520px) {
    .acc{
        width: 300px;
        padding: 30px 0 0 30px;
    }

    .accTtitle{
        width: 200px;
    }

    .accP{
        width: 200px;
    }
}

/* == location */
.location{
    width: 100%;
    height: auto;
    padding: 30px 0;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    background-color: black;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

iframe{
    height: 600px;
}

.locationInfo{
    width: 900px;
    height: auto;
    padding:20px 0;
    box-sizing: border-box;
    border: solid 2px white;
    background-color: yellow;
}

.locationLink{
    color: white;
    font-family: var(--text);
    font-size: 20px;
    margin-top: 10px;;
    margin-bottom: 10px;
    text-decoration: solid 1px white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logoLoc{
    width: 25px;
    margin-right: 12px;
    height: 25px;
    background-position: center;
    filter: saturate(0);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 11;   
}

@media (max-width:500px) {
    .locationLink{
        font-size: 15px;
        margin-top: 0px;
    }
}

footer{
    width:100%;
    height: 700px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: black;
    color:white;
  }
  
  .lastP{
    text-align: center;
    width: 500px;
    font-family: var(--red);
  }
  
  @media (max-width:550px){
    .lastP{
      text-align: center;
      width: 300px;
    }
  }
  
  .picFooter{
    width:100%;
    height: 100%;
    background-image: url(img/quinta.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    z-index: 1;
  }
  
  .gradFoot{
    width:100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.684),rgba(0, 0, 0, 0.741), black);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    z-index: 2;
  }
  
  .logoFooter{
    z-index:11;
    background-image: url(img/luc1.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width:300px;
    height: 150px;
  }

  @media (max-width:500px) {
    .logoFooter{
        width: 200px;
        height: 100px;
    }
  }
  
  .contLink{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    z-index: 11;
  }
  
  .linkFooter{
    width: 50px;
    height:50px;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin:20px;
    border-radius: 100px;
    opacity: 50%;
    justify-content: center;
    transition: all 400ms ease;
  }
  
  .linkFooter:hover{
    transition: all 400ms ease;
    opacity: 100%;
  }
  
  .logoSocial{
    width: 20px;
    height:20px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  
  .insta{
    background-image: url(img/instagram.png);
  }
  .face{
    background-image: url(img/phone-call\ \(1\).png);
    filter: saturate(0);
  }
  
  .whastapp{
    background-image: url(img/whatsapp.png);
  }
  

  .lastP{
    z-index: 11;
    width: 300px;
    font-family: var(--text);
  }