/* <-------------------------------------------animation---------------------------------------> */

    @keyframes road-moving {
        100% {
            transform: translate(-1000px);
        }
    }
    @keyframes car-moving {
        100% {
            transform: translateX(500px);
            -webkit-transform: translateX(500px);
            -o-transform: translateX(500px);
            -moz-transform: translateX(500px);
        }
    }



/* <----------------------------------------------css------------------------------------------------> */

.building{
    position: absolute;
    width: 250%;
}

.building_animation{
    animation : road-moving 10s linear;
    position: absolute;
    width: 250%;
}

.road{
    background-color: #1a2538;
    width: 100%;
    height: 150px;
    position: relative;
    bottom: 10px;
    left: 0px;
}
.dash_line{
    position: relative;
    width: 400%;
    top: -17px;
    height: 10px;
}

.dash_line_animation{
    animation : road-moving 3s linear;
    position: relative;
    width: 400%;
    top: 5px;
    height: 10px;
}

.nature{
    position: relative;
    width: 250%;
}

.nature_animation{
    animation : road-moving 7s linear;
    position: relative;
    width: 250%;
}

.car{
    position: relative;
    height: 150px;
    bottom: 135px;
    transition: all 1s;
}

.car_animation{
    animation:  car-moving 2s linear;
    position: relative;
    height: 150px;
    bottom: 135px;
}

.year_boards{
    position: relative;
    bottom: 210px;
    left: 170px;
}

.bg_year:hover{
  cursor: pointer;
}
.year_board_img{
    height: 215px;
    position: absolute;
}

.year_boards h2{
    position: relative;
    left: 17px;
    top: 13px;
    color: #fff;
    font-weight: bold;
}

.details{

    font-family: "Montserrat", sans-serif;
}
.details h4{

    font-weight: 700;
}

.text_details ul {
    list-style: none;
    font-weight: 500;
  }

  .text_details ul li{
      padding-top: 5px;
  }
  
  .text_details ul li::before {
    content: "\2022";
    font-size:bolder;
    color: #3C8F7C;
    display: inline-block; 
    width: 1em;
    margin-left: -1em;
  }

.text_details{
    padding-top: 20px;
    padding-bottom: 20px;
}
.text_box{
    padding: 0px !important;
    border-radius: 25px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    background-color: #d2fff3;
}

.text_head{
    background-color: #3C8F7C;
    padding: 1px 20px 1px 20px;
}

.text_head h4{
    
    color: #fff;
}

  