/**  import of the fonts **/ 
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');


/** vars in general **/
:root{
    --blue:#0029FF;
    --trans:all 400ms ease;
    --mon:'Montserrat', sans-serif;;
}

/** general info main for each site **/
body::-webkit-scrollbar{
    display: none;
}

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

html{
    scroll-behavior: smooth;
}

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

.photoLanding{
    position: absolute;
    width:100%;
    height: 100vh;
    top: 0;
    z-index: 1;
    background-color: black;
    background-position: center;
    opacity: 40%;
    background-size: cover;
}

.photoLandingOne{
    background-image: url(img/community.JPG);
}

.photoLandingTwo{
    background-image: url(img/comunidadDos.JPG);
    filter: saturate(0);
}

.photoLandingThree{
    background-image: url(img/piñataDos.JPG);
    filter: saturate(0);
}

.photoLandingFour{
    background-image: url(img/kenSanta.jpg);
    filter: saturate(0);
}

.photoLandGall{
    background-image: url(img/volUno.jpg);
    filter: saturate(0);
}

.landingInfo{
    width:100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.384);
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.mainTitle{
    font-family: var(--mon);
    font-size: 121px;
    font-weight: 900;
    color: white;
    text-align: center;
    padding:0 100px;
    width: 1000px;
    opacity: 0;
    animation: opacTitle ease 4s 1 forwards;
}

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

    100%{
        opacity: 100%;
    }
}

.subtitle{
    width: 700px;
    text-align: center;
    font-family: var(--mon);
    font-size: 20px;
    color: white;
}

.buttonRow{
    margin-top: 20px;
    display: flex;
}

.CTAoutline{
    font-family: var(--mon);
    margin-right: 20px;
    font-size: 17px;
    color: white;
    border: solid 2px white;
    border-radius: 100px;
    text-align: center;
    text-decoration: none;
    text-align: center;
    padding: 15px 40px;
    position: relative;
    font-weight: 700;
    z-index: 1;
    transition: var(--trans);
    overflow: hidden;
}

.CTAoutline::after{
    content: '';
    background-color: white;
    z-index: -2;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: var(--trans);
}

.CTAoutline:hover::after{
    transform: scaleY(1);
    transform-origin: bottom;
    transition: var(--trans);
}


.CTAoutline:hover{
    color: black;
    transition: var(--trans);
}

.CTAblue{
    font-family: var(--mon);
    font-size: 17px;
    color: white;
    text-align: center;
    border-radius: 100px;
    text-align: center;
    background-color: var(--blue);
    font-weight: 700;
    text-decoration: none;
    padding: 15px 40px;
    position: relative;
    overflow: hidden;
    z-index: 7;
}


.CTAblue::after{
    content: '';
    background-color: black;
    z-index: -2;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: var(--trans);
    z-index: -1;
}

.CTAblue:hover::after{
    transform: scaleY(1);
    transform-origin: bottom;
    transition: var(--trans);
}


.CTAblue:hover{
    color: white;
    transition: var(--trans);
}

.media{
    width: 50px;
    display:flex;
    flex-direction:column;
    z-index:3;
    position: absolute;
    right: 40px;
    bottom: 100px;
}

.socialMediaLink{
    background-color: white;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--trans);
}

.socialMediaLink:hover{
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.721);
    transition: var(--trans);

}

.iconMedia{
    width: 24px;
    height: 24px;
    background-size:cover;
    background-position: center;
    background-repeat: no-repeat;
}

.insta{
    background-image: url(img/instagram.png);
}

.whatsapp{
    background-image: url(img/maps-and-location.png);
}

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

.logoMain{
    background-image: url(img/LOGO\ GC\ BLANCO.png);
}

@media (max-width:920px) {
    .subtitle{
        width: 500px;
        font-size: 18px;
    }

    .mainTitle{
        font-size:75px;
        width: 700px;
    }
}

@media (max-width:700px) {
    .subtitle{
        width: 500px;
        font-size: 18px;
    }

    .mainTitle{
        font-size:75px;
        width: 700px;
    }
    .media{
        bottom: 50px;
    }
    .socialMediaLink{
        width: 40px;
        height: 40px;
    }

    .CTAoutline{
        font-size: 14px;
        padding: 10px 20px;
    }

    .CTAblue{
        padding: 10px 20px;
        font-size: 14px;
    }

    .iconMedia{
        width: 18px;
        height: 18px;
    }
}


@media (max-width:570px) {
    .subtitle{
        width: 400px;
        font-size: 16px;
    }

    .mainTitle{
        font-size:55px;
        width: 400px;
    }
    .media{
        bottom: 20%;
        right: auto;
        flex-direction: row;
        width: 300px;
        justify-content: space-evenly;
    }
    .socialMediaLink{
        width: 40px;
        height: 40px;
    }

    .iconMedia{
        width: 18px;
        height: 18px;
    }

    .CTAoutline{
        font-size: 13px;
        padding: 10px 20px;
        margin: 0;
        margin-bottom: 10px;
    }

    .CTAblue{
        padding: 10px 20px;
        font-size: 11px;
    }

    .buttonRow{
        display:flex;
        flex-direction: column;
    }
}


@media (max-width:480px) {
    .subtitle{
        width: 300px;
        font-size: 12px;
    }

    .mainTitle{
        font-size:40px;
        width: 300px;
    }
    .media{
        bottom: 20%;
        right: auto;
        flex-direction: row;
        width: 300px;
        justify-content: space-evenly;
    }
    .socialMediaLink{
        width: 40px;
        height: 40px;
    }

    .CTAoutline{
        font-size: 13px;
        padding: 10px 20px;
        margin: 0;
        margin-bottom: 10px;
    }

    .CTAblue{
        padding: 10px 20px;
        font-size: 11px;
    }

    .buttonRow{
        display:flex;
        flex-direction: column;
    }

    .iconMedia{
        width: 18px;
        height: 18px;
    }
}


.animLandingOne{
    animation:animOne ease 500ms forwards 1;
    opacity: 0;
  }

  @keyframes animOne {
    0%{
        opacity: 0;
        transform: translateY(30px);
    }

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

  .titleDonar{
    font-size: 65px;
    width: 900px;
  }

  @media (max-width:850px) {
    .titleDonar{
        font-size: 50px;
        width:700px;
      }
  }

  @media (max-width:700px) {
    .titleDonar{
        font-size: 35px;
        width:550px;
      }
  }

  @media (max-width:480px) {
    .titleDonar{
        font-size: 28px;
        width:400px;
      }
  }


  @media (max-width:400px) {
    .titleDonar{
        font-size: 24px;
        width:340px;
      }
  }