.sk-fading-circle {
    margin: 100px auto;
    width: 100px;
    height: 100px;
    position: relative;
  }
  
  .sk-fading-circle .sk-circle {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }
  
  .sk-fading-circle .sk-circle:before {
    content: '';
    display: block;
    margin: 0 auto;
    width: 15%;
    height: 15%;
    background-color: #d3ad7f;
    border-radius: 100%;
    -webkit-animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
            animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
  }
  .sk-fading-circle .sk-circle2 {
    -webkit-transform: rotate(30deg);
        -ms-transform: rotate(30deg);
            transform: rotate(30deg);
  }
  .sk-fading-circle .sk-circle3 {
    -webkit-transform: rotate(60deg);
        -ms-transform: rotate(60deg);
            transform: rotate(60deg);
  }
  .sk-fading-circle .sk-circle4 {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .sk-fading-circle .sk-circle5 {
    -webkit-transform: rotate(120deg);
        -ms-transform: rotate(120deg);
            transform: rotate(120deg);
  }
  .sk-fading-circle .sk-circle6 {
    -webkit-transform: rotate(150deg);
        -ms-transform: rotate(150deg);
            transform: rotate(150deg);
  }
  .sk-fading-circle .sk-circle7 {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .sk-fading-circle .sk-circle8 {
    -webkit-transform: rotate(210deg);
        -ms-transform: rotate(210deg);
            transform: rotate(210deg);
  }
  .sk-fading-circle .sk-circle9 {
    -webkit-transform: rotate(240deg);
        -ms-transform: rotate(240deg);
            transform: rotate(240deg);
  }
  .sk-fading-circle .sk-circle10 {
    -webkit-transform: rotate(270deg);
        -ms-transform: rotate(270deg);
            transform: rotate(270deg);
  }
  .sk-fading-circle .sk-circle11 {
    -webkit-transform: rotate(300deg);
        -ms-transform: rotate(300deg);
            transform: rotate(300deg); 
  }
  .sk-fading-circle .sk-circle12 {
    -webkit-transform: rotate(330deg);
        -ms-transform: rotate(330deg);
            transform: rotate(330deg); 
  }
  .sk-fading-circle .sk-circle2:before {
    -webkit-animation-delay: -1.1s;
            animation-delay: -1.1s; 
  }
  .sk-fading-circle .sk-circle3:before {
    -webkit-animation-delay: -1s;
            animation-delay: -1s; 
  }
  .sk-fading-circle .sk-circle4:before {
    -webkit-animation-delay: -0.9s;
            animation-delay: -0.9s; 
  }
  .sk-fading-circle .sk-circle5:before {
    -webkit-animation-delay: -0.8s;
            animation-delay: -0.8s; 
  }
  .sk-fading-circle .sk-circle6:before {
    -webkit-animation-delay: -0.7s;
            animation-delay: -0.7s; 
  }
  .sk-fading-circle .sk-circle7:before {
    -webkit-animation-delay: -0.6s;
            animation-delay: -0.6s; 
  }
  .sk-fading-circle .sk-circle8:before {
    -webkit-animation-delay: -0.5s;
            animation-delay: -0.5s; 
  }
  .sk-fading-circle .sk-circle9:before {
    -webkit-animation-delay: -0.4s;
            animation-delay: -0.4s;
  }
  .sk-fading-circle .sk-circle10:before {
    -webkit-animation-delay: -0.3s;
            animation-delay: -0.3s;
  }
  .sk-fading-circle .sk-circle11:before {
    -webkit-animation-delay: -0.2s;
            animation-delay: -0.2s;
  }
  .sk-fading-circle .sk-circle12:before {
    -webkit-animation-delay: -0.1s;
            animation-delay: -0.1s;
  }
  
  @-webkit-keyframes sk-circleFadeDelay {
    0%, 39%, 100% { opacity: 0; }
    40% { opacity: 1; }
  }
  
  @keyframes sk-circleFadeDelay {
    0%, 39%, 100% { opacity: 0; }
    40% { opacity: 1; } 
  }
  body {
    overflow-y: hidden;

}
#loading
{
    position: fixed;
    top: 0px;
    right: 0px;
    left: 0px;
    bottom: 0px;
    z-index:9999;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}


*
{
    font-family: 'Roboto', sans-serif;
    transition: all 0.5s !important;
}
/* width */
::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #000;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #d3ad7f;
    height: 150px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #d3ad7f;
  }
:root {
    --main-color: #d3ad7f;
    --black: #13131a;
    --bg: #010103;
    --border: .1rem solid rgba(255,255,255,.3);
}
.text-coffee
{
    color: var(--main-color);
}
body
{
    background-color: var(--bg);
}
.home
{
    background-image:url(../images/home-img.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
}

nav
{
    background-color: black;
    border: 2px solid #d3ad7f;
}
.nav-bar {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    position: relative;
    background-color: black;
    padding: 12px 20px;
}
.logo img {width: 40px; }
.menu {display: flex; width: 50%; margin: auto;}
.menu li {padding-left: 30px;}
.menu li a {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    text-align: center;
    transition: 0.15s ease-in-out;
    position: relative;
    text-transform: uppercase;
}
.menu li a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #d3ad7f;
    transition: 0.3s ease-in-out;
}
.menu li a:hover:after {width: 100%;}
.menu li a:hover{color: #d3ad7f;}
.open-menu , .close-menu {
    position: absolute;
    color: #d3ad7f;
    cursor: pointer;
    font-size: 1.5rem;
    display: none;
}
.open-menu {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
.close-menu {
    top: 20px;
    right: 20px;
}
#check {display: none;}
@media(max-width: 1000px){
    .menu {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100vh;
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 100;
        background-color: black;
        transition: all 0.4s linear;
    }
    .menu li {margin-top: 40px;}
    .menu li a {padding: 10px;}
    .open-menu , .close-menu {display: block;}
}

.header .hone 
{
    font-size: 60px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
}
.header p
{
    margin: 20px 0px !important;
    line-height: 40px;
    font-size: 20px !important;
    padding: 0px 10px;
}
.header
{
    display: flex;
    justify-content: start;
}

.header button ,.about button ,.ourMenu button ,.contact button ,.ourBlog button,.contact button
{
    background-color: var(--main-color);
    padding:5px 30px;
    letter-spacing: 1px;
    color: #fff;
    border: none;
    font-size: 18px;
}

.header button:hover , .about button:hover,.ourMenu button:hover,.contact button:hover ,.ourBlog button:hover
{
    letter-spacing: 4px;
}

.about p
{
    color:#ccc;
}



.content
{
    background-color: var(--black);
}



.item
{
    border: var(--border);  
    transition: color 0s !important;
    transition: background-color 1s !important;
}

.item:hover{
    background-color:#fff;
    color: #000 !important;
    cursor: pointer;
}

.item:hover button ,.item:hover span
{
    color: #000 !important;
}
.item button
{
    padding: 5px 15px !important;
}
.icons span
{
    border: var(--border);
    padding: 10px;
    font-size: 20px;
    margin: 2px;
}
.product
{
    border: var(--border);
}
 .icons span:hover
 {
    background-color: var(--main-color) !important;
    cursor: pointer;
 }
.mmm
{
    width: 20%;
}


.review
{
    border: var(--border);
}
.review p
{
    color: #ccc !important;
    font-size: 15px !important;
}
.contact
{
    background-color: var(--black);
}
.contact input
{
    border: var(--border);
    background-color: var(--bg);
}

.ourBlog .image
{
    overflow: hidden;
}
.ourBlog img:hover
{
    transform: scale(1.2);
    cursor: pointer;
}
.ourBlog h4:hover
{
    color: var(--main-color) !important;
    cursor: pointer;
}
.blog 
{
    border: var(--border);
}
.blog .content
{
    background-color: var(--bg) !important;
    
}
.footer
{
    background-color: var(--black);
}
.navv span
{
    border: var(--border);
    padding:2px 12px;
    text-align: center;
    margin: 5px;
    font-weight: 500 !important;
    font-size: 20px !important;
    }
    .navv span:hover
    {
        background-color: var(--main-color);
        cursor: pointer;
       
    }

@media screen and (min-width: 1200px) {
    .header{
        
        justify-content: start !important;
    }
  } 
@media screen and (min-width: 600px) and (max-width: 768px) {
    .header{
       
        justify-content: center !important;
        text-align: center;
       
    }
    .header p
    {
        font-size: 18px !important;
        padding: 0px 0px;
    }
    .divvv
    {
        width: 80% !important;
    }
    .header h1
    {
        font-size: 45px !important;
    }
  
  }
  @media screen and (min-width: 768px) and (max-width: 992px) {
    .header{
      
        justify-content: start !important;
    }
    .header p
    {
        font-size: 17px !important;
        padding: 0px 0px;
    }
    .divvv
    {
        width: 65% !important;
    }
        .header h1
        {
            font-size: 50px !important;
        }
      
    }

  @media screen and (min-width: 992px) and (max-width: 1200px) {
    .header{
    
        justify-content: start !important;
    }
    .header h1
    {
        font-size: 50px !important;
    }
    .header p 
    {
        font-size: 18px !important;
    }
  }
  @media screen and (max-width: 600px) {
    .header{
       
        justify-content: center !important;
        text-align: center;
      
    }
    .header h1
    {
        font-size: 45px !important;
    }
    .header p
    {
        font-size: 18px !important;
        padding: 0px 0px;
    }
    .divvv
    {
        width: 90% !important;
    }
  }

  .navv a{
    text-decoration: none !important;
    color:  #fff  !important;
  }

  .problem
  {
    overflow-x: hidden !important;
  }
  #myBtn {
    display: none; 
    position: fixed;
    bottom: 20px; 
    right: 10px;
    z-index: 99; 
    border: none; 
    outline: none; 
    background-color: #d3ad7f; /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 18px; 
  }
  
 