*{
    font-family: sans-serif;
}

.container{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.main{
    width: 100%;
    height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: space-around;
    /* gap: 32px; */
    padding-top: 72px;
}


.logo{
    height: 64px;
}

.middle{
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 566px;
    word-wrap: break-word;
    gap: 24px;
}

.heading1{
    color: #222;
    font-family: sans-serif;
    font-size: 44px;
    font-weight: 500;
    margin: 0;
}

.follow-us{
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.desc{
    margin: 0;
    font-size: 16px;
    line-height: 24px;
    color: #666;
    /* display: none; */
}

.timer{
    height: auto;
    width: 100%;
    text-align: center;
    font-family: sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1px;

.email-input{
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.em{
    height: 44px;
    width: 540px;
    padding-left: 8px;
    border: 2px solid #94a3b8;
    border-radius: 8px;
}

.my-button {
    height: 100%;
    width: 200px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 6px 16px;
    border: 1px solid #0071dc;
    border-radius: 8px;
    background-color: #0071dc;
    color: #fff;
    font-size: 16px;
    justify-content: space-around;
}

.my-button:hover {
    height: 100%;
    width: 200px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 6px 16px;
    border: 1px solid #003e79;
    border-radius: 8px;
    background-color: #003e79;
    color: #fff;
    font-size: 16px;
    justify-content: space-around;
    transition: 0.2s;
}
  


.social-links{
    display: flex;
    flex-direction: row;
    gap: 16px;

}

.ig, .in, .fb, .x{
    width: 32px;
    height: 32px;
    background-color: #606062;
    align-items: center;
    justify-content: space-around;
    align-content: center;
    display: flex;
    /*scale: 1.0;*/
}

.ic{
    align-self: center;
}

.ig:hover, .in:hover, .fb:hover, .x:hover{
    /*scale: 1.2;*/
    transition: 100ms;
}




.bottom{
    /* height: auto;*/
    width: 100%;
    overflow-x: scroll;
    overflow: hidden;
    position: relative;
}

.bottom::-webkit-scrollbar {
    display: none;
}

.slider{
    display: flex;
    flex-direction: row;
    gap: 24px;
    white-space: nowrap;
    transition: transform 0.5s ease;
}

.car-img{
    display: inline-block;
    width: 100%;
}

.slider img{
    height: 120px;
    width: 160px;
} 


.slider{
    white-space: nowrap;
    animation: animate var(--t) linear infinite;

}

@keyframes animate
{
    0%{
        transform: translateX(0%);
    }
    100%{
        transform: translateX(-100%);
    }
}