@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
* {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

/*start header */
header {
    background: linear-gradient(90deg, rgb(116 102 102), rgb(58, 57, 133));
    width: 100%;
    z-index: 999;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 15px;
    font-size: 20px;
    position: absolute;
    font-weight: 500;
    top:0;
}
header .logo {
    font-size: 35px;
    color: white;
}
header .logo span {
    color: #00ADB5
}
.nav ul {
    display: flex;
}
.nav ul li {
    margin-left: 25px;
    list-style-type: none;
}
.nav ul li a {
    text-decoration: none;
    color: white;
    display: inline-block;
    padding: 10px;
}
.nav ul li a:hover {
    background: #00ADB5;
    border-radius: 7px;
}
a#co {
    border: 2px solid red;
    border-radius: 7px;
    transition: 0.9s ease;
}
a#co:hover {
    background: red;
}
/*end header */
/*start home */
section.home {
    background: linear-gradient(234deg, #82f1f1, #ffffff);
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 555px;
    margin-top: 74px;

}
.home .artical {
    padding: 20px;
}
.home .artical h1 {
    font-size: 35px;
}
.home .artical p {
    color: red;
    margin-top: 5px;
    font-weight: 900;
}
.home .image {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 87px ;
}
.image img {
    animation-name: up-down;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
@keyframes up-down {
    25% {
        transform: translateY(-10px);
    }
    50% {
        transform: translateY(0px);
    }
    75% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(0px);
    }
}
/*end home */
/*start shop */
.content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    padding-top: 70px;
    background: linear-gradient(234deg, rgb(193 135 255), rgb(255 255 255));
}
.shoes {
    background: white;
    width: 16.25em;
    margin-left: 10px;
    margin-bottom: 45px;
    border-radius: 10px;
}
.icon {
    padding: 35px 0px;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    width: 197px;
    margin-left: 30px;
    margin-top: 20px;
    margin-bottom: 20px;
    transition: 0.7s ease;
}
.icon:hover {
    transform: scale(1.2);
}
.info h1,.info  p,.info del,.info a {
    color: black;
    padding: 10px;
}
.info  p, .info del {
    font-weight: 700;
}
.info del {
    color: red;
}
.info a {
    text-decoration: none;
    font-size: 20px;
    display: block;
    margin-bottom: 15px;
    padding: 10px;
    display: flex;
    justify-content: center;
    background: linear-gradient(90deg, rgb(255 0 0), rgb(116 42 120));
    width: 45%;
    margin-left: 27%;
    border-radius: 7px;
    color: white;
    font-weight: 500;
}
.one {
    background: red;
}
.two {
    background: orange;
}
.three {
    background: black;
}
.four {
    background: blue;
}
.five {
    background: blueviolet;
}
.six {
    background: burlywood;
}
.seven {
    background: green;
}
.eight {
    background: gold;
}
.nine {
    background: darkgrey;
}
.ten {
    background: darkcyan;
}
.eleven {
    background: #933329;
}
.twelve {
    background: #00ADB5;
}
/*end shop */
/*start about */
.about-us {
    background: linear-gradient(90deg, rgb(211 205 130), rgb(89 88 147));
    padding: 40px;
    display: grid;
    text-align: center;
}
.about-left {
    margin-bottom: 25px;
}
.about-left h1 {
    margin-bottom: 10px;
}
.about-us img {
    width: 70%;
    border-radius: 10px;
}
/*end about */
/*start contact */
.contact {
    background: linear-gradient(234deg, #ff2222, #424242);
}
.contact h1 {
    display: flex;
    justify-content: center;
    padding-top: 30px;
    font-weight: 900;
}
.form {
    padding: 50px 0px;
    display: flex;
    justify-content: center;
}
input[placeholder="First Name"] {
    margin-right: 10px;
}
input[type="text"],input[type="email"] {
    height: 45px;
    width: 285px;
}
input[type="text"], input[type="email"],textarea {
    background: #2e2b2b;
    border: 0px solid #383535;
    border-radius: 7px;
    margin-bottom: 12px;
    padding: 5px;
    color: white;
    outline: none;
}
textarea {
    width: 590px;
    height: 255px;
}
input[type="submit"] {
    color: white;
    background: red;
    border: 2px solid red;
    padding: 10px;
    border-radius: 7px;
    font-size: 17px;
}
/*end contact */
/*start footer */
footer {
    background: linear-gradient(90deg, rgb(116 102 102), rgb(58, 57, 133));
}
.social {
    font-size: 25px;
    padding: 20px 0px 15px;
    display: flex;
    justify-content: center;
}
a.face, a.youtube, a.insta {
    padding: 5px 10px;
    background: black;
    margin-left: 20px;
    border-radius: 5px;
    color: white;
    transition: 0.5s;
}
a.face:hover, a.youtube:hover, a.insta:hover {
    transform: translateY(-5px);
}
a.face:hover {
    background: blue;
}
a.youtube:hover {
    background: red;
}
a.insta:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
}
footer p {
    padding: 25px;
    display: flex;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: white;
    background: linear-gradient(90deg, rgb(133 98 98), rgb(30 29 66));
}
footer p span {
    color: black;
}
/*end footer */
/*start mobile */
@media (max-width:610px) {
    header{
        display: grid;
    }
    header .logo {
        text-align: center;
        margin-bottom: 5px;
    }
    section.home {
        display: grid;
    }
    .home .artical {
        margin-top: 45px;
        text-align: center;
    }
    .home .image {
        justify-content: center;
    }
    input[type="text"],input[type="email"] {
        height: 40px;
        width: 220px;
    }
    textarea {
        width: 460px;
        height: 160px;
    }   
}
@media (max-width:480px) {
    .nav ul li {
        margin-left: 0px;
        list-style-type: none;
        padding: 0px 10px;
    }
    input[type="text"], input[type="email"] {
        height: 35px;
        width: 180px;
    }
    textarea {
        width: 380px;
        height: 145px;
    }
    input[type="submit"] {
        font-size: 15px;
    }
}
@media (max-width:405px) {
    .nav ul li a {
        font-size: 15px;
    }
    input[type="text"], input[type="email"] {
        height: 35px;
        width: 155px;
    }
    textarea {
        width: 310px;
        height: 145px;
    }
}
@media (max-width:355px) {
    .nav ul li a {
        font-size: 12px;
    }
    .form {
        margin-left: 6px;
    }
}
@media (max-width:345px) {
    .nav ul li {
        padding: 0px 5px;
    }
    .shoes {
        width: 13.25em;
        margin-left: 0px;
    }
    .icon{
        margin-left: 7px;
    }
    textarea {
        width: 225px;
        height: 101px;    
    }
    input[type="submit"] {
        font-size: 12px;
    }    
}
@media (max-width:305px) {
    .nav ul li {
        padding: 0px 0px;
    }
}
@media (max-width: 365px) {
    .nav ul li a {
        font-size: 10px;
    }
    a.face, a.youtube, a.insta {
        margin-left: 5px;
    }
}
/*end mobile */
/*start scrollbar */
::-webkit-scrollbar {
    width: 17px;
}
::-webkit-scrollbar-track {
    background-color: black;
}
::-webkit-scrollbar-thumb {
    background-color: white;
}
/*end scrollbar */
