@import url('https://fonts.googleapis.com/css2?family=Raleway: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&display=swap');

html {
    font-size: 16px;
    overflow-x: hidden;
}

body {
    position: relative;
    font-family: 'Raleway', sans-serif;
    background: #fff;
    overflow-x: hidden;
}

@font-face {
    font-family: 'Kuunari';
    src: url('../fonts/Kuunari-Regular.eot');
    src: url('../fonts/Kuunari-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/Kuunari-Regular.woff2') format('woff2'), url('../fonts/Kuunari-Regular.woff') format('woff'), url('../fonts/Kuunari-Regular.ttf') format('truetype'), url('../fonts/Kuunari-Regular.svg#Kuunari-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Kuunari';
    src: url('../fonts/Kuunari-RegularItalic.eot');
    src: url('../fonts/Kuunari-RegularItalic.eot?#iefix') format('embedded-opentype'), url('../fonts/Kuunari-RegularItalic.woff2') format('woff2'), url('../fonts/Kuunari-RegularItalic.woff') format('woff'), url('../fonts/Kuunari-RegularItalic.ttf') format('truetype'), url('../fonts/Kuunari-RegularItalic.svg#Kuunari-RegularItalic') format('svg');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

:root {
    --white: #ffffff;
    --black: #000;
    --gary-color: #727272;
    --lightgary-color: #b2b9bd;
    --theme-color: #81F3FB;
    --primary-color: #0B0B0B;
    --btn-color: #0F0301;
}

p {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.8;
    color: #212121;
}

h1,
h2,
h3,
h4 {
    color: #000;
    font-family: 'Kuunari';
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

figure {
    margin: 0;
}

section {
    padding: 5rem 0;
}


/* loader */

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.preLoader.black {
    background-color: var(--white);
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--theme-color);
}


/* loader */


/* Cursor Start */

.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}

.cursor-inner {
    margin-left: 2px;
    margin-top: 2px;
    width: 7px;
    height: 7px;
    z-index: 10000001;
    background-color: var(--theme-color);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
    margin-left: -10px;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--theme-color);
    opacity: 0.3;
}


/* Cursor End */


/* btn css */

.themeBtn {
    background: var(--theme-color);
    font-size: 1.375rem;
    color: var(--btn-color);
    text-transform: uppercase;
    font-weight: 600;
    /* display: inline-block; */
    padding: 1.1em 4em 1.1em 2.3rem;
    border-radius: 50px;
    line-height: normal;
    position: relative;
    display: flex;
    align-items: center;
    width: fit-content;
    letter-spacing: 2px;
}

.themeBtn.borderBtn {
    background: transparent;
    border: 1px solid #fff;
    padding: 1.04em 2em;
}


/* btn css */


/* mouse animation css  */

.bounce-element {
    animation: bounce 0.9s infinite alternate;
    -webkit-animation: bounce 0.9s infinite alternate;
}

@keyframes bounce {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(-15px);
    }
}

@-webkit-keyframes bounce {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(-15px);
    }
}

.mouse {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 11;
    text-align: center;
}


/* mouse animation css  */


/* sraachbar start */

#search {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
    -moz-transform: translate(0px, -100%) scale(0, 0);
    -o-transform: translate(0px, -100%) scale(0, 0);
    -ms-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;
    z-index: 10000;
}

#search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -moz-transform: translate(0px, 0px) scale(1, 1);
    -o-transform: translate(0px, 0px) scale(1, 1);
    -ms-transform: translate(0px, 0px) scale(1, 1);
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
}

#search input[type="search"] {
    position: absolute;
    top: 50%;
    width: 100%;
    color: #fff !important;
    background: rgba(0, 0, 0, 0);
    font-size: 55px;
    line-height: 65px;
    text-align: center;
    border: 0px;
    margin: 0px auto;
    margin-top: -51px;
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-family: arial;
}

#search .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 61px;
    margin-left: -45px;
    background-color: limegreen;
    border: black;
}

#search .close {
    position: fixed;
    top: 15px;
    right: 15px;
    color: #fff;
    opacity: 1;
    padding: 10px 17px;
    font-size: 27px;
}

#search input[type="search"]::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #fff;
}

#search input[type="search"]::-moz-placeholder {
    /* Firefox 19+ */
    color: #fff;
    opacity: 1;
}

#search input[type="search"]:-ms-input-placeholder {
    /* IE 10+ */
    color: #fff;
}

#search input[type="search"]:-moz-placeholder {
    /* Firefox 18- */
    color: #fff;
    opacity: 1;
}

.srch-btn {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
}

.srch-btn .themeBtn {
    padding: 15px 120px;
    font-size: 20px;
}


/* sraachbar end */


/* navigation css */

.topBar {
    background: var(--primary-color);
    text-align: center;
    padding: 10px 0;
}

.topBar p {
    margin: 0;
    font-size: 14px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

ul.topSocial {
    display: flex;
    align-items: center;
    gap: 8px;
}

ul.topSocial li a {
    width: 42px;
    height: 42px;
    background: #E1E1E1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary-color);
}

ul.topSocial li a:hover {
    background: var(--theme-color);
}

.navbar-nav {
    align-items: center;
    justify-content: space-between;
    /* width: 100%; */
    gap: 3rem;
}

.navbar-nav .nav-item .nav-link {
    font-size: 15px;
    color: #0C0C0C;
    text-transform: uppercase;
    font-weight: 500;
    padding: 0 0;
    display: inline-block;
}

.navbar-nav .nav-item .nav-link:hover {
    color: var(--gary-color);
}

.navbar-nav:hover .nav-item .nav-link:not(:hover) {
    filter: blur(2px);
}

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

ul.userList li a {
    color: #0C0C0C;
    font-size: 1.3rem;
}

.form-inline {
    gap: 3.5rem;
}

ul.userList li:last-child a {
    display: flex;
    align-items: center;
    gap: 10px;
}

ul.userList li:last-child a span {
    font-size: 15px;
    color: #0C0C0C;
    font-weight: 400;
}


/* navigation css */


/* slider css */

.mainSlider {
    height: 912px;
    position: relative;
    z-index: 1;
    padding: 0;
}

.homeSlider.swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}

.homeSlider.swiper-container .swiper-slide {
    /* overflow: hidden; */
}

.homeSlider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.slideContent {
    text-align: left;
}

.homeSlider .slide-inner:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 681px;
    background: rgb(11 11 11 / 40%);
}

.slideContent h2 {
    font-size: 5.625rem;
    color: var(--white);
    text-transform: uppercase;
    margin: 0;
}

.homeSlider .slide-inner figure {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.slideContent h3 {
    font-size: 3.125rem;
    color: var(--white);
    margin: 0 0 1.1rem;
}

.slideContent p {
    font-size: 1.4375rem;
    color: var(--white);
    width: 90%;
    font-weight: 500;
    line-height: 1.7;
    margin: 0 0 2.5rem;
}

.themeBtn span {
    width: 62px;
    height: 62px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.7rem;
    position: absolute;
    right: 7px;
    color: var(--black);
}

.themeBtn:hover {
    background-color: var(--black);
    color: var(--white);
}

.themeBtn:hover span {
    animation: btnmove 0.5s linear infinite alternate-reverse;
}


@keyframes btnmove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-5px);
    }
}

/* slider css */

.abtImg figure {
    display: flex;
    align-items: center;
}

.abtImg figure span {
    position: relative;
    z-index: 11;
    border: 12px solid var(--white);
    box-shadow: 0 5px 10px rgb(0 0 0 / 16%);
}

.abtImg figure span+img {
    margin-left: -4.5rem;
}

.subheading {
    font-size: 2.0625rem;
    color: var(--primary-color);
    margin: 0;
}

.aboutMain {
    background: #FEF1F1;
}

.heading {
    font-size: 5.625rem;
    color: var(--primary-color);
    line-height: 0.9;
    text-transform: uppercase;
}

.heading2 {
    font-size: 5rem;
}

.title h5 {
    font-size: 2.25rem;
    color: var(--black);
    font-weight: 600;
    margin: 0 0 10px;
}

.title p {
    margin: 0 0 2rem;
}

.themeBtn.blackBtn {
    background: var(--black);
    color: var(--white);
}

.tophead {
    position: relative;
    text-align: center;
    margin-bottom: 2rem;
}

.tophead a {
    background: var(--btn-color);
    font-size: 1.875rem;
    font-family: 'Kuunari';
    color: var(--white);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    width: fit-content;
    padding: 3px 26px;
    border-radius: 50px;
    gap: 10px;
    position: absolute;
    top: 0;
    bottom: 0;
    height: fit-content;
    margin: auto;
    left: 0;
}

.shopBox figure {
    position: relative;
    overflow: hidden;
}

.shopBox figure::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.shopBox:hover figure::before {
    -webkit-animation: shine 1s;
    animation: shine 1s;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

.shopBox figure img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.shopBox:hover figure img {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

.shopContent {
    padding-top: 15px;
}

.shopContent h5 {
    font-size: 1.875rem;
    color: var(--black);
    font-weight: 600;
    margin: 0 0 7px;
}

.shopContent h3 {
    font-size: 2.0625rem;
    font-weight: 400;
    margin: 0;
}

.shopBox {
    margin-bottom: 2.5rem;
    display: block;
}

.shopMain {
    background: #F6F6F6;
    padding-bottom: 2rem;
}

.swiper.workSlider {
    margin-right: -3rem;
}

.workSlider figure,
.work-sec-inner figure {
    position: relative;
    background-color: var(--black);
    overflow: hidden;
}

.workSlider figure img,
.work-sec-inner figure img {
    transition: 0.5s ease;
}

.workSlider figure:hover img,
.work-sec-inner figure:hover img {
    transform: scale(1.065);
    opacity: 0.8;
}

.workSlider figure:before,
.work-sec-inner figure:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border: 1px solid #fff;
    margin: 20px;
    transition: 0.5s ease;
    z-index: 2;
}

.workSlider figure:hover:before,
.work-sec-inner figure:hover:before {
    margin: 32px;
    opacity: 0.8;
}

.swiper.workSlider .swiper-button-prev:after,
.swiper.workSlider .swiper-button-next:after {
    display: none;
}

.swiper.workSlider .swiper-button-prev,
.swiper.workSlider .swiper-button-next {
    width: 62px;
    height: 62px;
    background: var(--white);
    border-radius: 50%;
    color: var(--black);
    font-size: 1.6rem;
    right: 3rem;
}

.workMain {
    padding: 1.5rem 0;
}

.shopMain.customRequest .shopContent h5 {
    font-size: 1.375rem;
}

.shopMain.customRequest .shopContent h3 {
    font-size: 1.5rem;
}

.customOrder {
    background: url(../images/orderbg.jpg) no-repeat top center/ cover;
    position: relative;
}

.orderContent h2 {
    font-size: 8.3125rem;
    color: var(--white);
    text-transform: uppercase;
    padding-right: 1rem;
    line-height: 1;
    margin: 0 0 2rem;
}

.shirtRequest h6 {
    font-size: 2.5rem;
    color: var(--white);
    font-weight: 600;
    margin: 0 0 2rem;
}

.sectionHeading {
    font-size: 2.99rem;
    color: var(--white);
    font-weight: 600;
}

.shirtRequest form label {
    display: block;
    font-size: 1.125rem;
    color: var(--white);
    font-weight: 600;
}

.shirtRequest form select {
    width: 100%;
    height: 76px;
    padding: 0 10px;
    border: 0;
    margin: 0 0 1.5rem;
}

.shirtRequest form input {
    width: 100%;
    height: 76px;
    padding: 0 20px;
    border: 0;
    margin: 0 0 1.5rem;
    font-size: 1.375rem;
    text-align: right;
    font-weight: 500;
}

.shirtRequest form input::placeholder {
    color: var(--black);
}

.shirtRequest form input[type="number"] {
    width: 179px;
    text-align: left;
}

.shirtRequest form .d-flex {
    align-items: center;
    gap: 10px;
}

.shirtRequest form .d-flex .heart {
    width: 62px;
    height: 62px;
    background: #0F0301;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.7rem;
}




/* FAQ SECTION CSS */

.faq-section {
    padding: 5rem 0;

}

.faq-section .themeBtn {
    background: var(--theme-color);
    margin-top: 2.75rem;
}

.accordion .accordion-item {
    margin-top: 1.875rem;
}

.accordion .card-header {
    background: none;
    border: 0;
    padding: 0;
}

.accordion .card-header .btn {
    background-color: var(--btn-color);
    width: 100%;
    border-radius: 50px;
    text-align: left;
    box-shadow: none !important;
    position: relative;
    font-size: 22px;
    padding: 1.5rem 3.5rem;
    display: flex;
    align-items: center;
    gap: 1.125rem;
    color: var(--white);
    font-weight: 600;
}

.accordion .card-header .btn::after {
    content: "\f062";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 6px;
    /* background-color: var(--primary); */
    color: var(--white);
    width: 4.375rem;
    height: 4.375rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: 0.5s ease;
}

.accordion .card-header .btn.collapsed {
    background-color: #F1F1F1;
    color: var(--btn-color);
}

.accordion .card-header .btn.collapsed::after {
    content: "\f063";
    color: var(--black);
    transition: 0.5s ease;
}

.accordion .card-header .btn span {
    font-size: 1.375rem;
    /* padding-right: 1.125rem; */
    /* border-right: 1px solid var(--secondary); */
    color: #000;
}

.accordion .card-body {
    padding-bottom: 0;
}

.accordion .card-body p {
    color: #000;
    font-size: 1.125rem;
    max-width: 876px;
    text-align: left;
    line-height: 1.3;
    margin-left: 2rem;
    margin-bottom: 0px;
}

/* !@FAQ SECTION CSS */

/* Testimonial Sec Css Start */

.testimonialSec {
    background: url(../images/testibg.png)center/cover no-repeat;
    position: relative;
    /* padding: 4rem 0; */
}


.testimonial-card .content {
    padding: 1rem 2rem 2rem 2rem;
    border-radius: 20px;
    background: #ffffffa6;
    /* min-height: 485px; */
    transition: 0.5s ease;
}

.testimonial-card .content .fa-quote-left {
    font-size: 4rem;
    color: #60656F;
    transition: 0.5s ease;
}

.star li {
    display: inline-block;
}

.star li i {
    color: #ffc107;
    font-size: 1.375rem;
}

.testimonial-card p {
    line-height: 1.875;
    margin: 10px 0 0;
    color: #828282;
    font-size: 20px;
    transition: 0.5s ease;
}

.testimonial-info {
    /* display: flex;
	align-items: center;
	gap: 0 1rem;
	margin-top: 1rem; */
    margin-top: 10px;
}



.testimonial-info a {
    font-size: 22px;
    font-weight: 500;
    color: var(--black);
    text-transform: capitalize;
    transition: 0.5s ease;
}

.testimonialSec h2 {
    margin: 0;
}



.testimonialSlider .swiper-slide-active .testimonial-card .content {
    background: #60656F;
}

.testimonialSlider .swiper-slide-active .testimonial-card .content i.fa-quote-right {
    color: var(--white);
}

.testimonialSlider .swiper-slide-active .testimonial-card p,
.testimonialSlider .swiper-slide-active .testimonial-card a {
    color: var(--white);
}

figure.testiside img {
    position: absolute;
    bottom: -11px;
    right: -15rem;
}

.testimonialSlider .swiper-pagination {
    display: flex;
    justify-content: center;
    gap: 1rem;
}


.testimonialSlider .swiper-pagination-bullet {
    height: 18px;
    width: 18px;
    display: inline-block;
    opacity: 1;
    /* border: 2px solid #fff; */
    background: #60656f5e;
    position: relative;
}


.testimonialSlider .swiper-pagination-bullet-active {
    position: relative;
    background: #60656F
}




ul.star {
    margin-top: 10px;
}

.testimonialSlider {
    padding: 3rem 0 5rem 0;
}

.testimonialSec {
    background: #F8BED9;
}

.content i {
    color: #60656F;
    font-size: 5rem;
}

/* Testimonial Sec Css End */

/* bottelsec Sec Css start */
.bottelcntnt h3 {
    font-size: 15px;
    font-weight: 500;
}

.bottelwrap {
    text-align: center;
}

.bottelcntnt {
    margin-top: 1rem;
}

.bottelcntnt h2 {
    font-size: 22px;
    font-weight: 600;
}

.bottelcntnt h4 {
    font-size: 22px;
    font-weight: 500;
}


.bottelwrap figure {
    position: relative;
    min-height: 455px;
    display: grid;
    place-items: center;
}

.bottelwrap figure::before {
    position: absolute;
    content: "";
    background: #FFCFBF;
    width: 286px;
    height: 286px;
    border-radius: 50%;
    z-index: -1;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transition: 0.5s ease;
}

.bottelwrap .purple::before {
    background-color: #F1E4FE
}

.bottelwrap .pink::before {
    background-color: #FFB4CD;
}

.bottelwrap .black::before {
    background-color: #D4D4D4;
}


.bottelwrap figure img {
    transition: 0.5s ease;
}

.bottelwrap figure:hover img {
    transform: scale(0.95);
}

.bottelwrap figure:hover::before {
    transform: scale(1.05);
}

/* bottelsec Sec Css End */

/* contactsec Sec Css start */


.contactssection {
    background: #F8F8F8;
}

.contactssection figure {
    overflow: hidden;
}

.contactForm .form-group .form-control {
    height: 82px;
    border-radius: unset;
    background: #F3F3F3;
    border: 1px solid #DBDBDB;
}

.contactForm .form-group {
    display: flex;
    align-items: center;
    position: relative;
    /* margin-bottom: 2rem; */
}



.contactForm .form-group .form-control::placeholder {
    color: #000000;
}

.contactForm .form-group textarea {
    min-height: 166px;
    padding-top: 1rem;
}

form.contactForm {
    background: #fff;
    padding: 6.5rem 3rem;
    box-shadow: 0 3px 20px rgb(0 0 0 / 08%);
}

.contactssection figure img {
    width: 100%;
}

/* contactsec Sec Css End */

/* Footer Css Start */

footer {
    background: var(--black);
    padding-top: 4rem;
}

footer ul li a:hover {
    color: var(--secondary);
}

.signBg {
    background: #333333;
    padding: 3.5rem 1rem;
}

.signHead h2 {
    font-size: 3.125rem;
    color: var(--white);
    text-transform: uppercase;
    margin: 0;
    line-height: 0.9;
}

.signHead p {
    font-size: 1.0625rem;
    color: var(--white);
    margin: 0;
}

.searchForm input {
    border-radius: 50px;
    height: 74px;
    border: 1px solid #f1f1f1;
    width: 100%;
    background: #f6f6f6;
    padding-left: 2rem;
    font-size: 1.125rem;
}

.searchForm input::placeholder {
    color: #20242d;
}

.searchForm .themeBtn {
    font-size: 1.125rem;
    position: absolute;
    border: unset;
    right: 0;
    padding: 2.4rem 3.5em;
    letter-spacing: 3px;
    height: 50px;
    background: #0D0D0D;
    color: #fff;
}

.searchForm {
    display: flex;
    align-items: center;
    position: relative;
}

footer h3 {
    color: var(--white);
    font-size: 24px;
}

.links li a {
    color: var(--white);
    font-size: 15px;
}

.contactLinks li a {
    font-size: 1.125rem;
    color: var(--white);
}

.contactLinks li a span {
    font-size: 1rem;
    font-weight: 600;
    display: block;
}

.contactLinks li+li {
    padding-top: 1.8rem;
}

.quickLinks li+li {
    padding-top: 6px;
}

.copyRight p {
    font-size: 1rem;
    color: var(--white);
    margin: 0;
}

.cart span {
    color: var(--white);
    font-size: 1.25rem;
}

.cart {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.copyRight ul {
    display: flex;
    justify-content: end;
    gap: 0.9375rem;
}

.copyRight ul li a {
    font-size: 1.375rem;
    color: var(--white);
}

.copyRight ul li+li {
    border-left: 1px solid var(--white);
    padding-left: 0.9375rem;
}

.copyRight {
    border-top: 2px solid rgb(212 212 212 / 44%);
    margin-top: 2rem;
    padding: 1.5rem 0;
}


/* Footer Css End */

/* innerpages Start */

.innerBan .overlay {
    position: absolute;
    text-align: left;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
}

.innerBan h2 {
    font-size: 5.625rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: bold;
}

.innerBan {
    position: relative;
}

.shopMain.shopinnr {
    background: #fff;
}

.shopMain.shopinnr .shopContent h5 {
    text-align: center;
}

.woodbox {
    text-align: center;
    margin-bottom: 2rem;
    display: block;
}

.woodbox figure {
    background: #F3F3F3;
    padding: 2rem 0;
}

.shopMain.shopinnr.resinsec .woodbox figure {
    min-height: 466px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* FAQ PAGE */


section.inner-section {
    padding: 2rem 0 7.5rem;
}

.faq-section.inner-section .accordion .card-body {
    padding-bottom: 1.25rem;
}

/* TESTIMONAIL PAGE */


.reviewcard {
    max-width: 1200px;
    margin: auto;
    border: 2px solid #EBEBEB;
    background-color: #F5F5F5;
    border-radius: 8px;
    padding: 2.125rem 6.375rem 1.875rem;
    margin-top: 1.5rem;
}

.reviewcard+.reviewcard {
    margin-top: 2.25rem;
}

.reviewcard .user-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.125rem;
}

.reviewcard .user-rating ul {
    display: flex;
    gap: 4px;
    font-size: 1.065rem;
    color: #E7B838;
}

.reviewcard p {
    font-size: 1.375rem;
    line-height: 1.7;
}

.reviewcard h5 {
    font-size: 2.125rem;
    font-weight: 600;
}

/* CONTACT PAGE */

.contact-section {
    padding: 0;
}

.contact-section .map {
    margin-right: -16rem;
}

.contact-section .map iframe {
    width: 100%;
    height: 744px;
    display: block;
}

.contact-item {
    margin-bottom: 6.25rem;
}

.contact-item h3 {
    font-size: 2.75rem;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--black);
}

.contact-item a {
    font-size: 1.5rem;
    color: var(--black);
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--gary-color);
}

.social-link h5 {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.social-link ul {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.social-link li a {
    color: var(--black);
    font-size: 2.5rem;
}

.social-link li a:hover {
    color: var(--theme-color);
}


/* BLOGS PAGE */

.blog-section {
    padding: 7.5rem 0 5.5rem;
}

.blog-section .row {
    gap: 2.125rem 0;
}

.blogcard {
    display: block;
}

.blogcard figure {
    overflow: hidden;
}

.blogcard figure img {
    transition: 0.5s ease;
}

.blogcard:hover figure img {
    transform: scale(1.1);
    opacity: 0.8;
}

.blogcard h4 {
    font-size: 2.5rem;
    color: var(--black);
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 10px;
    transition: 0.5s ease;
}


.blogcard:hover h4 {
    color: var(--gary-color);
}

.blogcard p {
    color: #212121;
    font-size: 1.125rem;
}



/* WORK PAGE */

.work-inner a {
    width: 100%;
    height: 500px;
    display: block;
    position: relative;
    transition: 0.5s ease;
}

.work-inner a::before{
    content: "";
    width: 100%;
    height: 100%;
    background-color: #00000050;
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition: 0.5s ease;
}

.work-inner a:hover::before {
    opacity: 1;
    visibility: visible;
}

.work-inner a figure {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}


.work-inner a figure img {
    width: 100%;
    height: 100%;
    transition: 0.5s ease;
    object-fit: cover;
}

.work-inner a:hover figure img {
    transform: scale(1.05);
}

.work-inner .shopContent {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
    z-index: 2;
}

.work-inner .shopContent h5 {
    color: var(--white);
    text-shadow: 2px 2px 10px var(--black);
}

/* ABOUT PAGE */

.abouttitle {
    max-width: 710px;
}

.abouttitle .heading2 {
    font-size: 4.5rem;
    margin-bottom: 1.375rem;
}

.work-sec-inner {
    background-color: #F3F3F3;
    padding: 2.125rem 0 3.125rem;
}

.work-sec-inner .row {
    gap: 1.75rem 0;
    margin-top: 1.75rem;
}


.work-sec-inner .borderbtn {
    border: 1px solid var(--black);
    font-size: 1rem;
    padding: 1.125em 4.25rem;
    border-radius: 0;
    text-transform: uppercase;
    font-weight: 500;
}

.video-section {
    padding: 4.375rem 0 6.125rem;
}

.video-box {
    overflow: hidden;
    border-radius: 33px;
    position: relative;
    background-color: var(--black);
}

.video-box img {
    transition: 0.5s ease;
}

.video-box:hover img {
    opacity: 0.75;
}

.video-box a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 5em;
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background-color: rgba(255, 255, 255, 0);
    transition: 0.5s ease;
}


.video-box a:hover {
    background-color: rgba(255, 255, 255, 1);
    color: var(--black);
}


/* PRODUCT DETAILS */
.product-detail-section {
    padding: 10rem 0 4rem;
}

.product-detail-section .img-detail {
    position: relative;
    text-align: center;
    z-index: 1;
}

.product-detail-section .img-detail::after {
    content: '';
    position: absolute;
    inset: 0;
    margin: auto;
    display: grid;
    place-items: center;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background-color: #CC6546;
    opacity: 0.5;
    transition: 0.5s ease;
    z-index: -1;
}


.product-detail-section .img-detail:hover::after {
    transform: scale(1.05);
}

.product-detail-section .img-detail img {
    transition: 0.5s ease;
}

.product-detail-section .img-detail:hover img {
    transform: scale(0.95);
}

.product-text-detail .heading {
    font-size: 3.75rem;
    font-weight: 500;
}

.product-text-detail .price {
    font-size: 2.5rem;
    margin-bottom: 0.875rem;
}

.product-text-detail span.small {
    font-size: 15px;
    font-weight: 500;
}

.product-text-detail p,
.product-detail-card p {
    font-size: 1.375rem;
    font-weight: 400;
    margin-bottom: 1.125rem;
}

.product-text-detail p span {
    font-weight: 700;
}

.color-option {
    display: flex;
    gap: 0.75rem;
}


.color-option label .color-box {
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background-color: var(--theme-color);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: 0.5s ease;
}

.color-option label .color-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--color);
}


.color-option label input[type="radio"]:checked+.color-box {
    transform: scale(1.5);
}

.product-detail-card {
    padding: 1.875rem 2rem;
    border-radius: 1.125rem;
    background-color: #F3F3F3;
    margin-top: 1rem;
    margin-right: -3.25rem;
}

.product-detail-card h4 {
    font-size: 1.875rem;
    font-weight: 500;
    margin: 0;
}

.styleOptions {
    display: flex;
    gap: 1.125rem;
    margin-bottom: 1rem;
}

.styleOptions li label div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid #D5D5D5;
    background-color: var(--white);
    width: 98px;
    height: 104px;
    padding: 1rem;
    cursor: pointer;
    transition: 0.5s ease;
}

.styleOptions li label input:checked+div {
    border-color: var(--black);
}


.styleOptions li label span {
    font-size: 14px;
}

.product-detail-card .more h4 {
    font-size: 1.375rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.product-detail-card .more p {
    font-size: 15px;
    color: #606060;
}


.product-detail-card .themeBtn.blackBtn {
    width: 100%;
    text-align: center;
    display: inline-block;
    padding: 0.65em 1.5em;
    letter-spacing: 1px;
}

.product-detail-card .themeBtn.blackBtn.borderbtn {
    background-color: transparent;
    border: 2px solid var(--black);
    color: var(--black);
}

.product-detail-card .themeBtn.blackBtn.borderbtn:hover {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}

.product-detail-card .controlBox {
    display: flex;
    align-items: center;
    gap: 2.125rem;
    margin-top: 1.875rem;
}

.product-detail-card .controlBox .qtybox {
    display: flex;
    align-items: center;
    border-radius: 1.625rem;
    border: 1px solid var(--black);
    padding: 5px;
    max-width: 196px;
}

.product-detail-card .controlBox .qtybox button {
    width: 2.625rem;
    height: 2.625rem;
    background-color: #E3E3E3;
    border: 0;
    border-radius: 50%;
    color: var(--black);
}

.product-detail-card .controlBox .qtybox button.addbtn {
    background-color: var(--black);
    color: var(--white);
}

.product-detail-card .controlBox .qtybox input {
    text-align: center;
    color: var(--black);
    background-color: transparent !important;
    border: 0;
    font-size: 1.375rem;
    width: 90px;
}

.product-detail-card .controlBox .qtybox input:focus {
    outline: none;
}

/* Chat */
.chat {
    width: 65px;
    height: 65px;
    font-size: 1.75rem;
    color: var(--primary-color);
    background: var(--theme-color);
    position: fixed;
    bottom: 3%;
    right: 2%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    z-index: 999;
    animation: upDown 1.25s linear infinite;
}
.chat.active {
    animation: none;
}
.chat:hover{
    background: var(--secondary);
    color: var(--white);
}

@keyframes upDown {
    0%{
        transform: translateY(0%) scale(0.9);
    }
    50%{
        transform: translateY(-20px) scale(1);
    }
    100%{
        transform: translateY(0%) scale(0.9);
    }
}


form#contactForm {
    position: fixed;
    bottom: 6rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 440px;
    gap: 1rem;
    background: white;
    padding: 1rem;
    box-shadow: 0 0 20px 0 rgba(0,0,0,0.2);
    border-radius: 14px;
}

form#contactForm input {
    height: 45px;
    padding: 1rem 0;
    border: 0;
    border-bottom: 1px solid black;
}

form#contactForm button#sendMessageBtn {
    background: var(--secondary);
    padding: 0.75rem;
    border: 0;
    border-radius: 4.25rem;
    color: white;
    font-size: 1.25rem;
}

form#contactForm textarea#message {
    border: 0;
    border-bottom: 1px solid;
}
