body{
    margin: 0px;
    padding: 0px;
}
#header{
    !border: 1px solid red;
    display: flex;
    justify-content: space-between;
}
#company_name{
   
    !border: 1px solid green;
    height: 100px;
    width:300px;
    margin-left: 50px;
    line-height: 0.1;
   
}
#company_name #p1{
    font-size:30px;
    letter-spacing: 5px;
    color: rgb(247, 130, 194);

}
#company_name #p2{
    letter-spacing: 5px;
   
}
#contacts{ 
    margin: auto 30px;
    height: 30px;
    !border:1px solid green; 
    font-size: 20px;
    letter-spacing: 6px;
  
}
.intro{
    text-align: center;
    width:98%;
    height:100%;
    background-color: black;
    border-radius: 20px;
    margin:30px 10px;
    padding-top:100px;
    padding-bottom: 50px;
}
.intro #p1{
    margin-top: 0px;
    margin-bottom: 30px;
    color:wheat;
    font-size: 50px;
    
}
.intro #p2{
    color:wheat;
    font-size: 30px;
    width:500px;
    margin: 50px auto;
   
}
.btn{
    border: 3px solid rgb(179, 4, 100);
    margin:0 50px;
    padding: 10px;
    display:inline-block;
    width: 250px;
    border-radius: 30px;
    background-color: rgb(235, 235, 235);
    color:rgb(231, 103, 157);
    font-size: 30px;
    text-decoration: none;
}
a:hover{
    color:white;
    background-color: rgb(179, 4, 100);
}
.icon{
    height: 70px;
}
#time_adress {
    !border: 1px solid green;
    padding-top:20px;
    display: flex;
    justify-content: space-between;
    width:60%;
    margin:20px auto;

}
#time{
    !border: 1px solid green;
    color:white;
    width: 50%;
}
#adress {
     !border: 1px solid green;
    color:white;
    width: 50%;
}
.main{
    text-align: center;
    width:98%;
    height:100%;
    background-color: rgb(255, 222, 222);
    border-radius: 20px;
    margin:10px 10px;
    padding-top:50px;
    padding-bottom: 50px;
}
.main h2{
    color: rgb(179, 4, 100);
    font-size: 50px;
    letter-spacing: 5px;
    margin-bottom: 0px;
  
}
#prices {
    border-radius: 20px;
    padding:30px;
    background-color: aliceblue;
    width: 80%;
    margin:auto;
  
}
.str_price{
    margin-bottom: 30px;
    margin-left: 20px;
    margin-right: 20px;
    display: flex;
    justify-content: space-between;
    

}
.descript, .cen{
    color: rgb(179, 4, 100);
    font-size: 30px;
}
.carousel{
    max-width: 1200px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    position: relative;
}
.carousel-container{
    width:92%;
    padding-block: 16px 32px;
    margin: 16px 48px;
    overflow-x: auto;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 8px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}
.carousel-container::-webkit-scrollbar{
    background: transparent;
}
.carousel-slide{
    flex: 1 0 33%;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    scroll-snap-align: center;
}
.carousel-slide img{
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.carousel-arrow{
    position:absolute;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: white;
    top:2200px;
    bottom:0px;
    margin:auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity .1s;
}
.carousel-arrow:hover, .carousel-arrow:focus{
    opacity: 1;
}
.carousel-arrow-prev{
    left: 0;
}
.carousel-arrow-next{
    right:0;
}
@media(max-width:650px){
    .carousel-slide{
        flex: 1 0 100%;
    }
}
