* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito Sans', sans-serif;
    
}

.come-in {
  transform: translateY(150px);
  animation: come-in 0.8s ease forwards;
}
.come-in:nth-child(odd) {
  animation-duration: 0.6s; /* So they look staggered */
}

@keyframes come-in {
  to { transform: translateY(0); }
}

body {
    overflow-x: hidden;
}

article {
    width: 100vw;
    height: 100vh;
}

.title {
    font-size: 66px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 10px;
    text-transform: uppercase;
}

.mini_title {
    font-size: 26px;
    color: #fff;
    font-weight: 400;
    letter-spacing: 10px;
    text-transform: uppercase;
}

.bread {
    font-size: 24px;
    color: #fff;
    font-weight: 400;
}

main {
    width: 100vw;
    height 100vh;
    position: relative;
}


.tracker {
    position: fixed;
    bottom: 200px;
    right: 100px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.line {
    width: 1px;
    height: 20px;
    background-color: #ffffff;
}

.dot {
    width: 19px;
    height: 19px;
    border: 3px solid #ffff;
    border-radius: 100px;    
}

.dot.selected {
    width: 45px;
    height: 45px;
    background-color: #86ce40;
    border-radius: 100px;
    border: none;
}

#landingpage {
    background-color: #272625;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

#landingpage .text {
    width: 600px;
    height: 260px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 5%;
}

#landingpage .title {
    line-height: 70px;
}

#car_image_landing {
    width: 100vw;
    height: 100vh;
    background-image: url(../img/landingpage.png);
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 0px;

}

#introduction {
    background-color: #272625;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    position: relative;
    
}

#introduction .overlay {
    width: 100vw;
    height: 100vh;
    display: flex;
    position: absolute;
    opacity: 0;
    top: 0px;
    left: 0px;
}


#car_image_introduction {
    width: 100vw;
    height: 100vh;
    background-image: url(../img/introducingpage.png);
    background-position: center;
    background-repeat: no-repeat;
}

#car_image_introduction_green {
    width: 100vw;
    height: 100vh;
    background-image: url(../img/Introductionpage_green.png);
    background-position: center;
    background-repeat: no-repeat;
}

.point_1 {
    width: 100vw;
    height: 100vh;
    background-image: url(../img/point_1.png);
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
}

.point_2 {
    width: 100vw;
    height: 100vh;
    background-image: url(../img/point_2.png);
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
}

.point_3 {
    width: 100vw;
    height: 100vh;
    background-image: url(../img/point_3.png);
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
}

#introduction .text {
    width: 560px;
    position: absolute;
    top: 20%;
    left: 6%;
}

#introduction .text .bread{
    width: 340px;
    margin-top: 20px;

}

#saftypage {
    background-color: #272625;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    position: relative;
    
}

#banner {
    width: 100vw;
    height: 100vh;
    background-image: url(../img/banner.png);
    background-position: top;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0px;
}

#car_image_saftypage {
    width: 100vw;
    height: 100vh;
    background-image: url(../img/sensorpage.png);
    background-position: top;
    background-repeat: no-repeat;
}

.point2_1 {
    width: 100vw;
    height: 100vh;
    background-image: url(../img/point2_1.png);
    background-position: top;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
}

.point2_2 {
    width: 100vw;
    height: 100vh;
    background-image: url(../img/point2_2.png);
    background-position: top;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
}

.point2_3 {
    width: 100vw;
    height: 100vh;
    background-image: url(../img/point2_3.png);
    background-position: top;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
}

#cta {
    background-color: #272625;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;  
}

#bg_image {
    width: 100vw;
    height: 100vh;
    background-image: url(../img/cta.png) ;
    background-position: top;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0; 
}

#cta .text {
    width: 1300px;
    height: 560px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
}

a {
    text-decoration: none;
}

.btn {
    width: 596px;
    height: 129px;
    background-color: #86ce40;
    border-radius: 32px;
    margin-top: 60px;
    
    font-size: 48px;
    color: #ffffff;
    text-align: center;
    line-height: 132px;
    letter-spacing: 10px;
    text-transform: uppercase;
    text-decoration: none;
}

.btn:hover {
    background-color: #61a222;
}


.big_shadow {
    width: 1000px;
    height: 300px;
    background-image: url(../img/btn_shadow.png);
    background-position: top;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: -1;
}