@import url('https://fonts.googleapis.com/css2?family=Funnel+Display:wght@300..800&family=Quicksand:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Atma:wght@300;400;500;600;700&family=Funnel+Display:wght@300..800&family=Quicksand:wght@300..700&display=swap');
*{
    margin: 0;
}
body{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    background-color: #fdfbd4;
    font-family: "Funnel Display", sans-serif;
    box-sizing: border-box;
}
li, a {
    text-decoration: none;
    color: black;
}
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: beige;
}

.nav_links{
    list-style: none;

}
.nav_links li {
    display: inline-block;
    padding: 0px 20px;
    
}
.nav_links li a{
    transition: all 0.3s ease 0s;
    
}
.nav_links li a:hover{
    transition: all 0.3s ease 0s;
    color: gray;
}   

.main_front{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 180px;
}
.text{
    background-color: rgba(0,255,255,1);
    font-size: 100px;
    border-radius:10px ;
}
.text1{
    padding-left: 50%;
    font-size: 40px;
}
.gap1{
    width: 100%;
    height: 480px;
}
.makeyourtripaff{
    font-size: 50px;
    background-color: aqua;
    width: 1100px;
    border-radius: 10px;
}
.kepoint{
    position: relative;
    max-width: 1200px;
}
.timeline{
    padding: 10px 50px;
    position: relative;
    width: 50%;
}
.text-box{
    padding: 20px 30px ;
    background-color: antiquewhite;
    position: relative;
    border-radius: 10px;
    font-size: 15px;

}
.right-time{
    left: 0;
}

.left-time{
    left: 50%;
}
.kepoint::after{
    content: "";
    position: absolute;
    width: 6px;
    height: 100%;
    background-color: brown;
    top: 0;
    left: 50%;
    margin-left: -3px;
    z-index: -1;
    animation: moveline 6s linear forwards;
}
@keyframes moveline {
    0%{
        height: 0%;
    }
    100%{
        height: 100%;
    }
}
.arrow-right{
    height: 0;
    width: 0;
    position: absolute;
    top: 28px;
    z-index: 1;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid antiquewhite;
    left: -15px;

}