*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
/************************* animce *********************/
.line-up {
    animation: 2s anim-lineUp ease-out ;
}
@keyframes anim-lineUp{
    0% {
        opacity: 0;
        transform: translateY(80%);
    }20% {
        opacity: 0;
      }
      50% {
        opacity: 1;
        transform: translateY(0%);
      }
      100% {
        opacity: 1;
        transform: translateY(0%);
      }
}
/******************* Hlavicka ****************************/
header{ 
    position: fixed;
    top: 0;
    left: 0;
    height: 100px;
    width: 100%;
    display: flex;
    justify-content:space-between ;
    align-items:center ;
    padding: 20px 100px;
    transition: 0.6s;
    z-index: 3;
      }
header .logo{
    font-family:Georgia, 'Times New Roman', Times, serif ;
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 1.5px;
    line-height: 60px;
    padding: 0 100px; 
    cursor: pointer;  
    color: #fff;
}
header ul{
    float: right;
    margin-right: 20px;
    padding: 0 100px;
     color: #fff; 
}
header ul li{
    display: inline-block;
    margin: 0 5px;
    line-height: 60px;
    list-style: none;
    position: relative;
}
header ul li a{
    font-size: 16px;
    font-weight: 500;
    padding: 7px 13px;
    text-decoration: none;
    text-transform: uppercase;
     color: #fff; 
}
header ul li a:hover{
    font-weight: bold;
    color: #ae5bbb;
}
/******************* Sticky ****************************/
header.Sticky{
    padding: 12px 100px;
    background: transparent;
    box-shadow: 2px 5px 7px rgba(0, 0, 0, 0.2);
    
}
header.Sticky ul li a{
    color: #e3dcdc;
    font-weight: 500;
}
header.Sticky ul li a:hover{
    font-weight: bolder;
}
header.Sticky .logo{
    color:#e3dcdc ;
}
.banner-container{
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.267), rgba(0, 0, 0, 0.2)), url(slivovice3.png);
    background-size: cover;
    background-position: center;
}
.banner{
    width: 100%;
    top: 60%;
    position: absolute;
    text-align: center;
    transform: translateY(-50%);
    color: #fff;
}
.banner h1{
    font-size: 50px;
    font-weight: 600;
}
.banner p{
    margin: 20px auto;
    font-weight: 100;
    line-height: 25px;
}
.btn{
    width: 200px;
    padding: 15px 0;
    margin: 20px 10px;
    background: transparent;
    color: #fff;
    font-weight: bold;
    text-align: center;
    border: 3px solid #8d18a7;
    border-radius: 25px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.hover-effect{
    border: 25px;
    background:#74148a ;
    height: 100%;
    width: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    transition: 0.5s;
}
.btn:hover .hover-effect{
    width: 100%;
}
/***************** O produktu *******************/
.about{
    width: 100%;
    padding: 50px 0;
    background-color: #272727;
    align-items: center;
}
.main{
    max-width:95%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 20px 100px;
}
.about-text h5{
    color: #c0a4c7;
    font-size: 50px;
    font-weight: 100 ;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 60px;
}
.about-text h2 {
    color: #c0a4c7;
    font-size: 50px;
    font-weight: 100 ;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 60px;
}
.about-text p{
    font-size: 18px;
    line-height: 28px;
    color: #c0a4c7;
    text-align: justify;
    margin-bottom: 45px;
}
.about-text button{
    background-color:#c0a4c7;
    color: #272727;
    border: 2px solid transparent ;
    font-weight: bold;
    padding: 13px 30px;
    border-radius: 30px;
    transition: 1s;
    transform:translateY(-50%);
}
.about-text button:hover{
 background-color:#272727;
 color: #c0a4c7;
 cursor: pointer;
}
/***************** Karty *****************/
.druhy{
 min-height: 70vh ;
 width: 100%;
 background:#272727 ;
 padding: 20px 0;
}
.title h2{
width: 1130px;
font-size: 40px;
color: #c0a4c7;
text-align: center;
margin: 30px auto;
}
.box{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}
.card{
    height: 390px;
    width: 335px;
    padding: 20px 35px;
    border-radius: 20px;
    margin:15px;
    position: relative;
    overflow: hidden;
    text-align: center;
    border-bottom: 7px solid rgb(149, 1, 152) ;
    box-shadow: 0 10px 18px;
}
.imgcards{
    height:100%;
    }
.imgcards1{
    height:110%;
    }
    .card:hover{
        height: 400px;
        transition: 1s;
    }
    
    /********************************** Contact **********************************/
.contact{
   min-height: 50vh;
   width: 100%; 
   padding: 50px 0;
   background-color:#272727 ;
   align-items: center;
}
.contact-form h2{
color: #c0a4c7;
font-size: 40px;
margin-bottom: 10px;
text-align: center;
}
.contact-form p{
    color: grey;
    line-height: 26px;
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
}
.contact-form form{
    position: relative;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}
.contact-form form input, form textarea{
width: 100%;
border: 1px solid #c0a4c7;
outline:none ;
color: #000;
margin-top: 6px;
margin-bottom:16px ;
border-radius: 5px;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2) ;
resize: vertical;
}
.contact-form form input{
    height: 40px;
    padding: 0 10px;
}
.contact-form form textarea{
resize:none ;
height: 170px;
padding: 15px 10px;
}
.contact-form form .btnContact{
    color: #c0a4c7;
    text-decoration: none;
    font-weight: 200;
    padding: 9px 22px;
    border-radius: 10px;
    transition: .4s;
    background-image: linear-gradient(to right,#530c5a, #b300cb );
text-transform: uppercase;
cursor: pointer;
}
.contact-form form .btnContact:hover{
    background-image: linear-gradient(to right, #b300cb,#530c5a );
}
/********************************** Footer **********************************/
footer{
    position: relative;
    width: 100%;
    height: 300px;
    background: #272728;
    display: flex;
    flex-direction:column ;
    align-items: center;
    justify-content: center;
}
footer p:nth-child(1){
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 30px;
    color: #c0a4c7;
    margin-bottom: 20px;
    font-weight: bold;
}
footer p:nth-child(2){
    color: gray;
    font-size: 17px;
    width: 500px;
    text-align: center;
    line-height: 26px;
}
.social-icons{
   display: flex;
}
.social-icons a{
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #ae5bbb;
    background: transparent;
    border-radius: 50%;
    margin: 22px 10px;
    color: #e3a3db;
    text-decoration: none;
    font-size: 20px;
}
.social-icons a:hover{
    transform: scale(1.3);
    transition: .3s;
}
.end{
    position: absolute;
    color: #504253;
    bottom: 35px;
    font-size: 16px;
    font-weight: 200;
}