body {
    font-family: "Cairo", sans-serif;
    scroll-behavior: smooth;
    direction: ltr;
    padding: 0;
    margin: 0;
    background-color: #0a1628;
    position: relative;
    overflow-x: hidden;
}

/* Custom Webkit Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
::-webkit-scrollbar-track {
    background: #0a1628;
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 209, 47, 0.4);
    border-radius: 10px;
    border: 2px solid #0a1628;
}
::-webkit-scrollbar-thumb:hover {
    background: #FFD12F;
}

.cairo {
    font-family: "Cairo", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "slnt" 0;
}

/* Animated gradient mesh background */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
    background:
        radial-gradient(ellipse 600px 600px at 10% 20%, rgba(15, 40, 68, 0.8) 0%, transparent 70%),
        radial-gradient(ellipse 500px 500px at 80% 10%, rgba(255, 209, 47, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse 400px 400px at 70% 80%, rgba(13, 110, 253, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 350px 350px at 20% 70%, rgba(255, 209, 47, 0.04) 0%, transparent 60%);
    background-color: #0a1628;
}

/* Floating orb 1 */
body::after {
    content: "";
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 209, 47, 0.06) 0%, transparent 70%);
    top: 10%;
    right: -5%;
    z-index: -1;
    animation: floatOrb1 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes floatOrb1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-60px, 80px) scale(1.1); }
    50% { transform: translate(-30px, 150px) scale(0.95); }
    75% { transform: translate(40px, 60px) scale(1.05); }
}

* {
    box-sizing: border-box;
}

:root {
    --main-color: #FFD12F;
    --main-color-2: #0f2844;

}



.title h1 {
    font-family: "Cairo", sans-serif;
    color: #fff;
}

.main-btn a {
    color: #fff;
    background-color: #FFD12F;
    padding: 10px 20px;
    border-radius: 5px;

}

.main-btn a:hover {
    color: #070601;
    background-color: var(--main-color);
}

/* @font-face {
    font-family: aya;
    src: url("../font/Sofia-Regular.ttf");
} */

/* start scroll to top */
.scroll-top {
    background-color: var(--main-color-2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    position: fixed;
    bottom: 10px;
    right: 10px;
    display: none;
}

.top {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scroll-top:hover {
    background-color: black;
    color: white;
}

/* end scroll to top */

/* start navbar */
.navbar-toggler {
    background-color: white;
    color: black;
}

.navbar-toggler-icon {
    /* width: 0; */
    /* height: 0; */
    display: inline;
}

.navbar .navbar-nav .nav-link {
    color: white;
    margin-right: 7px;
}

.navbar-nav .nav-link:hover {
    color: var(--main-color);
}

.navbar-nav li:hover .dropdown-menu {
    display: block;
}

.navbar .dropdown-menu {
    border-bottom: 2px solid var(--main-color);
    padding-bottom: 20px;
}

.dropdown-item:hover {
    color: var(--main-color);
    background-color: white;
}

.navbar .Mens,
.navbar .Ice {
    width: 450px;
}

.dropdown2 .nav-link {
    color: black !important;
}

.dropdown2 .nav-link:hover {
    color: var(--main-color) !important;
}

.dropdown-menu1 {
    display: none;
}

.dropdown2:hover .dropdown-menu1 {
    display: block;
    position: absolute;
    right: 150px;
    bottom: 0px;
    background-color: white;
    box-shadow: 0 0 10px gray;
}

.person .log-icon {
    margin-right: 18px;
}

.person .reg-icon {
    margin-right: 12px;
}

.dropdown2 .icon {
    display: inline-block;
    width: 25px;
    height: 20px;
    margin-left: 10px;
}

.drop-cart {
    width: 300px;
    position: absolute;
    right: 0;
    left: auto !important;
}

.name-cart {
    color: var(--main-color) !important;
}

.close-cart {
    margin-left: 20px;
    cursor: pointer;
}

.btn-check-out {
    background-color: black;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid transparent;
}

.btn-view-cart {
    background-color: var(--main-color);
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid transparent;
}

.btn-check-out:hover,
.btn-view-cart:hover {
    background-color: white;
    color: var(--main-color);
    border: 1px solid var(--main-color);
}

/* search card */
.search-card {
    height: 150px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -180px;
    z-index: 999;
}

.click-search {
    top: -25px;
    transition: 0.5s ease;
}

.search-card input {
    font-size: 30px;
    border: none;
    border-bottom: 1px solid gainsboro;
}

.search-card input:focus {
    outline: none;
}

.search-card button {
    background-color: white;
    border: none;
}

.search-card button:hover {
    color: var(--main-color);
}

.search-card .close {
    cursor: pointer;
}

.search-card .close:hover {
    color: var(--main-color);
}

.navbar-nav {
    margin-left: 0;
}

@media (max-width: 1200px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0px;
    }
}

.collapse {
    margin-left: 0;
}

@media (max-width:992px) {
    .navbar-right {
        display: flex;
        flex-direction: row;
        margin-left: 0;
    }

    .navbar-right li {
        margin-right: 20px;
    }
}

@media (max-width:768px) {
    .navbar .Headgear {
        width: 300px;
    }
}

@media (max-width: 1200px) {
    .nav-one {
        margin-left: 0;
    }
}

/* end navbar */

/* start landing */
.land {
    background-color: #0f2843;
    /* border-radius: 50px; */
    width: 100%;
    height: 500px;
}

.content-land {
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 80%;
    padding-left: 150px;
    animation-name: slideContent;
    animation-duration: 0.4s;
    animation-timing-function: linear;
    animation-fill-mode: backwards;
    animation-delay: 1s;
}

@keyframes slideContent {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
}

/* @media (max-width: 992px) {
    .content-land {
        padding-left: 50px;
    }
} */

@media (max-width:768px) {
    .content-land {
        padding: 50px;
        text-align: center;
    }
}

/*
@media (max-width:576px) {
    .content-land {
        display: none;
    }
} */

.content-land h2 {
    font-family: "Cairo", sans-serif;
}

.main-btn {
    margin-left: 50px;
}

.content-land p {
    font-size: 15px;
}

.image-land img {
    width: 560px;
    height: 760px;
    margin-top: -100px;
}

.image-land {
    animation-name: slideImage;
    animation-duration: 0.4s;
    animation-timing-function: linear;
    animation-fill-mode: backwards;
    animation-delay: .6s;
}

@keyframes slideImage {
    0% {
        opacity: 0;
        transform: translatey(-50px);
    }
}

/* end landing */

/* start products */
.effect {
    margin-bottom: -2px;
}

.products .card {
    border: none;
    background-color: #F0F6FC;
    width: 220px;
    height: 220px;
    /* border-radius: 50%; */
    overflow: hidden;
}

.products .card:hover {
    background-color: #E5E6E7;
    color: white;
}

@media (max-width: 768px) {
    .products .card {
        background-color: transparent;
    }

    .products .card:hover {
        border: none;
    }
}

.card a {
    color: black;
    font-weight: 600;
}

.products .card:hover a {
    color: var(--main-color);
}

.products .image-card {
    width: 100%;
    height: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
    transition: transform 1s ease;
}

.products .card:hover .image-card {
    transform: rotateY(360deg);
}

.products .image-card img {
    width: 60%;
    height: 70%;
}

.products .owl-carousel .owl-prev {
    left: -35px;
}

.products .owl-carousel .owl-next {
    right: -30px;
}

@media (max-width: 576px) {
    .products .owl-carousel .owl-prev {
        left: -15px;
    }

    .products .owl-carousel .owl-next {
        right: -15px;
    }
}

.products .owl-carousel .owl-prev,
.products .owl-carousel .owl-next {
    position: absolute;
    top: 70px;
}

.products .owl-carousel .owl-prev span,
.products .owl-carousel .owl-next span {
    font-size: 60px;
    color: var(--main-color);
}

.products .owl-carousel .owl-nav button.owl-prev:hover,
.products .owl-carousel .owl-nav button.owl-next:hover {
    background-color: transparent;
}

/* end products */

/* strat featured */
.featured-list li {
    margin: 0 10px;
    background-color: white;
    color: black;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
}

.featured-list .active {
    background-color: var(--main-color);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
}

.featured-card {
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 25px rgb(92, 101, 108);
}

/* .featured-card:hover {
    box-shadow: 0 5px 25px rgb(1 1 1 / 15%);
} */

.featured-card h6 {
    color: #fff;
}

.featured-card h6:hover {
    color: var(--main-color);
}

.price {
    color: var(--main-color);
    font-weight: 700;
}

.star-icon svg {
    color: orange;
}

.featured-card .img2 {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
}

.featured-card:hover .img2 {
    display: block;
}

.icon-image {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    right: 0;
    display: none;
}

.featured-card:hover .icon-image {
    display: flex;
}

.featured-card:hover .button-eye {
    animation-name: animation-icon;
    animation-duration: 0.4s;
    animation-timing-function: linear;
    animation-fill-mode: backwards;
    animation-delay: .3s;
}

.featured-card:hover .button-heart {
    animation-name: animation-icon1;
    animation-duration: 0.4s;
    animation-timing-function: linear;
    animation-fill-mode: backwards;
    animation-delay: .6s;
}

.featured-card:hover .button-cart {
    animation-name: animation-icon2;
    animation-duration: 0.4s;
    animation-timing-function: linear;
    animation-fill-mode: backwards;
    animation-delay: .9s;
}

@keyframes animation-icon {
    0% {
        opacity: 0;
        transform: translatey(-50px);
    }
}

@keyframes animation-icon1 {
    0% {
        opacity: 0;
        transform: translatey(-50px);
    }
}

@keyframes animation-icon2 {
    0% {
        opacity: 0;
        transform: translatey(-50px);
    }
}

.icon-image span {
    width: 40px;
    height: 40px;
    background-color: black;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.icon-image span:hover {
    background-color: gray;
}

.button-heart.active {
    color: red;
}

.featured-card:hover .icon-image {
    top: 0;
}

/* end featured */

/* start client */
.client {
    width: 900px;
    margin-top: 100px;
    margin-bottom: 40px;
    position: relative;
}

.client .owl-carousel {
    border-radius: 10px;
    padding: 30px 0;
}

@media (max-width: 992px) {
    .client {
        width: 700px;
    }
}

@media (max-width:768px) {
    .client {
        width: 600px;
    }
}

@media (max-width:669px) {
    .client {
        width: 500px;
    }
}

@media (max-width:576px) {
    .client {
        width: 338px;
    }
}

.image-client {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid var(--main-color);
    margin-top: 5px;
}

.card-client .information p {
    margin: 10px 40px;
    max-width: 500px;
}

.card-client .information span {
    color: var(--main-color);
}

.client .owl-prev,
.client .owl-next {
    display: none !important;
}

/* end client */

/* start arrival */
.arrival .owl-carousel .featured-card .img2 {
    display: none;
}

.arrival .owl-carousel .featured-card:hover .img2 {
    display: block;
}

.arrival .owl-carousel .owl-nav button.owl-prev:hover,
.arrival .owl-carousel .owl-nav button.owl-next:hover {
    background-color: transparent;
    color: black;
}

.arrival {
    position: relative;
}

.arrival .owl-carousel .owl-nav button.owl-prev,
.arrival .owl-carousel .owl-nav button.owl-next {
    /* border-radius: 50%; */
    font-size: 50px;
    color: var(--main-color);
    position: absolute;
    top: -90px;
}

.arrival .owl-carousel .owl-nav button.owl-prev {
    right: 70px;
}

.arrival .owl-carousel .owl-nav button.owl-next {
    right: 20px;
}

/* end arrival */

/* start offer */
.card-offer1 {
    background-color: #FFD731;
    border-radius: 10px;
    overflow: hidden;
}

.card-offer1:hover .image-offer img {
    transform: scale(1.1);
}

.image-offer img {
    width: 300px;
    height: 300px;
    margin-bottom: -25px;
    transition: 0.5s ease;
}

.offer-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: black;
}

.offer-btn {
    margin-left: 25px;
}

.offer-btn a {
    background-color: var(--main-color);
    color: white;
}

.offer-btn a:hover {
    color: black;
}

.card-offer2 {
    background-color: #1B8753;
    border-radius: 10px;
    overflow: hidden;
}

.card-offer2:hover .image-offer img {
    transform: scale(1.1);
}

/* end offer */

/* start blog */
.blog {
    padding-bottom: 60px;
}

.card-blog {
    box-shadow: 0 5px 25px rgb(1 1 1 / 15%);
    margin-bottom: 40px;
    border-radius: 5px;
}

.card-blog h4 {
    color: var(--main-color);
}

.btn-blog a {
    color: var(--main-color);
    font-size: 15px;
}

.btn-blog a:hover {
    color: black;
}

/* end blog */

/* start menufacture */
.menufacture .image-card {
    margin: 5px 20px 5px 5px;
    border-radius: 10px;
}

.menufacture .image-card:hover {
    box-shadow: 0 5px 25px rgb(1 1 1 / 10%);

}

.menufacture .owl-prev,
.menufacture .owl-next {
    display: none !important;
}

/* end menufacture */

/* start subscribe */
.subscribe {
    background-color: #00000080;
    color: #fff;
}

.subscribe .email {
    border: none;
    border-bottom: 1px solid #fff;
    color: #fff;
}

.subscribe .email:focus {
    outline: none;
}

.subscribe ::placeholder {
    color: #fff;
}

.subscribe .btn:hover {
    background-color: #fff;
    color: white;
}

.subscribe .btn {
    background-color: var(--main-color-2);
    color: white;


}

/* start footer */
.footer .icon a {
    color: white;
}

.footer .icon a:hover {
    color: var(--main-color);
}

.footer li a {
    color: white;
}

.footer li a:hover {
    color: var(--main-color);
}

.footer h6 {
    color: #FFD12F;
}

.footer .email {
    color: white;
}

.footer .email:hover {
    color: var(--main-color);
}

.copyright .content {
    font-size: small;
}

/* end footer */

/* /////////////////////////web page detail/////////////////////////// */

/* landing detail */
.landing-detail {
    background-color: var(--main-color-2);
}

.landing-detail .content a {
    color: white;
}

.landing-detail .content a:hover {
    color: #FFD12F;
}

/* start gallery */
.gallery .master-image {
    border: 1px solid #ccc;
    border-radius: 5px;
    position: relative;
}

.gallery img {
    width: 100%;
    border-radius: 5px;
}

.gallery .thumbnails {
    overflow: hidden;
}

.gallery .thumbnails img {
    float: left;
    cursor: pointer;
    border: 1px solid #bbb;
    opacity: 0.5;
}

.gallery .thumbnails img:last-child {
    margin-right: 0 !important;
}

.gallery .thumbnails .selected {
    border: 2px solid var(--main-color);
    opacity: 1;
}

/* end gallery */

/* start details */
.type-product {
    font-size: 15px;
}

.incr-decr-number .plus,
.incr-decr-number .minus {
    border: none;
    width: 35px;
    height: 35px;
    font-size: 20px;
    border-radius: 4px;
}

.incr-decr-number .number {
    border: 1px solid #DDDDDD;
    background-color: transparent;
    width: 35px;
    height: 35px;
    cursor: default;
    position: relative;
    top: -2px;
    border-radius: 4px;
}

.btn-cart {
    background-color: black;
    padding: 5px 15px;
    border-radius: 5px;
    cursor: pointer;
}

.btn-cart:hover {
    background-color: black;
}

.btn-cart a {
    color: white;
}

.button-heart {
    background-color: black;
    color: white;
    width: 40px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.button-heart:hover {
    background-color: gray;
}

.color div {
    width: 15px;
    height: 15px;
    cursor: pointer;
}

.color .active {
    outline: 3px solid white;
    box-shadow: 5px 5px 10px gray;
}

.color .color-one {
    background-color: brown;
}

.color .color-two {
    background-color: black;
}

.color .color-three {
    background-color: #FF324D;
}

.size li {
    /* width: 40px; */
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #DDDDDD;
    margin: 0 5px;
    cursor: pointer;
    padding: 10px;
}

.size li.active {
    background-color: var(--main-color);
    color: white;
    border: none;
}

.icon-media .fa-facebook-f {
    color: #1877f2;
}

.icon-media .fa-facebook-f:hover,
.icon-media .fa-twitter:hover,
.icon-media .fa-google-plus-g:hover,
.icon-media .fa-youtube:hover {
    color: var(--main-color);
}

.icon-media .fa-twitter {
    color: #1da1f2;
}

.icon-media .fa-google-plus-g {
    color: #dd4b39;
}

.icon-media .fa-youtube {
    color: #ff0000;
}

/* end details */

/* start describtion */
.tabs-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #bbb;
}

.tabs-list li {
    padding: 5px 15px;
    display: inline-block;
    cursor: pointer;
    font-weight: 500;
    position: relative;
    top: 1px;
}

@media (max-width: 466px) {
    .tabs-list li {
        display: flex;
        flex-direction: column;
        text-align: center;
    }
}

.tabs-list li:hover {
    color: var(--main-color);
}

.tabs-list .show {
    color: var(--main-color);
    border-bottom: 2px solid var(--main-color);
}

.content-list>div:not(:first-child) {
    display: none;
}

.content-list .content-one {
    font-size: 18px;
}

.star {
    color: orange;
}

.write-review {
    display: flex;
    flex-direction: column;
}

.star-area {
    display: flex;
    justify-content: flex-start;
}

.star-area input {
    display: none;
}

.star-area label {
    font-size: 20px;
    margin: 3px;
    color: gainsboro;
    float: right;
    transition: all 0.3s ease;
    cursor: pointer;
}

.star-area input:checked~label {
    color: orange;
}

.write-review .review {
    border: 1px solid #DDDDDD;
    border-radius: 5px;
}

.write-review textarea {
    height: 150px;
}

.write-review .review:focus {
    border: 1px solid #99c5f1;
    outline: none;
}

.btn-submit {
    background-color: var(--main-color-2);
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
}

.btn-submit:hover {
    background-color: black;
}

/* end describtion */

/* /////////////////////////web page all-blog/////////////////////////// */

.image-blog {
    overflow: hidden;
}

.image-blog img {
    transition: 0.5s ease;
}

.card-blog:hover img {
    transform: scale(1.1);
}

/* /////////////////////////web page blog/////////////////////////// */
.details-blog img {
    border-radius: 5px;
}

.content-blog {
    text-align: justify;
}

.comment {
    border: 1px solid #DDDDDD;
    border-radius: 5px;
}

.text-comment textarea {
    height: 200px;
}

.comment:focus {
    border: 1px solid var(--main-color);
    outline: none;
}

.btn-comment {
    background-color: var(--main-color);
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
}

.btn-comment:hover {
    background-color: black;
}

.profile {
    display: flex;
    justify-content: space-between;
}

.profile a {
    color: black;
}

.profile a:hover {
    color: var(--main-color);
}

/* ////////////////////////////////web page login & register////////////////// */
.area-login,
.area-account {
    width: 500px;
    min-height: 600px;
    background-color: white;
    padding: 20px 40px;
    box-shadow: 0 5px 25px rgb(1 1 1 / 15%);
}

.form-register label,
.form-login label {
    color: gray;
}

.area-forget {
    width: 500px;
    height: 400px;
    background-color: white;
    padding: 40px;
    box-shadow: 0 5px 25px rgb(1 1 1 / 15%);
}

.login .container,
.register .container,
.forget-pass .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.area-login input {
    padding: 15px;
    border: 1px solid gainsboro;
}

.area-account input,
.area-forget input {
    padding: 10px;
    border: 1px solid gainsboro;
}

.area-login input:focus,
.area-account input:focus,
.area-forget input:focus {
    border: 1px solid var(--main-color);
    outline: none;
}

.area-login .forget {
    color: gray;
}

.form-check {
    padding-left: 10px;
}

.btn-login,
.btn-register {
    background-color: var(--main-color);
    padding: 15px;
    border: none;
    color: white;
    border-radius: 5px;
}

.btn-login:hover,
.btn-register:hover {
    background-color: black;
}

.area-login .test,
.area-account .test {
    display: inline-block;
    width: 44.5%;
    border: 1px solid gainsboro;
}

.facebook-accou {
    background-color: #3B5998;
}

.google-accou {
    background-color: #18252F;
}

.area-account .facebook-accou,
.area-login .facebook-accou,
.area-account .google-accou,
.area-login .google-accou {
    width: 240px;
    height: 40px;
    color: white;
    margin: 20px 5px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s ease;
}

.area-login .facebook-accou:hover,
.area-account .facebook-accou:hover,
.area-login .google-accou:hover,
.area-account .google-accou:hover {
    color: white;
    opacity: 0.9;
}

.area-login a,
.area-account a {
    color: black;
}

.area-login a:hover,
.area-account a:hover {
    color: #000;
}

.form-check-input:checked {
    border: none;
    outline: none;
}

.policy {
    cursor: pointer;
    font-weight: bold;
    background-color: transparent;
    border: none;
}

.policy:hover {
    color: var(--main-color);
}

/* ////////////////////////////////web page forget password////////////////// */

.area-forget {
    padding: 80px 50px 100px 50px;
}

.form-forget label {
    color: gray;
}

.forget-pass input {
    border: 1px solid gainsboro;
    padding: 10px;
}

.forget-pass input:focus {
    border: 1px solid var(--main-color);
    outline: none;
}

.forget-pass .btn-bac-cont a {
    background-color: var(--main-color);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.forget-pass .btn-bac-cont a:hover {
    background-color: black;
}

/* ////////////////////////////////web page about////////////////// */

.content-about {
    animation-name: aboutContent;
    animation-duration: 0.4s;
    animation-timing-function: linear;
    animation-fill-mode: backwards;
}

@keyframes aboutContent {
    0% {
        transform: translateX(50px);
    }

    100% {
        transform: translateX(0px);
    }
}

.image-about {
    animation-name: aboutImage;
    animation-duration: 0.9s;
    animation-timing-function: linear;
    animation-fill-mode: backwards;
}

@keyframes aboutImage {
    0% {
        transform: translatex(-50px);
    }

    100% {
        transform: translateX(0px);
    }
}

.card-team {
    position: relative;
}

.icon-team {
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    right: 0;
    display: none;
}

.card-team:hover .icon-team {
    display: flex;
}

.icon-team a {
    width: 40px;
    height: 40px;
    background-color: black;
    color: white;
    margin: 7px 10px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-team a:hover {
    background-color: var(--main-color);
}

.card-team:hover .instgram {
    animation-name: animation-facebook;
    animation-duration: 0.4s;
    animation-timing-function: linear;
    animation-fill-mode: backwards;
}

.card-team:hover .twitter {
    animation-name: animation-facebook;
    animation-duration: 0.4s;
    animation-timing-function: linear;
    animation-fill-mode: backwards;
    animation-delay: .3s;
}

.card-team:hover .facebook {
    animation-name: animation-facebook;
    animation-duration: 0.4s;
    animation-timing-function: linear;
    animation-fill-mode: backwards;
    animation-delay: 0.6s;
}

@keyframes animation-facebook {
    0% {
        opacity: 0;
        transform: translatey(-50px);
    }
}

/* ////////////////////////////////web page contact us////////////////// */

.card-contact {
    box-shadow: 0 5px 35px rgb(1 1 1 / 10%);
    text-align: center;
    border-radius: 5px;
}

.icon-contact svg {
    font-size: 30px;
    border-radius: 50%;
    padding: 20px;
    border: 1px solid var(--main-color-2);
}

.icon-contact {
    margin-top: 10px;
    background-color: white;
    color: var(--main-color-2);
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-contact:hover .icon-contact svg {
    background-color: var(--main-color-2);
    color: white;
}

.form-contact input {
    border: 1px solid gainsboro;
}

.form-contact input:focus,
.form-contact textarea:focus {
    border: 1px solid var(--main-color);
    outline: none;
}

.form-contact textarea {
    border: 1px solid gainsboro;
    height: 100px;
}

.maps {
    margin-top: 50px;
    height: 250px;
}

/* ////////////////////////////////web page product1////////////////// */
.link-category {
    padding-left: 0;
}

.link-category li a {
    color: black;
    margin-bottom: 10px;
}

.link-category li:hover a {
    color: var(--main-color);
}

.price-input {
    width: 100%;
    display: flex;
}

.price-input input {
    width: 20%;
    height: 30px;
    outline: none;
    margin-left: 12px;
    margin-right: 10px;
    border: 1px solid gainsboro;
    /* border: none; */
    text-align: center;
    -moz-appearance: none;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

.price-input .separator {
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}

.slider {
    margin-top: 15px;
    height: 5px;
    border-radius: 5px;
    background-color: #ddd;
    position: relative;
}

.slider .progress {
    height: 5px;
    background-color: var(--main-color);
    border-radius: 5px;
    position: absolute;
    left: 10.5%;
    right: 40.5%;
}

.range-input {
    display: flex;
    position: relative;
}

.range-input input {
    position: absolute;
    top: -5px;
    height: 5px;
    width: 100%;
    background-color: transparent;
    pointer-events: none;
    -webkit-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
    height: 15px;
    width: 15px;
    border-radius: 50%;
    pointer-events: auto;
    -webkit-appearance: none;
    background-color: white;
    cursor: pointer;
    box-shadow: 0 0 10px rgb(0 0 0 / 20%);
}

.form-check-input {
    width: 20px;
    height: 20px;
    border: 2px solid gainsboro;
}

.form-check-input:checked {
    background-color: var(--main-color);
    box-shadow: none;
}

.form-check-input[type=checkbox] {
    border-radius: 0;
}

.box-size {
    width: 30px;
    height: 30px;
    font-size: 13px;
    border: 1px solid gainsboro;
    cursor: pointer;
    margin: 0 5px;
    text-align: center;
    padding-top: 5px;
}

#xs:checked~label.one,
#s:checked~label.two,
#m:checked~label.three,
#l:checked~label.four,
#xl:checked~label.five {
    background-color: var(--main-color);
    border: none;
    color: white;
}

.custom-check {
    display: none;
}

.box-color {
    width: 20px;
    height: 20px;
    margin: 0 5px;
    cursor: pointer;
}

#c1:checked~label.one,
#c2:checked~label.two,
#c3:checked~label.three,
#c4:checked~label.four,
#c5:checked~label.five {
    outline: 3px solid white;
    box-shadow: 5px 5px 10px black;
}

.check-product {
    height: 40px;
    padding: 0 10px;
    border: 1px solid gray;
}

.check-product:focus {
    border: 1px solid var(--main-color);
}

.number-page {
    display: flex;
    justify-content: center;
}

.number-page div {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 5px;
    cursor: pointer;
    border-radius: 5px;
}

.number-page div.active {
    background-color: var(--main-color);
    color: white;
    border: none;
}

/* ////////////////////////////////web page shopping cart & whishlist page////////////////// */

.cart .container {
    overflow-y: auto;
}

.img-shop-cart {
    width: 100px;
    height: 110px;
}

.name-product {
    height: 110px;
    display: flex;
    align-items: center;
}

.incr-decr-number .inc,
.incr-decr-number .dec {
    border: none;
    width: 35px;
    height: 35px;
    font-size: 20px;
}

.incr-decr-number .input-field {
    border: 1px solid #DDDDDD;
    background-color: transparent;
    width: 35px;
    height: 35px;
    position: relative;
    top: -4px;
    text-align: center;
}

.incr-decr-number .input-field:focus {
    outline: none;
}

.name-product a {
    color: black;
}

.name-product a:hover {
    color: var(--main-color);
}

.close-shop-cart,
.close-shop-whish {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    cursor: pointer;
    font-size: 20px;
    margin: 0 20px;
}

.close-shop-cart:hover,
.close-shop-whish:hover {
    background-color: #000;
    color: white;

}

.coupon {
    border-radius: 5px;
    border: 1px solid gainsboro;
    padding: 10px;
}

.coupon:focus {
    outline: none;
    border: 1px solid #0F2844;
}

.btn-coupon {
    border: none;
    background-color: #0F2844;
    border-radius: 5px;
    color: white;
    margin: 0 10px;
    width: 100px;
}

.btn-coupon:hover {
    background-color: #0F2844;
}

.total {
    padding: 10px 20px;
}

.stock-cart {
    background-color: #28A745;
    color: white;
    font-size: 12px;
    padding: 15px 15px;
    text-align: center;
}

.btn-cart-wish {
    background-color: black;
    width: 130px;
    height: 30px;
    border-radius: 5px;
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-cart-wish a {
    color: white;
}

.btn-cart-wish:hover {
    background-color: black;
}

.btn-cart-wish:hover a {
    color: white;
}

@media (max-width:768px) {
    .stock-cart {
        font-size: 9px;
    }
}

/* ////////////////////////////////web page shopping faq page////////////////// */

.btn-faq {
    background-color: white;
    border: none;
    font-weight: bold;
}

.btn-faq span {
    display: inline-block;
    margin-right: auto;
}

.btn-faq:hover {
    color: var(--main-color);
}

.active .faq-icon {
    transform: rotate(180deg);
    transition: 0.5 ease;
}

.collapse {
    margin-left: 0;
    margin-bottom: 20px;
}

/* ////////////////////////////////web my account page////////////////// */
table tr.active {
    background-color: #0F2844;
    color: white;
}

table tr {
    cursor: pointer;
}

.icon-account {
    display: inline-flex;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    justify-content: center;
    align-items: center;
}

.btn-view {
    width: 70px;
    height: 35px;
    border: none;
    background-color: var(--main-color);
    color: white;
}

.btn-view:hover {
    background-color: black;
}

.billing div,
.billing button {
    margin-left: 20px;
}

.billing div {
    color: gray;
}

.account-details span {
    color: var(--main-color);
}

.account-details .account {
    border: 1px solid gainsboro;
}

.account-details .account:focus {
    border: 1px solid var(--main-color);
    outline: none;
}

.btn-save {
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ////////////////////////////////web check out page////////////////// */

.progress-line {
    display: flex;
    margin: 20px 0;
}

.progress-line .step {
    width: 100%;
    text-align: center;
    position: relative;
}

.progress-line .step p {
    font-size: 23px;
    font-weight: bold;
    color: gray;
    transition: 0.2s;
}

.progress-line .step p.active {
    color: var(--main-color);
}

.progress-line .step .check {
    position: absolute;
    left: 48.5%;
    top: 64%;
    font-size: 15px;
    display: none;
}

.progress-line .step .check.active {
    display: block;
    color: white;
}

.progress-line .step .bullet.active span {
    display: none;
}

.progress-line .step .bullet {
    width: 25px;
    height: 25px;
    display: inline-block;
    background-color: gainsboro;
    color: white;
    border-radius: 50%;
    position: relative;
    transition: 0.2s;
}

.progress-line .step .bullet.active {
    border-color: var(--main-color);
    background-color: var(--main-color);
}

.progress-line .step .bullet::before,
.progress-line .step .bullet::after {
    content: "";
    width: 520px;
    height: 3px;
    background-color: gainsboro;
    position: absolute;
    bottom: 11px;
    right: -525px;
}

.progress-line .step:last-child .bullet::before,
.progress-line .step:last-child .bullet::after {
    display: none;
}

@media (max-width:1200px) {

    .progress-line .step .bullet::before,
    .progress-line .step .bullet::after {
        width: 430px;
        right: -435px;
    }
}

@media (max-width:992px) {

    .progress-line .step .bullet::before,
    .progress-line .step .bullet::after {
        width: 310px;
        right: -315px;
    }

    .progress-line .step .check {
        left: 48%;
    }
}

@media (max-width:768px) {

    .progress-line .step .bullet::before,
    .progress-line .step .bullet::after {
        width: 220px;
        right: -225px;
    }

    .progress-line .step .check {
        left: 47.5%;
    }
}

@media (max-width:550px) {

    .progress-line .step .bullet::before,
    .progress-line .step .bullet::after {
        width: 190px;
        right: -195px;
    }

    .progress-line .step .check {
        left: 47%;
    }
}

.progress-line .step .bullet.active::after {
    background-color: var(--main-color);
    transform: scalex(0);
    transform-origin: left;
    animation: animateProgress 0.3s linear forwards;
}

@keyframes animateProgress {
    100% {
        transform: scaleX(1);
    }
}

.form-outer {
    overflow: hidden;
}

.form-outer .form {
    display: flex;
    width: 400%;
}

.form-outer .form .page {
    width: 25%;
    transition: margin-left 0.3s ease-in-out;
}

.form-outer .form .page .field {
    margin: 10px 0;
}

.page .field input {
    border: 1px solid gainsboro;
    border-radius: 5px;
}

.page .field input:focus {
    border: 1px solid var(--main-color);
    outline: none;
}

.modal-dialog.edit-shipping {
    max-width: 700px;
}

.page .field .submit {
    width: 150px;
    height: 40px;
    border: none;
    background-color: var(--main-color);
    color: white;
    border-radius: 5px;
}

label.box .name-addre,
label.box-bill .name-addre {
    cursor: pointer;
    display: flex;
    align-items: center;
}

#one:checked~label.first .name-addre,
#two:checked~label.second .name-addre,
#one-bill:checked~label.first .name-addre,
#two-bill:checked~label.second .name-addre {
    color: var(--main-color);
}

label.box .circle,
label.box-bill .circle {
    width: 20px;
    height: 20px;
    background-color: #ccc;
    display: inline-block;
    border-radius: 50%;
    margin-right: 7px;
    border: 5px solid transparent;
    box-shadow: inset -4px -4px 10px rgba(0, 0, 0, 0.2);
}

#one:checked~label.first .circle,
#two:checked~label.second .circle,
#one-bill:checked~label.first .circle,
#two-bill:checked~label.second .circle {
    border-color: var(--main-color);
    background-color: #fff;
}

.full-name {
    font-size: 17px;
}

.address {
    margin-left: 25px;
    font-size: 17px;
}

.custom-radio {
    display: none;
}

.btn-close:focus {
    box-shadow: none;
}

.field .form-label span {
    color: var(--main-color);
}

.page .field .submit:hover {
    background-color: black;
}

.page .prev {
    width: 70px;
    height: 35px;
    border: 2px solid var(--main-color);
    background-color: white;
    color: var(--main-color);
    border-radius: 5px;
    margin-top: 10px;
}

.page .prev:hover {
    background-color: black;
    color: white;
    border: none;
}

.page .next,
.submit-pay {
    width: 70px;
    height: 35px;
    border: none;
    background-color: black;
    color: white;
    margin-top: 10px;
}

.submit-pay {
    width: 130px;
    border-radius: 5px;
}

.page .next:hover,
.submit-pay:hover {
    background-color: var(--main-color);
}

.radio-paym {
    display: flex;
    flex-direction: column;
}

.radio-paym div {
    margin-bottom: 5px;
}

.radio-paym label {
    margin-top: 3px;
}

.form-paym {
    display: none;
}

.order-check {
    font-size: 70px;
    color: var(--main-color);
}

.your-order,
.shipping-check,
.payment {
    background-color: #F7F8FB;
    padding: 30px;
}
