:root {
    --main-color:#cfb02c;
    --alt-color : #344742;
    --third-color : #d5e0dd;
    --hover-color : #758d87;
    --trans : 0.3s ;
    --btn-whight : 400 ;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}
 .main-btn {
    background-color: var(--main-color);
    width: fit-content;
    border-radius: 30px 0;
    padding: 20px 50px;
    color: white;
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: bold;
    font-size: 16px;
    transition: var(--trans);
    cursor: pointer;
}
.main-btn:hover {
    background-color: var(--hover-color);
}

.navImg{
    width: 200px;
}
.app-btn{
    font-weight: var(--btn-whight);
    background-color: var(--main-color);
    transition: var(--trans);
}
.app-btn:hover {
    background-color: var(--alt-color);
}

.cart-icon::after {
    content: "0";
    position: absolute;
    right: -18px;
    top: -15px;
    background-color: var(--main-color);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    color: white;
}
li a.active {
    border-bottom: 1px solid var(--alt-color);
}
@media(min-width : 992px){
    li a:not(.active ):hover {
    border-bottom: 1px solid var(--main-color);
}
}
@media(max-width : 991px){
   li  a:not(.active):hover {
    margin-left: 5px;
    transition: var(--trans);
}
}
li a.dropdown-item.active {
    background-color: var(--alt-color);
}
footer {
        background-color: #293330;
}
footer img {
    width: 180px;
}
footer ul li a {
    color: var(--main-color) !important;
}
footer input[type = "text"]:focus {
    outline: none;
}
footer input[type = "text"]:focus::placeholder{
    opacity: 0;
}
footer input[type = "text"]::placeholder{
font-weight: bold;
color: #000;
}
footer input[type = "submit"]{
    background-color: var(--main-color);
    transition: var(--trans) linear;
}
footer input[type = "submit"]:hover{
    background-color: var(--alt-color);
}
@keyframes Tanya {
    0% , 50%{
        transform:  perspective(1000px) rotateX(-20deg);
        
    }
    25% , 75% {
        transform:  perspective(1000px) rotateX(20deg);
        
    }
    100% {
        transform:  perspective(1000px) rotatex(0deg);
        
    }
}