
/* cyrillic-ext */
 /* /* @font-face {
    font-family: 'PT Sans Narrow';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/ptsansnarrow/v18/BngRUXNadjH0qYEzV7ab-oWlsbCLwR26eg.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
  }  */
 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* background-color: rgba(85, 37, 37, 0.35); */
}

body {
    background-color: #000;
}

html {
    font-family: 'PT SANS Narrow', sans-serif;
    color: #dce4e8;
}

/* header */
header {
    background : #121618;
    padding: 50px 90px;
}

/* inside header (main) */
.header-top {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}
 /* phone and all */
.schedule {
    display: flex;
    align-items: center;
    justify-content: center;
}

.schedule img {
    max-width: 25px;
    margin-right: 25px;
}

/* phone img */
.schedule-right .phone ,
.cart-left .amount {  
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

/* time  */
.schedule-right .time ,
.cart-left .items {
   color: #dce4e8;
   letter-spacing: 2px;
   opacity: 0.5;
   transition: 0.25s;
}

/* main vincent logo */
.logo img {
    max-width: 180px;
}

/* cart div */
.cart {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    text-align: right;
    cursor: pointer;
    transition: 0.25s;
}

.cart img {
  max-width: 35px;
  margin-left: 25px;
  transition: 0.1s;
}    

.cart :hover .items {
    color: #ffc851;
    opacity: 1;
}

.cart :active img {
    transform: scale(0.9);
}

.cart ::after {
    content: "0";
    position:absolute;
    top: 0;
    right: -5px;
    width: 20px;
    height: 20px;
    background: #ffc851;
    color: #121618;
    border-radius: 50%;
    font-size: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav  li {
    list-style: none;
    margin: 0 20px;
}

.nav li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #dce4e8;
    letter-spacing: 3px;
    transition: 0.25s;
}

.nav li  a:hover {
    color: #ffc851;
} 

.nav li a.active::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 1px;
    background: #dce4e8;
}
     .menu-btn {
        position: absolute;
        top: 45px;
        right: 0;
        cursor: pointer;
        display: none;
    }

    .menu-btn span {
        display: block;
        width: 20px;
        height: 2px;
        background: #dce4e8;
        margin: 5px;
    } 

    .menu-btn.active span:nth-child(1){
        transform:rotate(45deg) translateY(5px);
    }
     
    .menu-btn.active span:nth-child(2){
         display: none;
    }

    .menu-btn.active span:nth-child(3){
        transform: rotate(-45deg) translatey(-5px);
    } 

    .hero {
        min-height: 100vh;
        background: url(slide_1.jpg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        padding: 90px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
        padding-bottom: 10px;
        margin-bottom: 40px;
    }

    .contentBx p {
      font-family: 'open sans' , sans-serif;
      font-size: 18px;
      font-weight: 100;
      margin-top: 10px;
      letter-spacing: 3px;
      margin-bottom: 20px;
    }

    .contentBx .btn {
       padding: 10px 20px;
       background: #ffc851;
       display: inline-block;
       color: #121618;
       letter-spacing: 2px;
       border: 2px solid #ffc851;
       cursor: pointer;
       transition: 0.25s;
    }
    
    .contentBx .btn:hover {
      background: transparent;
      color: #ffc851;

    }


   .imgbx img {
    max-width: 600px;
    filter: drop-shadow(5px 15px 20px #000);
   }
     
   .contentBx {
    max-width: 700px;
    margin-right: 50px;
   }

   .contentBx h1 {
    font-size: 60px;
    letter-spacing: 10px;
    font-weight: 100;
    margin-bottom: 10px;
   }

   .contentBx h2 {
       font-size: 30px;
       font-weight: 100;
       letter-spacing: 5px;
       border-bottom: 3px solid #dce4e8;
       margin-bottom: 10px;
   }

/* responsive for  1200px */

@media screen and (max-width: 1200px) {
    header {
        padding: 50px;
    }
    
    .nav li {
        margin: 0 10px;
    }
} 

/* respnsive for 1024px */

@media screen and (max-width: 1024px) {
     .header-top {
        justify-content: center;
     }
   
    .schedule, .cart {
        display: none;
    }
    
    .hero {
        flex-direction: column;
        justify-content: center;
    }

    .imgbx {
        margin-bottom: 30px; 
    }

    .contentBx {
        margin-right: 0;
        text-align: center;
    }

    .imgbx img {
        max-width: 400px;
    }
}
 
/* respnsive for 768px */

@media screen and ( max-width:768px) {
    header {
        padding: 60px 20px;
        padding-bottom: 20px;
    }

    .header-top {
        margin-bottom: 0;
    }

    .nav{
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .nav.active {
      margin-top: 60px;
      padding-top: 10px;
      border-top: 1px solid #fff5;
      display: block;
    }
    
    .nav li {
        margin: 15px 0 ;
    }
     
    .nav li a.active::after {
      display: none;
    }

    .hero {
        padding: 90px 20px;


    }
}

/* responsive for 558px */

@media  screen and (max-width:550px) {
    .imgbx img {
        max-width: 300px;
    }

    .contentBx h1 {
      font-size: 40px;     
    }

    .contentBx h2 {
        font-size: 25px;
    }
}


footer {
    height: 90px;
    width: auto;
    background-color: rgb(36, 35, 35);
    /* margin-bottom: 90px; */
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
}

.foot {
    color: #dce4e8;
    margin-top: 40px;
}
