*{
     margin: 0; 
     padding: 0; 
     box-sizing: border-box; 
}

html,body{
     width:100% ; 
     height:100% ; 
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar {
    width: 12px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #D62929;
}

main{
    background-color: #000000;
    overflow-x: hidden;
    overflow-y: auto;
   
}

@font-face {
    font-family: "sfpro";
    src: url("../font/SFPRODISPLAYBOLD.woff2") format("woff2");
}

@font-face {
    font-family: "sf";
    src: url("../font/SFPRODISPLAYREGULAR.woff2") format("woff2");
}

:root {
    --head: "sfpro";
    --para: "sf";
    --color1: #232323;
        --color2: #fff;
        --color3: #9bdc28;
        --transitionDuration: 1s;
        --span-color: red;
}
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.box1{  
    background-color: #fff;
    border-radius: 20px;
    padding: 20px;
}



.left-box{
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgb(255, 0, 0);
}

.left-box img{
    width: 40%;
    border-radius: 50%;
}

.middle-box h1{
    font-size: 20px;
    font-weight: 400;
    font-family: var(--head);
}
.middle-box p{
    font-size: 35px;
    font-weight: 600;
    font-family: var(--para);
}

.right-box{
     display: flex; 
    justify-content: center;
    align-items: center;
    border-left: 1px solid rgb(255, 0, 0);
}

.right-box img{
    width: 70%;
    border-radius: 20px 20px 20px 20px ;
}

.box2-heading h1{
  font-size: 2.5vw;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
font-family: var(--head);
}
.p{
    width: 100%;
     display: flex; 
    justify-content: center;
    align-items: center; 
}
.p p{
    text-align: center;
    width: 80%;
    color: #fff;
    font-family: var(--para);
}
 
.products h1{
    color: #fff;
    font-family: var(--head);
    text-transform: uppercase;

    span{
        color: var(--span-color);
    }
}



.product1,
.product2,
.product3 {
     display: flex; 
    justify-content: center;
    align-items: center; 
    margin-top: 20px;
.card {
        background-color: #ffffff;
        color: rgb(255, 0, 0);
        text-transform: uppercase;
        width: 320px;
        height: 450px;
        letter-spacing: 1px;
        border-radius: 20px;
          border: 1px solid rgb(255, 255, 255);
        overflow: hidden;
        position: relative;

        /* Flex */
        display: flex;
        justify-items: center;
        align-items: center;
    }

    /* 'Nike' label in the background */
    .card::before {
        color:rgb(255, 0, 0);
        width: fit-content;
        height: fit-content;
        font-size: 60px;
        font-weight: 900;
        font-style: italic;
        opacity: 15%;
        content: 'DYNATONE';
        position: absolute;
        left: 50%;
        top: 60%;
        transform: translate(-50%, -50%);
    }

    /* Circle */
    .card::after {
        background-color: rgba(255, 0, 0, 0.822);
        width: 400px;
        height: 400px;
        border-radius: 50%;
        z-index: 0;
        /* Transition */
        transition-duration: calc(var(--transitionDuration) / 2);
        transition-property: width, height, transform;
        transition-timing-function: ease-in-out;
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        transform: translate(45%, -45%);
    }

    .card:hover::after {
        width: 500px;
        height: 500px;
        transform: translate(30%, -62%);
        ;
    }

    .card__img {
        width: 105%;
        /* height: 170px; */
        z-index: 1;
        transition: top var(--transitionDuration);
        /* Position */
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .card:hover .card__img {
        top: 55%;
        transform: translate(-50%, -50%) scale(0.9);
    }

    .card__title {
        font-weight: 600;
        transition: top var(--transitionDuration);
        font-family: var(--head);

        /* Position */
        position: absolute;
        left: 50%;
        top: 80%;
        transform: translateX(-50%);
    }

    .card:hover .card__title {
        top: 20%;
        color: #000000;
        z-index: 1;
        font-weight: 700;
        font-family: var(--head);
    }

    .card__content {
        height: 70px;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        opacity: 0;
        transition: top var(--transitionDuration),
        opacity var(--transitionDuration) calc(var(--transitionDuration) / 2);

        /* Position */
        position: absolute;
        left: 50%;
        top: 150%;
        transform: translate(-50%, -50%);

        /* Flex */
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .card:hover .card__content {
        opacity: 100%;
        top: 75%;
    }
    .card__link {
        background-color: red;
        color: var(--color1);
        padding: 10px 15px;
        text-decoration: none;
        font-weight: 700;
        border-radius: 3px;
        transition: top var(--transitionDuration);

        /* Position */
        position: absolute;
        left: 50%;
        top: 250%;
        transform: translate(-50%, -50%);
    }

    .card:hover .card__link {
        top: 88%;
    }

    .card__link:hover {
        background-color: black;
        color: white;
    }   
}









 
/* .item2  {
     display: flex; 
    justify-content: center;
    align-items: center; 
} */

.product4,
.product5,
.product6{
    display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 20px;
.card {
        background-color: #ffffff;
        color: red;
        width: 320px;
        height: 450px;
        letter-spacing: 1px;
        border-radius: 20px;
        border: 1px solid rgb(255, 255, 255);
        overflow: hidden;
        position: relative;

        /* Flex */
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* 'Nike' label in the background */
    .card::before {
        color: rgb(255, 0, 0);
        width: fit-content;
        height: fit-content;
        font-size: 60px;
        font-weight: bold;
        font-style: italic;
        opacity: 15%;
        content: 'DYNATONE';
        position: absolute;
        left: 50%;
        top: 60%;
        transform: translate(-50%, -50%);
    }

    /* Circle */
    .card::after {
        background-color: rgba(255, 0, 0, 0.815);
        width: 400px;
        height: 400px;
        border-radius: 50%;
        z-index: 0;
        /* Transition */
        transition-duration: calc(var(--transitionDuration) / 2);
        transition-property: width, height, transform;
        transition-timing-function: ease-in-out;
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        transform: translate(45%, -45%);
    }

    .card:hover::after {
        width: 500px;
        height: 500px;
        transform: translate(30%, -62%);
        ;
    }

        .card__img {
            width: 100%;
            /* height: 170px; */
            z-index: 1;
            transition: top var(--transitionDuration);
            /* Position */
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
        }
    
        .card:hover .card__img {
            top: 55%;
            transform: translate(-50%, -50%) scale(0.9);
        }

        .card__title {
            font-weight: 600;
            transition: top var(--transitionDuration);
            font-family: var(--head);
    
            /* Position */
            position: absolute;
            left: 50%;
            top: 80%;
            transform: translateX(-50%);
        }
    
        .card:hover .card__title {
            top: 20%;
            color: #000000;
            z-index: 1;
            font-weight: 700;
            font-family: var(--head);
        }

    .card__content {
        height: 70px;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        opacity: 0;
        transition: top var(--transitionDuration),
            opacity var(--transitionDuration) calc(var(--transitionDuration) / 2);

        /* Position */
        position: absolute;
        left: 50%;
        top: 150%;
        transform: translate(-50%, -50%);

        /* Flex */
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .card:hover .card__content {
        opacity: 100%;
        top: 75%;
    }


    .card__link {
        background-color: red;
        color: var(--color1);
        padding: 10px 15px;
        text-decoration: none;
        font-weight: 600;
        border-radius: 3px;
        transition: top var(--transitionDuration);

        /* Position */
        position: absolute;
        left: 50%;
        top: 250%;
        transform: translate(-50%, -50%);
    }

    .card:hover .card__link {
        top: 88%;
    }

    .card__link:hover {
        background-color: rgb(0, 0, 0);
        color: #ffffff;
    }
}


/* .img-section{
    width: 100%;
    height: 100%;
}

.img-section img{
    width: 100%;
    height: 40vh;
} */

.new-arrival h1{
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    font-family: var(--head);
}

/* .img{
   
} */

.img1 img{
    width: 100%;
    border-radius: 30px;
    border: 1px solid white;
}
.img2 img{
    width: 100%;
    border-radius: 30px;
    border: 1px solid white;
}
.img3 img{
    width: 100%;
    border-radius: 30px;
    border: 1px solid white;
}


.end-page {
    background-color: #ff1a1a;
    height: 10vh;
}

.last{
     display: flex; 
    justify-content: space-between;
    align-items: center; 
}

.cta{
    font-size: 40px;
    padding: 0 50px;
     display: flex; 
    justify-content: start;
    gap: 40px;
    align-items: center; 
}
.cta a{
    text-decoration: none;
    color: #fff;
}
.faecbook{
    color: #fff;
    
}
.ri-facebook-circle-fill {
    opacity: 0.9;
}
.ri-facebook-circle-fill:hover{
    opacity: 1;
    color: rgb(0, 0, 0);
}
.insta{
    color: #fff;
    
}
.ri-instagram-fill {
    opacity: 0.9;
}
.ri-instagram-fill:hover{
    opacity: 1;
    color: rgb(0, 0, 0);
}

.btn {
    display: inline-block;
    background: rgb(0, 0, 0);
    color: white;
    font: inherit;
    border: 0;
    outline: 0;
    padding: 5px;
    transition: all 200ms ease-in;
    cursor: pointer;

    &--primary {
        background: rgb(0, 0, 0);
        color: white;
        box-shadow: 0 0 10px 2px rgba(0, 0, 0, .1);
        border-radius: 2px;
        padding: 12px 36px;
    }

    &--inside {
        margin-left: -96px;
    }
}



.form {
    &__field {
        width: 360px;
        background: #fff;
        color: white;
        font: inherit;
        box-shadow: 0 6px 10px 0 rgba(230, 6, 6, 0.1);
        border: 0;
        outline: 0;
        padding: 30px 22px;
    }
}



@media screen and (max-width: 600px){
    .box1 {
            /* width: 100%; */
            background-color: #fff;
            border-radius: 20px;
            padding: 20px;
        }

        .img2 img{
            margin: 20PX 0;
        }
}

/* ---------------------------------------------------about page--------------------------------------------------------------- */
h1 {
    font-family: var(--head);
    text-transform: uppercase;

    span {
        color: #E93937;
    }
}

.about-company p {
    font-family: var(--para);
    font-size: 22px;
    text-align: justify !important;
}

.our-team img {
    width: 100%;
    height: 100%;
}

.product-quality p {
    font-family: var(--para);
    font-size: 22px;
    text-align: justify !important;
}

.content-side {
    display: flex;
    align-items: center;
}

.content p {
    width: 70%;
    text-align: justify;
}

.img-side img {
    width: 100%;
}