body {
    font-family: 'Roboto', sans-serif;
    color: #141517;
    /* min-height: 4000px; */
}

/* Start Navbar */
.navbar {
    width: 95%;
    margin: auto;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    padding-top: 20px;
    display: none;
}

.navbar .list-item {
    list-style: none;
    display: inline-flex;
}

.navbar .list-item>li {
    margin-left: 50px;
    font-weight: bold;
}

.navbar .list-item>li:nth-child(4)::after {
    position: absolute;
    content: "HOT";
    background: #ff003c;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    font-size: 10px;
    top: 18px;
    transition: all .2s ease-out 0s;
    box-shadow: 0 2px 5px rgb(0 0 0 / 30%);
    padding: 3px 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;

}

.navbar .list-item>li a {
    text-decoration: none;
    color: black;
}

.navbar .list-item>li a:hover {
    color: #ff2020;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.navbar .list-item li .dropdown {
    list-style: none;
    position: absolute;
    width: 170px;
    background: white;
    top: 93px;
    right: 36%;
    padding: 0;
    display: none;
    box-shadow: 0 0 10px 3px rgb(0 0 0 / 5%);
    padding: 17px 0;
    border-top: 3px solid #ff2020;
    border-radius: 7px 7px 3px 3px;
    transition: all 0.8s ease-in
}

.navbar .list-item li .item2 {
    right: 28%;
}

.navbar .list-item li .item3 {
    right: 22%;

}

.navbar .list-item li .dropdown li {
    padding: 10px;
}

.navbar .list-item li:hover .dropdown {
    display: block;
}

.navbar .list-item li .dropdown::before {
    content: "\f0d8";
    position: absolute;
    bottom: 108px;
    left: 18px;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    color: #ff2020;
    /* font-size: 23px; */
}

.navbar .list-item li .item3::before {
    bottom: 222px;
}

/* .navbar .list-item li .dropdown li{
    
}
.navbar .list-item li .dropdown li a{
    
} */
.navbar .font-icon a {
    color: black;
    cursor: pointer;
    padding: 10px;
}

.navbar .font-icon>a:hover {
    color: #ff2020;
    cursor: pointer;
    transition: all 0.4s ease-in;
}

/* End Navbar */

/* Start Header */
.header {
    background-color: #f0f0f2;
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    /* justify-content: space-around; */
    /* align-items: center; */
}

.header .heading {
    width: 90%;
    margin: auto;
    margin-left: 4.5%;
}

.header .heading h1 {
    font-size: 96px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 26px;
}

.header .heading p {
    font-size: 18px;
    line-height: 2.4;
    font-weight: 400;
    margin-bottom: 39px;
    color: #212025;
    margin-bottom: 35px;
    padding-right: 175px;
}

.header .heading>.btn {
    transition: color 300ms;
    position: relative;
    transform: translateZ(0);
    backface-visibility: hidden;
    background-color: #4a4a4b;
    color: white;
    padding: 15px;
    width: 165px;
    margin-top: 16px;
    margin-bottom: 19px;
    outline: none;
    border: none;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    font-size: 18px;
}

.header .heading>.btn:hover {
    border: 1px solid #ff324d;
}

.header .heading>.btn::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    transform: scaleX(0);
    transform-origin: 0%;
    transition-property: transform;
    background-color: #ff2020;
    transition: all .5s ease-in;
}

.header .heading>.btn:hover:before {
    transform: scaleX(1);
}

.header .img-watch {
    width: 45%;
    margin: auto;
    animation-name: imgwatch;
    animation-duration: 0.4s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

@keyframes imgwatch {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1.1);
    }
}

/* End Header */

/* Start Section New Arrivals */
.h1-new {
    width: 90%;
    margin: auto;
}

.new-arr {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    overflow: hidden;

}

.new-arr .content div img {
    transition: all .4s ease-out 0s;
    transform: scale(1);
    cursor: pointer;
}

.new-arr .content:hover div img {
    transform: scale(1.025);
}

.new-arr .content h3 {
    text-align: center;
    color: #444444;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 12px;
}

.new-arr .content p {
    color: #ff2020;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

/* End Section New Arrivals */

/* Start Galery */
.galery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 330px);
    grid-gap: 30px;
    cursor: pointer;
}


.galery .item {
    background-color: rgba(39, 38, 38, 0.3);
    overflow: hidden;
    position: relative;
}

.galery .item img {
    opacity: 1;
    display: block;
    width: 100%;
    height: 100%;
    height: 100%;
    backface-visibility: hidden;
    object-fit: cover;
    transition: all .4s ease-out 0s;
    transform: scale(1.1);
}

.galery .item:hover img {
    opacity: 0.3;
    transform: scale(1);
}

.galery .item:nth-child(1) {
    grid-column: 1/3;
    grid-row: 1/3;
}

.galery .item:nth-child(2) {
    grid-row: 1/3;
}

/* End Galery */
/* Start Popular item */
.popular-item {
    width: 90%;
    margin: auto;
}

.popular-item .content {
    text-align: center;
    margin-bottom: 40px;
}


.popular-item .content h2 {
    color: #000;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.popular-item .content p {
    font-family: "Roboto", sans-serif;
    color: #777;
    font-size: 25px;
    line-height: 1.7;
    margin-bottom: 15px;
    font-weight: normal;
}

.popular-item .item-category {
    position: relative;
}

.popular-item .item-category .item-content {
    display: flex;
    justify-content: space-between;
}

.popular-item .item-category .item-content .buy-item {
    text-align: center;
    position: relative;
}

.popular-item .item-category .item-content .buy-item i {
    cursor: pointer;
    font-size: 30px;
    position: absolute;
    right: 0;
    color: rgb(51, 51, 51);
    display: none;
}

.item-category .item-content .buy-item:hover i {
    display: block;
}

.popular-item .item-category .item-content .buy-item img {
    cursor: pointer;
    width: 100%;
}

.popular-item .item-category .item-content .buy-item .btn-cart {
    text-align: center;
    position: relative;

}

.popular-item .item-category .item-content .buy-item .btn-cart .btn-hover {
    outline: none;
    border: none;
    padding: 16px;
    width: 100%;
    color: white;
    background: red;
    font-weight: normal;
    cursor: pointer;
    position: absolute;
    bottom: 0;
    left: 0;
    /* display: none; */
    visibility: hidden;
    /* transition: all .4s ease-out 0s; */

}

/* hover */
.item-category .item-content .buy-item:hover .btn-cart .btn-hover {
    /* display: block; */
    visibility: visible;
}

.popular-item .btn-view {
    text-align: center;
    margin-top: 65px;


}

.item-category .item-content .buy-item h2 {
    color: rgb(68, 68, 68);
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 12px;
}

.item-category .item-content .buy-item p {
    color: #ff2020;
    font-size: 18px;
    font-weight: 600;
}

.popular-item .btn-view button {
    background: #ff2020;
    color: #fff;
    outline: none;
    border: none;
    padding: 20px;
    width: 220px;
    cursor: pointer;
    transition: color 300ms;
    position: relative;
    transform: translateZ(0);
    backface-visibility: hidden;
    overflow: hidden;
    margin-bottom: 100px;
}

.popular-item .btn-view button:hover {
    color: #fff;
}

.popular-item .btn-view button::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgb(74, 74, 75);
    transform: scaleX(0);
    transform-origin: 0%;
    transition-property: transform;
    transition: 300ms ease-out;
}

.popular-item .btn-view button:hover::before {
    transform: scaleX(1);
}

/* End Popular item */

/* Start Watch of Choice */
.watch-us {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.watch-us .content-watch-us h2 {
    color: #000;
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 40px;
}

.watch-us .us2 {
    margin-left: 7%;
}

.watch-us .content-watch-us p {
    margin-bottom: 50px;
    width: 70%;
    line-height: 1.8;
}

.watch-us .content-watch-us .btn-us {
    background: #ff2020;
    color: #fff;
    outline: none;
    border: none;
    padding: 20px;
    width: 220px;
    cursor: pointer;
    transition: color 300ms;
    position: relative;
    transform: translateZ(0);
    backface-visibility: hidden;
    overflow: hidden;
    margin-bottom: 100px;
}

.watch-us .content-watch-us .btn-us::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgb(74, 74, 75);
    transform: scaleX(0);
    transform-origin: 0%;
    transition-property: transform;
    transition: 300ms ease-out;
}

.watch-us .content-watch-us .btn-us:hover::before {
    transform: scaleX(1);
}

/* .watch-us .img-watch-us{

} */

/* .watch-us .img-watch-us img{

} */

/* End Watch of Choice */

/* Start features */
.features {
    width: 90%;
    margin: auto;
    background-color: #ea0000;
    height: 100%;
    display: flex;
    justify-content: space-between;
    color: #fff;
    margin-bottom: 100px;
    border-radius: 20px;
    opacity: 0.95;
}

.features .features-content {
    padding: 30px;
}

.features .features-content h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
    font-family: "Roboto", sans-serif;
}

.features .features-content p {
    line-height: 1.8;
    width: 85%;
}

/* End features */

/* Start footer */
.footer {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
}

.footer .footer-content {
    color: #868c98;
}

.footer .footer-content p {
    width: 80%;
    line-height: 2.4;
}

.footer .footer-list-item {
    width: calc(90% / 2);
}

.footer .footer-list-item h3 {
    display: inline;
    color: #000;
    font-size: 20px;
    margin-bottom: 29px;
    font-weight: 500;
    text-transform: capitalize;
    font-family: "Roboto", sans-serif;
}

.footer .footer-list-item ul {
    list-style: none;
    padding: 0;
}

.footer .footer-list-item ul li {
    margin-bottom: 15px;
    color: black;
}

.footer .footer-list-item ul li a {
    color: #868c98;
    font-weight: 300;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
}

.footer .footer-list-item ul li a:hover {
    color: #ff2020;
    margin-left: 10px;
}

/* End footer */

/* Start social icons */
.social-icons {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.social-icons .copyright p {
    color: #888888;
    font-weight: 300;
    font-size: 16px;
    line-height: 2;
    margin-bottom: 20px;
}

.social-icons .copyright p i {
    color: #ff2020;
}

.social-icons .copyright p>a {
    text-decoration: none;
    color: #ff2020;
}

/* .social-icons .sfont-icon {} */

.social-icons .sfont-icon a {
    color: black;
}

.social-icons .sfont-icon a i {
    color: #222222;
    font-size: 20px;
    padding: 5px;
    margin-top: 20px;
    line-height: 0.9;

}

.social-icons .sfont-icon a i:hover {
    transform: rotateY(180deg);
    color: #ff2020;
    transition: all 0.6s ease-in-out;
}

/* End social icons */