/* FONT IMPORT */

/* Google Font */
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
/* Local Font */
/* @font-face {
	font-family: "Font Name";
	src: url("../fonts/fontpath.ttf");
  } */

:root {
  --white: #fff;
  --black: #000;
  --primary: #972b20;
  --secondary: #123344;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  position: relative;
  background: var(--black);
  overflow-x: hidden;
  height: 100%;
  font-family: "Roboto", sans-serif;
}

section {
  position: relative;
  padding: 6rem 0;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  color: #828282;
  margin: 0;
}

h3 {
  color: #000;
  margin: 0;
}

h1,
h2,
h4,
h5,
h6 {
  color: #000;
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
}

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

.img {
  perspective: none;
  overflow: hidden;
  transform-style: preserve-3d;
}

.img img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform, box-shadow;
  display: block;
}

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;
}

/* 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(--primary);
  -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(--primary);
  opacity: 0.3;
}

/* Cursor End */

/* PRELOADER */

body.loading {
  overflow: hidden;
  height: 100vh;
}

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

.preLoader .counter {
  color: var(--white);
  font-size: 15rem;
  font-family: var(--font-heading);
  font-weight: 700;
  position: absolute;
  bottom: 0rem;
  right: 5rem;
}

.preLoader .bar {
  height: 20%;
  width: 100vw;
  background-color: var(--primary);
}

/* PRELOADER */

/* GLOBAL CSS */

.themeBtn {
  background-color: var(--primary);
  font-size: 1.125rem;
  color: #efe5d3;
  text-transform: capitalize;
  font-weight: 500;
  display: inline-block;
  padding: 1.25rem 2rem;
  line-height: normal;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
}

/* NAV HEADER CSS */

header {
  margin: 0 auto;
  width: 100%;
  padding: 1rem 1.75rem 1rem 1.75rem;
  transition: 0.3s ease-in-out;
  background-color: #efe5d3;
  position: relative;
  z-index: 10;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.navbar-nav {
  align-items: center;
  gap: 2.8125rem;
}

.navbar-nav .nav-item .nav-link {
  font-size: 1.125rem;
  color: var(--black);
  text-transform: uppercase;
  font-weight: bold;
  padding: 0 0;
  display: inline-block;
  letter-spacing: -0.25px;
  position: relative;
}

.navbar-nav .menu-item {
  position: relative;
}

.navbar-nav .menu-item>a {
  display: block;
  padding: 14px 20px;
  color: #333;
  font-size: 1.125rem;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border-radius: 12px;
  text-transform: uppercase;
  margin-right: -2rem;
}

.navbar-nav .menu-item>a:hover {
  /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
  background-color: #000;
  color: white;
}

.navbar-nav .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 180px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  margin-top: 5px;
  overflow: hidden;
  height: 0;
  opacity: 0;
  display: flex;
  flex-direction: column;
}

.navbar-nav .dropdown li {
  border-bottom: 1px solid #f0f0f0;
  opacity: 0;
  transform: translateY(-10px);
}

.navbar-nav .dropdown li a {
  font-size: 1rem;
}

.dropdown li:last-child {
  border-bottom: none;
}

.navbar-nav .dropdown a {
  display: block;
  padding: 15px 20px;
  color: #555;
  text-decoration: none;
  transition: all 0.3s ease;
}

.navbar-nav .dropdown a:hover {
  /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
  background-color: #000;
  color: white;
  padding-left: 25px;
}

.navbar-nav .dropdown li:first-child a:hover {
  border-radius: 8px 8px 0 0;
}

.navbar-nav .dropdown li:last-child a:hover {
  border-radius: 0 0 8px 8px;
}

.navbar-nav .arrow {
  display: inline-block;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.navbar-nav .menu-item:hover .arrow {
  transform: rotate(180deg);
}

/*

.navbar-nav select {
  font-size: 1.125rem;
  color: var(--black);
  text-transform: uppercase;
  font-weight: bold;
  width: 10rem;
  outline: none;
  border: unset;
  padding: 1rem;
  background: transparent;
  border-radius: 0.5rem;
  box-shadow: unset;
  cursor: pointer;
}

.navbar-nav select:focus,
.navbar-nav select:hover {
  outline: none;
  border: unset;
}

select#meun-items option {
  background: #efe5d3;
  border: unset;
  outline: unset;
}

select#meun-items option:hover {
  background-color: unset;
  color: #972b20;
} */


/* !NAV HEADER CSS */

/* Top Bar Css Start */
.top-bar {
  background-color: var(--primary);
  text-align: center;
  padding: 0.5rem 0;
}

.top-bar p {
  font-weight: 500;
  color: #efe5d3;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

/* Top Bar Css End */
/* Second Bar Css Start  */
.second-bar {
  background-color: var(--black);
  padding: 0.875rem 0 0.875rem 0;
}

form.second-form .form-control {
  height: 3.125rem;
  border: 1px solid rgb(239 229 211 / 20%);
  border-radius: 4px;
  outline: unset;
  box-shadow: unset;
  background-color: #0a0a0a;
  font-size: 0.875rem;
  font-weight: 400;
  text-transform: capitalize;
  color: #efe5d3;
  letter-spacing: -0.6px;
  padding: 0 0 0 1.25rem;
}

form.second-form .form-control::placeholder {
  font-size: 0.875rem;
  font-weight: 400;
  text-transform: capitalize;
  color: #efe5d3;
}

.second-form .form-group {
  position: relative;
}

.second-form .form-group a {
  position: absolute;
  right: 0.625rem;
  top: 0;
  bottom: 0;
  margin: auto;
  height: fit-content;
  width: fit-content;
}

.second-form .form-group a i {
  height: 2.5rem;
  width: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background-color: var(--secondary);
  color: var(--white);
}

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

.second-list li a h5 {
  font-size: 0.625rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #efe5d3;
}

.second-list li a {
  color: #efe5d3;
  display: block;
  text-align: center;
  position: relative;
}

.second-list li a::before {
  position: absolute;
  content: "";
  height: 1.875rem;
  width: 1px;
  background: linear-gradient(45deg, #000, #efe5d3, #efe5d3, #efe5d3, #000);
  right: -2rem;
  top: 0;
  bottom: 0;
  margin: auto;
}

.second-list li:last-child a::before {
  position: unset;
  height: 0;
  width: 0;
}

.flag-list {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Second Bar Css End  */
/* Main Banner Css Start */
.mainbanner {
    /* height: 890px; */
    background: url(../images/mainBnnr.webp) center / cover no-repeat;
    display: flex;
    align-items: flex-end;
    padding: 0;
}

.main-content h1 {
  font-size: 5.625rem;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -2.5px;
  line-height: 0.9;
  font-weight: 500;
  width: 78%;
}

.main-content h1 span {
  color: var(--primary);
}

.main-content p {
  color: #efe5d3;
  font-size: 1.375rem;
  letter-spacing: -1px;
  line-height: 1.6;
  width: 76%;
  margin: 1rem 0 2.5rem;
}

.main-content .btn-group {
  gap: 1rem;
}

/* .main-imag {
  margin: -7rem -16rem -7rem -13rem;
} */
.main-imag {
  margin: -7rem -8rem -13rem;
}

.main-content .btn-group .themeBtn:last-child {
  background-color: transparent;
  border: 1px solid var(--white);
}

/* Main Banner Css End  */

/* Brand Sec Css Start */

.mainHead {
  font-size: 3.75rem;
  font-weight: 500;
  color: #efe5d3;
  line-height: 1.3;
  text-transform: uppercase;
}

.brand-sec .mainHead {
  text-align: center;
  margin: 0 0 2.25rem 0;
}

.brand-content h3 {
  font-size: 1.375rem;
  font-weight: 600;
  text-transform: capitalize;
  color: #efe5d3;
  line-height: 1.2;
  letter-spacing: -0.25px;
  padding: 0 0 0.325rem 0;
}

.brand-content p {
  color: rgb(239 229 211 / 60%);
  font-size: 0.9375rem;
  line-height: 1.5;
  width: 90%;
}

.brand-imag {
  height: 8.875rem;
  width: 8.875rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--primary);
  flex-shrink: 0;
}

.brand-flex {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Brand Sec Css End  */

/* Shop Sec Css Start */
.shop-sec .mainHead {
  text-align: center;
}

.shop-sec {
  background-color: #141414;
  padding: 6rem 0 7.5rem 0;
}

.shop-main {
  position: relative;
  text-align: center;
  border: 1px solid #efe5d3;
  border-radius: 10px;
  transition: 0.6s ease;
  margin: 2.25rem 0 0 0;
}

.shop-main::before {
  position: absolute;
  content: "";
  inset: 0;
  background: radial-gradient(rgb(8 8 8 / 20%), rgb(0 0 0 / 85%));
  transition: 0.6s ease;
  border-radius: 10px;
  background: linear-gradient(45deg, #080808, #000);
  opacity: 75%;
}

.shop-main a {
  position: absolute;
  display: block;
  height: fit-content;
  width: fit-content;
  margin: auto;
  inset: 0;
  font-size: 2.25rem;
  font-weight: 600;
  text-transform: capitalize;
  color: #efe5d3;
}

.shop-main:hover::before {
  opacity: 40%;
}

.shop-main:hover {
  border: 4px solid var(--primary);
}

/* Shop Sec Css End  */

/* Build Sec Css Start */

.build-img {
  display: grid;
  place-items: center;
  border: 2px solid var(--secondary);
  border-radius: 10px;
  background-color: #060606;
  padding: 4rem;
}

.build-sec {
  overflow: hidden;
}

.build-content .mainHead {
  width: 53%;
  line-height: 1;
  margin: 0 0 2.2rem 0;
}

form.build-form textarea.form-control {
  height: 7.25rem;
  padding: 1.5rem 2rem;
}

form.build-form {
  border: 1px solid rgb(239 229 211 / 20%);
  background-color: rgb(10 10 10 / 90%);
  border-radius: 10px;
  padding: 2rem 1.25rem 2rem 1.25rem;
}

form.build-form .form-control {
  border: 1px solid rgb(239 229 211 / 20%);
  background-color: rgb(10 10 10 / 90%);
  font-size: 1.375rem;
  font-weight: 400;
  color: #efe5d3;
  letter-spacing: -1px;
  outline: unset;
  box-shadow: unset;
}

form.build-form .form-contro::placeholder {
  font-size: 1.375rem;
  font-weight: 400;
  color: #efe5d3;
  letter-spacing: -1px;
}

form.build-form h3 {
  font-size: 25px;
  font-weight: 600;
  text-transform: capitalize;
  color: #efe5d3;
  margin: 1rem 0 2rem;
}

.buildsub {
  position: absolute;
  right: 0;
  bottom: -50%;
  z-index: -1;
}

form.build-form label {
  display: flex;
  align-items: center;
  gap: 1rem;
}

form.build-form label span {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.125rem;
  font-weight: 500;
  text-transform: capitalize;
  color: #efe5d3;
  border: 1px solid rgb(239 229 211 / 20%);
  padding: 0.775rem 1.3rem;
  background-color: rgb(0 0 0 / 20%);
  border-radius: 10px;
}

.build-form .themeBtn {
  border: unset;
  width: 100%;
}

/* Build Sec Css End */

/* Custom-Sec Start */

.custom-top {
  text-align: center;
  margin-bottom: 2.5rem;
}

.custom-main {
  text-align: center;
  background-color: rgb(20 20 20 / 30%);
  border: 1px solid rgb(239 229 211 / 20%);
  border-radius: 10px;
  height: 700px;
  place-content: center;
  transition: 0.5s ease;
  margin-bottom: 36px;
}

.custom-main .themeBtn {
  width: 90%;
  margin-top: 3rem;
  padding: 20px 0;
  height: 57px;
  text-transform: none;
  background-color: #123344;
}

.custom-main:hover {
  border: 1px solid #123344;
  background-color: #000000;
}

.custom-main .themeBtn:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* Custom-Sec End */

/* Military-Sec Start */

.military-sec {
  background: url(../images/flagbg.webp) center/cover fixed;
  height: 460px;
}

.military-content {
  text-align: center;
}

.military-content .mainHead {
  font-size: 90px;
  line-height: 0.9;
  font-family: "Bebas Neue";
  letter-spacing: 3px;
}

.military-content p {
  color: #efe5d3;
  font-size: 20px;
  font-family: "Roboto";
  margin: 12px 0 22px;
  line-height: 1.6;
}

/* Military-Sec End */

/* Gallery-Sec Start */
.gallery-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 0 240px 60px;
}

.gallery-top .mainHead {
  line-height: 0.9;
}

/* Gallery-Sec End */

/* Footer Start */
footer {
  padding: 97px 0 1.5rem;
  background-color: #0f0f0f;
}

.quicklist li a {
  color: #efe5d3;
  font-size: 22px;
  font-weight: 500;
  font-family: "Roboto";
  position: relative;
}

.quicklist li+li {
  margin: 1rem 0 0;
}

footer h3 {
  color: #efe5d3;
  font-size: 22px;
  font-weight: 500;
  font-family: "Roboto";
  letter-spacing: -1px;
  text-transform: capitalize;
}

.footerform .form-control {
  border: 1px solid #efe5d3;
  border-radius: 4px;
  box-shadow: unset;
  outline: unset;
  background-color: transparent;
  height: 57px;
  position: relative;
  color: #efe5d3;
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto";
  padding-left: 25px;
  letter-spacing: -1px;
}

.footerform .form-control::placeholder {
  color: #efe5d3;
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto";
}

.footerform .form-group {
  margin: 32px 0;
}

.footerform button {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 14px;
  height: 60px;
  border: none;
  border-radius: 8px;
  margin: auto;
  padding: 19px 43px;
  text-transform: none;
  color: #efe5d3;
  font-size: 1.125rem;
  font-family: "Roboto";
  font-weight: 500;
}

.footer-icons {
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer-icons li a i {
  background-color: #123344;
  height: 48px;
  width: 48px;
  display: grid;
  place-content: center;
  border-radius: 6px;
  color: var(--white);
  font-size: 1.125rem;
  transition: 0.5s ease;
}

.footer-icons li a i:hover {
  background-color: #efe5d3;
  color: #123344;
  transform: scale(1.2);
}

.copy-right {
  border-top: 1px solid rgb(255 255 255 / 20%);
  margin-top: 4rem;
  padding-top: 1.25rem;
}

.copy-right ul {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 13px;
}

.copy-right ul li a {
  color: #efe5d3;
  font-size: 1.125rem;
  font-weight: 300;
  font-family: "Roboto";
  letter-spacing: -1px;
}

.copy-right p {
  color: #efe5d3;
  font-size: 1.125rem;
  font-family: "Roboto";
  margin: 0;
  line-height: 2.3;
}

/* Footer End */

/* Popular Sec Css Start */

.popular-main {
  text-align: center;
  background-color: #202020;
  border-radius: 10px;
  margin: 0 0 2.25rem 0;
}

.popular-imag {
  height: 395px;
  width: 330px;
  display: grid;
  place-items: center;
  border: 1px solid rgb(239 229 211 / 20%);
  border-bottom: unset;
  background-color: #111111;
  position: relative;
  border-radius: 10px 10px 0 0;
  transition: 0.6s ease;
  overflow: hidden;
}

.popular-content {
  padding: 0.625rem 0;
}

.popular-main .themeBtn {
  background-color: var(--secondary);
  padding: 1.25rem 4.875rem;
}

.popular-flex {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: absolute;
  bottom: 0.875rem;
  left: 0.875rem;
  padding: 8px 0.625rem;
  border-radius: 10px;
  border: 1px solid rgb(239 229 211 / 20%);
  background-color: rgb(0 0 0 / 20%);
}

.popular-flex h5 {
  height: 1.25rem;
  width: 1.25rem;
  display: grid;
  place-items: center;
  border-radius: 50px;
  font-size: 8px;
  font-weight: 400;
  color: var(--white);
  font-family: "Roboto";
  background-color: var(--secondary);
  flex-shrink: 0;
}

.popular-flex h6 {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--white);
  font-family: "Roboto";
}

.popular-main:hover .popular-imag {
  border-color: #972b20;
}

.popular-main:hover .themeBtn {
  background-color: var(--primary);
}

.popular-sec {
  background-color: #141414;
}

/* Popular Sec Css End  */

/* Hover Effect Css Start */
.galler-imag {
  overflow: hidden;
}

.galler-imag img {
  transition: 0.6s ease;
}

.galler-imag:hover img {
  transform: scale(1.09);
}

.navbar-nav .nav-item .nav-link::before {
  position: absolute;
  content: "";
  height: 3px;
  width: 0%;
  background-color: var(--black);
  bottom: -3px;
  transition: 0.6s ease;
}

.navbar-nav .nav-item .nav-link:hover::before {
  width: 100%;
}

.themeBtn:hover {
  box-shadow: 0 0 40px 0 rgb(151 43 32 / 100%);
  color: var(--white);
}

.main-content .btn-group .themeBtn:last-child:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}

.quicklist li a::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 0%;
  background-color: var(--primary);
  transition: 0.6s ease;
  bottom: -5px;
}

.quicklist li a:hover::before {
  width: 100%;
}

.quicklist li a:hover {
  color: var(--primary);
}

.gallery-sec {
  padding: 6rem 0 0 0;
}

.popular-imag img {
  transition: 0.6s ease;
}

.popular-imag:hover img {
  transform: scale(1.2);
}

/* Hover Effect Css End  */



/* inner pages css start  */
.inner-banner {
  position: relative;
}

.inner-banner h1 {
  position: absolute;
  top: 50%;
  left: 13%;
  transform: translateY(-50%);
  font-size: 7.4375rem;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 4.5px;
  left: 50%;
  transform: translate(-50%, -50%);
}

.inner-banner figure img {
  width: 100%;
  height: 196px;
}

.build-inner .mainHead {
  font-size: 3.75rem;
  width: unset;
}

.build-inner {
  background-color: #000;
}

.build-inner p {
  color: #efe5d3;
  font-size: 22px;
  font-weight: 400;
  line-height: 33px;
  letter-spacing: -0.5px;
  word-spacing: 6px;
}

.build-content {
  padding-left: 2rem;
}

.build-custom .build-img {
  height: 44rem;
}

/* contact sec start  */

/* .contact-sec .accordion {
  margin-top: 2rem;
} */

.contact-sec .accordion-item {
  background: unset;
  border: 1px solid #ddd;
  /* margin-bottom: 10px; */
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  max-width: 88%;
}

.contact-sec .mainHead {
  margin-bottom: 50px;
}

.contact-sec .accordion-header {
  width: 100%;
  padding: 10px 20px;
  font-size: 1.5rem;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  color: #fff;
  text-align: left;
  transition: background 0.3s;
  font-weight: 800;
}

.contact-sec .accordion-item {
    margin-bottom: 1rem;
}

.contact-sec .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
}

.contact-sec .accordion-content p {
  margin: 0;
  padding: 15px 0;
  color: #fff;
  line-height: 1.6;
}

.contact-sec label {
  color: #fff;
}

.contact-sec input {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  width: 200px;
  height: 40px;
  margin-bottom: 1rem;
  padding-left: 0.7rem;
}

.contact-sec textarea:focus,
.contact-sec input:focus {
  outline: unset;
}


.contact-sec textarea {
  background: transparent;
  color: #fff;
  resize: unset;
  border: 2px solid #fff;
  padding: 10px 0 0 12px;
  width: 100%;
  height: 200px;
}

.contact-sec .themeBtn {
  background-color: #B80000;
  padding: 14px 20px;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-top: 10px;
  transition: all 0.4s ease-in;
}

.contact-sec .themeBtn:hover {
  background-color: #fff;
  color: #B80000;
}

.contact-sec {
  position: relative;
  padding: 10rem;
}

.contact-sec .border-hr {
  background-color: #fff;
  height: 650px;
  width: 1px;
  position: absolute;
  left: 48%;
  top: 11%;
}

/* contact sec end  */

/* my account sec start */

.my-account-sec {
  background: #000;
  padding: 80px 0;
  color: #fff;
}

.my-account-sec h3 {
  font-weight: 800;
  margin-bottom: 30px;
  font-size: 2.5rem;
  color: #fff;
}

section.my-account-sec h4 {
  font-size: 6rem;
  color: #fff;
}

.my-account-sec a {
  color: #fff;
}

section.my-account-sec .row {
  margin-top: 5rem;
}

.my-account-sec label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
}

.my-account-sec label span {
  color: red;
}

.my-account-sec input[type="text"],
.my-account-sec input[type="password"] {
  width: 100%;
  background: transparent;
  border: 1px solid #444;
  padding: 12px;
  color: #fff;
  margin-bottom: 20px;
  outline: none;
  box-shadow: none;
}

.my-account-sec .password-field {
  position: relative;
}

.my-account-sec .password-field i {
  position: absolute;
  right: 0;
  top: 35.4%;
  transform: translateY(-50%);
  cursor: pointer;
  background: #fff;
  height: 2.9rem;
  width: 3rem;
  color: #000;
  display: grid;
  place-content: center;
}

.my-account-sec .login-btn {
  width: 100%;
  background: #3b6f3b;
  color: #fff;
  padding: 12px;
  border: none;
  margin-bottom: 15px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid #3b6f3b;
}

.my-account-sec .login-btn:focus {
  outline: unset;
}


.my-account-sec .login-footer {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.my-account-sec .login-footer a {
  color: rgb(25, 81, 118);
  font-size: 1rem;
}

.my-account-sec .register-box {
  text-align: center;
  padding-left: 5rem;
}

.my-account-sec .register-box p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #fff;
}

.my-account-sec .register-btn {
  background: #9a2d20;
  color: #fff;
  padding: 8px 22px;
  border: none;
  font-weight: bold;
  font-size: 12px;
  border-radius: 10px;
  border: unset;
  outline: unset;
  transition: 0.4s ease-in;
  border: 1px solid #9a2d20;
}

.my-account-sec .register-btn:focus {
  outline: unset;
}

.my-account-sec .register-btn:hover {
  background-color: #fff;
  color: #9a2d20;
  border: 1px solid #9a2d20;
}

.my-account-sec .center-line {
  position: absolute;
  left: 49%;
  top: 42%;
  width: 1px;
  height: 48%;
  background: #333;
  transform: translateX(-50%);
}

/* my account sec end */


/* men section start  */
/* .productPage {
  padding: 3rem 0;
}

.breadcumb ul {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcumb ul li a {
  color: #8e8e8e;
  font-size: 1rem;
  font-weight: 400;
}

.breadcumb ul li span {
  color: #333333;
  font-size: 1rem;
  font-weight: 600;
}

.breadcumb ul li .clr {
  color: #8e8e8e;
}

.pagination {
  justify-content: flex-end;
}

.pagination ul {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.pagination ul li label {
  color: #2d2a2a;
  margin: 0;
  font-weight: 600;
}

.pagination ul li a {
  color: #8e8e8e;
  font-weight: 500;
}

.pagination ul li span {
  color: #8e8e8e;
}

.pagination ul li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.pagination ul li a svg {
  fill: #8e8e8e;
}

.pagination ul li select {
  color: #2d2a2a;
  font-weight: 600;
  width: 200px;
  border: 0;
  border-bottom: 1px solid #8e8e8e;
  padding-bottom: 5px;
}

.pagination ul li a.active {
  color: var(--black);
}

.pagination ul li a svg.active {
  fill: var(--black);
}

.productPage .row+.row {
  margin-top: 3rem;
}

.mostCard.propgBox .proBox figure ul {
  border-top: 1px solid #ccc;
  width: 100%;
  border-bottom: 1px solid #ccc;
  transition: transform 0.3s ease;
  transform: translateY(0%) translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  padding: 0;
  padding: 6px 10px;
  bottom: 0;
  top: inherit;
  opacity: 0;
}

.mostCard.propgBox .proBox figure {
  overflow: inherit;
}

.mostCard.propgBox .proBox .themeBtn {
  transform: translateY(0px);
  position: static;
  color: var(--white);
  padding: 0.7em 1.26em;
}

.proHide ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.proHide ul li a {
  color: #000;
  font-size: 1.2rem;
}

.mostCard.propgBox {
  position: relative;
  margin-bottom: 0rem;
}

.mostCard.propgBox .proBox {
  background-color: #000;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  padding: 1.5rem;
}

.proHide {
  position: absolute;
  top: calc(100% - 5px);
  right: 0;
  left: 0;
  visibility: hidden;
  padding: 0 20px 20px 20px;
  opacity: 0;
  background-color: #fff;
  z-index: 1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.mostCard.propgBox:hover .proHide {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease, visibility 0s ease;
  box-shadow: 2px 10px 9px rgb(0 0 0 / 15%);
}

.mostCard.propgBox:hover .proBox {
  box-shadow: 0 0 10px rgb(0 0 0 / 15%);
}

.proContent {
  text-align: center;
}


.proContent h2 {
  color: #FFFFFF99;
  font-size: 16px;
} */
/* men section end  */

/* men section start  */



.breadcumb ul {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcumb ul li a {
  color: #8e8e8e;
  font-size: 1rem;
  font-weight: 400;
}

.breadcumb ul .men a {
  color: #fff;
}

.breadcumb ul li span {
  color: #333333;
  font-size: 1rem;
  font-weight: 600;
}

.breadcumb ul li .clr {
  color: #8e8e8e;
}

.pagination {
  justify-content: flex-end;
}

.pagination ul {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.pagination ul li label {
  color: #fff;
  margin: 0;
  font-weight: 600;
}

.pagination ul li a {
  color: #ffffffB3;
  font-weight: 500;
}

.pagination ul li span {
  color: #8e8e8e;
}

.pagination ul li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.pagination ul li a svg {
  fill: #FFFFFFB3;
}

.pagination ul li select option {
  background: #000;
}

.pagination ul li select {
  color: #fff;
  font-weight: 600;
  width: 200px;
  border: 0;
  border-bottom: 1px solid #FFFFFFB3;
  padding-bottom: 5px;
  background: transparent;
}


.pagination ul li select:focus {
  outline: unset;
  border: unset;
}

.pagination ul li a.active {
  color: #fff;
}

.pagination ul li a svg.active {
  fill: #fff;
}


.productPage {
  padding: 0.5rem 0;
  background: #1a1a1a;
}

.mostCard.propgBox {
  position: relative;
  margin-bottom: 0rem;
}

.mostCard.propgBox .proBox {
  background-color: #000;
  padding: 1.5rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  transform: scale(1);
  height: 30rem
}

.mostCard.propgBox:hover .proBox {
  background-color: #1a1a1a;
  transform: scale(1.07);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.mostCard.propgBox .proBox figure {
  overflow: hidden;
  margin-bottom: 0;
}

.mostCard.propgBox .proBox figure img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.mostCard.propgBox:hover .proBox figure img {}


.proContent {
  text-align: center;
  padding-top: 1rem;
}

.proContent h2 {
  color: #FFFFFF99;
  font-size: 16px;
  margin-bottom: 0.2rem;
}

.proContent h3,
.proContent p {
  color: #FFFFFFCC;
  font-size: 14px;
  margin-bottom: 0.5rem;
}

.proContent span {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
  display: block;
}

.proHide {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  visibility: hidden;
  opacity: 0;
  background-color: #1a1a1a;
  padding: 15px 20px;
  z-index: 10;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s ease, visibility 0s ease 0.3s, transform 0.3s ease;
  transform: translateY(100%);
}

.mostCard.propgBox:hover .proHide {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(0);

}


.proHide ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  margin: 0;
}

.proHide ul li a {
  color: #000;
  font-size: 1.2rem;
}

.proHide .themeBtn {
  background-color: #0080005c;
  color: var(--white);
  padding: 0.7em 1.26em;
  text-decoration: none;
  font-size: 14px;
  border-radius: 4px;
  display: inline-block;
}

.mostCard.propgBox .proBox figure ul {
  display: none;
}

.proHide ul li a i.fa-heart,
.proHide ul li a i.fa-search {
  font-size: 20px;
  color: #fff;
  transition: color 0.2s ease;
}

.proHide ul li a:hover i.fa-heart,
.proHide ul li a:hover i.fa-search {
  color: #e74c3c;
}

.proHide p {
  color: #FFFFFF99;
  font-size: 13px;
  margin-bottom: 10px;
  text-align: center;
}

.proHide a.shuffle {
  color: #fff;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 40px;
  border-bottom: 1px solid #ffffff61;
  border-top: 1px solid #ffffff61;
  margin-bottom: 10px;
  padding: 10px 0;
  font-size: 22px;
}

.sidebar-widget {
  padding: 20px;
  background-color: #000;
  color: #fff;
}

.sidebar-widget h2 {
  color: #fff;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-rated-section {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stock-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.stock-list li {
  margin-bottom: 10px;
}

.checkbox-container {
  display: block;
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  color: #ccc;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: transparent;
  border: 1px solid #ccc;
}

.checkbox-container input:checked~.checkmark {
  background-color: transparent;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked~.checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 4px;
  top: 4px;
  width: 5px;
  height: 5px;
  background: #fff;
}


.product-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-list li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.product-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.product-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-image {
  width: 50px;
  height: 50px;
  overflow: hidden;
  background-color: #1a1a1a;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-name {
  font-size: 18px;
  color: #fff;
  line-height: 1.2;
}

.product-price {
  font-size: 16px;
  font-weight: 600;
  color: #005086;
  line-height: 1.2;
  margin-top: 5px;
}


.men-sec {
  background-color: #0f0f0f;
  padding: 50px 0;
  text-align: center;
  color: #fff;
}

.men-sec-content {
  max-width: 800px;
  margin: 0 auto;
}

.men-sec-content h1 {
  font-size: 80px;
  font-weight: 500;
  letter-spacing: 5px;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  margin-right: 3rem;
}

.men-sec-content .back-arrow {
  color: #fff;
  text-decoration: none;
  font-size: 40px;
  margin-right: 10px;
  font-weight: 300;
  line-height: 1;
}

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

.men_category .main-menu {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.men_category .menu-item {
  position: relative;
}

.men_category .menu-item>a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  text-align: left;
}

.men_category .menu-item span {
  font-size: 12px;
  color: #8e8e8e;
  text-transform: capitalize;
}

.men_category .dropdown {
  position: absolute;
  top: 100%;
  left: 122%;
  transform: translateX(-50%);
  min-width: 200px;
  background: #000000e6;
  display: none;
  z-index: 99;
  text-align: left;
}

.men_category .has-dropdown:hover .dropdown {
  display: block;
}

.men_category .dropdown li a {
  display: block;
  padding: 10px 15px;
  color: #fff;
  font-size: 14px;
  text-transform: capitalize;
}

.men_category .dropdown li a span {
  color: #8e8e8e;
  font-size: 12px;
}

.men_category .dropdown li a:hover {
  background: #eee;
  color: #000;
}



/* men section end  */

/* inner pages end  */


















/* product detail css start */


/*PRoduct Details*/
.productSIDE .color-picker {
  margin: 1rem 0;
  width: 33rem;
}

.productSIDE .color-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.productSIDE .colors {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.colors li {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  background-color: #fff;
  /* default color, but JS will set dataset color */
  transition: transform 0.2s, background-color 0.2s, border 0.2s;
}

.colors li:hover {
  transform: scale(1.2);
}

.colors li.active {
  border: 3px solid #fff;
  /* white border for active */
}




.productSIDE {
  position: sticky;
  top: 50px;
}

.Proreview .row {
  display: flex;
  align-items: flex-start;
}

.Proreview h2 {
  text-align: left;
  margin: 0;
  font-size: 3.75rem;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
}

.Proreview ul {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 2rem;
  color: #F7C00C;
  margin-bottom: 1rem;
}

.Proreview ul li span {
  color: #fff;
  font-weight: 500;
  padding-right: 1rem;
  font-size: 1.25rem;
}

.Proreview p {
  font-size: 1.75rem;
  color: #000;
}

.Proreview h5 {
  font-size: 1.375rem;
  color: #828282;
  font-weight: 400;
  margin: 0;
}

.star {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.star li span::before {
  content: "";
  position: absolute;
  background: #F2F2F2;
  width: 80%;
  height: 25px;
  top: 7px;
  left: 8rem;
  border-radius: 10px;
}

ul.star li {
  margin: 0;
  color: #000;
  font-size: 1.875rem;
}

.star li span::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--theme-color);
  top: 7px;
  left: 8rem;
  height: 25px;
  width: 70%;
  border-radius: 10px 0 0 10px;
}

.star2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.star2 li span::before {
  content: "";
  position: absolute;
  background: #F2F2F2;
  width: 80%;
  height: 25px;
  top: 7px;
  left: 8rem;
  border-radius: 10px;
}

.star2 li {
  margin: 0;
  color: #000;
  font-size: 1.875rem;
}

.star2 li span::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--theme-color);
  top: 7px;
  left: 8rem;
  height: 25px;
  width: 10%;
  border-radius: 10px 0 0 10px;
}

.star3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.star3 li span::before {
  content: "";
  position: absolute;
  background: #F2F2F2;
  width: 80%;
  height: 25px;
  top: 7px;
  left: 8rem;
  border-radius: 10px;
}

ul.star3 li {
  margin: 0;
  color: #000;
  font-size: 1.875rem;
}

.startProduct ul {
  margin: 1.4rem 0;
}

.Proreview {
  padding-bottom: 6rem;
}

.buttonRow {
  display: flex;
  gap: 1rem;
}

.buttonRow .themeBtn {
  flex: 1;
  padding: 15px 0;
  border-radius: 30px;
  text-align: center;
}

.cardbutton .themeBtn {
  width: 100%;
  padding: 16px;
  border-radius: 30px;
  text-align: center;
}

.reviewSec {
  /* background: #fff; */
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid #d2d2d26e
}



.reviewImg {
  display: flex;
  align-items: center;
  margin: 3.5rem 0;
}

.content-wraper h3 {
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 500;
  text-transform: capitalize;
  color: #fff;
}

.content-wraper {
  margin-left: 2rem;
}

.content-wraper h4 {
  margin: 0.9rem 0;
  font-size: 1rem;
  color: #726f6f;
  font-weight: 600;
}

.content-wraper span {
  margin-left: 21px;
  font-size: 12px;
  color: #A4A4A4;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;
}

.content-wraper p {
  font-size: 1rem;
  margin: 0;
  color: #fff;
}

.Proreview .row+.row {
  margin: 5rem 0;
}

.reviewSec textarea {
  width: 100%;
  height: 160px;
  padding: 1rem;
  background: transparent;
  border-color: #d2d2d26e;
  border-radius: 10px;
  color: #fff;
}

.reviewSec textarea:focus {
  outline: unset;
}

.wishlistPro {
  background: #f8f6f6;
  padding-top: 0;
}

.productSlider-for,
.productSlider-nav {
  overflow: hidden;
}

.productNav {
  background: #FBFBFB;
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid #E8E8E8;
}

.productNav figure {
  background: #FFFFFF;
  /* border-radius: 10px; */
  padding: 0.91rem 0;
  margin: 0.7rem 0;
  border: 2px solid #DBDBDB;
  border-radius: 15px;
}

ul.stckst li {
  font-size: 1.25rem;
  color: var(--theme-color);
  font-weight: 500;
}

.productNav figure:hover {
  /* border: 1px solid var(--theme-color); */
}

.rating-box {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.rating-box .rating-container {
  direction: rtl !important;
}

.rating-box .rating-container label {
  display: inline-block;
  margin: 0;
  color: #d4d4d4;
  cursor: pointer;
  font-size: 2.2rem;
  transition: color 0.2s linear;
}

.rating-box .rating-container input {
  display: none;
}

.rating-box .rating-container label:hover,
.rating-box .rating-container label:hover~label,
.rating-box .rating-container input:checked~label {
  color: gold;
}

.rating-box span {
  font-size: 1.3rem;
  color: var(--theme-color);
  font-weight: 500;
  padding-left: 0.5rem;
}

.prodtl-txt p {
  font-size: 1.125rem;
  color: #7e7e7e;
}

.quantitySec h4 {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: #fff;
}

.quantitySec .number {
  padding: 0;
  font-size: 1rem;
}

.quantitySec .number .minus {
  background: #00800075;
  width: 39px;
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: unset;
  border-radius: 7px;
  padding: 0;
  cursor: pointer;
}

.quantitySec .number .plus {
  background: #00800075;
  width: 39px;
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* border: 1px solid #CCCCCC; */
  border-radius: 7px;
  padding: 0;
  cursor: pointer;
  outline: unset;
  border: unset;
}


.quantitySec .number input {
  width: 60px;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary);
}

.quantitySec .number input:focus {
  outline: unset;
}

.number {
  background: transparent;
  padding: 1rem 0;
  border: 0;
  border-radius: 7px;
  width: 100%;
  color: #282828;
  display: flex;
  align-items: center;
}

.number input {
  background: transparent;
  border: none;
  height: 2rem;
  width: 50px;
  text-align: center;
  height: 39px;
  color: #fff;
}

.number .minus {
  padding: 1rem 2rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.number .plus {
  padding: 1rem 2rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.productNav figure img {
  width: 100%;
  height: 77px;
  object-fit: contain;
}

.btnn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.colorBox option {
  background: var(--color);
}

.productSlider-for figure img {
  height: 459px;
}

.productSlider-for figure {
  margin: 0 0 1.2rem;
  border: 1px solid #DBDBDB;
  border-radius: 15px;
  padding: 3rem 0;
}

.productSlider-nav .swiper-slide.swiper-slide-next figure {
  border-color: #2C7B76;
}

.reviewImg figure {
  width: 135px;
  height: 135px;
  background: #E1E1E1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.reviewImg figure img {
  width: fit-content;
}

.star-review {
  display: flex;
  align-items: center;
  margin: 20px 0 15px;
  color: #F5AA27;
  gap: 5px;
}

.reviewImg+hr+h2.sectionHeading {
  font-size: 2.25rem;
  color: #fff;
  margin: 2rem 0 1rem;
}

.reviewSec hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid #ffffff75;
}

.product-heading {
  margin: 1.5rem 0;
  font-size: 3.4375rem;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
}


/* product detail css end */


/* cart css start */

.cart-list ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #dcdcdc99;
  border-radius: 15px;
  position: relative;
}

.cart-list ul li {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.cart-list ul li figure {
  width: 222px;
  height: 214px;
  border: 1px solid #dcdcdc99;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-list ul li figure img {
  /* width: fit-content; */
  width: 12rem;
}

.cart-list ul li h4 {
  color: var(--primary);
  width: 180px;
  line-height: 2.3rem;
  margin: 0 0 0.8rem;
}

.cart-list ul li h5 {
  font-size: 1.5625rem;
  color: #fff;
  font-weight: 600;
  margin: 0;
}

.cart-list .quantitySec .number {
  background: #F7F6FB;
  border: 1px solid #CCCCCC;
}

.cart-list .quantitySec .number .minus {
  border: 0;
  background: var(--primary);
  border-radius: 0;
  color: #fff;
  border-radius: 8px;
}

.cart-list .quantitySec .number .plus {
  border: unset;
  background: var(--primary);
  border-radius: 0;
  color: #fff;
  border-radius: 8px;
}

.cart-list .quantitySec {
  padding-right: 4rem;
}

.cart-list .quantitySec h6 {
  font-size: 1.25rem;
  margin: 0 0 20px;
  color: var(--primary);
}

.cart-list div {
  position: relative;
}

.cart-list div button.close {
  position: absolute;
  top: 3%;
  right: 0.5%;
  width: 28px;
  height: 28px;
  background: var(--primary);
  opacity: 1;
  text-shadow: unset;
  color: var(--white);
  font-size: 15px;
  border-radius: 5px;
}

.cart-list div button.close:focus {
  outline: unset;
}

.cart-list div+div {
  margin-top: 1.5rem;
}

.myDiv {
  transition: opacity 0.3s ease;
}


.cart-total h4 {
  font-size: 1.875rem;
  display: flex;
  align-items: flex-end;
  margin: 0 0 10px;
  gap: 15px;
  color: var(--primary);
}

.cart-total h4 small {
  font-size: 15px;
  color: #fff;
  ;
}

.cart-total p {
  font-size: 22px;
  color: #fff;
  font-weight: 500;
  font-style: italic;
  margin: 0 0 1.5rem;
  line-height: 2.25rem;
  width: 100%;
}

.cart-total {
  margin-bottom: 2rem;
}


/* cart css end */


/* checkout css start */

.check-out-form .primary-heading {
  margin-bottom: 40px;
  font-size: 3.75rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
}

.check-out-form p {
  line-height: 16px;
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 500;
  color: #2d2e37;
}

.check-out-form p {
  font-size: 1.375rem;
  margin-bottom: 15px;
  font-weight: 500;
  color: #fff;
}

.check-out-form .checkout-subheading a {
  color: #388980;
  font-weight: 600;
}

.check-out-form form {
  /* margin-top: 4rem; */
  text-align: left;
}

.order-summery {
  border-left: 1px solid #fff;
  padding-left: 2rem;
}

.check-out-form form label {
  font-size: 1rem;
  text-transform: capitalize;
  color: #fff;
  font-weight: 500;
}

.check-out-form .form-control {
  min-height: 60px;
  margin-bottom: 26px;
  /* box-shadow: 7px 6px 15px 0px #d2d2d2; */
  border: 1px solid #ebebeb;
  border-radius: 10px;
  background: #000;
  color: #ffffffb8;
}

.check-out-section input[type="checkbox"] {
  display: none;
}

.check-out-section input[type="checkbox"]+label {
  display: block;
  position: relative;
  padding-left: 45px;
  margin-bottom: 20px;
  /* font: 14px/20px 'Open Sans', Arial, sans-serif; */
  color: #ddd;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.check-out-section input[type="checkbox"]+label:last-child {
  margin-bottom: 0;
}

.check-out-section input[type="checkbox"]+label:before {
  content: '';
  display: block;
  width: 30px;
  height: 30px;
  border: 2px solid #2C7B76;
  position: absolute;
  left: 0;
  top: 0px;
  opacity: .6;
  -webkit-transition: all .12s, border-color .08s;
  transition: all .12s, border-color .08s;
  bottom: 0;
  margin: auto;
}

.check-out-section input[type="checkbox"]:checked+label:before {
  width: 10px;
  top: -5px;
  left: 5px;
  border-radius: 0;
  opacity: 1;
  border-top-color: transparent;
  border-left-color: transparent;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.check-out-form form .checkbox label {
  color: #2D2E37;
  font-weight: 400;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  font-size: 1.25rem;
}

.check-out-form form .checkbox {
  margin-bottom: 20px;
}

/* .check-out-form .order-summery {
  padding: 50px 0px;
} */

.check-out-section .text-right {
  text-align: right !important;
  color: #fff;
}

.chkot-pag .primary-heading {
  margin-bottom: 15px;
  text-align: left !important;
  font-size: 3.4rem;
}

.bb-1 {
  border-bottom: 1px solid #f8f8f875;
  padding: 10px 0px;
  margin-bottom: 10px;
}

.order-summery .row span {
  font-size: 18px;
  font-weight: 500;
  color: #2d2e37;
}

.order-summery input.form-control {
  margin-bottom: 10px;
  box-shadow: none;
  background: transparent;
  padding: 0 20px;
}

.d-btn {
  border-radius: 5px;
  background-color: #388980;
  font-size: 20px;
  color: #ffffff;
  display: inline-block;
  padding: 16px 88px;
  text-transform: uppercase;
  transition: 0.7s;
}

.order-summery .row span {
  font-size: 22px;
  font-weight: 500;
  color: #fff;
}

.order-summery .themeBtn {
  padding: 14px 88px;
  background: var(--primary);
  font-size: 1rem;
  font-weight: 600;
}

.check-out-section.chkot-pag {
  padding: 4rem 0;
}

.check-out-section.chkot-pag hr {
  border-color: #707070;
  margin-top: 3rem;
}

.order-summery .themeBtn {
  background: var(--primary);
  font-size: 1rem;
  border: 0;
  font-weight: 600;
  padding: 20px 50px;
}

.order-summery .themeBtn:focus {
  outline: unset;
}


/* checkout css end */


/* payment  */

.check-out-section.payment-page {
  border-top: 1px solid rgb(112 112 112 / 50%);
  padding: 6rem 0;
}

.check-out-section input[type="checkbox"]+label:last-child {
  padding-left: 50px;
  color: #fff
}

.check-out-section.payment-page .form-group label {
  font-size: 1rem;
  color: #fff;
  text-transform: capitalize;
  font-weight: 500;
}

.check-out-section.payment-page .form-group .form-control {
  border-radius: 0;
}

.check-out-section.payment-page .checkOne h5 {
  font-size: 1.25rem;
  color: var(--primary);
  text-transform: uppercase;
  margin: 0;
}

.check-out-section.payment-page .checkOne {
  font-size: 1.125rem;
  color: #2D2E37;
  font-weight: 400;
}

.check-out-section.payment-page .themeBtn {
  margin-top: 2rem;
  border: unset;
}

.check-out-section.payment-page .themeBtn:focus {
  outline: unset;
}

ul.payment-card {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin: 0 0 4rem;
}

ul.payment-card li input {
  width: 28px;
  height: 28px;
  margin: auto;
}

ul.payment-card li label {
  margin: 0;
}

ul.payment-card li {
  display: flex;
  align-items: center;
  gap: 20px;
}


/* payment  */


