*{
    margin:0px;
    padding:0px;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;

}

body {
    background-color: #d5dde2;
    
}


.heading {
    width:90%;
    display:flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin:20px auto;

}

nav img{
    width: 85px;
    cursor: pointer;
}

nav{
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 12px 0;
}

nav ul{
    flex: 1;
    text-align: right;
    padding-right: 25px;
}

nav ul li{
    list-style: none;
    display: inline-block;
    margin: 10px 25px;
    padding: 10px 0;
    position: relative;
}

nav ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background-color: #777;
    display: block;
    margin: auto;
    transition: 0.5s;
}

nav ul li:hover::after{
    width: 100%;
}

nav ul li a{
    text-decoration: none;
    color: rgb(0, 0, 0);
    text-transform: uppercase;
    position: relative;
}

nav .cart{
    width: 30px;
    cursor: pointer;
}


h2{
    text-align: center;
    color: rgb(53, 74, 120);
}

.heading h1 {
    font-size: 50px;
    color: #000;
    margin-bottom: 25px;
    position:relative;

}

.heading h1::after{
    content: "";
    position:absolute;
    width:100%;
    height: 4px;
    display: block;
    margin:0 auto;
    background-color: #4681e0;
}

.heading p {
    font-size: 18px;
    color:#3c3c3c;
    margin-bottom: 35px;

}

.container{
    width:90%;
    margin: auto;
    padding: 10px 20px;

}

.about{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;

}

.about-image{
    flex: 1;
    margin-right: 40px;
    overflow: hidden;
}

.about-image img{
    max-width: 60%;
    height:auto;
    display: block;
    transition: 0.5s ease;

}

.about-image:hover img{
    transform: scale(1.2);
}

.about-content{
    flex:1;
}
.about-content h3{
    font-size: 23px;
    margin-bottom: 15px;
    color:#333;
}

.about-content p{
    font-size: 18px;
    line-height: 1.5;
    color: #0e0a0a;
}

@media screen and (max-width:768px){
    .heading{
        padding: 0px 20px;

    }
    .heading h1{
        font-size: 36px;

    }
    .heading p{
        font-size: 17px;
        margin-bottom: 0px;

    }
    .container{
        padding: 0px;

    }
    .about{
        padding: 20px;
        flex-direction: column;

    }
    .about-image{
        margin-right: 0px;
        margin-bottom: 16px;

    }
    .about-content p{
        padding: 0px;
        font-size: 16px;

    }
    
}

/*--------Footer--------*/

footer
{
    width: 100%;
    position: relative;
    bottom: 0;
    background: #262626;
    color: #fff;
    padding: 50px 0 30px;
    border-top-left-radius: 125px;
    font-size: 13px;
    line-height: 20px;
}

.footerrow
{
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.footerrow-col
{
    flex-basis: 25%;
    padding: 10px;
}

.footerlogo
{
    width: 120px;
}

.footerrow-col h3
{
    width: fit-content;
    margin-bottom: 40px;
    position: relative;
    text-transform: uppercase;
    font-weight: 600;
}

.email-id
{
    width: fit-content;
    border-bottom: 1px solid #ccc;
    margin: 20px 0;
}

.footerrow-col ul li
{
    list-style: none;
    margin-bottom: 12px;
}

.footerrow-col ul li a
{
    text-decoration: none;
    color: #fff;
    
}

form
{
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    margin-bottom: 50px;
}

form input
{
    width: 100%;
    background: transparent;
    color: #ccc;
    border: 0;
    outline: none;
}

hr
{
    width: 90%;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin: 20px auto;
}

.copyright
{
    text-align: center;
}

.underline
{
    width: 100%;
    height: 5px;
    background: #767676;
    border-radius: 3px;
    position: absolute;
    top: 25px;
    left: 0;
    overflow: hidden;
}
.underline span
{
    width: 15px;
    height: 100%;
    background: #fff;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 10px;
    animation: moving 2s linear infinite;
}
@keyframes moving
{
    0%{
        left: -20px;
    }
    100%{
        left: 100%;
    }
}

.social-icn{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
}

.social-icn img{
    width: 40px;
    margin-right: 10px;
}