*{
    padding: 0;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}
body{
    overflow-x: hidden;
    background-color: #F8F8F8;
    
}
header{
    width: 100vw;
    height: 8vh;
    background-color: rgb(223, 219, 0);
    display: flex;
    justify-content: center;
}

header img {
    height: 100%;
}

.topBar{
    width: 100vw;
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
}
.mainInfo{
    width: 100vw;
    height: 45vh;
    display: flex;
    justify-content:space-evenly;
    align-items: center;
    gap: 5px;
}

.infoBlock{
    width: 20vw;
    height: 35vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    padding: 15px;
    gap: 20px;
    cursor: pointer;

}

.infoBlock:hover{
    background-color: rgba(0,0,0,0.05);
    transition: 0.5s ease-in-out;
}
.infoBlock img{
    height: 40%;
}
a {
  text-decoration: none !important;
  color: inherit !important;
}

/* addvert */

.carousel{
    width: 100vw;
    height: 16.7vw;
    display: flex;
    overflow-x: hidden; /* hide scroll manually controlled by JS */
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    
}
.slide {
    flex: 0 0 100vw;
    height: 16.7vw;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    gap: 50px;
}

.innerCont{
    max-width: 1000px;
    width: 80%;
    height: 90%;
    border-radius: 15px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    color: black;

}

.innerCont img{
    height: 90%;
    border-radius: 15px;
}

@media (width<1000px){
    .mainInfo{
        height: auto;
        flex-direction: column;
        justify-content: center;
    }
    .infoBlock{
        width: 60vw;
        height: 23vh;
    }
}
