* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

.universal {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #F0F2F0;
    background: -webkit-linear-gradient(to right, #000C40, #F0F2F0);
    background: linear-gradient(to right, #000C40, #F0F2F0);
}

.container-home {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;

}

.navbar {
    width: 100%;
    height: 80px;
    background: transparent;
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    color: white;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    position: fixed;
    z-index: 1000;
}

.navbar h1 {
    font-size: 25px;
    width: 50px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.navbar h1 i {
    font-size: 25px;
    margin-top: 3px;

}

.sub-navbar {
    display: flex;
    width: 100%;
    gap: 40px;
    justify-content: center;
    align-items: center;
    margin-left: 300px;

}

.sub-navbar a {
    text-decoration: none;
    color: white;
    font-size: 15px;


}

.sub-navbar a {
    position: relative;
    display: inline-block;
    color: rgb(2, 15, 58);
    /* Neon color */
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Zoom on hover */
.sub-navbar a:hover {
    transform: scale(1.05);
}

/* Underline effect */
.sub-navbar a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 2px;
    background: rgb(2, 15, 58);
    transition: width 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

/* Trigger underline on hover */
.sub-navbar a:hover::after {
    width: 100%;
    opacity: 1;
}



.input-check {
    display: none;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.navbar a {
    text-decoration: none;
    color: white;
    font-size: 15px;
}



.navbar h1 {
    font-size: 20px;

    color: white;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}


.loginbutton {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;

    margin-left: 180px;
}


.loginbutton button {
    height: 30px;
    width: 80px;
    border-radius: 5px;
    margin-left: 20px;
    margin-bottom: 5px;
    border: 5px solid rgb(2, 15, 58);
    background-color: rgb(2, 15, 58);
    color: rgb(252, 251, 253);
    font-weight: bold;

}


.home {
    width: 100%;
    height: 700px;
    display: flex;
    justify-content: space-between;
    padding-top: 50px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: rgb(252, 251, 253);
    position: relative;

}

.home-left {
    width: 50%;
    height: 100%;
    padding-left: 30px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.home-left h1 {
    font-size: 40px;
    margin-bottom: 10px;

}

.home-left h1 {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(90deg, #000C40, #F0F2F0, #000C40);
    background-size: 200% auto;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    animation: gradientMove 6s ease-in-out infinite;

}

/* Gradient animation */
@keyframes gradientMove {
    0% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }

    100% {
        background-position: 0% center;
    }
}


.home-left h3,
p {
    margin-bottom: 10px;
}

.home-right {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: drop-shadow(0 0.2rem 0.25rem rgba(0, 0, 0, 0.2));
    transition: 1s ease-out;

}

.home-img {
    animation: float 3s ease-in-out infinite;
    transition: transform 0.3s ease;
    display: inline-block;
}

/* Float Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

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

/* Hover Effect: Stop animation + Zoom */
.home-img:hover {
    animation-play-state: paused;
    transform: scale(1.05);
}



.check-box {
    display: none;
}

label {
    display: none;
}

.products-container {
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    align-items: center;
    padding: 20px;
}


.adidas,
.nike,
.puma {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0px;
}

.adidas-logo,
.nike-logo,
.puma-logo {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.adidas-logo img,
.nike-logo img,
.puma-logo img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}


.adidas-shoes,
.nike-shoes,
.puma-shoes {
    width: 90%;
    height: 270px;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 20px;
}


.adidas-shoes div,
.nike-shoes div,
.puma-shoes div {
    min-width: 220px;
    height: 200px;
    border: #F0F2F0 solid 2px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}


.adidas-shoes img,
.nike-shoes img,
.puma-shoes img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}



.adidas-shoes::-webkit-scrollbar,
.nike-shoes::-webkit-scrollbar,
.puma-shoes::-webkit-scrollbar {
    width: 0px;
}

.adidas-shoes div:hover,
.nike-shoes div:hover,
.puma-shoes div:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
    border: 0px;
    padding: 0px;
    box-shadow: none;
}

.adidas-shoes div:hover img,
.nike-shoes div:hover img,
.puma-shoes div:hover img {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.about {
    height: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;

}

.about-us {
    display: flex;
    height: 300px;
    width: 100%;
    justify-content: space-evenly;
    align-items: center;
    border: #F0F2F0 solid 2px;

}

.about-left {
    width: 70%;
    height: 100%;
    display: flex;
    border: #F0F2F0 solid 2px;
    align-items: center;
    flex-direction: column;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: rgb(252, 251, 253);
    justify-content: center;
    padding: 20px;
    gap: 20px;
}

.about-right {
    width: 30%;
    height: 100%;
    display: flex;
    border: #F0F2F0 solid 2px;
    align-items: center;
}

.about-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.services {
    height: 300px;
    width: 100%;
    display: flex;
    border-bottom: solid 2px #F0F2F0;

}

.services-left {
    width: 30%;
    height: 100%;
    display: flex;
    border: #F0F2F0 solid 2px;
    align-items: center;
}

.services-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.services-right {
    width: 70%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: rgb(252, 251, 253);
    justify-content: center;
    padding: 20px;
    gap: 20px;

}



*,
::before,
::after {
    margin: 0;
}

@property --angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: true;
}

.reviews {
    animation: floatReview 4s ease-in-out infinite;
    transition: transform 0.3s ease;
    display: inline-block;
}

/* Floating Animation */
@keyframes floatReview {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.reviews img {

    max-width: 100%;
}

input[type="radio"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}



.cards {
    --img-w: 200px;
    --duration: 300ms;
    --img-easing: cubic-bezier(0.34, 1.56, 0.64, 1);
    width: min(100% - 4rem, 800px);
    margin-inline: auto;
    display: grid;
    margin-top: 150px;
    margin-bottom: 100px;
    counter-reset: my-counter;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: rgb(252, 251, 253);
}

.card {
    --cards-grid-cols: auto;
    --cards-grid-rows: var(--img-w) auto;
    --cards-grid-gap: 2rem;
    --cards-footer-justify: center;

    grid-area: 1/1;
    display: grid;
    place-items: center;
    grid-template-columns: var(--cards-grid-cols);
    grid-template-rows: var(--cards-grid-rows);
    gap: var(--cards-grid-gap);

}

@media (600px < width) {
    .card {
        --cards-grid-cols: var(--img-w) auto;
        --cards-grid-rows: auto;
        --cards-grid-gap: 4rem;
        --cards-footer-justify: start;
    }
}


.card-img {
    width: 220px;
    height: 220px;
    aspect-ratio: 1 / 1;
    rotate: var(--angle, 0deg);
    border-radius: 10px;
    border: 3px solid #FFF;
    overflow: hidden;
    transform-origin: center;
    object-fit: cover;
    box-shadow: 0 0 5px 3px rgba(0 0 0 / .05);
}



input:nth-of-type(1):checked+.card~.card>.card-img {
    animation: straighten-img-1 calc(var(--duration) * 2) forwards;
    animation-timing-function: var(--img-easing);
}

.card:has(~input:nth-of-type(2):checked)>.card-img,
input:nth-of-type(2):checked+.card~.card>.card-img {
    animation: straighten-img-2 calc(var(--duration) * 2) forwards;
    animation-timing-function: var(--img-easing);
}

.card:has(~input:nth-of-type(3):checked)>.card-img,
input:nth-of-type(3):checked+.card~.card>.card-img {
    animation: straighten-img-3 calc(var(--duration) * 2) forwards;
    animation-timing-function: var(--img-easing);
}

.card:has(~input:nth-of-type(4):checked)>.card-img,
input:nth-of-type(4):checked+.card~.card>.card-img {
    animation: straighten-img-4 calc(var(--duration) * 2) forwards;
    animation-timing-function: var(--img-easing);
}

.card:has(~input:nth-of-type(5):checked)>.card-img,
input:nth-of-type(5):checked+.card~.card>.card-img {
    animation: straighten-img-5 calc(var(--duration) * 2) forwards;
    animation-timing-function: var(--img-easing);
}

.card:has(~input:nth-of-type(6):checked)>.card-img,
input:nth-of-type(6):checked+.card~.card>.card-img {
    animation: straighten-img-6 calc(var(--duration) * 2) forwards;
    animation-timing-function: var(--img-easing);
}

.card:has(~input:nth-of-type(7):checked)>.card-img,
input:nth-of-type(7):checked+.card~.card>.card-img {
    animation: straighten-img-7 calc(var(--duration) * 2) forwards;
    animation-timing-function: var(--img-easing);
}

/* as CSS can't remove animations, we change the animation according to which checkbox is checked  - all animations are the same (would be simpler with SCSS) */
@keyframes straighten-img-1 {
    50% {
        --angle: 0deg;
    }
}

@keyframes straighten-img-2 {
    50% {
        --angle: 0deg;
    }
}

@keyframes straighten-img-3 {
    50% {
        --angle: 0deg;
    }
}

@keyframes straighten-img-4 {
    50% {
        --angle: 0deg;
    }
}

@keyframes straighten-img-5 {
    50% {
        --angle: 0deg;
    }
}

@keyframes straighten-img-6 {
    50% {
        --angle: 0deg;
    }
}

@keyframes straighten-img-7 {
    50% {
        --angle: 0deg;
    }
}


/* stacking order - these are updated according to which card is selected */
.card {
    z-index: -1;
}

input:checked+.card {
    z-index: 10 !important;
}

/* next card checked - place behind */
.card:has(+input:checked) {
    z-index: 9;
}

/* next card +1 checked - place behind */
.card:has(+input + .card + input:checked) {
    z-index: 8;
}

/* next card +2 checked - place behind */
.card:has(+input + .card +input + .card + input:checked) {
    z-index: 7;
}

/* next card +3 checked - place behind */
.card:has(+input + .card +input + .card +input + .card + input:checked) {
    z-index: 6;
}

/* next card +4 checked - place behind */
.card:has(+input + .card +input + .card +input + .card +input + .card + input:checked) {
    z-index: 5;
}

/* next card +5 checked - place behind */
.card:has(+input + .card +input + .card +input +input + .card +input + .card +input + .card + input:checked) {
    z-index: 4;
}

/* next card +6 checked - place behind */
.card:has(+input + .card +input + .card +input + .card +input +input + .card +input + .card +input + .card + input:checked) {
    z-index: 3;
}

.card-data {
    display: grid;
    gap: 1rem;
}

.card-data>.card-num {
    opacity: var(--data-opacity, 0);
    font-size: .8rem;
    color: #666;
}

.card-data>p {
    font-size: 0.9rem;

}

.card-data>h2,
.card-data>p {
    transition: var(--duration) ease-in-out;
    transition-delay: var(--data-delay, 0ms);
    opacity: var(--data-opacity, 0);
    translate: 0 var(--data-y, 20px);
}

.card-data>footer {
    display: flex;
    justify-content: var(--cards-footer-justify);
    gap: 2rem;
}

.card-data>footer label {
    margin-block-start: auto;
    cursor: pointer;
    pointer-events: var(--card-events, none);
    opacity: var(--data-opacity, 0);
    transition: color var(--duration) ease-in-out;
    color: var(--label-clr-txt, #000);
    background-color: var(--label-clr-bg, #EEE);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    aspect-ratio: 1/1;
    display: grid;
    place-content: center;
    transition: background-color 300ms ease-in-out, color 300ms ease-in-out;
}


input:checked:focus-visible+.card>.card-data>footer label,
.card-data>footer label:hover {
    --label-clr-txt: #FFF;
    --label-clr-bg: steelblue;
}

input:checked+.card {
    --data-opacity: 1;
    --data-y: 0;
    --data-delay: var(--duration);
    --card-events: auto;
    transition: z-index;
    transition-delay: 300ms;
    /*z-index: 1;*/
}

input:checked+.card>.card-img {
    animation: reveal-img calc(var(--duration) * 2) forwards;
}

@keyframes reveal-img {
    50% {
        translate: -150% 0;
        --angle: 0deg;
    }
}



.contact {
    height: 600px;
    width: 100%;
    display: flex;


}

.contact-left {
    width: 50%;
    height: 100%;
    padding-left: 30px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: rgb(252, 251, 253);
}

.contact-left h1 {
    font-size: 40px;
    margin-bottom: 20px;
}


.contact-right {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.form {
    width: 600px;
    height: 400px;
    border-radius: 10px;
    background-color: white;
    color: rgb(2, 15, 58);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
    flex-direction: column;
    margin-top: 50px;
    /* transform: perspective(1500px) rotateY(15deg);
  border-radius: 1rem;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
  transition: transform 1s ease 0s;

  &:hover {
    transform: perspective(3000px) rotateY(5deg);
  } */

    transform:
        perspective(750px) translate3d(0px, 0px, -250px) rotateX(27deg) scale(0.9, 0.9);
    border-radius: 20px;
    border: 5px solid #e6e6e6;
    box-shadow: 0 70px 40px -20px rgba(0, 0, 0, 0.2);
    transition: 0.4s ease-in-out transform;

    &:hover {
        transform: translate3d(0px, 0px, -250px);

    }
}

.upper {
    margin-top: 20px;
    display: flex;
    gap: 20px;
}

.name {
    display: inline;
}

.email {
    display: flex;
    flex-direction: column;
}

input {
    width: 180px;
    height: 30px;
    border: 0px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;


}

.lower input {
    width: 380px;
    height: 30px;
}

.lower textarea {
    width: 380px;
    height: 100px;
    border: 0px;
    border-bottom: 1px solid #ccc;
    margin-top: 10px;
}

button {
    width: 100px;
    height: 30px;
    border: 3px solid rgb(2, 15, 58);
    background-color: rgb(2, 15, 58);
    color: white;
    font-weight: bold;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}

img {
    height: 180px;
    width: 180px;
}

.right-img {
    height: 400px;
    width: 200px;
    display: flex;
    justify-content: center;
    position: absolute;
    right: 30px;
    top: 40%;
}

.login-page {
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: transparent;
    backdrop-filter: blur(10px);

}

.login-container {
    width: 300px;
    height: 400px;
    background-color: white;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.box2 {
    width: 250px;
    height: 300px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    margin-right: 30px;
    text-align: center;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;

}

.b2 {
    display: flex;
    justify-content: center;
    color: white;
    gap: 20px;
    margin-top: 10px;
}

.b2 img {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    color: rgb(2, 15, 58);
}

.loghere {
    width: 200px;
    height: 25px;
    background-color: rgb(2, 15, 58);
    color: white;
    border: 0px;
    margin: 20px;
}

.login {
    width: 200px;
    height: 25px;
    background-color: white;
    color: rgb(2, 15, 58);
    border: 0px;
    margin: 10px;

}

.box2 input {
    width: 200px;
    height: 25px;
    border: 0px;
    border-bottom: solid rgb(54, 119, 122);
    color: black;
    background-color: rgb(152, 206, 209);
    margin-bottom: 5px;
}

.box2 h4 {
    margin-top: 10px;
}


.glow-on-hover {
    width: 220px;
    height: 50px;
    border: none;
    outline: none;
    color: #fff;
    background: rgb(2, 15, 58);
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.glow-on-hover:active {
    color: rgb(2, 15, 58);
}

.glow-on-hover:active:after {
    background: transparent;
}

.glow-on-hover:hover:before {
    opacity: 1;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(2, 15, 58);
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 400% 0;
    }

    100% {
        background-position: 0 0;
    }
}



.text {
    color: white;
    font-size: 1.2vw;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

.endcard {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: left;
    padding-top: 30px;
    padding-left: 20px;

    align-items: start;
    background-color: rgb(2, 15, 58);
    color: white;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}


@media screen and (max-width:768px) {
    body {
        max-width: 100%;
    }

    .navbar {
        position: fixed;
    }

    .sub-navbar {
        background: rgba(255, 255, 255, 0.1);
        /* instead of transparent */
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        /* background: transparent; */
        padding-bottom: 80px;
        position: absolute;
        top: 80px;
        display: flex;
        flex-direction: column;
        margin-left: 0px;
        width: 50%;
        height: 600px;
        left: -100%;
        align-items: center;
        justify-content: start;
        padding: 20px;
        transition: all 0.5s ease-in-out;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .sub-navbar a {
        text-align: center;
        margin: 5px 0;

        color: white;
        padding-bottom: 10px;
        text-decoration: none;
        border-bottom: 2px solid rgb(183, 183, 204);
        width: 80%;
    }

    .input-check:checked~.sub-navbar {
        left: 0;
    }

    .hamburger {
        display: block;

    }

    .loginbutton {
        margin: 0;
        position: absolute;
        bottom: 180px;
        right: 37%;
    }

    .home-left {
        flex-wrap: wrap;
        font-size: 13px;


    }

    .home-left h1 {
        text-align: left;
    }

    .home-right {
        object-fit: fill;
        width: 60%;
    }

    .home-img {
        object-fit: fill;
        height: 400px;
        width: 400px;
    }

    .about-left,
    .services-right {
        font-size: 15px;
    }

    .cards {
        padding-left: 10px;
        padding-right: 10px;
        font-size: 15px;

    }

    .contact-left {
        font-size: 13px;
    }

    .contact-left h1 {
        font-size: 25px;
    }

    .form {
        height: 330px;
        width: 370px;
    }

    .form h4 {
        font-size: 15px;
    }

    .form h1 {
        font-size: 20px;
    }

    .name input {
        width: 70px;
        font-size: 10px;

    }

    .email input {
        font-size: 10px;
    }

    .lower input {
        font-size: 10px;
        width: 150px;
    }

    .lower textarea {
        height: 40px;
        width: 150px;
    }

    .lower button {
        margin-bottom: 20px;
        margin-top: 0;
    }

    .right-img {
        height: 180px;
        width: 180px;
        right: 0;
    }

    .endcard {
        font-size: 13px;
        height: 80px;
    }

}

@media screen and (max-width:500px) {
    .universal {
        width: 100%;
        height: 100%;
        margin-right: 0px;
    }

    .navbar {
        width: 100%;


    }

    .sub-navbar {
        column-gap: 10px;
        padding: 20px;
        background-color: navy;
        backdrop-filter: blur(60px);

    }

    .sub-navbar button {
        right: 27%;
    }

    .container-home {
        width: 100%;
    }

    .home-left {
        font-size: 12px;
    }

    .home-left h1 {
        text-align: left;
    }

    .home-left h1 {
        font-size: 25px;
    }

    .glow-on-hover {
        height: 30px;
        width: 150px;
    }

    .home-right {
        width: 50%;
    }

    .home-img {
        height: 200px;
        width: 200px;
    }

    .products-container {
        width: 100%;
    }

    .adidas-logo img,
    .nike-logo img,
    .puma-logo img {
        width: 790px;
        height: 70px;
    }

    .adidas-shoes div,
    .nike-shoes div,
    .puma-shoes div {
        min-width: 100px;
        height: 100px;
    }

    .adidas-shoes img,
    .nike-shoes img,
    .puma-shoes img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 10px;
    }

    .adidas-logo,
    .nike-logo,
    .puma-logo {
        margin-bottom: 20px;
    }

    .adidas-shoes,
    .nike-shoes,
    .puma-shoes {
        width: 90%;
        height: 150px;
    }

    .about {
        height: 400px;
        width: 100%;

    }

    .about-us {

        height: 200px;
    }

    .about-left {
        font-size: 10px;
    }

    .services-right {
        font-size: 10px;
    }

    .cards {
        margin-top: 100px;
        margin-bottom: 0px;
    }

    .card-img {
        width: 150px;
        height: 150px;
    }

    .card-num {
        text-align: center;
    }

    .card-data {
        padding: 15px;
    }

    .card-data p {
        font-size: 13px;
        text-align: center;
    }

    .card-data h2 {
        font-size: 20px;
        text-align: center;
    }

    .contact {
        flex-direction: column;
        margin-top: 100px;
        align-items: center;
    }

    .contact-left {
        text-align: center;
        width: 100%;
        padding-left: 0;
    }

    .contact-right {
        width: 100%;
        height: 300px;
    }

    .form {
        height: 330px;
        width: 370px;
        margin-bottom: 100px;
    }

    .form h4 {
        font-size: 15px;
    }

    .form h1 {
        font-size: 20px;
    }

    .name input {
        width: 70px;
        font-size: 10px;

    }

    .email input {
        font-size: 10px;
    }

    .lower input {
        font-size: 10px;
        width: 150px;
    }

    .lower textarea {
        height: 40px;
        width: 150px;
    }

    .lower button {
        margin-bottom: 20px;
        margin-top: 0;
    }

    .right-img {
        height: 180px;
        width: 180px;
        right: 0;
    }

    .endcard {
        margin-top: 50px;
        font-size: 10px;
    }

}