*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Poppins', sans-serif;
}
.headerr{
    width: 100%;
    background-color: #ffffff;
    position: fixed;
    z-index: 999;
}
.header-perant{
    display: flex;
    justify-content: space-between;
    padding: 0 40px ;
}
.header-perant img{
    width: 150px;
    height: 50px;
    margin-left: -180px;
    margin-top: 20px;
}
.i-header{
    width: 100%;
    padding-top: 90px;
}
.header-nav{
    text-align: center;
    width: 55%;
    margin: auto;
    padding-bottom: 10px;
}
.header-nav li {
    list-style: none;
    display: inline-block;
    padding: 10px;
}
.header-nav li .header-a{
    text-decoration: none;
    font-size: 23px;
    font-weight: 700;
    color: rgb(53, 41, 15);
    padding: 10px;
    position: relative;
}
.header-nav li .header-a:hover{
    color: rgb(153, 136, 99);
}
/*..............................Drop...................................................................... */
.dro{
    position: relative;
    }
    .dro-m{
        position: absolute;
        width: 450px;
        border: 2px solid rgb(102, 79, 31);
        background-color: #ffffffb7;
        padding: 15px;
        margin-top: 15px;
        transform: scale(0);
        transition: transform 0.5s , visibility .5s;
        opacity: 0;
        visibility: hidden;
    }
    .dro:hover .dro-m{
        transform: scale(1);
        visibility: visible;
        opacity: 1;
    }
    .dro-m ul{
        display: table-cell;
        text-align: center;
    }
    .dro-m ul li a{
        padding: 5px;
        text-decoration: none;
        color: rgb(102, 79, 31);
        font-weight: 700;
    }
    .dro-m ul li a:hover{
        color: rgb(202, 183, 143);
    }
    .dro-m ul li:first-child a {
        display: block;
        border-bottom: 2px solid rgb(122, 49, 0);
        margin-bottom: 10px;
        font-size: 20px;
        font-weight: 700;
        color: rgb(122, 49, 0);
        
    }
    .dro-m ul li {
        line-height: 1.7;
    }
    .list {
        list-style: none;
    }


/* /////////////////////////////////////// */
.header-nav li .header-a::before{
    content: "";
    position: absolute;
    bottom: -2px;
    left: -2px;
    right: -2px;
    top: -2px;
    width: 0;
    height: 0;
    border: 2px solid transparent;
    
}
.header-nav li .header-a:hover::before{
    animation: animate .4s linear forwards ;
    cursor: pointer;
}

@keyframes animate{
    50%{
        width: 0;
        height: 100%;
        border-top-color: transparent;
        border-left-color: rgb(153, 136, 99);
        border-bottom-color: transparent;
        border-right-color: transparent;
    }
    100%{
        width: 100%;
        height: 100%;
        border-top-color: rgb(153, 136, 99);
        border-left-color: rgb(153, 136, 99);
        border-bottom-color: transparent;
        border-right-color: transparent;
    }
}
.header-nav li .header-a::after{
    content: "";
    position: absolute;
    right: -2px;
    top: -2px;
    width: 0;
    height: 0;
    border: 2px solid transparent;
    
}
.header-nav li .header-a:hover::after{
    animation: animate2 .4s linear forwards ;
    cursor: pointer;
}

@keyframes animate2{
    50%{
        width: 0;
        height: 100%;
        border-top-color: transparent;
        border-left-color: transparent;
        border-bottom-color: transparent;
        border-right-color: rgb(153, 136, 99);
    }
    100%{
        width: 100%;
        height: 100%;
        border-top-color: transparent;
        border-left-color: transparent;
        border-bottom-color: rgb(153, 136, 99);
        border-right-color: rgb(153, 136, 99);
    }
}

/* ////////////////////////////////// */
.header-icons{
    margin-top: 20px;
    text-align: center;
}
.header-icons li{
    display: inline-block;
    font-size: 28px;  
    color: rgb(202, 183, 143);
}
.header-icons li i{
    padding-right: 5px;
}
.header-icons input {
    width: 400px;
    min-height: 20px;
    border-radius: 30px;
    font-size: 18px;
    color: #000000;
    padding: 8px;
    border: 2px solid rgb(202, 183, 143);
}
.login{
    display: flex;
    margin-top: -5px;
    position: relative;
    text-align: center;
}
.login li {
    font-size: 30px;
    list-style: none;
    padding: 20px;
    color: rgb(53, 41, 15);
}
.login span{
    display: flex;
    font-size: 15px;
    font-weight: 700;
}
/* /////////////////////////////////// */
.main-perant{
    width: 100%;
    min-height: 100vh;
    background-image: url(../Pictures/background1.jpg);
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    
}
.main-contant{
    width: 50%;
    height:200px ;
    margin-left: 100px;
}
.main-btn{
    width: 150px;
    height: 45px;
    background-color: rgb(53, 41, 15);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    border-radius: 30px;
    margin-top: 30px;
    border: 0;
    transition: 1s ease;
    cursor: pointer;
}
.main-btn:hover{
    background-color: rgb(102, 79, 31);
    transform: scale(1.1);
}
.h1-main{
    font-size: 50px;
    font-weight: 700;
    color: rgb(255, 255, 255);
    text-shadow: 1px 1px 20px rgb(53, 41, 15);
}
.logo-i{
    padding-top: 8px;
    font-size: 30px;
    margin-top: 20px;
    color: rgb(53, 41, 15);
}
.login-car{
    font-size: 30px;
    transition: 1s ease;
    cursor: pointer;
}
.login .login-car::after {
    position: absolute;
    content: "0";
    background-color:rgb(53, 41, 15);
    color: #fff;
    border-radius: 50%;
    padding: 3px;
    font-size:8px;
    bottom: 63px;
}
.login .login-car:hover{
    transform: scale(1.1);
    color: rgb(202, 183, 143);
}
/* ///////////////////////////////////////////// */
.title{
    width: 25%;
    text-align: center;
    margin: auto;
}
.addr{
    font-size: 35px;
    font-weight: 700;
    color: rgb(53, 41, 15);
    margin-top: 80px;
}
.title:hover .hr-title{
    transform: scale(1.1);
}
.hr-title{
    width: 150px;
    height: 4px;
    background-color: rgb(53, 41, 15);
    margin: auto;
    border: 0;
    margin-top:10px;
    margin-bottom: 50px;
    transition: .8s ease;
}
.perant{
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-evenly;
    padding-bottom: 50px;

}
.box{
    width: 280px;
    height: 380px;
}
.box img{
    width: 100%;
    height: 80%;
}
.perant .box .info1 h3{
    font-size: 15px;
    color: rgb(126, 120, 110);
    padding-top: 5px;
    margin-left: 5px;
}
.perant .box .info1 h2{
    font-size: 18px;
    font-weight: 700;
    padding-top: 5px;
    margin-left: 5px;
}
.info1{
    position: relative;
    
}
.perant .box .info1 i{
    position: absolute;
    right: 0;
    width: 30px;
    height: 30px;
    font-size: 20px;
    background-color: rgb(53, 41, 15);
    color: #fff;
    padding: 6px;
    visibility: hidden;
    opacity: 0;
    text-align: center;
    margin-top: -30px;
}
.perant .box:hover .info1 i{
    visibility: visible;
    opacity: 1;
}
/* ////////////////////////////////////// */

.counter{
    display: flex;
    width: 88%;
    margin: auto;
    padding: 20px 0;
    
}
.div1{
    width: 60%;
    background-color: rgb(228, 217, 193);
    padding: 20px;
    position: relative;
    
}
.top{
    position: relative;
    padding-bottom: 30px;
}
.top i{
    position: absolute;
    left: 0;
    top: 0;
    margin-top: -10px;
    font-size: 70px;
}
.top h1{
    padding-left: 70px;
}
.top span{
    padding-left: 70px;
}
.div1 p{
    letter-spacing: .5px;
    font-size: 18px;
}
.bottom{
    text-align: right;
    position: absolute;
    bottom: 20px;
    right: 10px;
}
.bottom span{
    background-color: rgb(102, 79, 31);
    display: inline-block;
    width:50px;
    height: 2px;
    margin-left: 10px;
}
.div2{
    transition: 1s ease;
    height: 300px;
    width: 25%;
    margin: 0 20px;
    background-size: cover;
    background-image: url(../Pictures/box1.jpg);
}
.div3{
    transition: 1s ease;
    height: 300px;
    width: 25%;
    background-size: cover;
    background-image: url(../Pictures/box1.jpg);
}
.div2:hover,.div3:hover{
    transform: scale(1.1);
}
.upr{
    min-width: 300px;
    height: 100px;
    padding: 30px;
}
.upr h4{
    color: rgb(153, 136, 99);
}
/* //////////////////////////////// */
.countenar-down{
    width: 90%;
    display: flex;
    justify-content: center;
    margin: auto;
    padding-top: 40px;
    height: 200px;
    border-bottom: 2px solid rgb(163, 162, 161);
}
.BOX{
    
    width: 20%;
    height: 60%;
    border-right: 2px solid rgb(102, 79, 31);
}
.inform{
    text-align: center;  
}
.inform span{
    color: rgb(163, 162, 161);
}


.B1{
    background-image: url(../Pictures/service.png);
    background-repeat: no-repeat;
    height: 55px;
}
.B-1{
    background-position: center 5px;
    transition: all .5s;
}
.BOX:hover .B-1{
    background-position: center -86px;
}

.B-2{
    background-position: center -180px;
    transition: all .5s;
}
.BOX:hover .B-2{
    background-position: center -273px;
}

.B-3{
    background-position: center -362px;
    transition: all .5s;
}
.BOX:hover .B-3{
    background-position: center -453px;
}

.B-4{
    background-position: center -550px;
    transition: all .5s;
}
.BOX:hover .B-4{
    background-position: center -640px;
}

.B-5{
    background-position: center -738px;
    transition: all .5s;
}
.BOX:hover .B-5{
    background-position: center -825px;
}
.BO{
    border: 0;
}

/* ///////////////Section2////////////////////// */
#products{
    border-bottom: 2px solid rgb(163, 162, 161);
}
.f-pro{
    width: 50%;
    margin: auto;
    text-align: center;
    padding-bottom: 30px;
}
.f-pro span{
    padding: 20px;
    font-weight: 600;
    font-size: 24px;
}
.perant1{
    width: 90%;
    margin: auto;
    display: flex;
    padding: 20px 0;
}
.product1{
    position: relative;
    transform-style: preserve-3d;
    transition: all 2s;
    width: 30%;
    height: 500px;
    display: flex;
    margin: auto;
}
.front{
    position: absolute;
    backface-visibility: hidden;
    z-index: 1;
    width: 100%;
    height: 100%;
    box-shadow: 1px 1px 20px rgb(235, 214, 196);
}
.front .p1{
    color: red;
}
.front img{
    width: 100%;
    height: 80%;
}
.info{
    width: 100%;
    padding: 10px;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
}
.info i{
    color: gold;
    padding-bottom: 15px;
}
.back{
    transform: rotateY(180deg);
    width: 100%;
    height: 80%;
    text-align: center;
    background-color: #fff;
}
.back i{    
    margin-top: 150px;
    color: rgb(102, 79, 31); 
    font-size: 30px; 
    padding: 10px;  
    cursor: pointer;
}
.product1:hover{
    transition-delay: 2s;
    transform: rotateY(180deg);
    box-shadow: 1px 1px 20px rgb(235, 214, 196);
    
}
.in{
    width: 80%;
    height: 50%;
    margin: auto;
}
.in h1{
    padding: 20px;
    color: rgb(102, 79, 31);
    margin-bottom: -20px;
}
.in p{
    text-align: left;
}
/* //////////footer///////////////// */
.footer {
    background-color: rgb(53, 41, 15);
    color: #d3d3d3;
    padding: 30px;
    display: flex;
    justify-content: space-between;
}
.footer p{
    
    padding: 10px;
    margin-left: 50px;
    margin-top: -30px;
}

.footer-title {
    font-size: 1em;
    font-weight: 600;
}

.footer-title a {
    color: #3a6cf4;
    text-decoration: none;
}

.footer .social-icons a{
    font-size: 1.8em;
    padding: 0 15px 0 0;
    color: #fff;
}
.footer .up{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    background-color: #fff;
    color: rgb(102, 79, 31);
    cursor: pointer;
    transition: 1s ease;
}
.footer .up:hover{
    transform: scale(2.2);
}
/* /////////////////////////////////////////////////////// */
.social-icons .l:hover,.social-icons .f:hover,.social-icons .t:hover{
    color: #1b53eb;
    text-shadow: 2px 2px 10px #fff;
}
.social-icons .i:hover{
    color: #f0308a;
    text-shadow: 2px 2px 10px #fff;
}
.back .l:hover,.back .f:hover,.back .t:hover{
    color: #1b53eb;
    text-shadow: 2px 2px 10px #fff;
}
.back .i:hover{
    color: #f0308a;
    text-shadow: 2px 2px 10px #fff;
}
/* /////////////////////////////////////////////////// */
.carr{
    width: 50%;
    margin-right: -20px;
    display: flex;
    margin-top: 25px;
}
.carr button{
    width: 150px;
    height: 40px;
    font-size: 18px;
    color: #fff;
    background-color: rgb(102, 79, 31);
    border-radius: 20px;
    border: 0;
    cursor: pointer;
    
}
.carr button:hover{
    background-color: rgb(53, 41, 15);
}
.carr i{
    
    font-size: 25px;
}
.hr1-title{
    width: 90px;
    height: 3px;
    background-color: rgb(53, 41, 15);
    margin: auto;
    border: 0;
    margin-bottom: 50px;
    margin-top: 5px;
    
}
.endd{
    padding-bottom: 50px;
}
/* /./////////////////////////////// */
.content {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}
.card {
    background-color: #fff;
    width: 400px;
    box-shadow: 0 5px 25px rgba(1 1 1 / 15%);
    border-radius: 10px;
    padding: 25px;
    margin: 20px;
    transition: 0.7s ease;
    text-align: center;
}

.card:hover {
   transform: scale(1.1);
}

.contact .icon{
    font-size: 60px;
    color: rgb(184, 150, 111);
}

.contact .info2 h3 {
    color: rgb(68, 44, 27);
    padding-bottom: 30px;
}

.contact .info2 p {
    font-size: 21px;
    text-align: center;
    margin-bottom: 20px;
}
.hr-title3{
    width: 60px;
}
.hr-end{
    width: 90px;
}
.carr button i{
    font-size: 18px;
    position: absolute;
    margin-left: -5px;
    color: #fff;
}
.r{
    position: absolute;
    margin-top: -28px;
    margin-left: 45px;
    color: rgb(18, 170, 18);
    background-color: rgb(207, 241, 207);
    border-radius: 5px;
}
.r p{
    padding: 3px;
    font-size: 15px;
}
