@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Bona+Nova+SC:ital,wght@0,400;0,700;1,400&family=Onest:wght@100..900&display=swap');

:root {
    --primary-color: #111317;
    --primary-color-light: #1f2125;
    --primary-color-extra-light: #35373b;
    --secondary-color: #f9ac54;
    --secondary-color-dark: #d79447;
    --text-light: #d1d5db;
    --white: #ffffff;
    --max-width: 1200px;
}

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

.section__container {
    max-width: var(--max-width);
    margin: auto;
    padding: 5rem 1rem;
}

.section__header {
    margin-bottom: 1rem;
    font-size: 2.25rem;
    font-weight: 600;
    text-align: center;
    color: var(--white);
}

.section__subheader {
    max-width: 600px;
    margin: auto;
    text-align: center;
    color: var(--text-light);
}

.btn {
    padding: 1rem 2rem;
    outline: none;
    border: none;
    font-size: 13px;
    font-weight: 300 !important;
    color: var(--white);
    background-color: #Be8400;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background-color: var(--secondary-color-dark);
}

img {
    width: 100%;
    display: flex;
}

a {
    text-decoration: none;
}

.bg__blur {
    position: absolute;
    box-shadow: 0 0 1000px 50px var(--secondary-color);
    z-index: -1;
}

body {
    font-family: "Onest";
    background-color: var(--primary-color);
}

nav {
    max-width: var(--max-width);
    margin: auto;
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav__logo {
    max-width: 120px;
}

.nav__links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.link a {
    position: relative;
    padding-bottom: 0.75rem;
    color: var(--white);
}

.link a::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 0;
    left: 0;
    bottom: 0;
    background-color: var(--secondary-color);
    transition: 0.3s;
}

.link a:hover::after {
    width: 50%;
}

.header__container {
    position: relative;
    padding-top: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 2rem;
}

.header__container::before {
    content: "DTC CLUB";
    position: absolute;
    bottom: 5rem;
    right: 20rem;
    font-size: 10rem;
    font-weight: 700;
    line-height: 7rem;
    color: var(--white);
    opacity: 0.05;
    z-index: -1;
}

.header__blur {
    bottom: 5rem;
    right: 0;
}

.header__content h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.header__content h1 {
    margin-bottom: 1rem;
    font-size: 5rem;
    font-weight: 700;
    line-height: 6rem;
    color: var(--white);
}

.header__content h1 span {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px var(--white);
}

.header__content p {
    margin-bottom: 2rem;
    color: var(--text-light);
}

.header__image {
    position: relative;
}

.header__content h3 {
    color: #ba6017;

}

.header__content .in {
    color: white;
}

.header__image::before {
    content: "O";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 40rem;
    font-weight: 400;
    line-height: 20rem;
    color: var(--secondary-color);
    opacity: 0.1;
    z-index: -1;
}

.header__image img {
    max-width: 350px;
    margin: auto;
}

.explore__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.explore__nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.explore__nav span {
    padding: 0 6px;
    font-size: 1.5rem;
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: 100%;
    cursor: pointer;
    transition: 0.3s;
}

.explore__nav span:hover {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.explore__grid {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.explore__card {
    padding: 1rem;
    background-color: var(--primary-color-light);
    border: 2px solid transparent;
    border-radius: 10px;
    transition: 0.3s;
}

.explore__card:hover {
    background-color: var(--primary-color-extra-light);
    border-color: var(--secondary-color);
}

.explore__card span {
    display: inline-block;
    padding: 2px 9px;
    margin-bottom: 1rem;
    font-size: 1.75rem;
    color: var(--white);
    background-color: var(--secondary-color-dark);
    border-radius: 5px;
}

.explore__card h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
}

.explore__card p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.explore__card a {
    color: var(--white);
    transition: 0.3s;
}

.explore__card a:hover {
    color: var(--secondary-color);
}

.class__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.class__image {
    position: relative;
}

.class__image .class__img-1 {
    position: absolute;
    right: 0;
    top: 0;
    max-width: 500px;
    border-radius: 10px;
}

.class__image .class__img-2 {
    position: absolute;
    left: 0;
    bottom: 0;
    max-width: 300px;
    border-radius: 10px;
}

.class__content {
    padding: 2rem 0;
}

.class__content .section__header {
    text-align: left;
    max-width: 400px;
}

.class__content p {
    margin-bottom: 4rem;
    color: var(--text-light);
}

.join__image {
    margin-top: 4rem;
    position: relative;
}

.join__image img {
    border-radius: 10px;
}

.join__grid {
    position: absolute;
    bottom: -5rem;
    width: calc(100% - 4rem);
    padding: 2rem;
    margin: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    background-color: var(--primary-color-light);
    border-radius: 10px;
}

.join__card {
    flex: 1 1 250px;
    display: flex;
    align-items: center;
    gap: 1rem;

}

.join__card span {
    padding: 5px 12px;
    font-size: 1.75rem;
    color: var(--white);
    background-color: var(--secondary-color-dark);
    border-radius: 5px;
}

.folo {
    width: 20%;
    padding: 0%;
    margin-left: 40%;
}

.join__card h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--white);
}

.join__card p {
    color: var(--text-light);
}

.price__grid,
.year {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.price__card {
    padding: 5rem 2rem;
    display: flex;
    flex-direction: column;
    background-color: var(--primary-color-light);
    border: 2px solid transparent;
    border-radius: 10px;
    transition: 0.3s;

}

.price__card:hover {
    background-color: var(--primary-color-extra-light);
    border-color: var(--secondary-color);
}

.price__card__content {
    flex: 1;
    margin-bottom: 2rem;

}

.price__card h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--white);
}

.price__card h3 {
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 600;
    color: var(--white);
    border-bottom: 2px solid var(--white);
}

.price__card p {
    margin-bottom: 0.75rem;
    color: var(--white);
}

.price__card p i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.price__btn {
    color: var(--secondary-color);
    background-color: transparent;
    border: 2px solid var(--secondary-color);
}

.price__btn:hover {
    color: var(--white);
    background-color: var(--secondary-color);
}


.note {
    color: white;
    text-align: center;
}

.no {
    color: red;
}

.review {
    background-color: var(--primary-color-light);
}

.review__container {
    display: flex;
    gap: 2rem;
}

.review__container>span {
    font-size: 6rem;
    color: var(--secondary-color);
    opacity: 0.5;
}

.review__content {
    flex: 1;
}

.review__content h4 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
}

.review__content p {
    max-width: 800px;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.review__rating span {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.review__footer {
    margin-top: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.review__member {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.review__member img {
    max-width: 70px;
    border-radius: 100%;
}

.review__member__details h4 {
    margin-bottom: 0;
}

.review__nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.review__nav span {
    font-size: 2rem;
    color: var(--secondary-color);
    cursor: pointer;
}

.word {
    color: white;
    text-align: center;

}

.howvideo {
    margin: 10%;
    margin-left: 10%;
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
    border-radius: 1px;
}

.videoframe {
    background-color: #ba6017;
    padding: 0.5rem;

}

.waa {
    color: var(--secondary-color);
    background-color: transparent;
    border: 1px solid var(--secondary-color);
    width: 10%;

}

.waa:hover {
    color: var(--white);
    background-color: var(--secondary-color);
}


.swiper {
    width: 600px;
    height: 500px;
}



.footer__container {
    position: relative;
    display: grid;
    grid-template-columns: 400px repeat(3, 1fr);
    gap: 40rem;
}

.footer__blur {
    bottom: 0;
    right: 0;
}

.footer__logo {
    max-width: 130px;

}

.footer__col p {
    margin-bottom: 2rem;
    color: var(--text-light);
}

.footer__socials {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.footer__socials a {
    padding: 5px 10px;
    font-size: 2.25rem;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    border-radius: 100%;
    transition: 0.3s;
}

.footer__socials a:hover {
    color: var(--white);
    background-color: var(--secondary-color);
}

.footer__col h4 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--white);
}

.footer__col>a {
    display: block;
    margin-bottom: 1rem;
    color: var(--text-light);
    transition: 0.3s;
}

.footer__col>a:hover {
    color: var(--secondary-color);
}

.footer__bar {
    max-width: var(--max-width);
    margin: auto;
    padding: 1rem;
    font-size: 0.8rem;
    color: var(--white);

}

a {
    align-items: center;
}

.privacy {
    margin-bottom: 0.75rem;
    color: var(--white);
    text-align: center;
}

.nav__logo2 {
    margin: 1.5rem;
    height: 10rem;
    width: 18rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}


.container {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    background-color: #303134;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(215, 117, 18, 0.752);
}

h2 {
    text-align: center;
    color: #d49712;
}

.form-group {
    margin-bottom: 20px;
    color: #d49712;
}

.btn {
    padding: 1rem 2rem;
    width: 93%;
    outline: none;
    border: none;
    font-size: 13px;
    font-weight: 300 !important;
    color: var(--white);
    background-color: #Be8400;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

label {
    display: block;
    margin-bottom: 5px;
}

input[type="number"] {
    width: 100%;
    padding: 8px;
    font-size: 16px;
    border: 1px solid #e2ae10;
    border-radius: 4px;
    box-sizing: border-box;
}

button {
    width: 100%;
    padding: 10px;
    font-size: 18px;
    color: #fff;
    background-color: #d49712;
    border: none;
    border-radius: 4px;
    cursor: pointer;

}

button:hover {
    background-color: #d76c15;
}

#result {
    margin-top: 20px;
    font-size: 18px;
    color: #d49712;
}


.paym {
    display: contents;
    margin: 1.5rem;
    height: 10rem;
    width: 18rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.payc {
    display: flex;
    margin: 1rem;
    height: 10rem;
    width: 18rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.cry {
    align-content: space-between;
}

.curen {
    text-align: center;

}

.photo {
    display: flex;
    width: 100%;
    padding: 7rem;
    gap: 12rem;
}


.input1 {
    width: 100%;
    padding-left: 2rem;

}

.cont2 {
    padding-left: 23rem;
}

.send {
    color: white;
    text-align: center;
}

.bt22 {
    width: 50%;
}

.navii {
    align-items: center;
}


@media (width < 900px) {
    .nav__links {
        display: none;
    }
}

.header__container {
    grid-template-columns: repeat(1, 1fr);
}

.btn {
    padding: 1rem 2rem;
    width: 93%;
    outline: none;
    border: none;
    font-size: 13px;
    font-weight: 300 !important;
    color: var(--white);
    background-color: #Be8400;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

img {
    width: 70%;
    display: flex;
}

.header__image {
    grid-area: 1/1/2/2;
}



.explore__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.class__container {
    grid-template-columns: repeat(1, 1fr);
}

.class__image {
    min-height: 500px;
}

.price__grid {
    grid-template-columns: repeat(2, 1fr);
}

.review__container {
    gap: 2rem;
}

.footer__container {
    grid-template-columns: 1fr 200px;
}

.waa {
    color: var(--secondary-color);
    background-color: transparent;
    border: 1px solid var(--secondary-color);
    width: 20%;

}

.waa:hover {
    color: var(--white);
    background-color: var(--secondary-color);
}

.footer__bar {
    text-align: center;

}

.curen {
    text-align: center;

}

.photo {
    display: flex;
    width: 100%;
    padding: 1rem;
    gap: 1rem;
}


.send {
    color: white;
    text-align: center;
}

.bt22 {
    width: 70%;
}

@media (width < 600px) {
    .explore__header {
        flex-direction: column;
    }
}

.explore__grid {
    grid-template-columns: repeat(1, 1fr);
}

.join__container {
    margin-bottom: 15rem;
}

.join__grid {
    width: 100%;
    margin: 0;
    bottom: -20rem;
}

.header__image::before {
    content: "O";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 34rem;
    font-weight: 400;
    line-height: 20rem;
    color: var(--secondary-color);
    opacity: 0.1;
    z-index: -1;
}

.price__grid {
    grid-template-columns: repeat(1, 1fr);
}

.review__container {
    flex-direction: column;
    gap: 0;
}

.review__footer {
    flex-direction: column;
}

.footer__container {
    grid-template-columns: 1fr 150px;
}

.waa {
    color: var(--secondary-color);
    background-color: transparent;
    border: 1px solid var(--secondary-color);
    width: 20%;

}

.waa:hover {
    color: var(--white);
    background-color: var(--secondary-color);
}

.footer__bar {
    text-align: center;

}

.down1 {
    display: block;
    margin-left: 6rem;
    width: 14rem;
}

.curen {
    text-align: center;

}

.photo {
    display: flex;
    width: 100%;
    padding: 1rem;
    gap: 1rem;
}

.code {
    display: flex;
    padding: 3rem;
    gap: 3rem;
}

.cont2 {
    padding-left: 0%;
}

.input1 {
    width: 80%;
    padding-left: 1rem;
}

.send {
    color: white;
    text-align: center;
}

.bt22 {
    width: 70%;
}