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

img {
    width: 100%;
}

/* custom property */
:root {
    /* font colors */
    --font-color-1: #3a3a3a;
    --font-color-2: #18191f;
    --font-color-3: #6c6c6c;
    --font-color-4: #fb8200;

    /* button color */
    --btn-color: #e01c6d;

    /* background & shadow color */
    --secondary-bg: #0a0826;
    --shadow-color: #00000020;
}


/* fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.roboto-bold {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.inter-bold {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.inter-medium {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.roboto-thin {
    font-family: "Roboto", sans-serif;
    font-weight: 200;
    font-style: normal;
}


/* shared style */
.hidden {
    display: none;
}

.flex {
    display: flex;
}

.just-between {
    justify-content: space-between;
}

.just-evenly {
    justify-content: space-evenly;
}

.just-around {
    justify-content: space-around;
}

.just-end {
    justify-content: end;
}

.m-center {
    margin: 0 auto;
}

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

.center-x {
    justify-content: center;
}

.center-y {
    align-content: center;
}

.btn {
    padding: 1.5rem 2.1rem;
    background-color: var(--btn-color);
    border: 1px solid var(--btn-color);

    color: white;
    font-size: 1.5rem;

    cursor: pointer;
    transition: box-shadow 0.5s ease-in-out 0s, color 0.5s ease-in-out 0s, background-color 0.5s ease-in-out 0s;
}

.btn:hover {
    background-color: #00000005;
    color: var(--btn-color);
    box-shadow: 0.5rem 0.5rem 2rem #e01c6d30;
    /* transition: 0.5s; */
}


/* CSS starts here */
body {
    background-color: white;
}

/* navbar css */
.navbar {
    /* width: 100%; */
    padding-top: 6rem;
    padding-left: 5%;
    padding-right: 8%;
}

.menu-bar {
    display: none;
}

.nav-company-name {
    font-size: 2.5rem;
    color: var(--font-color-1);
}

.menu {
    width: 40%;
}

.menu-tag {
    list-style: none;
}

.menu-tag a {
    text-decoration: none;
    color: var(--font-color-1);
    font-size: 1.5rem;
}

/* navbar css end */


/* hero section css */
.hero-section {
    margin-top: 50px;
}

.hero-container {
    width: 80%;
}

.hero-title-box {
    width: 55%;
    padding-right: 20px;
}

.hero-title {
    margin-bottom: 2rem;

    font-size: 4rem;
    line-height: auto;
    color: var(--font-color-1);
}

.hero-description {
    margin-right: 6rem;
    margin-bottom: 3rem;

    font-size: 1.5rem;
    color: var(--font-color-1);
}

.btn-rounded {
    border-radius: 2.6rem;
}

.hero-img-box {
    height: 500px;
    width: 500px;

    background-image: url("../assets/images/Circle\ design.svg");
    background-repeat: no-repeat;
    background-position: bottom;
}

/* hero section css end */


/* brand section css */
.brand-logos {
    width: 75%;
    margin-top: 6.25rem;
    padding: 1rem 1rem;
    border-top: 1px solid #00000020;
    border-bottom: 1px solid #00000020;

    flex-direction: row;
    flex-wrap: wrap;
    gap: 4.5rem;
}

.brand-logo {
    width: 8rem;
}

/* brand section css end */


/* popular card section css */
.popular-collection {
    margin-top: 10rem;
}

.popular-title {
    font-size: 2.8rem;
    color: var(--font-color-1);
}

.popular-card-container {
    width: 75%;
}

.popular-cards {
    /* width: 75%; */
    margin-top: 6.25rem;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.popular-card {
    padding: 2rem;
    border-radius: 0.5rem;

    box-shadow: 0.5rem 0.5rem 2.75rem #00000020;
}

.popular-image-box {
    border-radius: 0.8rem;
}

.card-title {
    margin-top: 1.25rem;

    font-size: 2.5rem;
    color: var(--font-color-2);
}

.card-price-tag {
    margin-top: 1.25rem;

    font-size: 2rem;
    color: var(--font-color-2);
}

.card-rating-tag {
    margin-top: 1.2rem;

    font-size: 1rem;
    color: var(--font-color-4);
}

.card-description {
    margin-top: 1rem;

    font-size: 1rem;
    color: var(--font-color-3);
}

.see-more-btn {
    margin-top: 3rem;
    border: none;
    background: #00000001;

    text-align: end;
    font-size: 1.8rem;
    color: var(--btn-color);

    cursor: pointer;
}

/* popular card section css end */


/* join now section css */
.join-now-section {
    margin-top: 10rem;
}

.join-now-container {
    width: 80%;
    gap: 4rem;
}

.join-now-image-box {
    width: 40%;
}

.join-now-box {
    width: 55%;
    /* height: auto; */
}

.join-now-title {
    margin-bottom: 2rem;

    font-size: 3rem;
    color: var(--font-color-1);
}

.join-now-description {
    margin-bottom: 2.5rem;

    font-size: 1.5rem;
    color: var(--font-color-3);
}

.btn-angular {
    padding: 1rem 1.9rem;
    border-radius: 0.2rem;
    font-size: 1.5rem;
}

/* join now section css end */


/* footer section css */
.footer-section {
    margin-top: 6rem;
    padding: 6rem;
    background-color: var(--secondary-bg);
}

.footer-title {
    margin-bottom: 1.5rem;

    font-size: 2rem;
    color: whitesmoke;
}

.footer-description {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: whitesmoke;
}

.footer-logo-box {
    margin-top: 2rem;
    width: 15rem;
}

.footer-logo-box li {
    list-style: none;
}

.footer-logo-box li a {
    text-decoration: none;
    font-size: 2rem;
    color: antiquewhite;
}