* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    font-size: 100%;
}
@media screen and (max-width: 1500px) {
    html {
        font-size: 75%;
    }
}
:root {
    --text-font: "Montserrat", sans-serif;
    --heading-font: "Plus Jakarta Sans", sans-serif;
}
body {
    background-color: rgba(248, 243, 236, 1);
    font-size: 1.5rem;
    line-height: 1.4;
    font-family: var(--text-font);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--text-font);
    font-weight: 700;
}

p {
    font-size: 14px;
    line-height: 1.4;
}
.text-center{
    text-align: center;
}
/* ================= CONTAINER ================= */
.container {
    max-width: 103.75rem;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    margin-left: auto;
    margin-right: auto;
}
.flickity-prev-next-button svg {
    display: none;
}
.flickity-prev-next-button {
    width: 2.25rem;
    height: 2.25rem;
    background: transparent url('../images/arrow-left.svg') no-repeat center / 2.25rem !important; 
}
.flickity-prev-next-button.next {
    background: transparent url('../images/arrow-right.svg') no-repeat center / 2.25rem !important;
    right: -3rem;
    left: auto;
}

.flickity-prev-next-button.previous{
    left: -3rem;
}
.flickity-page-dots .dot.is-selected {
    opacity: 1;
    background-color: rgba(0, 0, 0, 1);
    width: 11.563rem;
}
.flickity-page-dots .dot {
    display: inline-block;
    width: 3rem;
    height: 0.5rem;
    margin: 0;
    background: rgba(233, 226, 216, 1);
    border-radius: 0;
    opacity: 1;
    cursor: pointer;
}
.flickity-page-dots {
    position: relative;
    width: fit-content;
    bottom: auto;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    line-height: 1;
    border-radius: 2rem;
    overflow: hidden;
    margin: 0 auto;
    height: 0.5rem;
    background: rgba(233, 226, 216, 1);
    display: flex;
    margin-top: 2.5rem;
}
/* ================= TYPO ================= */
h1 {
    font-size: 4rem;
    line-height: 1.4;
}
h2{
    font-size: 4rem;
    line-height: 1.3;
}
.subtitle{
    font-size: 1.5rem;
    line-height: 1.2;
    font-family: var(--heading-font);
    font-weight: 500;
}
/* ================= BUTTON ================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 6.875rem;
    height: 3.75rem;
    line-height: 3.75rem;

    border-radius: 3.125rem;
    background: rgba(180, 72, 0, 1);
    border: 0.0625rem solid #fff;

    color: #fff;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.03125rem;

    font-family: "Poppins", sans-serif;
    transition: all 0.3s ease;
}
body .single_add_to_cart_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 1rem !important;
    height: 3.75rem !important;
    line-height: 3.75rem !important;

    border-radius: 3.125rem !important;
    background: rgba(180, 72, 0, 1) !important;
    border: 0.0625rem solid #fff !important;
width: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 1.25rem !important;
    font-weight: 500;
    letter-spacing: 0.03125rem;

    font-family: "Poppins", sans-serif;
    transition: all 0.3s ease;
}

.btn:hover,  .single_add_to_cart_button:hover {
    background: #e26b00;
    transform: translateY(-0.125rem);
}
.single .quantity {
    display: none !important;
}
/* ================= HERO ================= */
section.hero {
    background-color: rgba(27, 42, 65, 1);
    min-height: 67.5625rem;
    position: relative;
    overflow: hidden;
}

section.hero h1 {
    color: #fff;
    max-width: 49.0625rem;
}

/* ================= ELLIPSE ================= */
.ellipse-left img,
.ellipse-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ellipse-left {
    width: 59.4375rem;
    height: 59.5rem;
    top: 6rem;
    left: -22.6875rem;

    position: absolute;
    border-radius: 50%;
    overflow: hidden;
}

.ellipse-right {
    width: 66.125rem;
    height: 66.25rem;
    top: 9.1875rem;
    left: 71.875rem;

    position: absolute;
    border-radius: 50%;
    overflow: hidden;
}

section.hero .container {
    position: relative;
    z-index: 2;
}

/* ================= HERO GRID ================= */
.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 3.75rem;
}

.hero-content p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 1);
    max-width: 37.5rem;
}

.hero-content .btn {
    margin-top: 3.75rem;
}

/* ================= HERO IMAGE ================= */
.hero-image {
    position: relative;
    text-align: right;
    margin-top: 8.125rem;
}

.hero-image img {
    width: 58.75rem;
    height: 60.3125rem;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

/* ================= USP SECTION ================= */
.usp-section {
    background-color: rgba(27, 42, 65, 1);
}

.usp-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    gap: 9.375rem;
    padding: 3rem 0;
}

.usp-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #fff;
}

.usp-item img {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
}

.usp-item span {
    font-size: 1.438rem;
    font-family: var(--heading-font);
    font-weight: 600;
    white-space: nowrap;
}
/* ================= USP SECTION ================= */
/* ================= Product Highlight ================= */
.product-highlight {
    padding: 10rem 0;
}
section.product-highlight .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.875rem;
    align-items: flex-start;
}
.product-highlight .product-card {
    background: rgba(220, 220, 217, 1);
    border-radius: 1.5rem;
    padding: 4rem 2.5rem;
    border: 1px solid #000;
    position: relative;
}
.product-card.reverse {
    margin-top: 5.938rem;
}

.product-highlight .product-content {
    max-width: 60%;
}

section.product-highlight h3 {
    font-size: 3rem;
    font-family: var(--text-font);
    font-weight: 700;
    color: rgba(27, 42, 65, 1);
    margin-bottom: 1rem;
}

.product-highlight .product-content p {
    color: rgba(27, 42, 65, 1);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: var(--heading-font);
    font-weight: 500;
    line-height: 1.2;
}
.product-highlight .product-image img {
    max-width: max-content;
    display: block;
    height: 100%;
}
section.product-highlight a.btn {
    padding: 0 3.125rem;
}
.product-highlight .product-image {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 0;
    height: 100%;
    padding: 20px 20px 0px 20px;
}
/* ================= Product Highlight ================= */
/* ================= Featured Product ================= */
.product-grid .product-image {
    width: 100%;
    background-color: rgba(220, 220, 217, 1);
    height: 24rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.product-grid .product-image img {
    width: 100%;
    height: 100%;
    max-width: 15rem;
    object-fit: contain;
    transform: scale(1);
    transition: all .5s;
}
.product-grid .product-image:hover img{
    transform: scale(1.1);
}
.featured-products ol.flickity-page-dots {
    display: none;
}
.product-grid .product-item:hover{
    box-shadow: 0px 5px 10px rgb(0 0 0 / 40%);
}
.product-grid .product-item {
    width: 100%;
    background-color: #fff;
    border: 1px solid rgba(27, 42, 65, 1);
    border-radius: .75rem;
    overflow: hidden;
    margin-right: 1.25rem;
    position: relative;
    transition: all .5s;
    margin-bottom: 1rem;
}
.featured-products .product-item {
    max-width: calc(25% - 1.25rem);
}
button.wishlist {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: transparent;
    border: 0;
}
.section-action {
    margin-top: .688rem;
    text-align: center;
}
.product-grid {
    margin-top: 5rem;
    padding-bottom: 2.5rem;
}
.product-grid .product-info h3 a{
    color: rgba(15, 23, 36, 1);
    text-decoration: none;
}
.product-grid .product-info h3 {
    font-size: 1.334rem;
    font-family: var(--heading-font);
    font-weight: 500;
    line-height: 1.3;
    color: rgba(15, 23, 36, 1);
}
.product-grid .product-info {
    padding: 1.875rem 1.25rem;
    position: relative;
}
button.add-cart img {
    width: 100%;
    height: 100%;
    max-width: 1.75rem;
    object-fit: contain;
}
button.add-cart {
    width: 3.125rem;
    height: 3.125rem;
    background-color: rgba(180, 72, 0, 1);
    border-radius: 50%;
    border: 0;
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
}
span.sale-price {
    color: rgba(15, 23, 36, 1);
    font-family: var(--heading-font);
    font-size: 1.625rem;
    font-weight: 700;
}
span.regular-price {
    font-family: "Poppins", sans-serif;
    color: rgba(27, 42, 65, 1);
    font-size: .75rem;
    margin-left: .5rem;
}
.price {
    display: flex;
    align-items: center;
    margin-top: 1rem;
}
.featured-products .product-item:nth-child(even) {
    margin-top: 5rem;
}
section.featured-products {
    padding-bottom: 8.75rem;
}
/* ================= Featured Product ================= */
/* ================= Về chúng tôi ================= */
section.about-section {
    background-color: rgba(27, 42, 65, 1);
    color: #fff;
    padding: 5rem 0;
}
p.about-desc {
    max-width: 92rem;
    margin: 1rem auto;
    line-height: 1.4;
}
.about-features h3 {
    font-weight: 600;
    font-size: 1.5rem;
    margin-top: 1rem;
    text-align: center;
}
.feature-item > img {
    display: block;
    margin: 0 auto;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 87rem;
    margin: 7.188rem auto 0;
}
section.img-w-text .image-inner img {
    width: 100%;
}
/* ================= Về chúng tôi ================= */
/* ================= Review ================= */
.reviews-desc,
section.reviews-section h2 {
    color: rgba(27, 42, 65, 1);
}
section.reviews-section .flickity-prev-next-button{
    display: none;
}
section.reviews-section {
    padding: 9.813rem 0 0;
    overflow: hidden;
}
.review-card {
    border: 1px solid rgba(27, 42, 65, 1);
    padding: 2.5rem;
    width: 100%;
    max-width: 24.313rem;
    margin-right: 1.875rem;
    height: 32.813rem;
    border-radius: 10px;
    overflow: hidden;
}
.review-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.review-rate {
    font-weight: 700;
}
.review-user strong {
    display: block;
    line-height: 1;
}
.review-user {
    display: flex;
    align-items: center;
    line-height: 1;
}
.review-user > img {
    max-width: 3.25rem;
    margin-right: 1.25rem;
}
.review-text {
    font-size: 1rem;
    line-height: 1.2;
    margin-top: 1.25rem;
    height: 20rem;
    overflow: auto;
}
.review-user small {
    font-size: .75rem;
    line-height: 1;
}
.review-product img {
    max-width: 5.313rem;
    margin-top: 1.25rem;
}
.review-card:nth-child(even) {
    margin-top: 7rem;
}
.wrap-review .flickity-viewport {
    overflow: visible;
}
.wrap-review {
    margin-top: 6rem;
}
/* ================= Review ================= */
/* ================= ve chung toi ================= */
section.contact-section {
    margin-top: 6rem;
    margin-bottom: 6rem;
}
.contact-box {
    border: 1px solid rgba(27, 42, 65, 0.4);
    border-radius: 2rem;
    padding: 4rem 5rem;
    position: relative;
  }
  
  .contact-inner {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 4rem;
    
  }
  .contact-image img {
    width: auto;
    height: auto;
    object-fit: contain;
    margin-left: 0;
    position: absolute;
    top: -1rem;
    left: -6rem;
    max-height: 40rem;
}
  
  .contact-content a.btn {
    margin-top: 2.5rem;
}
  .contact-content h2 {
      margin-bottom: 1.5rem;
  }
  
  .contact-content p {
    line-height: 1.3;
    color: rgba(27, 42, 65, 1);
  }
  
/* ================= ve chung toi ================= */
/* ================= about us ================= */
.about-hero__inner {
    position: relative;
    min-height: 55rem;
    border-radius: 0;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
  .about-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(18, 32, 52, 0.2);
  }
  
  .about-hero__content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .about-hero__title {
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.25rem;
    margin-top: 3rem;
  }
  
  .about-hero__desc {
    max-width: 50rem;
    font-size: 1.5rem;
    line-height: 1.6;
    color: #ffffff;
  }
  section.sologan{
      padding: 6rem 0;
  }
  .main-contact-section + section.sologan {
    padding: 12rem 0;
}
  section.sologan h2 {
    font-size: 4rem;
    line-height: 1.4;
    text-align: center;
    max-width: 95rem;
    margin: 0 auto;
} 
.img-w-text .inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.img-w-text .text-inner p {
    font-size: 2rem;
    line-height: 1.4;
}
.img-w-text .text-inner h2 {
    max-width: 41rem;
    margin-bottom: 3rem;
}
.about-purpose__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 7rem;
    gap: 12rem;
}
h2.about-purpose__title {
    display: inline-flex;
    flex-direction: column;
}
h2.about-purpose__title strong {
    font-family: var(--text-font);
    font-weight: 700;
    display: block;
    margin-left: 65%;
    white-space: nowrap;
}
section.about-purpose {
    padding: 7.7rem 0 14rem;
}
.fs-32{
    font-size: 2rem;
    line-height: 1.3;
}
section.quote-author > .container {
    background-color: rgba(27, 42, 65, 1);
    color: #fff;
    text-align: center;
    padding: 6rem;
    border-radius: 2.5rem;
}
section.img-w-text {
    padding-top: 14rem;
}
section.quote-author small {
    font-size: 2rem;
    font-weight: 400;
    display: block;
    margin-top: 4rem;
}
section.quote-author p:last-child{
    margin-bottom: 0;
}
section.quote-author p {
    font-size: 3rem;
    line-height: 1.2;
}
span.about-purpose__circle img{
    max-width: 41.625rem;
}
span.about-purpose__circle {
    position: absolute;
    top: 4rem;
    left: 8rem;
    width: 100%;
    height: 100%;
    z-index: -1;
    text-align: center;
}
.about-purpose__media {
    position: relative;
}
.about-purpose__media > img {
    width: calc(100% + 15rem);
    margin-left: -4rem;
    margin-top: -7rem;
}
/* ================= about us ================= */
/* =================  contact ================= */
.support-cards__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
  }
  .support-card {
    position: relative;
    background-color: rgba(248, 243, 236, 1);
    border-radius: 1.25rem;
    padding: 2.5rem;
    min-height: 8rem;
    border: 1px solid rgba(27, 42, 65, 1);
}
p.support-card__title {
    font-weight: 700;
    font-size: 3rem;
    line-height: 1.2;
    max-width: 90%;
}
p.support-card__desc {
    font-size: 1rem;
    margin-top: 2.5rem;
}
.support-card__icon {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    max-width: 3rem;
}
.support-card:nth-child(2) {
    transform: translateY(-6rem);
}
section.support-cards {
    margin-top: -2.5rem;
}
.contact-section {
    padding: 6rem 0;
  }
  
  .contact-section__inner {
  
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  .contact-media {
    background-color: #79b7b2;
    border-radius: 1.5rem;
    padding: 2rem;
  
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .contact-media img {
    max-width: 100%;
    height: auto;
  }


  .contact-form {
    display: flex;
    flex-direction: column;
    margin-top: 2.5rem;
}
  .contact-form input, .contact-form textarea {
    font-size: 1rem;
    padding: 0 1.25rem;
    border-radius: 10px;
    border: 1px solid rgba(27, 42, 65, 1);
    outline: none;
    height: 3.75rem;
    background-color: transparent;
    margin-bottom: 1.5rem;
}
.main-contact-section button.btn {
    margin-top: 2.5rem;
}
.main-contact-section .contact-content h2 {
    margin-bottom: 1rem;
}
  .contact-form textarea {
    min-height: 18.75rem;
    resize: vertical;
    padding: 1.25rem;
  }
  .main-contact-section{
      margin-top: 10rem;
  }
  .contact-desc {
    font-weight: 500;
    font-size: 1rem;
}
/* =================  contact ================= */
/*breadcrumb*/
.breadcrumb, nav.woocommerce-breadcrumb {
    font-size: 1rem !important;
    margin: 1rem 0 2rem !important;
    display: flex;
    gap: 0.5rem;color: rgba(0, 0, 0, 1) !important;
    font-weight: bold;
}

.breadcrumb a, nav.woocommerce-breadcrumb a {
    text-decoration: none;
    color: rgba(0, 0, 0, 1) !important;
    font-size: 1rem;
    font-weight: normal;
}
/* wishlist icon */
.nt-wishlist{
  position:absolute;
  top:12px;
  right:12px;
}

.nt-wishlist .yith-wcwl-add-to-wishlist{
  margin:0;
}

.nt-wishlist a{
  display:flex;
  align-items:center;
  justify-content:center;
  width:40px;
  height:40px;
  background:#fff;
  border-radius:50%;
  box-shadow:0 2px 6px rgba(0,0,0,.1);
}
.nt-card__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nt-card__cart a.button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #c15a00;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    font-size: 0;
    position: relative;
}
span.onsale {
    display: none !important;
}.pdp-info .yith-add-to-wishlist-button-block {
    display: none;
}
.woocommerce .woocommerce-ordering select {
    vertical-align: top;
    width: 100%;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 6px;
}.wpc-filters-main-wrap li.wpc-term-item a, .wpc-filters-main-wrap li.wpc-term-item label{
    color: #000;
    font-size: 14px;
}
/* icon cart */
.nt-card__cart a.button:before {
    content: "";
    width: 28px;
    height: 28px;
    background: url(/wp-content/themes/nt-theme/images/shopping-cart.svg) no-repeat center;
    background-size: contain;
    /* filter: brightness(0) invert(1); */
    display: block;
    position: absolute;
    top: 9px;
    left: 7px;
}.widget-title.wpc-filter-title {
    font-size: 1.5rem;
    font-weight: 500;
}
.wpc-posts-found {
    display: none;
}
.breadcrumb span, nav.woocommerce-breadcrumb span {
    font-size: 2rem;
    line-height: 1;
    margin-top: -.5rem;
}
/*breadcrumb*/
.woocommerce-variation-add-to-cart.variations_button.woocommerce-variation-add-to-cart-enabled, .single-product form.cart {
    display: flex;
    align-items: center;
    justify-content: space-between;
        gap: 20px;
}
span.yith-wcwl-add-to-wishlist-button__label {
    display: none;
}


.sb-account-grid{
display:grid;
grid-template-columns: 520px 1fr;
gap:60px;
align-items:start;
}



.sb-account-user-name{
font-size:64px;
line-height:1.05;
font-weight:700;
margin-bottom:40px;
word-break:break-word;
}

.sb-account-left .woocommerce-MyAccount-navigation ul{
list-style:none;
padding:0;
margin:0;
}

.sb-account-left .woocommerce-MyAccount-navigation ul li{
margin-bottom:16px;
}

.sb-account-left .woocommerce-MyAccount-navigation ul li a{
display:flex;
align-items:center;
min-height:56px;
padding:14px 24px;
border:1px solid #2f2f2f;
border-radius:14px;
text-decoration:none;
font-size:18px;
font-weight:500;
color:#111;
background:#f4f0ea;
transition:all .2s ease;
}

.sb-account-left .woocommerce-MyAccount-navigation ul li.is-active a,
.sb-account-left .woocommerce-MyAccount-navigation ul li a:hover{
background:#bf5a00;
color:#fff;
border-color:#bf5a00;
}

.sb-account-right{
padding-left:0;
}

.sb-account-title{
font-size:58px;
line-height:1.1;
font-weight:700;
margin:0 0 50px;
}

.sb-account-form .sb-form-row{
display:grid;
grid-template-columns:280px 1fr;
gap:48px;
align-items:center;
margin-bottom:22px;
}

.sb-account-form .sb-form-row label{
font-size:20px;
font-weight:600;
color:#111;
margin:0;
}

.sb-account-form input[type="text"],
.sb-account-form input[type="email"],
.sb-account-form input[type="date"],
.sb-account-form select{
width:100%;
height:60px;
padding:0 20px;
border:1px solid #38445a;
border-radius:14px;
background:#f4f0ea;
font-size:18px;
outline:none;
box-shadow:none;
}

.sb-gender-wrap{
display:flex;
align-items:center;
gap:24px;
}

.sb-radio{
display:inline-flex;
align-items:center;
gap:10px;
font-size:18px;
font-weight:500;
}

.sb-radio input{
width:22px;
height:22px;
}

.sb-account-actions{
display:flex;
gap:20px;
margin-top:42px;
}

.sb-btn-primary,
.sb-btn-outline{
min-width:320px;
height:56px;
border-radius:999px;
font-size:18px;
font-weight:700;
cursor:pointer;
width: 50%;
}

.sb-btn-primary{
border:1px solid #bf5a00;
background:#bf5a00;
color:#fff;
}

.sb-btn-primary:hover{
background:#a94f00;
border-color:#a94f00;
color:#fff;
}

.sb-btn-outline{
border:1px solid #bf5a00;
background:transparent;
color:#bf5a00;
}

.sb-btn-outline:hover{
background:#bf5a00;
color:#fff;
}

.woocommerce form .show-password-input,
.woocommerce-page form .show-password-input{
display:none;
}

.woocommerce-notices-wrapper{
margin-bottom:20px;
}

@media (max-width: 1200px){
    .sb-account-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .sb-account-left{
        padding-right:0;
        border-right:none;
        border-bottom:1px solid #8b847d;
        padding-bottom:30px;
    }

    .sb-account-user-name{
        font-size:42px;
    }

    .sb-account-title{
        font-size:42px;
        margin-bottom:30px;
    }

    .sb-account-form .sb-form-row{
        grid-template-columns:1fr;
        gap:10px;
    }

    .sb-account-actions{
        padding-left:0;
        flex-direction:column;
    }

    .sb-btn-primary,
    .sb-btn-outline{
        width:100%;
        min-width:100%;
    }
}
.woocommerce-account .woocommerce-MyAccount-content {
   
    width: 100% !important;
}

.woocommerce>.woocommerce-MyAccount-navigation{
display:none;
}
.woocommerce-account .woocommerce-MyAccount-navigation {
   
width: 100% !important;
}

.sb-account-left .woocommerce-MyAccount-navigation ul li a {
    position: relative;
    padding-left: 50px;
}
.sb-account-left .woocommerce-MyAccount-navigation ul li a:before{
    content:'' ;
}.hero-content>p>a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 6.875rem;
    height: 3.75rem;
    line-height: 3.75rem;
    border-radius: 3.125rem;
    background: rgba(180, 72, 0, 1);
    border: 0.0625rem solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.03125rem;
    font-family: "Poppins", sans-serif;
    transition: all 0.3s ease;
    margin-top: 3.75rem;
}
.wc-block-components-checkout-place-order-button {
    background: #b44800;
    color: #fff;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
}
.wc-block-components-text-input.wc-block-components-address-form__postcode {
    display: none !important;
}