* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}
body{
    background-color: rgb(31, 31, 31);
}
.header {
    background-color: rgb(27, 117, 207);
    color: white;
    padding: 10px 0px;
    text-align: center;
    font-weight: bold;
    letter-spacing: 0.5px;
}
.title {
    color: dodgerblue;
    text-align: center;
    margin: 50px 0px;
}
.nav {
    text-align: center;
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 10px;
}
.nav a {
    text-decoration: none;
    color: white;
    padding: 0 25px;
    transition: all .2s ease-in-out;
}
.nav a:hover{
    color: dodgerblue;
}
.ads {
    width: 100%;
    height: 630px;
    position: relative;
}
.ads-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.promo {
    background-color: rgba(31, 31, 31, 0.7);
    width: 450px;
    font-size: 14px;
    line-height: 25px;
    padding: 30px;
    position: absolute;
    top:50% ;
    left: 100px;
    transform: translate(0,-50%);
    color: white;
}
.line-dec {
    width: 35px;
    height: 5px;
    background-color: dodgerblue;
    margin: 10px 0px 15px;
}
.order-now {
    color: rgb(31, 31, 31);
    background-color: dodgerblue;
    padding:12px 16px;
    border: none;
    border-radius: 5px;
    margin: 15px 0px;
    cursor: pointer;
    transition: all .3s ease-in-out;
}
.order-now:hover{
    background-color: rgb(27, 121, 214);
    color: white;
}
.order-now:active{
    background-color: rgb(21, 96, 172);
}
.content {
    width: 80%;
    margin: 0 auto;
    padding: 50px 0;
    color: white;
}
.products {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 30px 0;
}
.products div{
    width: 260px;
    border: 1px solid rgba(180, 178, 178, 0.579);
    padding: 20px;
    border-radius: 4px;
    margin: 20px 5px;
    cursor: pointer;
    transition: all .3s ease-in-out;
}
.products div:hover{
    transform: scale(1.03);
}
.products div:active{
    transform: scale(0.99);
}
.products img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}
.products h4 {
    margin: 10px 0px;
}
.products h6 {
    color: dodgerblue;
    font-size: 15px;
}
.contact {
    background-color: rgb(27, 117, 207);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 70px 0;
}
.mad {
    background-color: white;
    margin-bottom: 20px;
}
.contact .para{
    width: 670px;
    margin: 40px 0 30px;
    line-height: 24px;
}
.email-input {
    width: 400px;
    background-color: transparent;
    color: white;
    padding: 15px;
    border: 1px solid white;
    outline: none;
    border-radius: 5px;
    margin: 0 10px;
}
.email-input::placeholder{
    color: white;
}
.subscribe-button {
    background-color: white;
    color: dodgerblue;
    font-size: 12px;
    padding: 17px 70px;
    border: none;
    border-radius: 5px;
    margin:5px 10px 0;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.subscribe-button:hover{
    background-color: rgb(223, 222, 222);
    color: black;
}
.subscribe-button:active{
    background-color: rgb(176, 176, 176);
}
.icon-div ,.social-icon{
    display: flex;
    justify-content: center;
    align-items: center;
}
.social-icon{
    width: 40px;
    height: 40px;
    background-color: dodgerblue;
    margin: 50px 15px;
    border-radius: 100%;
    cursor: pointer;
    transition: all .3s ease-in-out;
}
.social-icon:hover{
    background-color: rgb(24, 117, 210);
    color: white;
}
.social-icon:active{
    transform: scale(0.92);
}
.Copyright {
    color: white;
    text-align: center;
    word-spacing: 2px;
    font-size: 12px;
    letter-spacing: 1px;
    margin: 20px 0;
}
@media screen and (max-width:700px) {
 .contact .para{
    width: auto;
 }   
 .products div{
    width: 400px;
 }
 .promo{
    left: 50%;
    transform: translate(-50%,-50%);
 }
 .nav a{
    font-size: 12px;
    padding: 0 20px;
 }
}
@media screen and (max-width:480px) {
    .promo{
        width: 320px;
        padding: 15px;
        border-radius: 5px;
    }
    .promo  h2{
        font-size: 16px;
    }
    .promo p{
        font-size: 12px;
        line-height: 20px;
    }
    .nav a{
        font-size: 10px;
        padding: 0 10px;
     }
    .order-now{
        font-size: 12px;
        padding: 10px 14px;
    }
    .products div{
        width: 300px;
    }
    .email-input{
        width: 280px;
    }
    .subscribe-button{
        padding: 14px 30px;
        font-size: 10px;
    }
    .contact .para{
        font-size: 14px;
     }  
    
}