 @import url('https://fonts.googleapis.com/css2?family=Prompt:wght@200&display=swap');
*
{
    margin: 0px;
    padding: 0px;
    font-family: 'Prompt', sans-serif;
    box-sizing: border-box;
}

nav{
    display: flex;
    min-height: 8vh;
    min-width: 100vh;
    justify-content: space-around;
    align-items: center;
    background-color:#0076dc;
    box-shadow: 0 3px 1rem rgba(0,0,0,.1);
    position: sticky;
    top: 0px;
    z-index: 999;
}
nav ul{
    float: right;
    margin-right: 40px;
    display: flex;
    justify-content: space-around;
    width: 35;
}
nav li{
    display: inline-block;
    margin: 0 10px;
    line-height: 80px;
    list-style: none;
}
nav a{
    color: black;
    font-weight: 800;
    letter-spacing: 3px;
    position: relative;
    font-size: 18px;
    text-decoration: none;
    border: 1px solid transparent;
    padding: 0px 10px;
    border-radius: 3px;
}
nav #icon{
    color: white;
    font-size: 30px;
    line-height: 80px;
    float: right;
    margin-right: 40px;
    cursor: pointer;
    display: none;
}
nav a.active,a:hover{
        border: none;
        color:aqua;
    }
@media (max-width: 1048px){
    nav ul{
        float:none;
        margin-right: 40px;
    }
    nav a{
        font-size: 15px;
    }
    .logo{
        display: block;
    }
    nav #icon{
        display: none;
    }
}
@media (max-width: 900px){
    nav #icon{
    display: block;
    margin: 0;
    position: absolute;
    top: 50px;
    right: 100px;
    transform: translate(-50%, -50%);
    }
    nav ul{
        display: block;
        position: fixed;
        width: 100%;
        height: 100vh;
        background-color: #0076dc;
        top: 100px;
        left: -100%;
        text-align: center;
        transition: all .5s;
    }
    nav li{
        display: block;
        margin: 50px 0;
        line-height: 30px;
    }
    nav a{
        font-size: 20px;
    }
    a.active,a:hover{
        border: none;
        color:aqua;
    }
    nav ul.show{
        left: 0;
    }
    .logo{
        content: url(images/logo 2.png);
        height: 100px;
        width: 100px;
        margin-left: -90%;
    }
}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: white;
    border: 1px solid white;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover{
    border: 1px solid red;
    background: red;
    transition: 1s;
}
/*------ about ------*/

.about{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
    
    
    
}
h1{
    font-size: 46px;
    font-weight: 600;
    
}
.row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
    
}
.work-col{
    flex-basis: 31%;
    background: #ffdbac;
    border-radius: 10px;
    margin-bottom: 5px;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;

}
.work-col:hover{
    box-shadow: 0 0 50px 0px rgba(4,9,30,0.7);
}

/*---- sell ----*/
.sell{
    width: 80%;
    margin:auto;
    text-align: center;
    padding-top: 50px;
}
.layer{
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
    
}
.layer:hover{
    background: rgba(135,206,235,1);
}
.layer h3{
    width: 100%;
    font-weight:500;
    color:black;
    font-size: 26px;
    bottom: 0;
    left:50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    transition: 0.5s;
}
.layer:hover h3{
    bottom: 49%;
    opacity: 1;
}
.col-5{
    flex-basis: auto;
    border-radius: 10px;
    border-bottom: 30px;
    position: relative;
}
.col-5 img{
    width: 80%;
}
.col-5 p{
    font-size: 18px;
    font-weight: 0px;
    color: black;
}
/*---- product ----*/
.pro{
    margin: 100px auto;
    width: 80%;
    background-image:linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(images/bg.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
}
.pro h1{
    color:white;
    margin-bottom: 40px;
    padding: 0;
} 
.page-btn{
    margin: 0 auto 80px;
}
.page-btn span{
    display:  inline-block;
    border: 1px solid #ff523b;
    margin-left: 10ppx;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
}
.page-btn span:hover{
    background: #ff523b;
    color: #fff;
}
.row-2{
    justify-content: space-between;
    margin: 100px auto 50px;
}
select{
    border: 1px solid #ff523b;
    padding: 5px;
}
select:focus{
    outline: none;
}
.col-4{
    flex-basis: 25%;
    padding: 10px;
    min-width: 200px;
    margin-bottom: 50px;
    transition: transform 0.4s;
}

.col-4 img{
    width: 65%;
}
.col-4 p{
    font-size: 14px;
}
.col-4:hover{
    transform: translate(-7px);
}

.small-container{
    max-width: 1080px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
}



/*---- pro1 ----*/
.page-btn1{
    position:absolute;
    bottom: 0;
    
    
}
.page-btn1 span{
    display:  inline-block;
    border: 1px solid #ff523b;
    margin-left: 10ppx;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
}
.page-btn1 span:hover{
    background: #ff523b;
    color: #fff;
}

/*---- single product details ----*/

.col-2{
    flex-basis: 50%;
    min-width: 50%;
}
.col-2 img{
    max-width: 100%;
    padding: 50px 0;
}
.single-product{
    margin-top: 80px;
}
.single-product .col-2 img{
    padding: 0;
}
.single-product .col-2{
    padding: 20px;
}
.single-product h4{
    margin: 20px 0;
    font-size: 22px;
    font-weight: bold;
}
.single-product select{
    display: block;
    padding: 10px;
    margin-top: 20px;
}

.small-img-row{
    display: flex;
    justify-content: space-between;
}
.small-img-col{
    flex-basis: 24%;
    cursor: pointer;
}
.dropbtn {
    background-color: white;
    color: black;
    padding: 16px;
    font-size: 17px;
    border: 1px solid #000000;
    margin: 100px auto 0px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: lightgrey;
    min-width: 200px;
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {background-color: white;}
.dropdown:hover .dropdown-content {display: block;}
.dropdown:hover .dropbtn {background-color: grey;}