:root {
          --blue-xphere: #251D49;
          --red-xphere: #D82132;
          --cherry: #F22259;
          --cherry-dark: #A61D46;
          --gray-light: #C7C7C7;
          --gray-lighter: #E4E4E4;
          --blue-light: #58B2CD;
          --blue-background: #E5E8EF;

          --font-size-base: 16px;
        }
* {
    margin: 0px;
    padding: 0px;
}
body{
     font-family: "Montserrat", sans-serif !important;
     font-size: var(--font-size-base);
}
/*
=================================
Hero
=================================
*/
.hero {
    background: url(./assets/BG-city.jpg);
    background-size: cover;
    background-attachment: fixed;
    padding: 40px 0;
}
.heroContainer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 70vh;
}
@media (max-width: 576px) {
  .heroContainer {
    height: fit-content;
}
}
.topBar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    max-height: min-content;
    width: 100%;
}
@media (max-width: 576px) {
  .topBar{
    flex-direction: column;
    gap: 30px;
  }
}
.xphereLab {
    width: 200px;
}
.navButtons {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 20px;
}
@media (max-width: 576px) {
  .navButtons {
    display: block;
    padding: 0px;
    text-align: center;
}
.navButtons li:nth-child(1) {
    display: inline-block;
    text-align: center;
    margin-right: 30px;
}
.navButtons li:nth-child(2) {
    display: inline-block;
    text-align: center;
    margin-bottom: 40px;
}
.socialLink {
    font-size: 35px;
}
}
.socialLink {
    color: white;
    text-decoration: none;
    font-size: 22px;
}

.loginFrame {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 30px;
}
.loginFrame span{
    text-align: right;
    line-height: 1.1;
    display: block;
}
.ctaApp {
    border-radius: 30px;
    background: var(--cherry-dark);
    border: 1px solid var(--cherry);
    padding: 6px 14px;
    text-decoration: none;
    color: white;
    box-shadow: 0px 0px 30px 1px rgba(255, 0, 72, 0.5);
    transition: .5s all;
}
.ctaApp:hover {
    background: var(--blue-xphere);
    border: 1px solid var(--blue-light);
    box-shadow: 0px 0px 70px 1px rgba(255, 0, 72, 0.5);
}

.textHero {
    color: white;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.textHero h1 {
    font-size: 41px;
    font-weight: 300;
}
@media (max-width: 576px) {
  .textHero {
    max-width: 100%;
    margin: 40px 0;
    padding-left: 30px;
    padding-right: 30px;
    }
    .textHero h1 {
        font-size: 28px;
    }
}

/*
=================================
Features
=================================
*/
.features {
    padding: 100px 0;

}
.featuresItems {
    list-style: none;
}
@media (max-width: 576px) {
  .featuresItems {
    padding-left: 0px;
}
}
.featuresItems li {
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-lighter);
    font-size: 20px;
    color: var(--blue-xphere);
}
li.highlightFeatures {
    padding: 0px;
    margin-top: 20px;
    border-bottom: 0px solid var(--gray-lighter);
}
.highlightFeatures .highlightFeaturesLink {
    background-color: var(--blue-light);
    border-color: white;
    display: flex;
    justify-content: space-evenly;
    gap: 15px;
    align-items: center;
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    transition: .5s all;
}
.highlightFeatures span {
    display: block;
    width: 100%;
}
.highlightFeatures .icon {
    background: white;
    width: 60px !important;
    height: 60px !important;
    border-radius: 50px;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--blue-xphere);
    transition: .5s all;
    line-height: 0;
}
.highlightFeatures .highlightFeaturesLink:hover {
    background: var(--blue-xphere);
    box-shadow: 0px 0px 10px 1px rgba(255, 0, 72, 0.3);
}
.highlightFeatures .highlightFeaturesLink:hover .icon{
    transform: scale(1.1);
}
.videoContainer {
    display: flex;
    justify-content: center;
    align-items: center;  
    flex-direction: column;
}
.featuresVideo {
    width: 100%;
    height: 350px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background: url(./assets/coverVideo.jpg) no-repeat;
    background-size: cover;
    border-radius: 15px;
}
@media (max-width: 576px) {
  .featuresVideo {
    height: 280px;
}
}
.videoButton {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.videoButton a {
    background: white;
    color: var(--blue-xphere);
    border-radius: 50px;
    height: 60px;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 30px;
    line-height: 0;
    box-shadow: 0px 0px 8px 1px rgba(19, 18, 19, 0.60);
    transition: .3s all;
}
.videoButton a:hover {
    background: var(--cherry-dark);
    color: white;

}
.videoButton span {
    color: white;
    margin-top: 5px;
    text-shadow: 0px 0px 8px 1px rgba(19, 18, 19, 0.661);
}

/*
=================================
Releases
=================================
*/

.releases {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: var(--blue-xphere);
    padding: 100px 0;
}
.releases>h2{
    text-align: center;
    color: white;
    font-size: 30px;
    font-weight: 300;
    margin-bottom: 25px;
}
.events{
    grid-template-columns: 1fr 1fr;
    max-width: 70vw;
}
@media (max-width: 576px) {
  .events{
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}
.card {
    width: 325px;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 0px 20px 0px rgba(19, 18, 19, 0.30);
    transition: .5s all;
}
.card:hover {
    transform: scale(1.05);
}
.card.completed .date {
    color: var(--gray-light);
    border: 1px solid var(--gray-light);
}
.card.completed .btnGallery {
    display: flex;
}
.card.booked .date{
    display: flex;
}
.card.booked .location p {
    display: block;
}
.cardHeader{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    color: var(--blue-xphere);
}
.location {
    font-size: 16px;
    color: var(--blue-xphere);
}
.location h3{
    margin: 0px;
    font-weight: bold;
    font-size: 24px;
    line-height: 90%;
}
.location p {
    margin: 0px;
    display: none;
}
.date {
    border-radius: 4px;
    color: var(--cherry-dark);
    border: 1px solid var(--cherry-dark);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 8px 0px 8px;
    font-weight: bold;
    font-size: 20px;
}
.date h4 {
    font-size: 30px;
    line-height: 20px;
    margin: 0px;
    font-weight: bold;
}
.locationPhoto {
    background: url(./assets/bogota.jpg) center;
    background-size: cover !important;
    height: 193px;
    border-radius: 10px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.locationPhoto.co { background: url(./assets/bogota.jpg) center;}
.locationPhoto.mx { background: url(./assets/mexico.jpg) center;}
.locationPhoto.cl { background: url(./assets/chile.jpg) center;}
.locationPhoto.pe { background: url(./assets/peru.jpg) center;}

.locationPhoto .btnGallery {
    width: 60px;
    height: 60px;
    background: rgba(37, 29, 73, 0.80);
    border-radius: 50px;
    text-decoration: none;
    color: white;
    box-shadow: 0px 0px 20px 1px rgba(255, 0, 72, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    transition: .2s all;
}
.locationPhoto .btnGallery:hover {
    background: rgba(37, 29, 73, 1);
    width: 70px;
    height: 70px;
}
.locationPhoto .btnGallery:hover {
    transform: rotate(30deg);
}
/*
=================================
Contact Info
=================================
*/
.floatPanel {
    position: fixed;
    right: 0;
    top: 73vh;
    z-index: 10;
}
.floatPanel a {
    background: var(--blue-xphere);
    border: 1px solid var(--cherry-dark);
    border-radius:  50px 0px 0px 50px;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    margin-right: -1px;
    font-size: 18px;
    width: 150px;
    display: flex;
    transition: .5s all;
}
.floatPanel a:hover {
    width: 160px;
    box-shadow: 0px 0px 20px 1px rgba(255, 0, 72, 0.7);
}


/*
=================================
Footer
=================================
*/
footer {
    background: var(--blue-background);
}
.footerContaniner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 80px;
    padding-top: 80px;

}
@media (max-width: 576px) {
  .footerContaniner {
    flex-direction: column-reverse;
    gap: 40px;
}
}