*{
    margin:0vh;
    padding:0vh;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

body{
    background-color: black;
}

.main{
    width:100%;
    /* height:100vh;
    background-color: black; */
}

#nav{
    height:9vh;
    width:100vw;
    /* border:2px solid white; */
    display:flex;
    justify-content: space-between;
    align-items: center;
    color:white;
    padding:0vh 4vw;
    animation:nav 1s 1 normal ease;
}

@keyframes nav{
    0%{
        transform:translateY(-100%);
        opacity:0;
    }
    100%{
        transform:translateY(0%);
        opacity:1;    }
}



.nav-a{
    color:rgb(216, 216, 216);
    text-decoration:none;
    font-size:2.3vmin;
    font-weight:550;
}

#nav-M{
   
    padding-left:34vw;
    height:9vh;
    width:38vw;
    /* border:2px solid red; */
    display: flex;
    justify-content: space-evenly;
    align-items: center;

}


.hero{
    height:100vh;
    width:100vw;

}

.hero-body{
    height:55vh;
    width:100vw;
    /* border:2px solid white; */
    
}

.H-p{
    color:rgb(146, 145, 145);
    font-size:18vmin;
    font-family: "Roboto", sans-serif;
    font-weight: 550;
    animation:kim 1s 1 normal ease;
    
}

@keyframes kim{
    0%{
        transform:translateY(-100%);
        opacity:0;
    }
    100%{
        transform:translateY(0%);
        opacity:1;
    }
}

#availability{
     animation:tan 1s 1 normal ease;
}

@keyframes tan{
    0%{
        transform:translateX(-100%);
        opacity:0;
    }
    100%{
        transform:translateX(0%);
        opacity:1;
    }
}

#p1{
    padding:5vh 0vw 0vh 4vw
}
#p2{
    padding:0vh 14vw;
    position:relative;
    top:-5vh;
}

#P3{
    /* border:2px solid white; */
   display:block;
   color:white;
    padding:0vh 0vw 0vh 48.5vw;
    font-size:2.2vmin;
    font-weight: 550;
     position:relative;
    top:-5vh;
    display: flex;
    flex-direction: row;
    animation:kim 1s 1 normal ease;
}

@media (max-width:777px){
    #p2{
        padding:0vh 10vw;
    }
    #P3{
        padding:0vh 28.2vw;
    }
}

.hero-mid{
    height:7vh;
    width:100vw;
    /* border:2px solid red; */
    color:white;
    font-size: 2.2vmin;
    font-weight: 550;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    padding:0vh 4vw;

}

.hero-footer{
    height:5vh;
    width:100vw;
    /* border:2px solid white; */
    display:flex;
    justify-content: space-around;
    align-items: center;
    flex-direction:flex-end;
    position:relative;
    top:22.8vh;
}

.hero-footer a{
    height:3vh;
    width:30vw;
    color:white;
    text-decoration:none;
    font-size:2vmin;
    font-weight: 550;
    text-align: center;
    /* border:2px solid red; */


}

#a1{
    text-align: left;
    padding: 0vh 2vw;
    animation:kim 1s 1 normal ease;
}

#a2{
    animation:kim 1s 1 normal ease;

}

#a3{
    text-align: right;
    font-size:3vmin;
    padding: 0vh 2vw;
    animation:kim 1s 1 normal ease;
}

#a1:hover,#a2:hover{
    animation: line 1s normal ease;
}

@keyframes line{
    0%{
        text-decoration:none;
    }
    /* 25%{ */
        /* transform:
        text-decoration:underline;
        opacity:0.2;
    } */
    50%{
        text-decoration:underline;
        opacity:0.5;
    }
    /* 75%{
        text-decoration:underline;
        opacity:0.7;
    } */
    100%{
        text-decoration:underline;
        opacity:1;
    }
}


/* Product-section/ */

hr{
    opacity: 0.5;
    padding: 0vh 2vw;
}

.product{
    position:relative;
    height:185vh;
    width:100vw;
    /* border:2px solid white; */
}

.product-item{
    height:35vh;
    width:100vw;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding:0vh 4vw;
}

.Pro-name{ 
    color:rgb(146, 145, 145);
    font-size:10vmin;
}

.Pro-year{
    color:white

}

.product-item:hover{
     animation: move 1s  1 alternate ease;
}

@keyframes move {
    0%{
        transform: translateX(0px);
        opacity:1;
    }
    50%{
        transform: translateX(30px);
        opacity:0.5;

    }
    100%{
        transform:translateX(0px);
        opacity:1;
    }
    
}

/* .product-item img{
    cursor: crosshair;  
    height:30vh;
    width:30vh;
    position: absolute;
    z-index: 999;
    visibility: hidden;
    /* transition: all cubic-bezier(0.19, 1, 0.22, 1) 0s; */
    /* opacity: 0; */
/* } */

/* .product-item:hover{
    cursor:pointer;
    img{
        visibility: visible;
        opacity: 1;
        transition: all cubic-bezier(0.19, 1, 0.9, 1) 1s;
       
    }


} */

.product-item img{
    height:50vh;
    z-index:9999;
    visibility:hidden;
    opacity:0;
    position: absolute;
}

.product-item:hover{
    cursor:pointer;
    img{
        height:50vh;
        visibility:visible;
        opacity:1;
        transition: all cubic-bezier(0.19, 1, 0.9, 1) 1s;

    }
}



.V{
    height:27vh;
    width:100vw;

}

#view{
    height:5vh;
    width:10vw;
    border:1px solid white;
    border-radius: 20px;
    font-size: 2.2vmin;
    position:relative;
    left:4vw;
    background: transparent;
    color:white;
}

#view:hover{
    background-color: white;
    color:black;
    cursor:pointer;
}

.clients{
    border-left:hidden;
    height:27vh;
    width:100vw;
    /* border:1px solid red;  */
    color:rgb(146, 145, 145);
    display:flex;
    flex-direction:row;
    align-items: center;
    justify-content: space-between;

    animation:brand 10s infinite alternate-reverse ease-in;
}

.A{
    font-size: 9vmin;
}


@keyframes brand{
    0%{
        transform:translateX(0%);
        /* transform:rotate3d(0deg) */
    }
    100%{
        transform:translateX(-100%);
          /* transform:rotate3d(360deg) */
    }

}


/* ABOUT */

.about{
    height:80vh;
    width:100vw;
    /* border:2px solid green; */
    display:flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap:2vw;


}

.Avtar{
    height:35vh;
    width:17.5vw;
    /* border:5px solid blue; */
    border-radius:50%;
    background-image:url("cynthia.webp");
    background-size:cover;
}

.info{
    height:70vh;
    width:35vw;
    /* border:5px solid white; */
    color:white;
     display:flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
    gap:4vh;
}

#self{
    font-size: 1.6vmin;
    color:rgb(146, 145, 145);
}

#talk{
    height:4vh;
    width:7vw;
    border:1px solid white;
     font-size: 1.9vmin;
     border-radius:20px;
     background: transparent;
     color:white;
     overflow:hidden;
}


#talk:hover{
    background-color: white;
    color:black;
    cursor:pointer;
}


.Text{
    gap:1vh;
}

.switch{
    height:6vh;
    width:7vw;
    border:1.4px solid white;
    font-size:2vmin;
    border-radius:20px;
    position: relative;
    left:100vh;
    background-color: transparent;
    color:white;
    bottom: 5vw;
    font-weight: 550;
    overflow:hidden;
}

.switch:hover{
    background-color: white;
    color:black;
}



/* MINICIRCLE--------- */

.minicircle{
    transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
    height:10px;
    width:10px;
    border-radius:50%;
    z-index: 9999999;
    /* background:transparent; */
    background-color: white;
    
}



@media (max-width:776px){
    #menu:active{
        display:none;
        visibility:hidden;

    }

    .H-p{
        font-size:9vmin;
        
    }

    #p2{
        position:relative;
        top:0px;
    }

    #P3{
        position:relative;
        left:5.6vw;
    }

    #availability{
        font-size:2.2vmin;
    }

    #a3{
        display:none
    }

    .product{
        position:relative;
        height:98vh;
        width:100vw;
     /* border:2px solid white; */
    }

    .product-item{
        height:17vh;
    }

    .Pro-name{
        font-size:6.8vmin;
    }

    .Pro-year{
        font-size:1.8vmin;
    }

    .product-item img{
        position:absolute;
        height:10vh;
    }

    #view{
        width:17.5vw;
    }

    /* #Expedia{
        font-size:1.8vmin;
    } */

    .clients h1{
        font-size:2.5vh;
    }

    .Avtar{
        height:35vh;
        width:35vw;
    }

    #talk{
        width:16vw;
    }

    .switch{
        position:relative;
        left:52vw;
        width:14vw;
        

    }
}



@media (max-width:1000px){
    #menu:active{
        display:none;
        visibility:hidden;

    }

    .H-p{
        font-size:9vmin;
        
    }

    #p2{
        position:relative;
        top:0px;
    }

    #P3{
        position:relative;
        top:0px;
        /* left:-22vh; */
    }

    #availability{
        font-size:2.2vmin;
    }

    #a3{
        display:none
    }

    .product{
        position:relative;
        height:98vh;
        width:100vw;
     /* border:2px solid white; */
    }

    .product-item{
        height:17vh;
    }

    .Pro-name{
        font-size:6.8vmin;
    }

    .Pro-year{
        font-size:1.8vmin;
    }

    .product-item img{
        position:absolute;
        height:10vh;
    }

    #view{
        width:17.5vw;
    }

    /* #Expedia{
        font-size:1.8vmin;
    } */

    .clients h1{
        font-size:2.5vh;
    }

    .Avtar{
        height:35vh;
        width:35vw;
    }

    #talk{
        width:16vw;
    }

    .switch{
        position:relative;
        left:52vw;
        width:14vw;
        

    }
}


.bottom{
    height:18vh;
    color:white;
    padding:0vh 4vw;
}

#h4{
    color:rgb(144, 144, 145)
}

#End-footer{
    color:white;
    height:8vh;
    width:100vw;
    background-color: black;
    position:relative;
    top:0.2vh;
    display:flex;
    justify-content:space-between;
    padding:0vh 4vw;
    align-items:center
}

#f-p1{
    height:4vh;
    width:16vw;
    /* border: 2px solid white; */
    display:felx;
    justify-content:center;
    align-items:center;
}

#f-p2{
    height:4vh;
    width:40vw;
    /* border: 2px solid white; */
}
.part1{
    display:flex;
    flex-direction: row;
    justify-content:space-evenly;
    align-items:center;
}

h5{
    color:white;
}

a{
    text-decoration:none
}

h5:hover{
    text-decoration:1.5px solid underline;
}
