/* FONT IMPORT */
@import url(layout.min.css);
/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

/* Local Font */
@font-face {
    font-family: "arialblack";
    src: url("../fonts/arialblack.ttf");
}

@font-face {
    font-family: "arialbold";
    src: url("../fonts/arialbold.TTF");
}


:root {
    --white: #fff;
    --black: #000;
    --primary: #FB4501;
    --secondary: #333333;
}

html {
    scroll-behavior: smooth;
    height: 100%;
    overflow-x: hidden;
}

body {
    position: relative;
    background: #fff;
    overflow-x: hidden;
    height: 100%;
    /* font-family: "Montserrat", sans-serif; */
    font-family: "Plus Jakarta Sans", sans-serif;
}

section {
    position: relative;
}

/* h1 {
    font-family: "arialblack";
}

h2,
h3 {
    font-family: "arialbold";
} */

.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;
}


/* PRELOADER */

.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(--black);
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--white);
}

/* PRELOADER */

/* GLOBAL CSS */

.themeBtn {
    background: linear-gradient(180deg, #FB4501, #F67D32);
    font-size: 1rem;
    color: var(--white);
    text-transform: capitalize;
    font-weight: 500;
    display: inline-block;
    padding: 0.9375rem 3rem;
    line-height: normal;
    border: 3px solid var(--black);
}

.themeBtn:hover {
    background: linear-gradient(140deg, #FB4501, #F67D32);
    color: var(--white);
}

/* !GLOBAL CSS */

/* Main Banner Css Start */

.main-slider {
    height: 1050px;
}

.homeSlider.swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    overflow: hidden;
}

.homeSlider.swiper-container .swiper-slide {
    overflow: hidden;
}

.homeSlider .swiper-button-prev,
.homeSlider .swiper-button-next {
    width: 3rem;
    height: 3rem;
    font-size: 1rem;
    color: #fff;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.28);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.homeSlider .swiper-button-next:after,
.homeSlider .swiper-button-prev:after {
    font-size: 16px;
    font-weight: 800;
}

.homeSlider .swiper-button-next {
    right: 1rem;
}

.homeSlider .swiper-button-prev {
    left: 1rem;
}

.homeSlider .swiper-button-next:hover,
.homeSlider .swiper-button-prev:hover {
    background: var(--white);
    color: var(--black);
}

.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;
}

.bannerContent {
    margin-top: 10rem;
}

.bannerContent h1 {
    color: var(--white);
    font-size: 5.625rem;
    text-transform: capitalize;
    line-height: 1.2;
    font-weight: bold;
    letter-spacing: -4px;
}

.bannerContent h2 {
    color: var(--white);
    font-size: 2.5rem;
    /* font-family: "Alex Brush", cursive; */
    margin: 2.5rem 0 2rem 0;
    font-weight: 600;
    letter-spacing: -2px;
}

.bannerImages img {
    position: absolute;
}

.img1 {
    right: 0;
    bottom: 0;
    z-index: 1;
}

.img2 {
    right: 0;
    bottom: 0;
}

/* Main Banner Css End */

/* About Sec Css Start */

.aboutSec {
    background: url(../images/aboutBg.png)center/cover;
    padding: 9.375rem 0 7.8125rem 0;
}

.aboutImages {
    position: relative;
    margin-top: 2.5rem;
}

.aboutImages figure {
    display: flex;
    gap: 1.875rem;
    justify-content: center;
    align-items: flex-start;
}

.about1 {
    border-radius: 100px 0 0 0;
}

.about2 {
    border-radius: 0 0 100px 0;
    padding-top: 3.75rem;
}

.about3 {
    position: absolute;
    inset: 0;
    margin: auto;
    right: -3.75rem;
}

.about4 {
    position: absolute;
    bottom: 2rem;
    left: -21%;
    z-index: -1;
}

.aboutContent {
    margin-left: 2rem;
}

.smallHeading {
    color: var(--primary);
    text-transform: capitalize;
    font-size: 2rem;
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: -2px;
}

.secHeading {
    color: #111111;
    font-size: 3.125rem;
    font-weight: bold;
    letter-spacing: -3px;
}

.aboutContent p {
    color: #525252;
    width: 67%;
    line-height: 1.85;
    margin: 1.875rem 0 2.5rem 0;
}

.aboutPath {
    position: absolute;
    bottom: 0;
    right: 0;
}

/* About Sec Css End */

/* Product Sec Css Start */

.productSec {
    /*background: url(../images/productBg.png)center/cover;*/
    padding: 6.25rem 0 9.375rem 0;
}

.productHeading span {
    font-size: 2.5rem;
}

.mainHeading {
    font-size: 3.75rem;
    text-transform: capitalize;
    color: #111111;
    font-weight: bold;
    letter-spacing: -3px;
}

.productHeading p {
    color: var(--white);
    font-size: 1.125rem;
    width: 55%;
    margin: auto;
}

.productHeading h2 {
    margin: 1rem 0 1rem 0;
}

.productBox {
    cursor: pointer;
}

.productBox figure img {
    border-radius: 45px 0 0 0;
}

.productBox figure ul {
    position: absolute;
    top: 28%;
    right: 1.875rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    transform: translateX(5rem);
    transition: 0.5s ease;
}

.productBox figure {
    position: relative;
    overflow: hidden;
}

.productBox figure ul li a {
    background: var(--white);
    width: 46px;
    height: auto;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border: 2px solid var(--white);
    color: var(--primary);
    font-size: 1.125rem;
}

.productBox figure ul li a:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--black);
}

.productBox:hover figure ul {
    transform: translateX(0);
}

.productContent {
    background: var(--black);
    padding: 1.875rem 1.875rem;
}

.productContent h3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--white);
    font-size: 1.375rem;
    font-weight: bold;
}

.productContent h3 span {
    font-weight: 600;
    font-family: 'Montserrat';
    font-size: 1.125rem;
}

.productStar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.productStar ul {
    display: flex;
    gap: 4px;
}

.productStar ul li {
    color: var(--primary);
    font-size: 0.75rem;
}

.productStar span {
    color: #6E6E6E;
}

.productSlider {
    margin-top: 3.75rem;
}

.productSec .swiper-button-next:after,
.productSec .swiper-button-prev:after {
    display: none;
}

.productSec .swiper-button-next,
.productSec .swiper-button-prev {
    border: 1px solid var(--primary);
    width: 46px;
    height: auto;
    aspect-ratio: 1;
    border-radius: 10px;
    color: var(--white);
    font-size: 1.125rem;
    background: #111111;
}

.productSec .swiper-button-next {
    right: -8.5%;
}

.productSec .swiper-button-prev {
    left: -8.5%;
}

/* Product Sec Css End */

/* Trend Sec Css Start */

.trendSec {
    /*background: url(../images/trendBg.png)center/cover;*/
    padding: 5.625rem 0 4.375rem 0;
}

.trendContent .smallHeading {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1rem;
}

.trendContent p,
.trendContent ul li {
    color: var(--black);
    font-size: 1.125rem;
}

.trendContent p {
    width: 95%;
    line-height: 1.85;
    margin: 1.5rem 0;
}

.trendContent ul {
    list-style: disc;
    list-style-position: inside;
    margin-top: 2rem;
}

.trendContent ul li+li {
    margin-top: 0.625rem;
}

/* Trend Sec Css End */

/* Shape Sec Css Start */

.shapeSec {
    background: url(../images/shapeBg.png)center/cover;
    padding: 11.875rem 0 10.625rem 0;
    z-index: 1;
}

.shapeContent {
    margin-left: 4rem;
}

.shapeContent .tabsPack a {
    color: var(--white);
    text-transform: capitalize;
    font-size: 1.25rem;
    font-family: 'arialbold';
    background: transparent;
    padding: 0.75rem 1em;
}

.shapeContent .tabsPack {
    gap: 1.875rem;
    display: flex;
    align-items: center;
    margin: 3.75rem 0;
}

.shapeContent p {
    color: var(--white);
    font-size: 1.125rem;
    line-height: 1.75;
    width: 80%;
    margin: 0;
}

.shapeContent p span {
    color: var(--primary);
    font-weight: bold;
}

.shapeContent p+p {
    margin-top: 1.75rem;
}

.shapeContent .tabsPack a.active,
.shapeContent .tabsPack a.current {
    background: var(--primary);
    color: var(--white);
}

[class^=box-] {
    display: none;
}

[class^=box-].showfirst {
    display: block;
}

.shapeImage img {
    border-radius: 150px 65px 0 0;
}

.shapePath {
    position: absolute;
    right: 8rem;
    top: 8rem;
    z-index: -1;
}

/* Shape Sec Css End */

/* Review Sec Css Start */

.reviewSec {
    background: url(../images/reviewBg.png)center/cover;
    padding: 7.5rem 0;
}

.reviewBox {
    background: #151515;
    border-radius: 0 45px 0 0;
    text-align: center;
    padding: 2.5rem 2.5rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.reviewBox p {
    color: var(--white);
    font-weight: 500;
    line-height: 1.85;
    margin: 1.125rem 0;
}

.reviewBox h3 {
    color: var(--white);
    font-size: 1.25rem;
}

.reviewBox span {
    color: var(--primary);
    font-size: 0.875rem;
    text-transform: capitalize;
}

.reviewSlider {
    margin-top: 2.5rem;
}

.reviewPaths img {
    position: absolute;
}

.path1 {
    top: 0;
    left: 0;
}

.path2 {
    right: 0;
    bottom: 0;
}

.path3 {
    inset: 0;
    margin: auto;
    z-index: -1;
}

/* Review Sec Css End */

/* Faq Sec Css Start */

.faqSec {
    padding: 10.625rem 0 7.5rem 0;
}

.faqHeading {
    margin-left: 5rem;
}

.faqHeading .smallHeading {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.contactBox {
    background: #111111;
    border-radius: 45px 0 0 0;
    padding: 2.5rem 2.5rem;
    margin-top: 3.125rem;
}

.contactBox h3 {
    color: var(--white);
    font-size: 1.875rem;
    margin-bottom: 1.75rem;
}

.contactBox .smallHeading {
    margin-bottom: 0;
    line-height: 1.3;
}

.contactBox .form-control,
.contactBox select {
    background: #2B2B2B;
    width: 100%;
    border: unset;
    outline: unset;
    box-shadow: unset;
    border-radius: unset;
    padding-left: 1rem;
    height: 55px;
    color: #6E6E6E;
    font-size: 0.875rem;
}

.contactBox .form-control::placeholder {
    color: #6E6E6E;
}

.contactBox .form-group {
    position: relative;
    margin-bottom: 1.25rem;
}

.contactBox .form-group i {
    position: absolute;
    top: 1.25rem;
    right: 1rem;
    color: var(--primary);
}

.contactBox textarea {
    height: 180px !important;
    resize: none;
    padding-top: 1rem;
}

.contactBox button {
    background: var(--primary);
    color: var(--white);
    border: unset;
    outline: unset;
    width: 100%;
    padding: 1.0625rem 0;
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 600;
}

.contactBox button:hover {
    background: var(--white);
    color: var(--primary);
}

.faqBox {
    border: 1px solid var(--primary);
    padding: 1.875rem 1.875rem;
    margin-left: 3rem;
}

.faqSec #accordion .card {
    border: none;
    border-bottom: 1px solid #E8CDBF;
    padding: 0 0 1.2rem 0;
    background: transparent;
    margin-bottom: 1.2rem;
    border-radius: unset;
}

.faqSec #accordion .card .btn-link {
    --height: 5rem;
    --width: 4.5rem;
    width: 100%;
    display: flex;
    align-items: center;
    color: #0D0D0D;
    padding: 0;
    border: 0;
    font-size: 1.25rem;
    font-family: 'arialbold';
    border-radius: 5px;
    text-decoration: none;
    overflow: hidden;
    border-bottom-left-radius: 0;
    text-align: left;
}

.faqSec #accordion .card .btn-link i {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-left: auto;
    background: 000;
    font-size: 1rem;
}

.faqSec #accordion .card .btn-link i::before {
    content: "\f068";
}

.faqSec #accordion .card .btn-link.collapsed i::before {
    content: "\f067";
}

.faqSec #accordion .card+.card {
    margin-top: 0;
}

.faqSec #accordion .card .card-body {
    padding: 0rem 4rem 0.5rem 0rem;
}

.faqSec #accordion .card .card-body p {
    color: #6E6E6E;
    font-size: 1rem;
    margin: 10px 0 0 0;
}

/* Faq Sec Css End */

/* Footer Css Start */

footer {
    background: url(../images/footerBg.png)center/cover;
    padding-top: 5rem;
    position: relative;
}

.footerLogo ul {
    margin-top: 1.875rem;
}

.footerLogo ul li a {
    color: var(--white);
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.footerLogo ul li+li {
    margin-top: 1rem;
}

.footerLogo ul li a i {
    color: var(--primary);
    font-size: 1.125rem;
}

footer h3 {
    color: var(--white);
    font-size: 1.25rem;
    font-family: 'Montserrat';
    margin-bottom: 1.5625rem;
}

.links li a {
    color: var(--white);
    font-weight: 300;
}

.socialLinks {
    display: flex;
    gap: 2rem;
}

.socialLinks li a {
    color: var(--white);
    font-size: 1.625rem;
}

.links li+li {
    margin-top: 0.875rem;
}

.footForm input {
    border: unset;
    border-radius: unset;
    outline: unset;
    box-shadow: unset;
    width: 100%;
    height: 45px;
    padding-left: 1rem;
}

.footForm button {
    background: var(--primary);
    color: var(--white);
    border: unset;
    outline: unset;
    font-size: 0.9375rem;
    padding: 0.625rem 2rem;
    margin-top: 2rem;
}

.footForm button:hover {
    background: var(--white);
    color: var(--primary);
}

.copyRight {
    border-top: 1px solid #403F3F;
    margin-top: 6.25rem;
    padding: 1rem 0;
}

.copyrightWraps {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyrightWraps p {
    margin: 0;
    color: var(--white);
}

.copyrightWraps ul {
    display: flex;
    gap: 1rem;
}

.copyrightWraps ul li a {
    color: var(--white);
}

.footerImages img {
    position: absolute;
}

.foot1 {
    bottom: 2.1875rem;
    left: 0;
}

.foot2 {
    bottom: 4.375rem;
    right: 2rem;
}

/* Footer Css End */

/* SEARCH BAR CSS */

#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;
}

.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;
}


/* !SEARCH BAR CSS */

/* Inner Css Start */

.aboutInner .aboutContent p {
    margin: 0 0 1rem 0;
    width: 80%;
}

.aboutInner .aboutContent h2 {
    margin-bottom: 1.5rem;
}

.aboutInner .abtText p {
    width: 100%;
}

.aboutContent.abtText ul li {
    color: #525252;
}

.aboutContent.abtText ul {
    list-style: disc;
    list-style-position: inside;
    margin-bottom: 1rem;
}

.aboutContent.abtText ul li+li {
    margin-top: 6px;
}

.aboutBanner {
    background: url(../images/aboutBanner.png)center/cover;
    height: 800px;
    display: flex;
    align-items: center;
}

.aboutBanner:before {
    content: "";
    position: absolute;
    background: var(--black);
    inset: 0;
    opacity: 20%;
}

.aboutBanner h2 {
    color: var(--white);
    margin: 3rem 0 0 0;
    font-size: 5rem;
}

.shopBanner {
    background: url(../images/shopBanner.png)center/cover;
}

.shopInner {
    padding: 8rem 0 5rem 0;
}

.shopLeftBar {
    position: sticky;
    top: 2rem;
}

.shopLeftBar h3 {
    text-transform: capitalize;
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.catWraps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
}

.catWraps+.catWraps {
    margin-top: 10px;
}

.catWraps label {
    font-weight: 600;
    color: var(--black);
}

.catWraps span {
    color: var(--black);
    font-weight: 500;
}

.shopInner .productBox {
    margin-bottom: 2rem;
}

.mySwiper img {
    width: 90%;
    border-radius: 10px;
}

.mySwiper2 img {
    width: 100%;
    border-radius: 20px;
}

.mySwiper {
    width: 90%;
    margin: auto;
    text-align: center;
    margin-top: 1rem;
}

.quantity-container {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--black);
    overflow: hidden;
    width: fit-content;
}

.qty-btn {
    background-color: transparent;
    border: none;
    padding: 0.625rem 0.9375rem;
    cursor: pointer;
    font-size: 1.125rem;
    user-select: none;
    transition: background 0.3s;
    outline: unset !important;
    box-shadow: unset;
    color: var(--black);
}

.qty-btn:hover {
    background-color: transparent;
}

.qty-input {
    width: 50px;
    text-align: center;
    border: none;
    font-size: 1rem;
    outline: none;
    background: transparent;
    color: var(--black);
}

.shopDetails h2 {
    color: var(--black);
    text-transform: capitalize;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.shopDetails ul.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 1rem;
}

.shopDetails ul.stars li {
    font-size: 12px;
    color: var(--bblack);
}

.shopDetails p {
    color: var(--black);
    line-height: 1.75;
}

.shopDetails .price {
    margin-bottom: 1rem;
    font-weight: bold;
    color: var(--black);
    font-size: 1.4rem;
}

.detailBtns {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.detailBtns a.themeBtn.cardsBtns {
    border: unset;
    width: 70%;
    text-align: center;
}

a.themeBtn.buyBtn {
    width: 95%;
    border: unset;
    text-align: center;
}

.producttabSec .tabsPack {
    display: flex;
    gap: 2rem;
}

.producttabSec .tabsPack a {
    color: var(--black);
    font-weight: bold;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.producttabSec {
    padding: 3rem 0 6rem 0;
}

.producttabSec p {
    color: var(--black);
    line-height: 1.85;
    font-size: 1.125rem;
}

.producttabSec .tabsPack a.active,
.producttabSec .tabsPack a.current {
    color: var(--primary);
}

.contactBanner {
    background: url(../images/contactBanner.png)center/cover;
}

.contactInner {
    padding: 7rem 0;
}

.privacyContent h3 {
    color: var(--black);
    margin: 1rem 0;
}

.galleryInner {
    padding: 7rem 0;
}

.galleryWraps {
    margin-top: 2rem;
}

.intakeInner h3 {
    color: var(--black);
    font-size: 1.375rem;
    margin-top: 2rem;
}

.intakeInner span {
    display: block;
    margin: 0.2rem 0 0.2rem 0 !important;
    display: flex;
    position: relative;
    gap: 8px;
    flex-wrap: wrap;
}

.intakeInner span label {
    display: flex;
}

.intakeInner .form-group label {
    margin-top: 1rem;
}

.radioWraps {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.intakeInner .form-group .form-control {
    height: 50px;
    outline: unset;
    box-shadow: unset;
}

.intakeInner .themeBtn {
    outline: unset;
    margin-top: 2rem;
}

.intakeInner {
    padding: 5rem 0 7rem 0;
}

/* Inner Css End */

.aboutInner .aboutImages {
    margin: 0;
}

.aboutContent.abtText {
    margin: 1rem 0 0 0;
}

.galleryWraps a img {
    height: 300px;
    width: 100%;
    object-fit: cover;
}

.wcb-coupon-box .wcb-md-content .wcb-modal-header,
.wcb-coupon-box .wcb-newsletter span.wcb-button{
    background: #fb4501 !important;
}

.woocommerce-column.woocommerce-column--2.woocommerce-column--shipping-address.col-2,
.woocommerce-column.woocommerce-column--1.woocommerce-column--billing-address.col-1{
    max-width: fit-content !important;
}

.reviewBox figure img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    object-position: top;
}
