*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    color: white;
    font-family: 'Montserrat';
    padding:0 5rem;
    overflow: hidden;
}

body {
    background: #192023;
    max-width: 120rem;
    width: 90%;
    margin: 0 auto;
    /* height: 100vh; */
    display: grid;
    grid-template-rows: 6rem 1fr;
    /* overflow: hidden; */
}

header {
    display: flex;
    justify-content: space-between;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo h1{
    font-size: 4rem;
}

nav {
    width: 30rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 1.4rem;
}

.menu {
    width: 20rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search, .icon-menu {
    margin-left: 4rem;
    width: 2.4rem;
}

main {
    display: grid;
    grid-template-columns:1fr 1.5fr;
    grid-template-rows: auto  9rem;
    gap: 1rem;
    /* overflow: hidden; */
}

.description {
    margin-top: 8rem;
    grid-column: 1;
    grid-row: 1;
}

.description h3 {
    color: #656DF7;
    font-weight: 500;
    font-size: 6rem;
    padding: 1rem;
}

.description h2 {
    color: white;
    font-weight: 900;
    font-size: 12rem;
}

.description p {
    color: #E1E2FF99;
    font-size: 1.9rem;
    letter-spacing: .2rem;
}

button {
    display: flex;
    width: 25rem;
    background: transparent;
    border: #656DF7 1px solid;
    font-size: 2rem;
    font-weight: 300;
    color: white;
    border-radius: 30rem;
    margin-top: 5rem;
    padding: 1.2rem;
    justify-content: space-between;
    align-items: center;
    outline: none;
    cursor: pointer;
}


span svg {
    margin-top: 3px;
    width: 1.7rem;
    position: relative;
    left:-20px ;
    transition:.5s all ease;
}
button:hover span svg {
    left: 0px;
}

.bike {
    grid-column: 2/3;
    grid-row: 1/3;
}

.bike figure {
    position: relative;
}

figure img {
    width: 100%;
    transform:scale(1.5);
    position: relative;

    z-index: -1;
    /* left: 5rem; */
    /* bottom: -3rem; */
    transition: .5s all ease;
}

.characteristics {
    /* background: #000; */
    grid-column: 2 / 3;
    grid-row: 2/3;
    background: rgba(255, 255, 255, 0.075);
    width: 100%;
    display: flex;
    justify-self: end;
    justify-content: space-evenly;
    align-items: center;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: rgba(255, 255, 255, 0.034) solid 1px ;
    position: relative;
    /* bottom: 70px; */
    z-index: 999;
}

.change {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.change p {
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 500;
}

.change span {
    font-weight: 300;
}

#Img.pedal {
    /* transition: ease all .5s; */
    transform: scale(3)
                translate(-5rem, -5rem);
}

#Img.timon {
    transform: scale(3)
                translate(5rem, 10rem);
}

#Img.asiento {
    transform: scale(4)
                translate(-7rem, 8rem);
}

#Img.aro {
    transform: scale(3)
                translate(15rem, -6rem);
}

.plus {
    width: 3rem;
    position: absolute;
    top: 75%;
    left: 10%;
    cursor: pointer;
    transition: all 3ms ease;
}

.plus:nth-child(2) {
    top: 70%;
    left: 60%;
}

.plus:nth-child(3){
    top:7%;
    left: 40%;
}

.plus:nth-child(4){
    top: 10%;
    left: 75%;
}

#zPedal.disable,
#zTimon.disable,
#zAsiento.disable,
#zAro.disable {
    display: none;
}

#zPedal.plus.active,
#zTimon.active,
#zAsiento.active,
#zAro.active {
    transform: rotate(45deg);
    width: 5rem;
    top: 5%;
    left: 5%;
}

.text {
    position: absolute;
    top: 50%;
    left: 30%;
    backdrop-filter: blur(10px);
    padding: 2rem;
    display: none;
}
.text h4 {
    font-size: 2rem;
    text-transform: uppercase;
}

.text p {
    font-size: 1.4rem;
}

.pedal.active,
.timon.active,
.asiento.active,
.aro.active {
    display: inherit;
}

.circle {
    width: 8rem;
    height: 8rem;
    position: absolute;
    background: radial-gradient(circle, rgba(172,176,255,1) 0%, rgba(101,109,247,1) 100%);
    border-radius: 50%;
    right: 90%;
    z-index: -1;
}

.circle:nth-child(2){
    top: -40%;
    right: -5%;
}

@media screen and (max-width:1272px){
    .bike figure {
        top:10rem;
    }
}

@media screen and (max-width:1119px){
    .bike figure {
        top: 15rem;
    }

    .characteristics{
        bottom: 10rem;
    }
}