*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
    
body{
    font-size: 16px;
    font-family: sans-serif;
    color: hsl(227, 12%, 61%);
    overflow-x: hidden ;
    background-color: aliceblue; 
}

button{
    padding: 11px 28px;
    border-radius: 20px;
    color: #fff;
    border: none;
    background-color: hsl(40, 88%, 59%);
    cursor: pointer;
    filter: drop-shadow(0px 2px 2px  hsl(38, 77%, 45%));
    
}

button:hover{
    opacity: 85%;
}


.bg{
    position: absolute;
    background-color: bisque;
    transform: rotate(135deg);
    border-radius: 300px;
    z-index: -9999;
    filter: opacity(40%);
    top: -150px;
    left: 540px;
}

.desktop-h{
    padding: 30px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    width: 100%;
}

.desktop-h .logo{
    width: 60px;
    mix-blend-mode: multiply;
    /* filter: brightness(2.5) hue-rotate(300deg); */
}

 .sidebar{
    display: none;
} 

.desktop-h nav{
    display: flex;
}

.h-rotate{
    opacity: 0;
    display: none;
    visibility: visible;
} 

.desktop-h .hamburger{
    display: none;
    position: absolute;
    right: 9999999px;
}

.desktop-h .cancel{
    display: none;
}

.desktop-h nav ul{
    display: flex;
    text-decoration: none;
}

.desktop-h nav ul li{
    list-style: none;
    padding: 10px;
    font-size: 15px;
    text-decoration: none;
}

.desktop-h nav ul li a{
    text-decoration: none;
    color: hsl(227, 12%, 61%);
    font-weight: bold;
}

.desktop-h nav ul li a:hover{
    color: #000;
    text-decoration: underline green;
}

#home{
    padding: 0 10%;
    display: flex;
    height: max-content;
    justify-content: center;
    align-items: center;
}

#home .container{
    display: grid;;
    grid-template-columns: 1fr 1fr;
    padding: 60px 0;
    align-items: space-between;
    width: 100%;
}

#home .container .home_div{
    max-width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#home .container .home_div h1{
    color: #000;
    font-size: 42px;
    margin-bottom: 25px;
}

#home .container .home_div p{
    max-width: 370px;
    margin-bottom: 30px;
}

#home .container .home_div button{
    padding: 12px 23px;
    border-radius: 27px;
    background-color: hsl(40, 88%, 59%);
    border: none;
    color: #fff;
    height: 40px;
    width: 140px;
    cursor: pointer;
    filter: drop-shadow(0px 2px 2px  hsl(44, 76%, 50%));
    margin-top: 10px;
}

#home .container .home_div button:hover{
    opacity: 85%;
}

#home .container img{
    width: 400px;
    mix-blend-mode: multiply;
    margin-left: auto;
}

#product{
    padding: 60px 10%;
    background-color: hsl(198, 83%, 93%);
}

#product .container{
    display: flex;
    flex-direction: column;
    align-items: center;
}

#product .container .product_div{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}

#product .container .product_div h1{
    font-size: 33px;
    color: #000;
    margin-bottom: 25px;
}

/* #product .container .product_div p{
    max-width: 320px;
} */

.bg2{
    position: absolute;
    background-color: bisque;
    transform: rotate(135deg);
    border-radius: 300px;
    z-index: -9999;
    filter: opacity(40%);
    top: 1150px;
    right: 840px;
}

#product .container .product_div2{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

#product .container .product_div2 .box{
    padding: 20px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#product .container .product_div2 .card1{
    margin-right: 20px;
}

#product .container .product_div2 .card3{
    margin-left: 20px;
}


#product .container .product_div2 .box h3{
    color: #fff;
    padding: 5px 5px;
    border-radius: 20px;
    background-color: hsl(40, 88%, 59%);
    align-self: center;
    margin-bottom: 5px;
}

#product .container .product_div2 .box h2{
    font-size: 17px;
    color: #000;
    margin-top: 3px;
}

#product .container .product_div2 .box p{
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.1rem;
}

#about-us{
    padding: 50px 5px;
}

#about-us .container{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#about-us .container h2{
    margin-bottom: 70px;
    color: #000;
    font-size: 30px;
}

#about-us .container .about-us_div{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

#about-us .container button{
    margin-top: 60px;
}


#about-us .container .about-us_div .card{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: hsl(0, 0%, 98%);
    padding: 15px 15px;
    border-radius: 5px;
}

#about-us .container .about-us_div .bag1{
    margin-right: 38px;
}

#about-us .container .about-us_div .bag3{
    margin-left: 38px;
}

#about-us .container .about-us_div .card h3{
    color: #000;
}

#about-us .container .about-us_div .card p{
    line-height: 1.2rem;
    margin-top: 30px;
}

#about-us .container .about-us_div .card img{
    width: 50px;
    border-radius: 50%;
    margin-bottom: 30px;
}

#career{
    padding: 50px 10%;
    background-color: hsl(40, 88%, 59%);
}

#career .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

#career .container h2{
    color: #fff;
    font-size: 32px;
    max-width: 400px;
    text-align: start;
}

#career .container button{
    margin-top: 0;
    background-color: #fff;
    color: hsl(40, 88%, 59%);
}


#career .container button:hover{
    opacity: 80%;
}

#contact-us{
    padding: 50px 10%;
    background-color: hsl(228, 39%, 23%);
    color: #fff;
}

#contact-us .container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
}

#contact-us .container .part1-1 ul{
    display: flex;
}

 #contact-us .container .part1-1 ul li{
    list-style: none;
    padding-right: 7px;
}

#contact-us .container .part1{
    display: flex;
    justify-content: space-between;
}

#contact-us .container .part1 ul li img:hover{
  filter: brightness(97%) invert(31%) sepia(38%) saturate(121%) hue-rotate(390deg) brightness(107%) contrast(186%);
  cursor: pointer;
}

footer .footer1 .part1 .f-logo:hover{
    filter: brightness(2.5) hue-rotate(300deg);
}

footer .footer1 .part1 .f-logo{
    filter: brightness(0) invert(1);
} 

#contact-us .container .part1-2 ul{
    display: flex;
    flex-direction: column;
}

#contact-us .container .part1-2 ul li{
    list-style: none;
    margin-bottom: 11px;
    cursor: pointer;
    color: #fff;
}

 #contact-us .container .part1-2 ul li a{
    margin-bottom: 11px;
    cursor: pointer;
    color: #fff;
    text-decoration: none;
}

#contact-us .container .part1-2 ul li a:hover{
    color: hsl(12, 88%, 59%)
}


#contact-us .container .part2{
    display: flex;
    justify-content: center;
    align-items: start;
}

#contact-us .container .part2 ul{
    display: flex;
    flex-direction: column;
}

#contact-us .container .part2 ul li{
    list-style: none;
    margin-bottom: 11px;
}

 #contact-us .container .part2 ul li a{
    list-style: none;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
}

#contact-us .container .part2 ul li a:hover{
    color: hsl(12, 88%, 59%)
}

#contact-us .container .part3{
    display: flex;
    flex-direction: column;
    align-items: end;
}

#contact-us .container .part3 .email{
    display: flex;
    margin-bottom: 10px;
}

#contact-us .container .part3 .email input{
    border-radius: 70px;
    border: none;
    padding: 12px 30px;
    margin-right: 5px;
    margin-bottom: 24px;
}

#contact-us .container .part3 .email .btn{
    
}

#contact-us .container .part3 p{
    font-size: 14px;
    text-align: center;
}

#contact-us2{
    display: none;
}
