/*=========================== Google fonts =============================*/

@font-face {
    font-family: 'Gilroy';
    src: url('../font/Gilroy-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../font/Gilroy-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../font/Gilroy-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



/*========================== Basic css ============================*/
html {
    font-size: 0.57vw;
}

:root {
    scroll-behavior: unset;

    /* color */
    --white: #ffffff;
    --primery: #34383c;
}

html,
body,
header,
footer,
main,
nav,
section,
div,
menu,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
button {
    margin: 0;
    padding: 0;
}

ol,
ul {
    list-style: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

a:visited,
a:hover,
a:active {
    text-decoration: none;
}

img {
    max-width: 100%;
}

/* body */
body {
    font-family: 'Gilroy';
    font-size: 1.6rem;
    font-weight: 400;
    background: var(--white);
    color: var(--primery);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Gilroy';
}

/* backt to top */
.scrolltop_btn {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    background: var(--primery);
    justify-content: center;
    text-align: center;
    position: fixed;
    right: 3rem;
    bottom: 3rem;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.scrolltop_btn img {
    width: 7rem;
}

.scrolltop_btn.show {
    opacity: 1;
    visibility: visible;
}

/* title */
.title_lg {
    font-size: 4rem;
    font-weight: 700;
    line-height: 0.75;
    color: var(--primery);
    letter-spacing: 1.5rem;
    text-transform: uppercase;
}

.title_sm {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--primery);
    letter-spacing: 1.5rem;
    text-transform: uppercase;
}

/* text */
.text_base {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.87;
    color: var(--primery);
    letter-spacing: 0.74rem;
}



/* button */
.button {
    font-family: 'Gilroy';
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.87;
    color: var(--primery);
    letter-spacing: 0.8rem;
    position: relative;
    text-transform: uppercase;
}

.line {
    width: 9.8rem;
    height: 0.2rem;
    background: var(--primery);
    display: inline-block;
}

/*====================== header section ========================*/

.header_section {
    width: 100%;
    display: block;
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1024;
    padding: 3.2rem 3rem;
    transition: 300ms;
}

.header_section .hamburgar {
    background: transparent;
    border: none;
    padding: 0;
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header_section .hamburgar img {
    width: 5rem;
}

.header_section .hamburgar img:last-child {
    width: 2.3rem;
    display: none;
}


.header_section .hamburgar.show img:first-child {
    display: none;
}

.header_section .hamburgar.show img:last-child {
    display: block;
}


.dropdown-menu {
    width: 42.4rem;
    border: none;
    box-shadow: none;
    padding: 3.3rem 7.5rem;
    border-radius: 0;
    transform: translate(-3rem, 8rem) !important;
}

.dropdown-menu li:not(:last-child) {
    padding-bottom: 2rem;
}

.dropdown-menu a {
    font-weight: 600;
    font-style: Semibold;
    font-size: 1.6rem;
    line-height: 1.8;
    letter-spacing: 0.7rem;
    text-align: center;
    text-transform: uppercase;
}

.dropdown-menu a:hover {
    text-decoration: underline;
}

.brand-logo img {
    max-width: 30rem;
    width: 100%;
}

.header_icon ul {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 2.7rem;
}

.header_icon {
    gap: 2.7rem;
}

.header_icon li a img {
    width: 3rem;
}

/* Sticky Header */

#header.sticky {
    background: #fff;
}

#header.sticky .hamburgar img {
    filter: brightness(0) saturate(100%) invert(0%) sepia(4%) saturate(0%) hue-rotate(324deg) brightness(102%) contrast(105%);
}

#header.sticky .brand-logo img {
    filter: brightness(0) saturate(100%) invert(0%) sepia(4%) saturate(0%) hue-rotate(324deg) brightness(102%) contrast(105%);
}

#header.sticky .header_icon li a img {
    filter: brightness(0) saturate(100%) invert(0%) sepia(4%) saturate(0%) hue-rotate(324deg) brightness(102%) contrast(105%);
}


/*================= hero_section ===================*/

.hero_section {
    position: relative;
}

.hero_wrapper {
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}

.hero_img {
    width: 100%;
}

.hero_wrapper p {
    font-size: 2.4rem;
    line-height: 1.30;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 1rem;
    text-transform: uppercase;
    padding-top: 16rem;
}

.hero_wrapper .line {
    background: var(--white);
}

/*================= About_section ===================*/
.about_section {
    padding: 8.6rem 3rem 7.3rem 3rem;
}

.about_wrapper {
    text-align: center;
}

.about_wrapper p {
    margin-bottom: 8rem;
}

.about_wrapper .row {
    --bs-gutter-x: 1.7rem;
    --bs-gutter-y: 1.7rem;
    padding-bottom: 9rem;
}

.about_item {
    overflow: hidden;
}

.about_item img {
    width: 100%;
    transition: 300ms;
}

.about_item:hover img {
    transform: scale(1.1);
}

.about_button span {
    display: block;
}

/*================= Service_section ===================*/
.service_section {
    text-align: center;
    padding-left: 3rem;
    padding-right: 3rem;
}

.service_wrapper {
    border-bottom: 0.1rem solid #34383c66;
    padding: 7.3rem 0 10rem;

}

.service_title {
    padding-bottom: 8rem;
}

.service_title h3 {
    padding-bottom: 3.2rem;
}

.service_title p {
    max-width: 80rem;
    margin: 0 auto;
}

.service_section .row {
    --bs-gutter-x: 1.7rem;
    --bs-gutter-y: 1.7rem;
    padding-bottom: 9rem;
}

.service_item {
    overflow: hidden;
}

.service_item img {
    width: 100%;
    transition: 300ms;
}

.service_item:hover img {
    transform: scale(1.1);
}

.service_button span {
    display: block;
}

/*================= Footer_section ===================*/
.footer_section {
    padding: 8.2rem 0 3.3rem;
}

.footer_logo {
    text-align: center;
    padding-bottom: 8rem;
}

.footer_logo img {
    max-width: 33.2rem;
    width: 100%;
}

.footer_section .row {
    --bs-gutter-y: 3.2rem;
}

.footer_list h5 {
    color: var(--primery);
    padding-bottom: 4rem;
    letter-spacing: 1rem;
}

.footer_list a {
    text-transform: uppercase;
    color: rgba(52, 56, 60, 0.5);
}

.footer_list a:hover {
    text-decoration: underline;
    color: rgba(52, 56, 60, 1);
}

.footer_list li:not(:last-child) {
    padding-bottom: 1rem;
}

.footer_bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 9.6rem;
}

.footer_bottom p {
    font-size: 1.2rem;
    line-height: 1.87;
    font-weight: 400;
    color: var(--primery);
    letter-spacing: 50%;
    letter-spacing: 0.6rem;
    text-transform: uppercase;
}

.footer_bottom a {
    font-size: 1.2rem;
    line-height: 1.87;
    font-weight: 400;
    color: var(--primery);
    letter-spacing: 0.6rem;
    text-decoration: underline;
    text-transform: uppercase;
}

/* ================Prodect page codes================== */

/* ==============Prodact section================= */

.prodect_section {
    margin-top: 13rem;
}

.prodect_wrapper {
    max-width: 166.8rem;
    margin: 0 auto;
    padding-bottom: 10.8rem;
    border-bottom: 1px solid rgba(52, 56, 60, 0.4);
}

.prodect_wrapper .row {
    --bs-gutter-x: 1.9rem;
    --bs-gutter-y: 1.7rem;
}

.product_card {
    background: var(--white);
    border: 0.1rem solid rgba(52, 56, 60, 0.2);
}

.product-img-slider .swiper-slide img {
    width: 100%;
}

.product-img-slider .swiper-pagination {
    top: unset !important;
    bottom: 0 !important;
    height: 0.4rem !important;
}

.product-img-slider .swiper-pagination-progressbar {
    background: transparent;
    z-index: 22;
}

.product-img-slider .swiper-pagination-progressbar-fill {
    background: #FFFFFF !important;
}

.product-img-slider .swiper-button-prev {
    left: 2.4rem !important;
    opacity: 0;
    z-index: 22;
    transition: 300ms;
}

.product-img-slider .swiper-button-next {
    right: 2.4rem !important;
    opacity: 0;
    z-index: 22;
    transition: 300ms;
}

.product_card:hover .product-img-slider .swiper-button-prev,
.product_card:hover .product-img-slider .swiper-button-next {
    opacity: 1;
}

.product-img-slider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 11;
    opacity: 0;
    transition: 300ms;
}

.product-img-slider:hover::before {
    opacity: 0.2;
}

.product-img-slider .swiper-button-next,
.swiper-button-prev {
    color: #ffff;
    width: 1.8rem;
}

.card_content {
    padding: 5.1rem 3.6rem 2.8rem;
    text-align: center;
}

.card_content p {
    text-transform: uppercase;
}

.card_content .title {
    font-weight: 600;
}

.card_content .color {
    padding-bottom: 1.2rem;
}

/* ================Buy page codes================== */

/* ==============Buy section============== */

.single_product_slider .swiper-button-prev {
    left: calc(50% - 33rem);
    top: unset;
    bottom: 9rem;
    color: #fff;
    width: 1.9rem;
}

.single_product_slider .swiper-button-next {
    right: calc(50% - 33rem);
    top: unset;
    bottom: 9rem;
    color: #fff;
    width: 1.7rem;
}

.single_product_thumbsSlider {
    max-width: 52rem;
    width: 100%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 6.5rem;
    z-index: 11;
}

.single_product_thumbsSlider .swiper-slide img {
    max-width: 10rem;
    width: 100%;
    height: 10rem;
    object-fit: cover;
}

.single_prodcut_wrapper {
    max-width: 140rem;
    width: 100%;
    margin: 0 auto;
    margin-top: 8.2rem;
}


.single_prodcut_wrapper .row {
    --bs-gutter-x: 3.2rem;
    --bs-gutter-y: 3.2rem;
}

.single_prodcut_left .left_top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 5.3rem;
}

.single_prodcut_left .left_top p {
    text-transform: uppercase;
}

.single_prodcut_left .left_top .title {
    font-weight: 600;
}

.single_prodcut_left .left_top .color {
    padding-bottom: 1rem;
}

.single_prodcut_left button {
    background: transparent;
    border: none;
    text-transform: uppercase;
}

.single_prodcut_left button img {
    max-width: 10rem;
    width: 100%;
}

.tab_buttons {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(52, 56, 60, 0.4);
}

.tab_buttons button {
    border: none !important;
}

.tab_buttons button:hover {
    color: var(--primery);
}

.tab_buttons .active {
    font-weight: 600;
}

.tab_content {
    height: 23rem;
    margin-top: 2.5rem;
}

.tab_content p {
    letter-spacing: 0;
    line-height: 1.30;
}

.tab_content p:not(:last-child) {
    padding-bottom: 2rem;
}

.single_prodcut_right .title {
    text-transform: uppercase;
    padding-bottom: 3.8rem;
}

.single_prodcut_right ul {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    padding-bottom: 19rem;
}

.single_prodcut_right ul img {
    max-width: 10rem;
    width: 100%;
}

.single_prodcut_right .payment_button {
    font-size: 2rem;
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: 50%;
    background: var(--primery);
    color: var(--white);
    padding: 2.7rem 3rem;
    width: 100%;
    display: block;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    transition: 200ms;
}

.single_prodcut_right .payment_button:hover {
    background: #7f8c8d;
    color: var(--white);
}

.single_prodcut_right .option {
    text-transform: uppercase;
    text-align: right;
}

/* ==============Viwe section============== */
.product_viewed_section {
    padding-top: 6.5rem;
}

.product_viewed_wrapper {
    max-width: 166.8rem;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 4.6rem;
    border-bottom: 0.1rem solid rgba(52, 56, 60, 0.4);
}

.product_viewed_wrapper h3 {
    padding-bottom: 11rem;
}

.product_viewed_wrapper .row {
    --bs-gutter-y: 2rem;
}

.product_viewed_item {
    overflow: hidden;
}

.product_viewed_item img {
    width: 100%;
    transition: 300ms;
}

.product_viewed_item:hover img {
    transform: scale(1.1);
}

/* ===============Swiper============== */
.single_product_swiper {
    position: relative;
    display: none;
}

.single_product_swiper .swiper {
    width: 100%;
    height: 100%;
}

.single_product_swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single_product_swiper .swiper-scrollbar {
    background: transparent;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 0.3rem;
}

.single_product_swiper .swiper-scrollbar-drag {
    background: var(--white);
    border-radius: 1rem;
}

/* ===============accordion============== */
.single_prodcut_accordion {
    padding: 0 2.3rem;
    display: none;
}

.custom-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid #ddd;
}

.custom-accordion .accordion-button {
    font-size: 1.3rem;
    font-weight: 600;
    background: transparent;
    color: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 0;
    letter-spacing: 50%;
    position: relative;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: rgba(52, 56, 60, 1);
}

.custom-accordion .accordion-button.collapsed {
    color: rgba(0, 0, 0, 0.3);
}

.custom-accordion .accordion-button img {
    position: absolute;
    right: 1.2rem;
    bottom: 50%;
    transform:
        translateY(50%);
    width: 1rem;
}

.custom-accordion .accordion-button:focus {
    box-shadow: none;
}

.custom-accordion .accordion-button::after {
    background-image: none;
    content: "";
    font-size: 1.2rem;
    transform: rotate(180deg);
}

.custom-accordion .accordion-button img {
    transition: transform 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed) img {
    transform: rotate(180deg);
}

.custom-accordion .accordion-button.collapsed img {
    transform: rotate(0deg);
}

.custom-accordion .accordion-button.collapsed::after {
    transform: rotate(0deg);
}

.custom-accordion .accordion-body {
    padding: 1.4rem 0 3rem;
}

.custom-accordion .accordion-body p {
    letter-spacing: 0;
    text-align: left;
}

.custom-accordion .accordion-body p:not(:last-child) {
    padding-bottom: 1rem;
}


/* ---------------------------------------------------- asib khan ---------------------------------------------------- */

.about-page-wrapper {
    max-width: 166.8rem;
    margin: 0 auto;
    border-bottom: .1rem solid rgba(52, 56, 60, 0.4);
}

.about-page-section {
    margin-top: 11.4rem;
}

.about-page-section .row {
    --bs-gutter-x: 6rem;
}

.about-page-img img {
    width: 100%;
}

.about-page-content .title_sm {
    font-weight: 600;
    padding-bottom: 4.5rem;
    letter-spacing: 0.74rem;
}

.about-page-content .text_base {
    letter-spacing: initial;
    line-height: 1.3;
    text-align: justify;
    padding-bottom: 1rem;
}

.as-f-600 {
    font-weight: 600;
}

.about-page-content {
    padding-right: 7rem;
}

.about-page-author p.text_base {
    padding-bottom: 0;
}

.about-page-author {
    padding-top: 1.2rem;

}




.product-cart-section {
    margin-top: 20rem;
}

.product-cart-wrapper {
    max-width: 166.8rem;
    margin: 0 auto;
    padding-bottom: 7rem;
    border-bottom: .1rem solid rgba(52, 56, 60, 0.4);
}

.product-cart-content .title_sm {
    letter-spacing: 0.74rem;
    padding-bottom: 2rem;
}

.product-cart-content .text_base {
    letter-spacing: normal;
    text-align: justify;
}

.product-cart-content {
    padding-bottom: 5rem;
}

.product-main-content {
    padding: 0 7rem;
}

.product-cart-img {
    padding-right: 2.7rem;
}

.product-cart-img img {
    width: 100%;
}

.product-cart-second-content p {
    font-weight: 600;
}

.product-cart-second-content span {
    font-weight: 400;
}

.product-cart-second-content p {
    font-size: 2rem;
    line-height: 1.5;
    color: var(--primery);
    letter-spacing: 0.74rem;
    text-transform: uppercase;
    padding-bottom: 3rem;
}

.text-16 {
    font-size: 1.6rem;
}

.product-cart-second-content h5 {
    font-size: 2.4rem;
    line-height: 4rem;
    color: var(--primery);
    letter-spacing: 0.74rem;
    text-transform: uppercase;
    font-weight: 400;
    padding-bottom: 3rem;
}

.product-cart-second-content h5 span {
    margin-left: 2rem;
}

.product-cart-second-content .text-32 {
    font-weight: 400;
    font-size: 3.2rem;
    line-height: 4rem;
}

.product-cart-second-content p.text-24 {
    font-size: 2.4rem;
    line-height: 4rem;
    color: var(--primery);
    letter-spacing: 0.74rem;
    text-transform: uppercase;
    font-weight: 400;
}

.product-cart-second-content .text-20.as-f-400 {
    font-weight: 400;
    padding-bottom: 0;
}


.product-cart-section .product-cart-second-content {
    margin-left: 4rem;
}

.product-border-bottom {
    border-top: 1px solid #34383C66;
    display: inline-block;
    width: 26.8000000000001rem;
    max-width: 18rem;
    padding-bottom: 3rem;
}

.product-cart-second-content p.text-24 {
    padding-bottom: 1.5rem;
}

.product-price-contemt.f-right {
    float: right;
}

.product-price-contemt h4 {
    font-size: 2.4rem;
    line-height: 3rem;
    color: var(--primery);
    letter-spacing: 0.74rem;
    text-transform: uppercase;
    font-weight: 400;
}

.product-price-contemt h4 span {
    font-weight: 600;
}




.product-cart-button-wrapper .product-cart-button {
    font-size: 2rem;
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: 1.1rem;
    background: var(--primery);
    color: var(--white);
    width: 50%;
    text-align: center;
    text-transform: uppercase;
    transition: 200ms;
    height: 6.8rem;
    align-items: center;
    display: flex;
    justify-content: center;
}

.product-cart-button-wrapper .product-cart-button:hover {
    background: #000;
}

.col-lg-8 .row {
    --bs-gutter-x: 22.2rem;
}

.product-cart-bottom-content p {
    font-size: 2.4rem;
    line-height: 3rem;
    color: var(--primery);
    letter-spacing: 0.74rem;
    text-transform: uppercase;
    font-weight: 600;
}

.product-main-content hr {
    border-top: 1px solid #34383C66;
    margin: 4rem 0 5rem 0;
}





.privacy-policy-section {
    margin-top: 13rem;
}

.privacy-policy-wrapper {
    max-width: 166.8rem;
    margin: 0 auto;
    padding-bottom: 7rem;
    border-bottom: .1rem solid rgba(52, 56, 60, 0.4);
}


.privacy-policy-content-wrapper {
    padding: 0 6.5rem;
}

.privacy-policy-content .title_sm {
    letter-spacing: 0.74rem;
    padding-bottom: 3rem;
}

.privacy-policy-content p {
    letter-spacing: 0;
    text-align: justify;
    padding-bottom: 1rem;
    line-height: 1.3;
}

.privacy-policy-content ul li {
    list-style: disc;
    margin-left: 2rem;
    padding-left: 2rem;
    letter-spacing: 0;
    line-height: 1.3;
    padding-bottom: 1rem;
    text-align: justify;
}

.privacy-policy-content.mb-30 {
    margin-bottom: 3rem;
}





.contact-page-section {
    margin-top: 11.4rem;
}

.contact-page-wrapper {
    max-width: 166.8rem;
    margin: 0 auto;
    border-bottom: .1rem solid rgba(52, 56, 60, 0.4);
}

.contact-page-img img {
    width: 100%;
}

.contact-page-content-wrapper p.title_sm {
    letter-spacing: 0.74rem;
    padding-bottom: .5rem;
    font-size: 2rem;
}

.contact-page-content p {
    letter-spacing: 0;
    font-size: 1.6rem;
}

.contact-page-content p.title_sm {
    letter-spacing: 0;
    text-transform: capitalize;
    margin-bottom: 2rem;
}

.contact-page-content-wrapper {
    margin-bottom: 5rem;
    padding-left: 5.5rem;
}

.contact-page-content p a {
    text-decoration: underline;
}






/* modal  */

#checkout-modal .modal-dialog {
    max-width: 99.7rem;
}

#checkout-modal .modal-content {
    border: none;
    border-radius: 0;
}

.cart-modal {
    padding: 7.2rem 5.3rem;
}

.cart-modal .product-cart-second-content p.text-24 {
    font-size: 1.6rem;
    padding-bottom: 0;
    margin-top: 1rem;
}

.cart-modal h5 {
    padding-bottom: 0;
    font-size: 1.6rem;
    line-height: 1;
}

.cart-modal .product-cart-second-content .text-32 {
    font-weight: 400;
    font-size: 2.4rem;
    line-height: 4rem;
}

.cart-modal .product-cart-second-content p {
    padding-bottom: 3.4rem;
}

.cart-modal .product-border-bottom {
    padding-bottom: 8rem;
}

#checkout-modal .btn-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    outline: none;
}