@import url('https://fonts.googleapis.com/css2?family=Anybody:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

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

body {
    font-family: "Roboto", sans-serif;
    overflow-x: hidden;

}

html {
    overflow-x: hidden;
}



header {
    width: 100vw;
    height: 97px;
    background-color: #212529;

}

.desktop-menu {
    display: flex;
    justify-content: space-around;

}

.desktop-menu h1 {
    margin-top: 30px;
    font-size: 3rem;
    font-weight: 700;
}

.desktop-menu h1 a {
    text-decoration: none;
    color: white;
}

.menus-link {
    display: flex;
    margin-top: 30px;
    gap: 3rem;
}

.menus-link li {
    list-style: none;
}

.menus-link li a {
    text-decoration: none;
    color: white;
    text-align: center;
    font-size: 2rem;
    font-weight: 400;
}

.mobile-menu {
    position: fixed;
    top: 97px;
    left: 0;
    width: 100%;
    background-color: #212529;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.mobile-menu[data-visible="true"] {
    transform: translateX(0);
}

.mobile-menu[data-visible="false"] {
    transform: translateX(-100%);
}

.mobile-menu .menus-links {
    padding: 2rem;
}

.mobile-menu .menus-link {
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.mobile-menu .menus-link li a {
    font-size: 1.5rem;
}

.hamburger {
    display: none;
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger i {
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.hamburger i[data-visible="false"] {
    display: none;
}

.hamburger i[data-visible="false"] {
    display: none;
}

.hamburger i[data-visible="true"] {
    display: block;
}

img {
    max-width: 100%;
}


.hero {
    background: url(https://templatemo.com/templates/templatemo_546_sixteen_clothing/assets/images/about-heading.jpg) center/ cover no-repeat;
    width: 100%;
    height: 455px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;

}

.about {
    text-transform: uppercase;

}

.about-content span {
    font-size: 2rem;
    font-weight: 400;
    color: red;
    margin-left: 3rem;
}

.about-content h1 {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    margin-right: 3rem;

}

.backrounds {
    background-color: black;
    width: 100%;
    max-width: 100vw;
    height: auto;
    padding: 30px 20px;
    overflow-x: hidden;
}

.backround {
    display: flex;
    width: 100%;
    max-width: 70vw;
    margin-inline: auto;
    gap: 30px 0;
    flex-direction: column;
}

.backround .b-title h2 {
    color: white;
    border-bottom: 1px solid #aaa;
    padding-bottom: 10px;
    word-wrap: break-word;
}

.back-content {
    display: flex;
    gap: 30px 20px;
    width: 100%;
}

.back-content .content-image {
    width: 540px;
    max-width: 100%;
    height: auto;
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.back-content .content-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.text-content {
    display: flex;
    flex-direction: column;
    gap: 30px 0;
    margin-top: 30px;
    color: white;
    margin-left: 30px;
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.text-content h3 {
    color: cornflowerblue;
    font-size: 2rem;
    font-weight: 700;
    word-wrap: break-word;
}

.text-content p {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.8;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.text-content p br {
    display: none;
}

.line {
    border: 1px solid #aaa;
}

.socials a i {
    color: white;

    background-color: rgb(67, 67, 82);
    width: fit-content;
    border: none;
    padding: 0.4rem;
    border-radius: 5px;
}

.members {
    background-color: black;
    width: 100vw;
    height: auto;
    padding: 60px 40px;
}

.items {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 1200px;
    margin-inline: auto;
    max-width: 100%;
}

.title-item h2 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
}

.title-item {
    margin-bottom: 20px;
}

.line-item {
    width: 100%;
    border: 1px solid #aaa;
    margin: 20px 0;
}

.main-item {
    display: flex;
    flex-direction: column;
    gap: 60px 0;
    background-color: black;
}

.top-item {
    display: flex;
    gap: 0 20px;
    justify-content: center;
    align-items: flex-start;
}

.top-item .top-image {
    width: 348px;
    max-width: 100%;
    height: auto;
    border: 2px solid #444;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.top-item .top-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(100, 149, 237, 0.3);
}

.top-item .top-image img {
    width: 100%;
    height: auto;
}

.top-content {
    color: white;
    font-size: 1rem;
    text-align: center;
    padding: 15px;
    line-height: 1.6;
}

.top-content h3 {
    color: cornflowerblue;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.top-content span {
    color: red;
    font-size: 1.25rem;
    display: block;
    margin: 10px 0;
}

.buttom-item {
    display: flex;
    flex-direction: row;
    margin-top: 30px;
    gap: 0 20px;
    justify-content: center;
}

.buttom-item .buttom-image {
    width: 348px;
    max-width: 100%;
    height: auto;
    border: 2px solid #444;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.buttom-item .buttom-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(100, 149, 237, 0.3);
}

.buttom-item .buttom-image img {
    width: 100%;
    height: auto;
}

.btn-content {
    color: white;
    text-align: center;
    font-size: 1rem;
    padding: 15px;
    line-height: 1.6;
}

.btn-content h3 {
    color: cornflowerblue;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.btn-content span {
    color: red;
    font-size: 1.25rem;
    display: block;
    margin: 10px 0;
}

#border {
    border: 1px solid #aaa;
}

.products {
    background: url(https://plus.unsplash.com/premium_photo-1664300897489-fd98eee64faf?w=600&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8NXx8bGlicmFyeSUyMGltYWdlfGVufDB8fDB8fHww) center/ cover no-repeat;
    width: 100vw;
    height: auto;
    min-height: 60vh;
    display: flex;
    justify-content: center;
    padding: 60px 40px;
    background-attachment: fixed;
}

.pro-item {
    display: flex;
    gap: 0 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.pro-cards {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 350px;
    max-width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.pro-cards:hover {
    transform: scale(1.05);
}

#prod-card1 {
    background-color: dimgray;
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#prod-card2 {
    background-color: black;
    width: 100%;
    height: auto;
    min-height: 250px;
    padding: 30px 40px;
}

.pro-card1 img {
    margin: 0;
    width: 250px;
    height: auto;
    max-height: 150px;
    object-fit: contain;
}

.pro-card2 {
    color: white;
}

.pro-card2 h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.pro-cards p {
    font-size: 1rem;
    font-weight: 400;
    margin-top: 20px;
    line-height: 1.6;
}

.btn {
    background-color: red;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 10px;
    margin-top: 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: darkred;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

.partners {
    width: 100vw;
    height: auto;
    min-height: 345px;
    background-color: #212529;
    color: white;
    display: flex;
    flex-direction: column;
    padding: 40px;
}

.partner-two {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.partners h2 {
    display: flex;
    justify-content: left;
    width: 60vw;
    max-width: 100%;
    margin-inline: auto;
    color: white;
    border-bottom: 1px solid #aaa;
    padding-bottom: 20px;
    font-size: 2rem;
    margin-bottom: 20px;
}

.partners img {
    width: 300px;
    max-width: 100%;
    height: auto;
    padding: 20px;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    cursor: pointer;
}

.partners img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.line {

    width: 60vw;
    margin-inline: auto;

    color: white;

    border-bottom: 1px solid #aaa;
}

.footer {

    background-color: #2a2a2a;
    color: white;
    font-size: 1.25rem;
    padding: 2rem;
    text-align: center;
}

/* Responsive */

/* Dektop and laptops */
@media(min-width:1025px) and (max-width:1280px) {
    .desktop-menu h1 {
        font-size: 2.5rem;
    }

    .menus-link {
        gap: 2rem;
    }

    .menus-link li a {
        font-size: 1.6rem;
    }

    .backround {
        width: 85vw;
    }

    .back-content {
        gap: 40px;
    }

    .items {
        width: 90vw;
    }

    .top-item {
        gap: 0 30px;
    }

    .buttom-item {
        gap: 0 30px;
    }

    .pro-item {
        gap: 0 30px;
    }
}

/* tablets */
@media (min-width:641px) and (max-width:1024px) {
    .desktop-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu h1 {
        font-size: 2.5rem;
    }

    .mobile-menu .menus-link li a {
        font-size: 1.8rem;
    }

    .hero {
        height: 400px;
    }

    .about-content span {
        font-size: 2rem;
    }

    .about-content h1 {
        font-size: 3rem;
    }

    .backrounds {
        height: auto;
        padding: 50px 30px;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .backround {
        width: 100%;
        max-width: 90vw;
        padding: 0 15px;
    }

    .back-content {
        flex-direction: row;
        gap: 30px;
        align-items: flex-start;
        width: 100%;
    }

    .back-content .content-image {
        width: 45%;
        min-width: 280px;
        max-width: 400px;
        flex-shrink: 0;
    }

    .text-content {
        width: 50%;
        max-width: 100%;
        margin-left: 0;
        padding-right: 15px;
        flex-grow: 1;
    }

    .text-content h3 {
        font-size: 2rem;
        word-wrap: break-word;
    }

    .text-content p {
        font-size: 1.05rem;
        line-height: 1.7;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }

    .members {
        padding: 50px 30px;
    }

    .items {
        width: 90vw;
    }

    .top-item {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
    }

    .top-item .top-image {
        width: 45%;
        min-width: 300px;
    }

    .buttom-item {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
    }

    .buttom-item .buttom-image {
        width: 45%;
        min-width: 300px;
    }

    .products {
        padding: 50px 30px;
    }

    .pro-item {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .pro-cards {
        max-width: 45%;
        min-width: 320px;
    }

    .partners {
        padding: 50px 30px;
    }

    .partner-two {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .partners img {
        max-width: 200px;
    }
}

/* Moblie */
@media(max-width:640px) {
    img {
        max-width: 100%;
    }

    .desktop-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        height: 300px;
    }

    .about-content span {
        font-size: 1.2rem;
    }

    .about-content h1 {
        font-size: 2rem;
    }

    .backrounds {
        padding: 30px 15px;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .backround {
        padding: 0 10px;
        width: 100%;
        max-width: 100%;
    }

    .back-content {
        width: 100%;
        flex-direction: column;
    }

    .back-content .content-image {
        width: 100%;
        max-width: 100%;
        margin-top: 15px;
    }

    .text-content {
        width: 100%;
        margin-left: 0;
        padding: 0;
        gap: 20px;
    }

    .text-content h3 {
        font-size: 1.5rem;
    }

    .text-content p {
        font-size: 0.95rem;
        max-width: 100%;
        padding-right: 5px;
    }

    .socials {
        justify-content: center;
    }

    .members {
        padding: 40px 15px;
    }

    .title-item h2 {
        font-size: 1.6rem;
    }

    .top-item .top-image {
        max-width: 100%;
    }

    .top-item {
        flex-direction: column;
        gap: 20px;
    }

    .buttom-item .buttom-image {
        max-width: 100%;
    }

    .buttom-item {
        flex-direction: column;
        gap: 20px;
    }

    .top-content h3,
    .btn-content h3 {
        font-size: 1.3rem;
    }

    .top-content p,
    .btn-content p {
        font-size: 0.9rem;
    }

    .products {
        padding: 40px 15px;
        flex-direction: column;
        gap: 20px;
    }

    .pro-cards {
        max-width: 100%;
    }

    .pro-item {
        flex-direction: column;
        gap: 20px;
    }

    .pro-card2 {
        padding: 25px 15px;
    }

    .pro-card2 h2 {
        font-size: 1.3rem;
    }

    .pro-cards p {
        font-size: 0.9rem;
    }

    .partners {
        padding: 30px 15px;
    }

    .partners h2 {
        font-size: 1.5rem;
    }

    .partner-two {
        flex-direction: column;
    }

    .partners img {
        max-width: 200px;
    }

    .mobile-menu h1 {
        font-size: 1.8rem;
    }

    .mobile-menu .menus-link li a {
        font-size: 1.3rem;
    }

    .footer {
        font-size: 0.95rem;
        padding: 1.5rem;
    }
}