#nav-bar{
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
}
#nav-bar>div{
    display: flex;
    gap: 15px;
}
#nav-bar>div:hover{
    cursor: pointer;
}

#top-section{
    width: 90%;
    margin: auto;
}

#top-section>div:nth-child(1){
    display: flex;
    justify-content: flex-end;
    
}
#top-section>div:nth-child(1)>h4{
margin-left: 380px;
}
#top-section>div:nth-child(2){
    display: flex;
    justify-content: space-between;
} 
#top-section>div:nth-child(2)>div{
    display: flex;
    font-size: small;
    gap: 10px; 
}  
#top-section>div:nth-child(2)>div>h3{
    font-weight: lighter;
    color: gray;
}

#mid-section{
    width: 90%;
    margin: auto;
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-top: 15px;
}

#mid-section img{
    width: 100%;
}

#products{
    width: 90%;
    margin: auto;
    
}

.flex-1{
    display: flex;
 justify-content: space-between;
 text-align: center;
 margin-top: 20px;
}

.grid-1{
    display: grid;
    grid-template-areas: 
    "div1 div2"
    "div1 div3";
    gap: 20px;
    text-align: center;
}

.grid-1>div:nth-child(1){
    grid-area: div1;
}

.grid-1>div:nth-child(2){
    grid-area: div2;
}

.grid-1>div:nth-child(3){
    grid-area: div3;
    padding-top: 50px;
}


.grid-1>div:nth-child(3) img{
    margin-top: 100px;
}

.grid-2{
    display: grid;
    grid-template-areas: 
    "div1 div3"
    "div2 div3";
    gap: 20px;
    text-align: center;
}

.grid-2>div:nth-child(1){
    grid-area: div1;
}

.grid-2>div:nth-child(2){
    grid-area: div2;
    padding-top: 50px;
}

.grid-2>div:nth-child(3){
    grid-area: div3;
}

.grid-2>div:nth-child(2) img{
    margin-top: 100px;
}

#product-bottom{
    text-align: center;
}

#product-show{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 15px;
}

#product-show img{
    width: 100%;
}

button {
    background-color: black;
    color: white;
    padding: 4px 8px;
  }
button:hover {
    color: black;
    background-color: white;
    padding: 4px 8px;
    cursor: pointer;
  }


.text_below {
font-family: Arial, Helvetica, sans-serif;
width: 70%;
margin: auto;
padding: 20px;

/* text-align: center; */
}
.text_below > h3 {
text-align: center;
}
/*  */
.exp_quality {
display: flex;
}
.exp > p,
.quality > p,
.text_below > h3 {
font-weight: bold;
font-size: 25px;
}
/*  */
.service_1 {
display: flex;
}

/*.service  */
.service {
width: 80%;
margin: auto;
display: flex;
}
.service > div {
width: 22%;
margin: auto;
margin-top: 0%;
}
.service > div > h3 {
font-weight: bold;
font-size: larger;
}
/* icon */
.icon {
display: flex;
}
.icon > i {
margin: 0px 10px;
}
.policy {
display: flex;
margin-top: 15px;
}
.policy > p {
margin-top: 0px;
}
/* footer */
footer {
width: 80%;
display: flex;
justify-content: space-between;
margin: auto;
font-size: larger;
}
footer > div {
display: flex;
}