@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap');
:root{
    --light-blue: rgb(99, 185, 233);
    --light-yellow: rgb(254, 201, 0);
    --light-red: rgb(210, 27, 16);
    --dark-blue: rgb(37, 61, 107);
    --white-color: white;
    --main-roboto-font: 'Roboto', sans-serif;
}

body{
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--main-roboto-font);
}

.main-body-container{
    height: auto;
    display: flex;
    width: 100%;
}

.nav-container{
    min-width: 100px;
    height: auto;
    background-color: var(--light-blue);
}

.nav-cont{
    height: 6rem;
    width: 100%;
}

.nev-text{
    display: none;
}
.menu-open{
    position: fixed;
    top: 3.5rem;
    left: 1.6rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.menu-open span{
    display: flex;
    width: 45px;
    height: 8px;
    background-color: white;
    margin-top: 6px;
}

.nav{
    z-index: 1000;
    position: fixed;
    top: 0;
    left: -40%;
    width: 40%;
    height: 100vh;
    background: white;
    border-right: 1px solid black;
    transition: 0.5s;
}

.nav.active{
    
    position: fixed;
    top: 0;
    left: 0;
    width: 40%;
    height: 100vh;
    background: white;
    border-right: 1px solid black;
    transition: 0.5s;
}

.nav ul{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
}

.nav ul li{
    margin-top: 2rem;
    color: var(--light-blue);
}

.nav ul li a{
    text-align: left;
    
    text-decoration: none;
    font-size: 1.2rem;
}


.inicio-underline a{
    color: var(--light-blue);
    padding: 0 3rem .8rem 3rem;
    border-bottom: 2px solid var(--light-yellow);
}

.name-underline a{
    color: var(--dark-blue);
    padding: 0 .5rem .8rem .5rem;
    border-bottom: 2px solid var(--light-blue);
}

.name-underline a:hover{
    color: var(--light-blue);
}

.propuestas-underline a{
    color: var(--dark-blue);
    padding: 0 1.1rem .8rem 1.1rem;
    border-bottom: 2px solid var(--light-red);
}

.propuestas-underline a:hover{
    color: var(--light-blue);
}

.compromisos-underline a{
    color: var(--dark-blue);
}

.compromisos-underline a:hover{
    color: var(--light-blue);
}



.menu-close{
    
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.menu-close span{
    display: flex;
    width: 20px;
    height: 2px;
    background-color: black;
}

.menu-close :nth-child(1){
    position: absolute;
    left: -2px;
    top: 7px;
    transform: rotate(45deg);
}

.menu-close :nth-child(2){
    position: absolute;
    left: -2px;
    top: 7px;
    transform: rotate(135deg);
}





.nav-jorge-logo{
    width: 100%;
    height: 165rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-jorge-logo img{
    height: 75px;
    width: 75px;
}

.nav{
    color: var(--dark-blue);
}

.nav ul h1{
    font-size: 3rem;
    margin: -1rem 0 -10px 0;
    padding: 0px;
}

.nav ul h2{
    font-size: 2rem;
}

.nav ul h3{
    font-size: 6rem;
    margin: -16px 0 -16px 0;
}












.main-container{
    width: 100%;
    height: auto;
    background-color: white;
}

.main-image{
    min-height: 850px;
    background-image: url(website_media/Banner\ Web.png);
    background-position: center; 
    background-repeat: no-repeat; 
    background-size:cover;
}

.main-image-inside-content{
    display: flex;
    justify-content: center;
    align-items: left;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
    height: 850px;
    margin-left: 5rem;
}

.main-image-inside-content :nth-child(1){
    height: 100px;
    width: 400px;
}

.main-image-inside-content :nth-child(2){
    height: 200px;
    width: 400px;
}

.main-image-inside-content :nth-child(3){
    font-size: 2rem;
    color: white;
    font-weight: bold;
}

#bog{
    color: rgb(253, 207, 0);
}
#ota{
    color: red;
}





.timer{
    height: 605px;
    background-color: var(--dark-blue);
    display: flex;
    justify-content: center;
    align-items: center;
}

.timer-container{
    width: 1065px;
}

.time {

    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;

}
.countdown {
    font-size: 8rem;
    display: flex;
    align-items: center;
    margin-right: 10px; /* Adjust the margin as needed */
    font-weight: 900;
}

.countdown span {
    margin: 0 10px; /* Add some spacing between the components */
}

.labels {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.labels p {
    margin: 0 60px 0 60px;
}

.countdown-label-basic p{

    margin: 0;
    padding: 0;
}

.countdown-1{
    font-size: 3rem;
    margin: 2rem 0 0 0;
    font-weight: 600;
}

.countdown-2{
    font-size: 4rem;
    font-weight: 900;
}








.introduction{
    height: auto;
    width: 100%;
}

.introduction-title{
    height: 382px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}

.int-title{
    text-align: center;
    height: 182px;
    width: 842px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.int-title h1{
    font-size: 5rem;
    color: var(--dark-blue);
    font-weight: bolder;
}

.introduction-text{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    text-align: left;
    
}

.int-text{
    height: auto;
    width: 780px;
    margin: 0;
}

.int-text p{
    margin-top: 0;
}

.gallery-position{
    height: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}






.gallery-container{
    width: 75rem;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    position: relative;
    width: 1100px;
    margin: 4rem 0 1rem 0;
}
  
#tns1 > .tns-item{
    height: 600px;
    width: 23.3rem;
}
.control {
    list-style: none;
}
.control li {
    position: absolute;
    z-index: 99;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 12px 20px;
    border-radius: 50%;
    cursor: pointer;
}
.control li:hover {
    background: #000;
}
.control li.prev {
    left: 20px;
}
.control li.next {
    right: 20px;
}
.tns-nav {
    display: none;
}
  



.proposals{
    height: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
  
.prop-title{
    width: 100%;
    height: auto;
    text-align: center;
  
}
  
.props-icon{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.flip-card {
    background-color: transparent;
    height: 25.5rem;
    width: 15.5rem;
    text-align: start;
    border-radius: 25px;
    text-align: center;
  
}
  
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    border-radius: 25px;
}
  
.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}
  
.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
  
.flip-card-front {
    border-radius: 25px;
}

.flip-card-front{
    padding-top: 20px;
    color: var(--dark-blue);
}
  
.flip-card-back {
    background-color: WHITE;
    color: var(--dark-blue);
    border: 2px solid var(--light-yellow);
    transform: rotateY(180deg);
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  
}
  
.card-back-container{
    width: 13rem;
}

.front-card-text li{
    text-align:start;
    font-size: 15px;
}
  
.front-card-title{
    padding-bottom: 16px;
    text-align: center;

}
  



.prop-1{
    background-image: url(website_media/Propuesta\ 1.png);
    background-position: center; 
    background-repeat: no-repeat; 
    background-size:cover;
}

.prop-2{
    background-image: url(website_media/Propuesta\ 2.png);
    background-position: center; 
    background-repeat: no-repeat; 
    background-size:cover;
}

.prop-3{
    background-image: url(website_media/Propuesta\ 3.png);
    background-position: center; 
    background-repeat: no-repeat; 
    background-size:cover;
}
  
  
  
.proposals .props-container .props-icon img{
    height: 100px;
    width: 100px;
    margin: 2rem;
}

.prop-title h1{
    font-size: 5rem;
    color: var(--dark-blue);
    font-weight: bolder;
    margin: 2rem;
}

.props h2{
    margin-top: 16px;
    color: var(--dark-blue);
    font-weight: bolder;
}







.comp-title h1{
    margin: 2rem 0 2rem 0;
    font-size: 5rem;
    color: var(--dark-blue);
    font-weight: bolder;
}

.comp h2{
    color: var(--dark-blue);
    font-weight: bolder;
}

.comp-container{
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
  
.f1-comp{
    display: flex;
    
  }
  
.f2-comp{
    margin: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
  
.comp-card {
    background-color: transparent;
    height: 11rem;
    width: 10rem;
    min-width: 20rem;
    text-align: start;
    text-align: center;
    
}
  
.comp-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;

}
  
.comp-card:hover .comp-card-inner {
    transform: rotateY(180deg);
}
  
.comp-card-front, .comp-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
  
.comp-card-front {
    border-radius: 40px;
    display: flex;
    justify-content: left;
    align-items: center;
    border: 2px solid var(--light-blue);
}

.comp-card-title{
    margin-bottom: 16px;
    padding-left: 16px;
    color: var(--dark-blue);
    text-align: left;
}
  
.comp-card-back {
    background-color: white;
    border: 2px solid var(--light-yellow);
    color: var(--dark-blue);
    transform: rotateY(180deg);
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  
}
  
.comp-card-back h3{
    text-align: center;
    margin: -100px 0 1 0;
}
  
.comp-card-back p{
    margin: 0px 50px 16px 50px;
    font-size: 16px;
}
  
  
.icon-for-comp{
    margin-top: 1rem;
    height: 75px;
    width: 75px;
}


.comp-1{
    background-image: url(website_media/Compromiso\ 1.png);
    background-position: center; 
    background-repeat: no-repeat; 
    background-size:cover;
    background-position-x: right;
}
.comp-2{
    background-image: url(website_media/Compromiso\ 2.png);
    background-position: center; 
    background-repeat: no-repeat; 
    background-size:cover;
    background-position-x: right;
}
.comp-3{
    background-image: url(website_media/Compromiso\ 3.png);
    background-position: center; 
    background-repeat: no-repeat; 
    background-size:cover;
    background-position-x: right;
}
.comp-4{
    background-image: url(website_media/Compromiso\ 4.png);
    background-position: center; 
    background-repeat: no-repeat; 
    background-size:cover;
    background-position-x: right;
}
.comp-5{
    background-image: url(website_media/Compromiso\ 5.png);
    background-position: center; 
    background-repeat: no-repeat; 
    background-size:cover;
    background-position-x: right;
}
.comp-6{
    background-image: url(website_media/Compromiso\ 6.png);
    background-position: center; 
    background-repeat: no-repeat; 
    background-size:cover;
}
.comp-7{
    background-image: url(website_media/Compromiso\ 7.png);
    background-position: center; 
    background-repeat: no-repeat; 
    background-size:cover;
    background-position-x: right;
}
.comp-8{
    background-image: url(website_media/Compromiso\ 8.png);
    background-position: center; 
    background-repeat: no-repeat; 
    background-size:cover;
    background-position-x: right;
}

.props-container{
    display: flex;
    flex-direction: row;
    margin: 2rem;
}

.props-icon{
    margin: 2rem 2rem -1rem 2rem;
}



footer{
    background-color: var(--dark-blue);
    width: 100%;
    height: 15rem;
    display: flex;
    justify-content: center;
    z-index: 1000000;
    
}

footer div{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

footer div h1{
    color: white;
    font-size: 3rem;
}

.nav-text{
    display: none;
}

.style-icons a{
    color: white;
    font-size: 3rem;
}
@media screen and (max-width: 1350px) {

    
    .container {
        width: 900px;
    }
      
    #tns1 > .tns-item{
        width: 4rem;
    }
    .nav-text{
        display: none;
    }
}

@media screen and (max-width: 1150px) {

    
    .gallery-container {
        width: 34rem;
      }
}

@media screen and (max-width: 1100px) {
    
    .main-body-container{
        flex-direction: column;

    }


    .main-image{
        background-image: url(website_media/Banner\ Cel.png);
        min-height: 518px;
    }
    
    .menu-open{
        margin-top: 3rem;
        margin-left: 1rem;
        position:static;
    }

    .nav-container{
        height: 11rem;
    }
    .nav-jorge-logo{
        height: 9rem;
        justify-content: left;
        margin-left: 1rem;
    }
    .nav-jorge-logo img{
        height: 50px;
        width: 50px;
    }
    .nav-cont{
        height: 1.21rem;
    }



    .main-image-inside-content{
        align-items: center;
        justify-content: end;
        margin-left: 0;
        padding-bottom: 1rem;
    }

    .main-image-inside-content :nth-child(1){
        height: 75px;
        width: 200px;
    }
    
    .main-image-inside-content :nth-child(2){
        height: 100px;
        width: 200px;
    }
    
    .main-image-inside-content :nth-child(3){
        display: none;
    }




    .timer{
        height: 350px;
    }
    .countdown {
        font-size: 3rem;
    }

    .labels{
        font-size: 1rem;
    }
    .labels p {
        margin: 0 38px 0 20px;
    }

    .countdown-1{
        font-size: 2rem;
    }
    
    .countdown-2{
        font-size: 3rem;
    }

    .int-title h1{
        font-size: 3rem;
    }

    .introduction-text{
        font-size: 1rem;
    }

    .int-text {
        width: 317px;
    }

    .gallery-container{
        width: 18rem;

    }

    .prop-title h1 {
        font-size: 3rem;
    }
    .proposals .prop-title h1 {
        padding: 1rem;
    }

    .props-container {
        height: auto;
        width: 850px;
        display: flex;
        justify-content: center;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        margin-bottom: 3rem;
    }



    .comp-title h1{
        text-align: center;
        font-size: 2.8rem;
    }
    .f1-comp{
        display: flex;
        flex-direction: column;    
    }

    .comp{
        width: 18rem;
    }

    footer div{
        flex-direction: column;
    }

    footer div h1{
        color: white;
        font-size: 1.5rem;
    }

    footer div img{
        height: 75px;
    }

    .nav-container{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        justify-content: space-evenly;
    }

    .nav-text{
        display: contents;
        color: white;
        font-size: .8rem;
        text-align: center;
        margin-right: 4rem;
    }

    .main-container{
        overflow-x: hidden;
    }
    .nav{
        left: -100%;
        width: 100%;
    }
    .nav.active{
        width: 50%;
    }



    footer div {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        flex-direction: row;
    }

    .nav-text{
        text-align: center;
    }

    .nav-text-1{
        font-size: 1.42rem;
    }
    .nav-text-2{
        font-size: 1.3rem;
    }
    .nav-text-3{
        font-size: 1.85rem;
    }
    .nav-text-4{
        font-size: 2.19rem;
    }

    .introduction-title {
        height: 212px;
        width: 97%;
    }

    .time h1{
        font-size: 1.5rem;
    }

    .main-image-inside-content {

        height: 650px;

    }
}   


