*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #000000;
  --white: #ffffff;
  --dark: #171717;
  --primary: #19D769;
}
html {
  font-size: 10px;
}
	
body {
  line-height: 1.4;
  font-family: "Gilroy";
  position: relative;
  width: 100%;
  margin: 0 auto;
  background-color: #161716;
  color: var(--white);
  font-weight: 400;
  font-size: 2.3rem;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
form,
input,
select,
textarea {
  width: 100%;
}
ul:not(.list-none),
ol:not(.list-none) {
  padding-left: 2rem;
}
h1,
.large-title,
.h1 {
  font-size: 22rem;
  line-height: 1;
  font-weight: 700;
  font-family: "Gilroy";
  letter-spacing: -1rem;
  word-spacing: -1rem;
}
.large-title {
  letter-spacing: -0.7rem;
  word-spacing: -2rem;
}
h1,h2,h3,h4,h5 {
  font-family: "Gilroy";
}
h2,
.h2,
h4,
.h4 {
  line-height: 1.2;
  font-weight: 600;
}
h2,
.h2 {
  font-size: 6.3rem;
}
h4,
.h4 {
  font-size: 4rem;
}
a {
  text-decoration: none;
  color: inherit;
  font-size: inherit;
  transition: all 0.5s ease;
}
img {
  max-width: 100%;
  transition: all 0.5s ease;
}
.col-third {
  width: calc(100% / 3);
}
.w-10 {
  width: 10%;
}
.w-20 {
  width: 20%;
}
.col-forth {
  width: calc(100% / 4);
}
.w-25 {
  width: 25%;
}
.w-30 {
  width: 30%;
}
.w-33 {
  width: 33%;
}
.w-35 {
  width: 35%;
}
.w-40 {
  width: 40%;
}
.w-45 {
  width: 45%;
}
.w-47 {
  width: 47%;
}
.w-48 {
  width: 48%;
}
.w-50 {
  width: 50%;
}
.w-55 {
  width: 55%;
}
.w-60 {
  width: 60%;
}
.w-65 {
  width: 65%;
}
.w-70 {
  width: 70%;
}
.w-75 {
  width: 75%;
}
.w-80 {
  width: 80%;
}
.w-85 {
  width: 85%;
}
.w-90 {
  width: 90%;
}
.w-95 {
  width: 95%;
}

.full-box,
.w-100,
.w-full {
  width: 100%;
}
.w-max {
  width: max-content;
}
.object-cover {
  object-fit: cover;
}
.object-contain {
  object-fit: contain;
}
.h-full,
.h-100 {
  height: 100%;
}
.h-auto {
  height: auto;
}
.uppercase {
  text-transform: uppercase;
}
.capitalize {
  text-transform: capitalize;
}
.relative {
  position: relative;
}
.bg-white {
  background-color: var(--white);
}
.bg-black {
  background-color: var(--black);
}
.bg-dark {
  background-color: var(--dark);
}
.bg-primary {
  background-color: var(--primary);
}
.overflow-hidden {
  overflow: hidden;
}

.align-end {
  align-items: flex-end;
}
.align-center {
  align-items: center;
}
.flex-box {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex-col {
  flex-direction: column;
}
.flex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-1 {
  flex: 1;
}
.space-between,
.justify-between {
  justify-content: space-between;
}
.justify-center {
  justify-content: center;
}
.box-center {
  align-items: center;
}
.justify-end {
  justify-content: flex-end;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../font/Gilroy-Medium.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap; 
}
@font-face {
  font-family: 'Gilroy';
  src: url('../font/Gilroy-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap; 
}
body {
  background-image: url('../img/bodybg.png');
  background-size: cover;
  background-position: top center;
}


header.siteheader {
  padding: 20px;
  border-bottom: 1px solid #ddd;
  border-radius: 30px;
}

.container {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 50px;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.siteheader .row {
  justify-content: space-between;align-items:center;
}

ul.menu {
  display: flex;
  flex-wrap: wrap;
align-items:center;
  gap: 32px;
}

ul {
  list-style: none;
}

ul.menu li a {
  font-size: 18px;
  line-height: 1;
  font-family: 'Gilroy';
  font-weight: 400;
}

ul.menu li a:hover {
  color: #BADADD;
}

ul.menu li:last-child {
  margin-left: 50px;
}

a.outlinebutton, ul.menu li.outlinebutton a {
  font-weight: 600 !important;
  font-size: 16px !important;
  line-height: 1.2 !important;
  padding: 12px 32px;
  font-family: 'Gilroy' !important;
  border: 2px solid  #fff;
  border-radius: 60px;
  display: inline-flex;
  align-items: center;
}

ul.menu li:last-child a {
  opacity: 0.6;
}

.mainbannersec {
  padding: 165px 0;
	background: #181818;
}

.bannercontentwrap h1 {
  font-size: 90px;
  line-height: 1.2;
  margin: 0 0 30px;
  letter-spacing: 0px;
}

.bannercontentwrap p {
  font-size: 20px;
  font-family: "Cormorant", serif;
  line-height: 1.2;
  font-weight: 400;
  color: #ADB2B1;
  margin-bottom: 30px;
}

.bannercontentwrap {
  max-width: 625px;
}

.btn.outlinebtn {
  font-weight: 600 !important;
  font-size: 16px !important;
  line-height: 1.2 !important;
  padding: 16px 40px;
  font-family: 'poppins' !important;
  border: 1px solid rgba(255,255,255,0.6);
  color: #fff;
  border-radius: 60px;
  display: inline-flex;
  background: rgba(61, 84, 77, 0.20);
  align-items: center;
  gap: 13px;
}
button {
  background: rgba(61, 84, 77, 0.20);
  border-width: 1px;
  border-color: rgba(255,255,255,0.6);
}
.btn.outlinebtn svg {
  width: 16px;
}

a.btn.outlinebtn:hover,
.btn.outlinebtn:hover {
  border-color: #BADADD;
  color: #BADADD;
}

a.btn.outlinebtn:hover svg path {
  stroke: #BADADD;
}

.getdoupstart .col-getdoupstartcontent {
    max-width: 580px;
    margin-right: 0;
    margin-left: auto;
    text-align: end;
}

.getdoupstart .row {
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 30px;
}

.col-getdoupstartcontent a.btn.outlinebtn {
    background: rgba(61, 84, 77, 0.20);
    border-width: 1px;
    border-color: rgba(255,255,255,0.6);
}
.getdoupcontentinner h2 {
    font-size: 30px;
    line-height: 1.2;
    color: #BADADD;
    margin: 0 0 10px;
}

.appandgplay {
    margin: 26px 0;
    display: flex;
    justify-content: end;
    gap: 30px;
    align-items: end;
}

.getdoupcontentinner p {
    font-size: 18px;
    color: #E5E5E5;
}
.getdoupstart .row .imageleft {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.getdoupstart {
    padding-bottom: 120px;
}
.getdoupstart .row {
  position: relative;
  overflow: hidden;
  background-color: rgba(61, 84, 77, 0.20);
}
.doupclientpartnermarquee {
/*   display: flex; */
  background-color: rgba(61, 84, 77, 0.20);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 30px;
  padding: 90px 60px;
/*   justify-content: space-between; */
}

.partnercol .image {
    position: relative;
    text-align: center;
}
.partnercol .image img {
    margin: 0 auto;
}
.doupclientpartnersec p {
  text-align: center;
  margin-top: 33px;
  font-family: 'Gilroy';
  font-size: 24px;
  color: #BADADD;
}
.popularproducts {
  padding: 160px 0;
}
.popularproducts h2 {
  text-align: center;
  margin-bottom: 80px;
}

span.themecolor {
  color: #BADADD;
}

.titlebox h2, .review-form-title {
  font-size: 60px;
}

.popularproducts .row {
  justify-content: left;
  position: relative;
}

.col-5 {
  width: 50%;
}
.popularproducts .row:after {
  content: "";
  background-image: url(../img/metalcard.png);
  width: 225px;
  height: 281px;
  background-size: cover;
  position: absolute;
  top: -160px;
  right: 100px;
}
.popularpdcontent h4 {
  font-size: 40px;
  border-bottom: 1px solid #ddd;
  display: inline-block;
  margin-bottom: 15px;
}

.popularpdcontent p {
  font-size: 24px;
  line-height: 1.4;
}

.popularpdcontent ul {
  margin: 24px 0 65px;
  padding-left: 0;
}

.popularpdcontent ul li {
  font-size: 30px;
  margin-bottom: 10px;
}

.popularpdcontent h6.price {
  font-size: 30px;
/*  margin-bottom: 30px;*/
}
.howdoesworksec {
  padding: 20px 0;
}

.howdoesworksec .titlebox {
  text-align: center;
  margin-bottom: 60px;
}

.titlebox p {
  font-size: 18px;
  margin: 10px 0;
  color: #E5E5E5;
}

.howdoesworkvideo .video {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background-size: cover;
  border-radius: 40px;
}

.howdoesworkvideo {
  padding: 12px;
  background: rgba(61, 84, 77, 0.20);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 50px;
  height: 700px;
}
.faqsec {
  padding: 120px 0;
}
.faqsec .faqsecinner {
  background: rgba(61, 84, 77, 0.20);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 50px;
  padding: 60px 100px;
}
.faqsec .faqsecinner .titlebox {
  text-align: center;
  margin-bottom: 50px;
}
.accordionheader h4 {
  font-size: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.6);
  margin-bottom: 20px;
  position: relative;
  padding-right: 30px;
}

.accordionheader.active h4 {
  border-bottom: none;
  padding-bottom: 0;
}

.accordioncontent {
  font-size: 18px;
  font-weight: 400;
  color: #ADB2B1;
  margin-bottom: 20px;
}
.accordionheader h4:after {position: absolute;content: "+";top: 0;right: 10px;font-family: 'Gilroy';font-weight: 400;}
.accordionheader.active h4:after {
  content: "-";
}
.appgplaysec {
  padding-top: 30px;
}
.appgplaysec .appgplayrow.row {
  padding: 0 80px;
  justify-content: space-between;
}
.appgplaysec .appgplayrow.row h2 {
  line-height: 1.1;
  font-size: 48px;
  font-weight: bold;
  font-family: poppins;
  margin: 0 0 20px;
}
.appgplaysec .appgplayrow.row p {
  font-size: 18px;
  color: #ADB2B1;
  margin-bottom: 32px;
}
.appgplaysec .appgplayrow.row .appgplaybox {
  gap: 40px;
  display: flex;
}
footer.sitefooter {
	background-size: cover;
	background-position: bottom right;
	padding: 100px 0 440px;
	background-repeat: no-repeat;
}
.footerwrapper .row {
  justify-content: space-between;
}
.col-3 {
  width: 30%;
}
.col-15 {
  width: 15%;
}
.col-25 {
  width: 25%;
}
.footerlogo {
  margin-bottom: 10px;
}
.footeraboutcontent p {
  font-family: 'Gilroy';
  font-weight: 400;
  font-size: 14px;
  color: #C6CCCA;
  margin-bottom: 50px;
}
ul.socialmedia {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-left: 0px;
}
.footerwrapper h6 {
  font-size: 16px;
  font-weight: bold;
  font-family: poppins;
  margin-bottom: 16px;
}
.footermenu {
  padding-left: 0px !important;
}
.footermenu li  a  {
  color: #C6CCCA;
  font-size: 16px;
  font-weight: 400;
  font-family: poppins;
  margin-bottom: 8px;
  display: block;
}
.footermenu li  a:hover {
  color: #BADADD;
}
.appgplayfooterbox {
  float: right;
  margin-top: -40px;
  margin-right: 265px;
  display: flex;
  gap: 30px;
  align-items: center;
}
.accordioncontent {
  transition: all 0.3s ease;
}
.accordionheader {
  cursor: pointer;
}
.qty-box {
  display: flex;
  align-items: center;
  gap: 10px;
}
.qty-btn {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  border: 1px solid #888;
  background: transparent;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}
.qty-input {
  width: 60px;
  height: 50px;
  text-align: center;
  border-radius: 12px;
  border: 1px solid #888;
  background: transparent;
  color: #fff;
  font-size: 18px;
  padding-left: 0px;
}
.productinformationsection {
  padding: 130px 0;
}

.productinformationsection .pdinfowrapper {
  padding: 0 50px;
}

.pdinfowrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.pdinfowrow .pdimage {
  width: 40%;
}

.pdinfowrow .pdimage img {
  width: 100%;
}

.pdinfowrow  .pdcontent {
  width: 50%;
}

.pdinfowrow .pdcontent .contentwrapper h1 {
  font-size: 60px;
  letter-spacing: 0;
  word-spacing: 0px;
  font-family: 'Gilroy';
  margin-bottom: 30px;
}

.pdinfowrow .pdcontent .contentwrapper p {
  font-size: 18px;
  color: #ADB2B1;
  font-family: 'Gilroy';
  line-height: 1.6;
}

.pricewithquantity {
  display: flex;
  align-items: center;
  margin: 50px 0 40px;
  gap: 80px;
}

.pricewithquantity h6.price {
  font-size: 30px;
}
.pdinfowrow .pdcontent button.btn.outlinebtn {
  border: 0.5px solid rgba(255,255,255,0.6);
}
.morelikethisec {
  padding-bottom: 150px;
}
.morelikethisec .titlebox {
  text-align: center;
  margin-bottom: 40px;
}
.morelikethisec .col-third .colthirdinner {
  text-align: center;
  padding: 30px 30px 0;
}
.morelikethisec .col-third .colthirdinner h6 {
  text-align: left;
  font-size: 30px;
  margin-bottom: 30px;
}
.morelikethisec .col-third .colthirdinner  .pdimage {
  background: rgba(61, 84, 77, 0.20);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 50px;
  padding: 50px 50px;
  margin-bottom: 40px;
}
a,button {cursor: pointer;}
.loginpageform {
  padding: 160px 0;
}
.loginpagforminner {
  max-width: 750px;
  margin: 0 auto;
  background: rgba(22, 23, 22, 0.20);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 50px;
  padding: 80px 80px;
}
.loginsignupbutton {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 40px;
  margin-bottom: 64px;
}
.textcenter {
  text-align: center;
}
.loginsignupbutton a.btn.outlinebtn {
  width: 50%;
  text-align: center;
  justify-content: center;
  background: transparent;
  border: none;
}

.loginsignupbutton a.btn.outlinebtn.active {
  background: rgba(61, 84, 77, 0.20);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.formwrapper .label label {
  font-size: 18px;
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 13px;
  display: block;
  letter-spacing: 0px;
  font-family: 'Gilroy';
}

.formwrapper .inputfield input {
  background: transparent;
  border: 1px solid #fff;
  padding: 20px;
  border-radius: 20px;
  font-size: 18px;
  font-family: 'Gilroy';
  letter-spacing: 0;
}

.formwrapper .inputfield {
  position: relative;
}
.doup-contact-form .field-error .inputfield input {
    border: 1px solid red !important;
}
.doup-contact-form .field-error .inputfield {
    border: none !important;
}
.formwrapper .inputfield svg {
  position: absolute;
  top: 27px;
  width: 19px;
  left: 20px;
  height: 18px;
}

.formwrapper {
  margin-top: 30px;
}

a.password {
  display: block;
  padding: 20px 0 35px;
  text-align: end;
  font-size: 18px;
  letter-spacing: 0;
}

.loginrowwrapper h6 {
  margin: 50px 0 18px;
  text-align: center;
  font-size: 18px;
}
.loginrowwrapper h6 a {
  text-decoration: underline;
}
.loginrowwrapper .btn.outlinebtn {
  width: 345px;
  text-align: center;
  justify-content: center;
  font-size: 20px !important;
  padding: 25px;
}
.loginwithsocial {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 30px;
}
.termscondition .inputfield {
  display: flex;
  justify-content: left;
  margin: 30px 0 70px;
}
.termscondition .inputfield input {
  border: none;
  background: transparent;
  width: 18px;
  margin-right: 10px;
}
.termscondition .inputfield label {
  font-size: 18px;
}
.formwrapper .inputfield input {
  color: #fff;
}
.loginrowwrapper a:hover {
  color: #BADADD;
}
.aboutbannersec {
  padding: 120px 0;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-top: none;
  margin-top: -22px;
  position: relative;
  z-index: 0;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}

header.siteheader {
  position: relative;
  z-index: 1;
}

.col-4 {
  width: 40%;
}

.aboutbannersec .row {
  align-items: center;
  justify-content: space-between;
}

.aboutbannercontent h1 {
  font-size: 90px;
  letter-spacing: 0;
  word-spacing: 0;
  margin-bottom: 30px;
}

.aboutbannercontent p {
  font-size: 18px;
  margin-bottom: 50px;
}

.sustainablesec {
  padding-top: 110px;
}

.sustainablesec .titlebox h2 {
  text-align: center;
  margin-bottom: 60px;
}

.sustainablerow {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  margin-bottom: 110px;
}

.sustainablecontent {
  width: 55%;
}

.sustainableimage {
  width: 45%;
  padding-bottom: 40px;
}

.sustainableimage img {
  width: 100%;
}

.sustainablecontentinner p {
  font-size: 18px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(61, 84, 77, 0.20);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 40px;
  width: 110%;
  position: relative;
  z-index: 1;
}

.sustainablecontentinner h2 {
  padding: 0 20px 28px;
}

.sustainableboxwrapper .sustainablerow:nth-child(even) {
  flex-direction: row-reverse;
}

.sustainableboxwrapper .sustainablerow:nth-child(even) .sustainablecontentinner p {
  position: relative;
  left: -10%;
}

.sustainableboxwrapper .sustainablerow:nth-child(even) .sustainablecontentinner h2 {
  padding-left: 40px;
}

.contactsectionpg {
  padding-top: 100px;
}

.contactsectionpg .titlebox h1 {
  text-align: center;
  font-size: 90px;
  letter-spacing: 0;
  word-spacing: 0;
}

.contactseciner {
  padding: 80px 0;
}

.contactseciner .col-third {
  width: 350px;
}

.contactseciner .row {
  justify-content: space-between;
}

.contactseciner .row .iconwithbox {
  padding: 30px 50px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(61, 84, 77, 0.20);
  border-radius: 40px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: center;
	height: 100%;
}

.contactseciner .row .iconwithbox .content a {
  display: block;
  font-size: 18px;
  color: #fff;
  margin: 14px 0;
}
.rightimage img {
    display: block;
    vertical-align: bottom;
}
.contactseciner .row .iconwithbox .content p {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 14px;
}

.contactseciner .row .iconwithbox .content a.btn.outlinebtn {
  font-weight: 400 !important;
  font-family: 'Gilroy' !important;
  font-size: 18px !important;
  display: inline-flex;
  padding: 12px 40px;
  border-radius: 40px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.contactpageform {
  padding-bottom: 160px;
}

.col-45 {
  width: 45%;
}

.contactpagforminner .row {
  justify-content: space-between;
  align-items: center;
}

.candalymeeting img {
  width: 100%;
}

.contactrowwrapper {
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(61, 84, 77, 0.20);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 48px 70px 65px;
  border-radius: 40px;
}

.formwrapper textarea {
  background: transparent;
  border: 1px solid #fff;
  padding: 25px;
  border-radius: 20px;
  font-size: 18px;
  font-family: 'Gilroy';
  letter-spacing: 0;
  color: #fff;
  height: 160px;
  margin-bottom: 30px;
}

.contactrowwrapper button.btn.outlinebtn {
  width: 100% !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  justify-content: center;
}

.contactrowwrapper .formwrapper:first-child {
  margin-top: 10px;
}
.pdsliderwrap {
  display: flex;
  gap: 30px;
  align-items: start;
}

/* Thumbnail */
.pdthumbslider {
  width: 100px;
}

.pdthumbslider .slick-slide {
  margin-bottom: 10px;
  cursor: pointer;
  opacity: 0.6;
  transition: 0.3s;
}

.pdthumbslider .slick-current {
  opacity: 1;
}

.pdthumbslider img {
  width: 100%;
  border-radius: 20px;
}

/* Main Slider */
.pdimageslider {
  width: 400px;
}

.pdimageslider img {
  width: 100%;
  border-radius: 20px;
}
.pdthumbslide img {
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 14px;
  height: 100%;
}

.pdthumbslide {
  height: 80px;
}

.pdthumbslider .slick-current .pdthumbslide img {
  background: rgba(61, 84, 77, 0.20);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px;
}

.reviewsecstart {
  padding-bottom: 80px;
}

.reviewsecstart .titlebox h2 {
  text-align: center;
}

.reviewcardwrapper .reviewcard {
    background: rgba(61, 84, 77, 0.20);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 40px;
    margin-bottom: 30px;
    padding: 24px;
}

.customerprofiles {
    display: flex;
    align-items: center;
    gap: 20px;
}

.profileinfo h6 {
    font-size: 30px;
    line-height: 1.4;
    margin-bottom: 10px;
}

.customerprofiles .profileinfo p {
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.customerprofiles .profileimage img {border-radius: 100%;height: 80px;width: 80px;object-fit: cover;}

.reviewfooter button {
    border: none;
    background: transparent;
    font-size: 22px;
    color: #fff;
    font-family: 'Gilroy';
}

.savereview {
    display: flex;
    align-items: center;
    gap: 14px;
}
.customerprofiles .profileinfo p svg {
    width: 15px;
}

.reviewcontent {
    border-top: 2px solid #E8E8E8;
    padding: 32px 0;
    margin: 32px 0;
    border-bottom: 2px solid #E8E8E8;
}

.reviewstar {
    display: flex;
    justify-content: space-between;
}

.reviewstar .date p {
    font-size: 18px;
    font-family: 'Gilroy';
}

.reviewtitle {
    padding: 40px 0 18px;
}

.reviewtitle h6 {
    font-size: 30px;
    line-height: 1.4;
    margin: 0;
}

.reviewtext p {
    font-size: 17px;
    margin: 0;
    max-width: 600px;
}

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

.usefulshare {
    display: flex;
    align-items: center;
    gap: 30px;
}

.usefulreview, .sharereview {
    display: flex;
    align-items: center;
    gap: 10px;
}

.readmoreaction {
    text-align: end;
}

.readmoreaction a {
    font-size: 18px;
}
.reviewcard {
  display: none;
}
.reviewcard.active {
  display: block;
}
.reviewsecstart .titlebox h2 {
  margin-bottom: 60px;
}
.upload-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  /* background: #0e0e0e; */
  padding: 20px;
}

.upload-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 30px;
  border: 1px solid #555;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(145deg, #2c2c2c, #1a1a1a);
  transition: 0.3s;
}

.upload-btn:hover {
  border-color: #aaa;
}

.upload-btn .icon {
  font-size: 18px;
}

#fileName {
  color: #aaa;
  font-size: 14px;
}

.designyourplasticcard .titlebox {
    padding: 120px 0;
    text-align: center;
}

.designyourplasticcard .titlebox h1 {
  color: white;
  font-size: 60px;
  font-weight: 400;
  letter-spacing: 1.80px;
  word-wrap: break-word;
  margin-bottom: 14px;
}

.designyourplasticcard h1 span.cardname {
  color: rgba(255, 255, 255, 0.20);
}

.designyourplasticcard .titlebox p {
  max-width: 500px;
  margin: 0 auto;
}
.designyourplastictabsthumbnails button.slick-arrow:before {
  display: none;
}

.designyourplastictabsthumbnails button.slick-arrow svg {
  width: 100%;
  height: 100%;
}

.designyourplastictabsthumbnails button.slick-arrow {
  width: 67px;
  height: 67px;
  top: 0;
  transform: none;
}

.designyourplastictabsthumbnails {
  border-radius: 80px;
  border-left: 1px #ffffff3b solid;
  border-right: 1px #ffffff3b solid;
  border-bottom: 1px solid rgba(255,255,255,0.6);
  padding: 0 72px;
  position: relative;
  margin-bottom: 86px;
}

.designyourplastictabsthumbnails .prev-arrow {
  left: -2px;
}

.designyourplastictabsthumbnails .next-arrow {
  right: -2px;
}

.thumbnailslide h6 {
  padding-left: 35px;
  padding-right: 35px;
  padding-top: 21.50px;
  padding-bottom: 21.50px;
  background: rgba(255, 255, 255, 0.10);
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  display: inline-block;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.54px;
  border: 1px solid rgba(255,255,255,0.2);
}
.customizedandnontab ul.carboxtabs {
  display: flex;
  justify-content: center;
  width: max-content;
  margin: 0 auto;
  border-left: 1px solid rgba(255, 255, 255, 0.6);
  border-right: 1px solid rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 40px;
  padding: 0;
  overflow: hidden;
}

.customizedandnontab.btnbox {
  margin-bottom: 100px;
  text-align: center;
}

.customizedandnontab ul.carboxtabs li a {
  font-size: 20px;
  padding: 21px 60px;
  line-height: 35px;
  letter-spacing: 0.60px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.customizedandnontab ul.carboxtabs li a svg {
  width: 25px;
}
.customizedandnontab ul.carboxtabs li.active a {
  background: rgba(255, 255, 255, 0.10);
  border-top-left-radius: 60px;
  border-top-right-radius: 120px;
  border-bottom-left-radius: 60px;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.customizedandnontab ul.carboxtabs.pricecartbox li.active a {
  border-top-left-radius: 60px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 120px;
}
.customizedandnontab ul.carboxtabs li:last-child.active a {
  border-top-left-radius: 80px;
  border-top-right-radius: 35px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 35px;
}
.customizedandnontab ul.carboxtabs.pricecartbox li:last-child.active a {
  border-top-left-radius: 0;
  border-top-right-radius: 100px;
  border-bottom-left-radius: 500px;
  border-bottom-right-radius: 100px;
}
.noncustomizeablecardsrow {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.noncustomizeablecardsrow .col-image {
  width: 45%;
}

.noncustomizeablecardsrow .col-image .image {
  position: relative;
  border-radius: 50px;
}

.noncustomizeablecardsrow .col-image .image img {
  width: 100%;
}

.noncustomizeablecardsrow .col-image .image a.refreshicon {
  position: absolute;
  bottom: 20px;
  right: 30px;
}

p.tabcard {
  display: flex;
  justify-content: center;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.30);
  font-size: 18px;
}

p.tabcard svg {
  width: 40px;
  height: 26px;
}

.col-info {
  width: 50%;
}
.infocustomizecard {
    padding: 44px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 40px;
}

.infocustomizecard h6 {
    text-align: center;
    color: white;
    font-size: 30px;
    font-weight: 400;
    line-height: 41px;
    letter-spacing: 0.90px;
    margin-bottom: 34px;
}

.infocustomizecard .label {
    display: flex;
    gap: 10px;
    color: rgba(255, 255, 255, 0.50);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.54px;
    margin-top: 40px;
    margin-bottom: 10px;
}

.infocustomizecard .label.ccm {
    color: #fff;
    margin-top: 0px;
}

.inputfield select, .inputfield input {
    color: white;
    font-size: 18px;
    font-family: 'Gilroy';
    font-weight: 400;
    letter-spacing: 0.54px;
    background: transparent;
    padding: 20px 30px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 40px;
}
.inputfield textarea {
    color: white;
    font-size: 18px;
    font-family: 'Gilroy';
    font-weight: 400;
    letter-spacing: 0.54px;
    background: transparent;
    padding: 20px 30px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 40px;
    height: 200px;
}
.nameyourcardinput {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}
.nameyourcard {
    display: flex;
    gap: 20px;
    align-items: center;
    width: 100%;
}
.cardphtoto {
    width: 120px;
    height: 74px;
    background: rgba(255, 255, 255, 0.10);
    border-radius: 9.54px;
}

.nameyourcard input {
  color: rgba(255, 255, 255, 0.20);
  font-size: 18px;
  font-family: 'Gilroy';
  font-weight: 400;
  letter-spacing: 0.54px;
  border: none;
  height: 30px;
  background: transparent;
  border-bottom: 1px  solid;
}
p.formnote {
  color: rgba(255, 255, 255, 0.50);
  font-size: 12px;
  font-family: 'Gilroy';
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.36px;
  padding: 0 30px;
}
.infocustomizecard button.btn.outlinebtn {
  margin-top: 10px;
  width: 100%;
  justify-content: center;
}
.totalcardprice {
  padding: 20px 30px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 30px;
  margin-top: 30px;
}

.totalcardprice ul li {
  display: flex;
  justify-content: space-between;
}

.totalcardprice ul li strong {
  color: rgba(255, 255, 255, 0.50);
  font-size: 14px;
  font-family: 'Gilroy';
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.42px;
}

.totalcardprice ul li span {
  color: rgba(255, 255, 255, 0.50);
  font-size: 14px;
  font-family: 'Gilroy';
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.42px;
}

.totalcardprice ul li h6 {
  color: rgba(255, 255, 255, 0.50);
  font-size: 18px;
  font-family: 'Gilroy';
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.42px;
}

.totalcardprice ul li h4, .totalcardprice ul li  span.ttpp {
  color: rgba(255, 255, 255, 0.50);
  font-size: 18px;
  font-family: 'Gilroy';
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.42px;
}

.totalcardprice ul li:first-child {
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
  margin-bottom: 15px;
}
.infocustomizecard .label .icon {
  width: 20px;
}
.totalcardprice ul {
  padding: 0;
}
.addlogotoggleshow {
  display: none;
}
.addlogotoggleshow img {
  width: 100%;
}
.customizedandnontab ul.carboxtabs.pricecartbox li a {
  padding: 21px 60px;
  width: 240px;
}

.customizedandnontab ul.carboxtabs.pricecartbox {
  position: relative;
  left: 20px;
}
.designyourplastictabcontentslider {
  padding-bottom: 120px;
}
.addlogotoggle h6 {
  padding: 15px 30px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 40px;
  margin-top: 20px;
  color: white;
  font-size: 18px;
  font-family: 'Gilroy';
  font-weight: 400;
  letter-spacing: 0.54px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  background: linear-gradient(145deg, #2c2c2c, #1a1a1a);
  border-radius: 50px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 0.4s;
  box-shadow: inset 5px 5px 10px rgba(0,0,0,0.6),
              inset -5px -5px 10px rgba(255,255,255,0.05);
}
/* Circle knob */
.slider::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  left: 2px;
  top: 3px;
  background: #cfcfcf;
  border-radius: 50%;
  transition: 0.4s;
  box-shadow: 
    4px 4px 8px rgba(0,0,0,0.6),
    -2px -2px 6px rgba(255,255,255,0.2);
}
/* Checked state */
.toggle-switch > input:checked + .slider {
  background: linear-gradient(145deg, #ffffff, #ffffff);
}
/* Move knob */
.toggle-switch > input:checked + .slider::before {
  transform: translateX(26px);
}
.toggle-switch > input:checked + .slider::before {
  background: #4E4E4E;
  box-shadow: 0 0 10px rgba(255,255,255,0.6);
}
.addlogotoggleshow.active {
  display: block;
}
.inputfield select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url(../img/arrow.png);
  background-repeat: no-repeat;
  background-position: 96% 50%;
}
.inputfield select option {
  color: rgba(255, 255, 255, 0.50);
  background: #323939;
  border: none;
}
span.cardname.metal-card {
  font-weight: 700;

  background: url('../img/cardbg.png') no-repeat center;
  background-size: cover;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
span.cardname.bamboo-card {
  font-weight: 700;

  background: url('../img/BOMBOOCARD-DOUP.png') no-repeat center;
  background-size: cover;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.image-radio-group {
  display: flex;
  gap: 16px;
  width: 100%;
}

.image-radio {
  cursor: pointer;
  width: calc(100% / 4);
}

.image-radio input {
  display: none;
}

.image-radio-group .card {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  border: 2px solid transparent;
  transition: 0.3s;
}

.image-radio-group .card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.image-radio-group .card span {
  position: absolute;
  bottom: 8px;
  right: 10px;
  color: #fff;
  font-weight: 600;
}

/* Hover */
.image-radio:hover .card {
  transform: scale(1.05);
}

/* Selected state */
.image-radio input:checked + .card {
  border: 2px solid #FFF;
  transform: scale(1.05);
}

.image-radio input:checked + .card img {
  filter: brightness(1);
}
.cart-table {
  width: 100%;
  color: #fff;
  font-family: sans-serif;
}

/* Header */
.table-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  font-size: 20px;
  opacity: 1;
  color: #fff;
  font-family: Gilroy;
  font-weight: bold;
}

/* Row */
.table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Product */
.product-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.product-info img {
  width: 125px;
  height: 70px;
  border-radius: 10px;
  object-fit: cover;
  background: #2a2a2a;
}

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

.details .desc {
  font-size: 18px;
  font-family: Gilroy;
  font-weight: 400;
  letter-spacing: 0.54px;
  color: #fff;
}

/* Quantity */
.table-row .qty {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #181a19;
  padding: 6px 10px;
  border-radius: 20px;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.qty button {
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.table-row .qty input {
    width: 35px;
    text-align: center;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 18px;
    font-family: 'Gilroy';
    font-weight: 400;
    letter-spacing: 0.54px;
    left: 7px;
    position: relative;
}

/* Price */
.table-row .price,
.table-row .total {
  font-size: 18px;
  font-family: Gilroy;
  font-weight: 400;
  letter-spacing: 0.54px;
}

.orderconfirmationinner {
  background: rgba(0, 0, 0, 0);
  overflow: hidden;
  border-radius: 35px;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.orderconfirmationsec {
  padding: 110px 0;
}

.orderconfirmationinner h1 {
  color: white;
  font-size: 30px;
  font-family: 'Gilroy';
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.90px;
  margin-bottom: 24px;
  word-spacing: normal;
}

.headerwrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 48px;
  padding: 78px 78px 0;
}

.orderconfirmationinner .heading p {
  color: white;
  font-size: 18px;
  font-family: 'Gilroy';
  font-weight: 400;
  letter-spacing: 0.54px;
  word-wrap: break-word;
}

.orderconfirmationmiddle {
  border: 1px rgba(151, 156, 155, 0.50) solid;
  padding: 48px 78px;
  border-left: none;
  border-right: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.orderconfirmationmiddle .middleboxthird {
  width: calc(100% / 3.8);
}

.orderconfirmationmiddle .middleboxthird h6 {
  color: white;
  font-size: 30px;
  font-family: 'Gilroy';
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.90px;
  margin-bottom: 30px;
}

.orderconfirmationmiddle .middleboxthird p {
  color: rgba(255, 255, 255, 0.70);
  font-size: 18px;
  font-family: 'Gilroy';
  font-weight: 400;
  letter-spacing: 0.54px;
  margin-bottom: 14px;
}

.orderconfirmationmiddle .middleboxthird p strong {
  color: #fff;
  display: block;
}

.ordersummary {
  padding: 48px 78px;
}

.shippingandpaymentsummary {
  padding: 48px 78px;
}

.thankyouyourorder {
  overflow: hidden;
  border-radius: 35px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.10);
  padding: 48px 78px;
}

.thankyouyourorder h3 {
  color: white;
  font-size: 40px;
  font-family: 'Gilroy';
  font-weight: 400;
  letter-spacing: 1.20px;
  margin-bottom: 24px;
  text-align: center;
}

.thankyouyourorder p {
  color: white;
  font-size: 18px;
  font-family: 'Gilroy';
  font-weight: 400;
  letter-spacing: 0.54px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.thankyouyourorderinner hr {
  margin: 30px 0;
}

.thankyouyourorderinner .col-third {
  width: 30%;
}

.thankyouyourorderinner row {
  justify-content: space-between;
}

.thankyouyourorderinner .thankyoutext h6 {
  color: white;
  font-size: 24px;
  font-family: 'Gilroy';
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.72px;
  margin-bottom: 12px;
}

.thankyouyourorderinner .thankyoutext p {
  font-size: 18px;
  text-align: left;
  margin-bottom: 14px;
}
.thankyouyourorderinner .thankyoutext a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 18px;
  font-family: 'Gilroy';
  font-weight: bold;
  line-height: 35px;
  letter-spacing: 0.60px;
}
.ordersummary {
  border-bottom: 1px rgba(151, 156, 155, 0.50) solid;
}
.shipandpaybox h6 {
    color: white;
    font-size: 30px;
    font-family: 'Gilroy';
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.90px;
    margin-bottom: 48px;
}

.shipandpayboxinner {
    padding: 22px 30px;
    border-radius: 35px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.10);
}

.shippingandpaymentsummary .row {
    justify-content: space-between;
}

.shipandpayboxinner ul {
    padding: 0;
}

.shipandpayboxinner ul li {
    margin-bottom: 18px;
}

.shipandpayboxinner ul li p {
    display: flex;
    justify-content: space-between;
    color: white;
    font-size: 24px;
    font-family: 'Gilroy';
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.72px;
}

.shipandpayboxinner ul li p span.amount {
    color: white;
    font-size: 24px;
    font-family: 'Gilroy';
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.72px;
}

h6.estimatetime {
    font-size: 18px;
    margin-bottom: 0;
}
.ordersummaryinner h4 {
  color: white;
  font-size: 30px;
  font-family: 'Gilroy';
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.90px;
  margin-bottom: 40px;
}
.shipandpayboxinner ul li.grandtotal {
    margin-bottom: 0px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.50);
}
.cardstabcontent {
  display: none;
}
.cardboxtabs ul {
  display: flex;
  justify-content: center;
  width: max-content;
  margin: 0 auto 68px;
  border-left: 1px solid rgba(255, 255, 255, 0.6);
  border-right: 1px solid rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 40px;
  padding: 0;
  overflow: hidden;
max-width: fit-content;
}
.cardboxtabs ul li a {
  font-size: 20px;
  padding: 21px 60px;
  line-height: 35px;
  letter-spacing: 0.60px;
  font-weight: 600;
  display: flex;
  align-items: center;
  border-radius: 40px;
  gap: 10px;
}
.cardstabcontent.active {
  display: block !important;
}
.cardboxtabs ul li.active a {
  background: rgba(255, 255, 255, 0.10);
}
.cardimagecustomize a.btn.outlinebtn {
  margin: 30px auto !important;
  justify-content: center;
}
.cardimagecustomize {
  text-align: center;
}
.nameyourcard input:focus {
  outline: none;
}
.nameyourcard input {
  color: #fff;
}
/* Checkoutcss */
.col-65 {
  width: 65%;
}
.col-25 {
  width: 25%;
}
.justify-between {
  justify-content: space-between;
}
.checkoutrowwrapper .boxinner {
  border-radius: 35px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 36px;
  margin-bottom: 48px;
}
.relatednote .boxinner {
  background: rgba(255, 255, 255, 0.10);
}
.shipping-options {
  width: 100%;
}

.shipping-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0px 0;
  border-radius: 8px;
  margin-bottom: 0px;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
  color: #fff;width: 100%;
}

/* hide default radio */
.shipping-option input {
  display: none;
}

/* custom radio */
.radio-custom {
  width: 18px;
  height: 18px;
  border: 2px solid #aaa;
  border-radius: 50%;
  margin-right: 12px;
  position: relative;
}

/* inner dot */
.radio-custom::after {
  content: "";
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: 0.2s;
}

/* checked state */
.shipping-option input:checked + .radio-custom::after {
  transform: translate(-50%, -50%) scale(1);
}

.shipping-option input:checked ~ .content {
  font-weight: 500;
}

/* layout */
.shipping-option {
  display: flex;
  align-items: center;
  gap: 10px;
}

.shipping-option .content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 18px;
}

.shipping-option .title {
  opacity: 0.9;
}

.shipping-option .price {
  opacity: 0.8;
}
.checkoutpgsec .titlebox h1 {
    font-size: 90px;
    word-spacing: normal;
    letter-spacing: 0;
    text-align: center;
}.checkoutpgsec .titlebox {
    padding: 120px 0;
}

.checkoutrowwrapper h4 {
    color: white;
    font-size: 30px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.90px;
    margin-bottom: 24px;
}

.checkoutrowwrapper h5 {
    font-size: 30px;
    margin-bottom: 16px;
    font-weight: 600;
}

.checkoutrowwrapper h6 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.checkoutrowwrapper p {
    font-size: 18px;
    margin-bottom: 10px;
}

.relatednote .boxinner p {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cartitemsbox .cartdtitems {
    margin-bottom: 10px;
    display: flex;
    gap: 20px;
}

.cartitemsbox .cartdtitems .image {
    width: 180px;
}

.cartitemsbox .cartdtitems .image img {
    width: 100%;
}
.formwrapper.postrow input {
  padding-left: 30px;
}
.formwrapper.postrow .col-half {
  width: 48%;
}
.checkoutordersummary p {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 12px;
}

.checkoutordersummary p.lasttotal {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 14px 0;
}

.checkoutordersummary .btn {
  width: 100%;
  justify-content: center;
  margin-top: 20px;
}

.applycoupon p {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}

.applycoupon .boxinner {
  padding: 12px 24px;
  border-radius: 60px;
}
button.deletebtn {
  border-radius: 50px;
}
.relatednote .boxinner p span {
  width: 26px;
  display: flex;
  justify-content: left;
}

.relatednote .boxinner p span svg {
  width: 100%;
  height: 100%;
}

.relatednote .boxinner p:last-child span {
  width: 48px;
}
.relatednote .boxinner {
  background: rgba(255, 255, 255, 0.10);
  padding: 28px 36px 18px;
}
.couponbox {
  margin-bottom: 48px;
}

.couponbox .couponrow {
  display: flex;
  gap: 20px;
}

.couponbox .couponrow input {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.6);
  padding: 13px 20px;
  border-radius: 40px;
  font-size: 18px;
  font-family: 'Gilroy';
  letter-spacing: 0;
}
.couponbox .couponrow input {
    color: #fff;
}
.couponbox .couponrow {
  display: flex;
  gap: 20px;
}
.checkoutpgsec {
  padding-bottom: 80px;
}
.noncustomizeablecardsrow .col-image .image {
  position: relative;
  background-size: cover;
  height: 409px;
}
.image.infrontcard {
  padding: 60px;
}
.cardfrontdetails * {
  font-size: 22px;
}
.noncustomizeablecardsrow .col-image .image img {
  width: 140px;
}
.cardfrontdetails {
  text-align: left;
  margin-top: 145px;
  opacity: 0.5;
}
.cardfrontdetails .companynamecarddt {
  font-size: 16px;
}
.cardlogo.left {
    text-align: left;
    opacity: 0.6;
}
.cardimagecustomize {
  position: relative;
  perspective: 1000px;
}
/* .image.infrontcard {
  display: none;
} */
/* .image.backsidecard.active,
.image.infrontcard.active {
  display: inline-block !important;
} */
.image.backsidecard{
  position: absolute !important;
  top: 0;
}
.image {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  transition: all 0.5s ease;
}
.partnercol .image {
	position: relative;
}
.infrontcard {
  opacity: 1;
  transform: rotateY(0deg);
  z-index: 2;
}

.backsidecard {
  opacity: 0;
  transform: rotateY(180deg);
  z-index: 1;
}

/* Active states */
.infrontcard.active {
  opacity: 1;
  transform: rotateY(0deg);
  z-index: 2;
}

.backsidecard.active {
  opacity: 1;
  transform: rotateY(0deg);
  z-index: 2;
}

/* Hide inactive */
.infrontcard:not(.active) {
  opacity: 0;
  transform: rotateY(-180deg);
  z-index: 1;
}

.backsidecard:not(.active) {
  opacity: 0;
  transform: rotateY(180deg);
  z-index: 1;
}
.cardlogo.right {
  text-align: end;
  opacity: 0.6;
}
.cardlogo.center {
  opacity: 0.6;
  margin-top: 90px;
  margin-bottom: -60px;
}
.cardlogo.bottom {
  position: absolute;
  bottom: 60px;
  opacity: 0.6;
  right: 70px;
}
.noncustomizeablecardsrow .col-image {
  position: sticky;
  top: 50px;
}
.noncustomizeablecardsrow {
  align-items: flex-start;
}
p.tabcard {
  cursor: pointer;
}
.reviewcard.is-hidden-review, .woocommerce-breadcrumb {
  display: none;
}

.reviewcard.is-hidden-review.is-visible {
  display: block;
}
.review-form-title {
	text-align: center;
	margin-bottom: 30px;
}
.doup-review-form-wrap {
    padding-top: 60px;
}
.comment-respond form#commentform {
    background: rgba(61, 84, 77, 0.20);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 40px;
    margin-bottom: 30px;
    padding: 24px;
}
.comment-respond form#commentform p.stars.selected span {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}
.comment-respond form#commentform p.stars.selected span a {
    border: 1px solid #fff;
    font-size: 18px;
    border-radius: 100px;
    padding: 8px 16px;
}
.comment-respond form#commentform p.stars.selected a.active {
    background: #badadd;
}
.comment-respond form#commentform input, .comment-respond form#commentform textarea {
    padding: 15px;
    margin-bottom: 20px;
    font-family: 'Poppins';
    border-radius: 40px;
    font-size: 16px;
}
.comment-respond form#commentform .form-submit input {font-weight: 600 !important;font-size: 16px !important;line-height: 1.2 !important;padding: 16px 40px;font-family: 'poppins' !important;border: 1px solid rgba(255, 255, 255, 0.6);color: #fff;border-radius: 60px;display: inline-flex;background: rgba(61, 84, 77, 0.20);align-items: center;gap: 13px;width: auto;}
.comment-respond form#commentform .form-submit {
    text-align: center;
    margin: 20px 0;
}
.comment-respond form#commentform p.comment-form-rating p.stars span a.active {
    background: #badadd;
}

.comment-respond form#commentform p.comment-form-rating p.stars span a {
    border: 1px solid #fff;
    font-size: 18px;
    font-family: 'Poppins';
    padding: 8px 20px;
    border-radius: 50px;
}
.comment-respond form#commentform p.comment-form-rating p.stars span {
    display: flex;
    gap: 15px;
    margin: 30px 0;
}
.woocommerce-message {
    background: #242b29;
    border-color: #fff;
    border-width: 0;
    color: #fff;
    font-size: 18px;
}
.woocommerce-message:before {
    color: #fff;
}
.page-id-111 .titlebox {
    display: none;
}
.page-id-111 .checkoutrowwrapper .titlebox {
    display: block;
}
ul.products.columns-4 .product span.price, .pdinfowrow .pdcontent .contentwrapper p.price {
    color: #fff;
}
.woocommerce #reviews h3 {
    margin: 0 0 30px;
    font-size: 50px;
}
.comment-respond form#commentform p.comment-form-rating p.stars span a {
    border: 1px solid #fff;
    font-size: 0px;
    font-family: 'Poppins';
    padding: 0;
    border-radius: 10px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
	background: #c9c9c9;
}
.woocommerce p.stars a::before {
    top: 7px;
    left: 7px;
    font-size: 18px;
}
.comment-respond form#commentform .form-submit input, .cartitemsbox table.shop_table tr td button, .woocommerce-page #payment #place_order {
    font-weight: 600 !important;
    font-size: 16px !important;
    line-height: 1.2 !important;
    padding: 16px 40px !important;
    font-family: 'poppins' !important;
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    color: #fff !important;
    border-radius: 60px !important;
    display: inline-flex !important;
    background: rgba(61, 84, 77, 0.20) !important;
    align-items: center;
    gap: 13px;
	margin-top: 20px;
    width: auto;
}
.cardboxtabs ul {
    width: 100%;
    justify-content: left;
    white-space: nowrap;
    overflow-x: scroll;
}
.cardboxtabs ul::-webkit-scrollbar {
    display: none;
}
.cartitemsbox table.shop_table, .cart-collaterals.checkoutordersummary table.shop_table {
    border: none;
}
.cartitemsbox table.shop_table tr, .cartitemsbox table.shop_table tr th, .cart-collaterals.checkoutordersummary table.shop_table tr tr {
    border: none !important;
}

.cartitemsbox table.shop_table tr td, .cart-collaterals.checkoutordersummary table.shop_table tr td, .cart-collaterals.checkoutordersummary table.shop_table tr th {
    border-color: #fff;
}

.cartitemsbox table.shop_table tr th, .cartitemsbox table.shop_table tr td {
    font-size: 20px;
    opacity: 1;
    color: #fff;
    font-family: Gilroy;
    font-weight: bold;
}

.cartitemsbox table.shop_table tr td input {
    color: #fff;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 8px;
    text-align: center;
}
.cart-collaterals.checkoutordersummary table.shop_table tr td, .cart-collaterals.checkoutordersummary table.shop_table tr th {
    font-size: 18px;
    opacity: 1;
    color: #fff;
    font-family: Gilroy;
    font-weight: bold;	
}
.woocommerce ul#shipping_method li {
    display: flex;
    align-items: flex-start;
}

.woocommerce ul#shipping_method li input {
    width: 14px;
}

.woocommerce ul#shipping_method li label, .woocommerce-shipping-destination, .woocommerce-shipping-destination strong, .shipping-calculator-button {
    font-size: 16px;
    line-height: 1.3;
    font-weight: 400;
}
.wc-proceed-to-checkout {
    padding: 0 !important;
}
dl.variation dd.variation-QRURL, .variation-Notes, .variation-LogoPosition, .variation-LogoSize, .variation-QRURL, .variation-LogoFile, .variation-Position {
    display: none !important;
}
.woocommerce table.shop_table {
	margin-bottom: 0 !important;
}
a.shipping-calculator-button {
    display: none !important;
}
dl.variation dt, dl.variation dd p {
    font-size: 14px;
    font-family: 'Gilroy';
    font-weight: 300;
}
.cartitemsbox table.shop_table tr td.product-quantity span {
    border: 1px solid #fff;
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 10px;
    font-family: 'Gilroy';
}
.woocommerce-info {
    border-color: #fff;
    background: #2f302f;
    color: #fff;
    font-family: 'Gilroy';
    font-size: 18px;
}
.woocommerce-info::before {
    color: #fff;
}
.woocommerce-billing-fields input, .woocommerce-billing-fields select, .woocommerce-billing-fields span.select2-selection,
.woocommerce-shipping-fields__field-wrapper input, .woocommerce-shipping-fields__field-wrapper select, 
.woocommerce-shipping-fields__field-wrapper span.select2-selection {
    background: transparent !important;
    border: 1px solid #fff;
    padding: 15px 25px !important;
    border-radius: 20px !important;
    font-size: 18px;
    font-family: 'Gilroy';
    letter-spacing: 0;
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    color: #fff !important;
}
span#select2-billing_country-container {
    padding: 0;
    color: #fff;
}
span.select2-selection__arrow b {filter: brightness(10) invert(1);}
.select2-selection__rendered {
    padding: 0px !important;
    color: #fff !important;
}
label.woocommerce-form__label.woocommerce-form__label-for-checkbox.checkbox {
    display: inline-flex;
    font-size: 16px;
    width: 100%;
    justify-content: flex-start;
    font-family: 'Gilroy';
    margin-bottom: 30px;
    font-weight: 300;
}
span.woocommerce-input-wrapper #order_comments {
    background: transparent !important;
    padding: 15px 25px !important;
    border-radius: 20px !important;
    font-size: 18px;
    font-family: 'Gilroy';
    letter-spacing: 0;
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    color: #fff !important;
    margin-top: 10px;
}
label.woocommerce-form__label.woocommerce-form__label-for-checkbox.checkbox {
    display: inline-flex;
    font-size: 16px;
    width: 100%;
    justify-content: flex-start;
    font-family: 'Gilroy';
    margin-bottom: 30px;
    font-weight: 300;
}
label.woocommerce-form__label.woocommerce-form__label-for-checkbox.checkbox input#ship-to-different-address-checkbox {
    width: 17px;
    margin-right: 10px;
}
span.woocommerce-input-wrapper #order_comments {
    background: transparent !important;
    padding: 15px 25px !important;
    border-radius: 20px !important;
    font-size: 18px;
    font-family: 'Gilroy';
    letter-spacing: 0;
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    color: #fff !important;
    margin-top: 10px;
}
.woocommerce-checkout-review-order .woocommerce table.shop_table {
    border: none !important;
}
.woocommerce-checkout-review-order table.shop_table tr th, .woocommerce-checkout-review-order table.shop_table tr td {
    border-color: #fff !important;
    font-size: 18px;
    font-family: 'Gilroy';
    font-weight: 400;
}
.woocommerce-checkout-review-order table.shop_table {border: none !important;}
.woocommerce-checkout-review-order table.shop_table tr th {
    width: 55%;
}
.woocommerce-checkout-review-order tr.woocommerce-shipping-totals.shipping th {
    width: auto !important;
}
.payment_box.payment_method_cod {
    margin-bottom: 0px !important;
}
.form-row.place-order {
    padding-top: 0px !important;
}
.woocommerce-privacy-policy-text p {
    font-size: 15px;
    margin-bottom: 20px;
}
.checkoutrowwrapper .shippingandpaymentsummary h6 {
    margin-bottom: 25px;
}
.details-item {
    display: flex;
    gap: 10px;
    line-height: 1;
}
.details-item * {
    font-size: 16px !important;
    font-family: 'Gilroy';
    font-weight: 300;
}
.details-wrapper .details-item:nth-child(5),
.details-wrapper .details-item:nth-child(6),
.details-wrapper .details-item:nth-child(7),
.details-wrapper .details-item:nth-child(8),
.details-wrapper .details-item:nth-child(9),
.details-wrapper .details-item:nth-child(10),
.details-wrapper .details-item:nth-child(11)  {
	display: none !important;
}
p.comment-form-cookies-consent {
    display: flex;
    gap: 10px;
    align-items: baseline;
    font-size: 18px;
}
p.comment-form-cookies-consent input#wp-comment-cookies-consent {
    width: 16px;
    height: 16px;
}
header.siteheader {
    background: #161716;
    position: sticky;
    top: 0;
    border-top-left-radius: 0;
	z-index: 4;
    border-top-right-radius: 0;
}
.partnercol {
    padding: 10px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partnercol .image {
    height: 80px;
}

.partnercol img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.page-id-268 .checkoutrowwrapper ul,
.privacy-policy .checkoutrowwrapper ul {
    list-style: disc;
}
.page-id-268 .checkoutrowwrapper ul li,
.privacy-policy .checkoutrowwrapper ul li {
    font-size: 18px;
}
.page-id-268 .checkoutrowwrapper h3,
.privacy-policy .checkoutrowwrapper h3,
.privacy-policy .checkoutrowwrapper h4 {
    margin: 30px 0;
}
.cartitems {
    position: absolute;
    top: 4px;
    right: 0;
}

.row.siteheaderrow {
    padding-right: 50px;
    position: relative;
}

.cartitems .cartitemsinner {
    position: relative;
}

.cartitems .cartitemsinner svg path {
    stroke: #fff;
}

.cartitems .cartitemsinner svg {
    width: 31px;
}

.cartitems .cartitemsinner span.cartcount {
    position: absolute;
    top: 2px;
    right: -10px;
    background: #a2a2a2;
    font-size: 12px;
    font-family: 'Poppins';
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}
@media(max-width: 1100px) {
	ul.menu {
		gap: 15px;
	}
	ul.menu li a {
		font-size: 16px;
	}
	a.outlinebutton, ul.menu li.outlinebutton a {
		font-size: 16px !important;
		padding: 10px 25px;
	}
	.bannercontentwrap h1 {
		font-size: 70px;
		line-height: 1;
		margin: 0 0 30px;
	}
	.bannercontentwrap p {
		font-size: 18px;
	}
	.btn.outlinebtn {
		font-size: 14px !important;
		padding: 12px 30px;
	}
	.getdoupstart .row .imageleft {
		position: absolute;
		top: 0;
		left: 0;
		width: 72%;
		bottom: 0;
	}
	.getdoupstart .row .imageleft img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: left;
	}
	.getdoupcontentinner h2 {
		font-size: 24px;
		line-height: 1.2;
		margin: 0 0 10px;
	}
	.getdoupcontentinner p {
		font-size: 14px;
		color: #E5E5E5;
	}
	.getdoupstart {
		padding-bottom: 80px;
	}
	.doupclientpartnermarquee {
		padding: 60px 20px;
	}
	.popularproducts, .faqsec {
		padding: 100px 0;
	}
	.titlebox h2, .review-form-title, .popularpdcontent h4 {
		font-size: 40px
	}
	.popularproducts .row:after {
		width: 165px;
		height: 211px;
		top: -160px;
		right: 10px;
	}
	.howdoesworkvideo {
		height: 510px;
	}
	.playicon img {
		width: 60px;
	}
	.faqsec .faqsecinner {
		padding: 40px 60px;
	}
	.accordionheader h4 {
		font-size: 24px;
	}
	.accordioncontent, .appgplaysec .appgplayrow.row p {
		font-size: 16px;
	}
	.appgplaysec .appgplayrow.row {
		padding: 0 20px;
	}
	.appgplaysec .appgplayrow.row h2 {
		font-size: 34px;
	}
	.appgplayfooterbox {
		margin-top: -40px;
		margin-right: 0;
	}
	.footermenu li a {
		font-size: 12px;
	}
	footer.sitefooter {
		padding: 80px 0 300px;
	}
	.aboutbannercontent h1, .contactsectionpg .titlebox h1 {
		font-size: 70px;
	}
	.contactseciner .col-third {
		width: 300px;
	}
	.contactseciner .row .iconwithbox {
		padding: 30px 30px 20px;
	}
	.contactrowwrapper {
		padding: 25px 30px 25px;
	}
	.productinformationsection .pdinfowrapper {
		padding: 0;
	}
	.pdimageslider {
		width: 80%;
	}
	.pdsliderwrap {
		width: 100%;
	}
	.pdinfowrow .pdcontent .contentwrapper h1 {
		font-size: 40px;
		margin-bottom: 10px;
	}
	.pdinfowrow .pdcontent .contentwrapper p {
		font-size: 15px;
		line-height: 1.4;
		margin: 10px 0;
	}
		.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price, .woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price {
		color: #958e09;
		font-size: 20px;
	}
	.pricewithquantity h6.price {
		font-size: 24px;
	}
	p.woocommerce-noreviews {
		font-size: 18px;
	}
	.morelikethisec .col-third .colthirdinner h6 {
		text-align: left;
		font-size: 24px;
		margin-bottom: 20px;
	}
	.morelikethisec .col-third .colthirdinner .pdimage {
		padding: 25px 25px;
		margin-bottom: 20px;
	}
	.morelikethisec .col-third .colthirdinner .pdimage img {
		height: 200px;
		object-fit: contain;
	}
	.morelikethisec {
		padding-bottom: 60px;
	}
	.morelikethisec .col-third .colthirdinner {
		text-align: center;
		padding: 20px 10px 0;
	}
	.checkoutpgsec .titlebox h1 {
		font-size: 70px
	}
	.checkoutpgsec .titlebox {
		padding: 70px 0;
	}
	.woocommerce td.product-name dl.variation {
		line-height: 1.6;
	}
	.checkoutrowwrapper .col-65, .checkoutrowwrapper .col-3 {
		width: 100%;
	}
	.orderconfirmationsec .container {
		padding: 0;
	}

	.orderconfirmationsec {
		padding: 80px 0;
	}

	.headerwrapper {
		padding: 60px 40px 0;
	}

	.headerwrapper .heading {
		width: 70%;
	}

	.orderconfirmationinner .heading p, .orderconfirmationmiddle .middleboxthird p, .checkoutrowwrapper p, .thankyouyourorderinner .thankyoutext p, .thankyouyourorderinner .thankyoutext a {
		font-size: 16px;
	}

	.orderconfirmationmiddle, .ordersummary, .shippingandpaymentsummary, .thankyouyourorder {
		padding: 40px;
	}

	.orderconfirmationmiddle .middleboxthird h6 {
		font-size: 24px;
	}

	.shipandpayboxinner ul li p, .shipandpayboxinner ul li p span {
		font-size: 17px !important;
	}

	.thankyouyourorder h3 {
		font-size: 30px;
	}

	.thankyouyourorderinner .thankyoutext h6, .table-header {
		font-size: 20px;
	}
	.product-info img {
		width: 70px;
		height: 70px;
		border-radius: 10px;
		object-fit: contain;
		background: #2a2a2a;
		object-position: top;
	}
	ul.products.columns-4 .product h2.woocommerce-loop-product__title {
		font-size: 22px !important;
		margin-bottom: 10px !important;
	}
	ul.products.columns-4 .product img.attachment-woocommerce_thumbnail.size-woocommerce_thumbnail {
		padding: 20px !important;
		height: 200px !important;
	}
	.cardboxtabs ul li a {
		font-size: 18px;
		padding: 16px 40px;
	}
	.customizedandnontab ul.carboxtabs li a, .customizedandnontab ul.carboxtabs.pricecartbox li a {
		font-size: 18px;
		padding: 15px 40px;
	}
	.customizedandnontab.btnbox {
		margin-bottom: 70px;
		text-align: center;
	}
	.infocustomizecard {
		padding: 24px 22px;
	}
	.infocustomizecard .label {
		margin-top: 20px;
	}
	.image.infrontcard {
		padding: 100px 30px 0;
	}
}

@media(max-width: 1000px) {
	.menuheader {
		top: 0;
		left: 0;
		background: #1e2421;
		position: fixed;
		height: 100%;
		width: 100%;
		display: none;
		z-index: 9;
	}

	.menuheader .closemenu {
		position: absolute;
		top: 20px;
		right: 20px;
		display: block !important;
	}

	.menuheader .menuheaderinner {
		height: 100%;
		display: flex;
		align-items: start;
		padding-left: 20px;
		padding-top: 25%;
	}

	.menuheader .menuheaderinner ul {
		display: block;
	}

	.menuheader .menuheaderinner ul li {
		margin-left: 0;
		margin-top: 10px;
	}

	.menuheader .menuheaderinner ul li:last-child {
		margin-top: 30px;
	}

	.menuheader .closemenu svg path {
		fill: #fff;
	}
	header.siteheader {
		padding: 20px 0;
	}
	.humburgurmenu svg path {
		stroke: #fff;
	}

	.humburgurmenu {
		display: block !important;
	}
	header.siteheader {
		border-radius: 0;
	}
	header.siteheader .humburgurmenu {
		width: 36px;
		height: 36px;
		line-height: 0;
		padding: 10px;
		background: #2e3431;
		border-radius: 40px;
		border: 1px solid #fff;
		display: flex !important;
		align-items: center;
	}
	.bannercontent {
		flex-direction: column-reverse;
	}
	.videohero {
		width: 100%;
		margin-top: 0px;
		margin-bottom: 30px;
	}

}
@media(max-width: 800px) {
	.popularproducts .row:after {
		display: none;
	}
	.popularproducts .col-5, .popularproducts .col-3 {
		width: 100%;
	}
	.container {
		padding: 0 30px;
	}
	.popularproducts .row {
		justify-content: center;
		flex-direction: column-reverse;
		gap: 20px;
		max-width: 500px;
		margin: 0 auto;
	}
	.appgplayrow.row .col-5 {
		width: 60%;
	}
	.footerwrapper .col-3, .footerwrapper .col-15, .footerwrapper .col-25 {
		width: 30%;
		margin-bottom: 40px;
	}
	.appgplayfooterbox {
        margin-top: 0;
        margin-right: 0;
    }
	footer.sitefooter {
		padding: 80px 0 200px;
		background-size: contain;
		background-repeat: no-repeat;
	}
	.aboutbannersec .col-4, .aboutbannersec .col-5 {
		width: 100%;
	}

	.aboutbannersec .aboutbannercontent {
		margin-bottom: 60px;
	}

	.aboutimage img {
		width: 100%;
	}

	.aboutbannersec {
		padding: 80px 0 40px;
	}

	.sustainablesec {
		padding-top: 80px;
	}

	.sustainablecontent, .sustainableimage {
		width: 100%;
		margin-bottom: 30px;
		padding-bottom: 0;
	}

	.sustainablecontentinner p {
		width: 100%;
		left: 0px !important;
		margin-left: 0px !important;
	}
	.sustainablerow {
		margin-bottom: 60px;
	}
	.sustainableimage {
		margin-bottom: 0;
	}
	.checkoutpgsec .titlebox {
		padding: 80px 0;
	}
	ul.products.columns-4 .product h2.woocommerce-loop-product__title {
		font-size: 26px;
		margin-bottom: 0 !important;
		order: 1;
		padding-top: 0;
	}
	ul.products.columns-4 .product img.attachment-woocommerce_thumbnail.size-woocommerce_thumbnail {
		order: 2;
		padding: 30px 30px;
		margin-bottom: 20px;
		width: 100%;
		height: 280px;
		object-fit: contain;
	}
	ul.products.columns-4 .product span.price {
		display: block;
		margin-bottom: 20px;
		order: 3;
		font-size: 18px;
	}
	.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
		margin: 0 0 1.5em;
	}
	.checkoutpgsec {
		padding-bottom: 60px;
	}
	.contactseciner .col-third {
		width: 49%;
		margin-bottom: 20px;
	}
	.contactpagforminner .col-45 {
		width: 100%;
	}
	.contactpagforminner .row {
		justify-content: space-between;
		align-items: center;
		gap: 6px;
	}
	.contactpageform {
		padding-bottom: 80px;
	}
	.col-third.product.type-product {
		width: 50%;
	}
	.pdinfowrow .pdimage {
		width: 100%;
	}
	.headerwrapper {
        padding: 30px 30px 0;
        margin-bottom: 30px;
    }
	.orderconfirmationmiddle, .ordersummary, .shippingandpaymentsummary, .thankyouyourorder {
		padding: 30px;
	}
	.orderconfirmationmiddle .middleboxthird {
		width: calc(100% / 3.2);
	}
	.orderconfirmationmiddle .middleboxthird h6 {
		font-size: 20px;
		margin-bottom: 20px;
	}
	.orderconfirmationmiddle .middleboxthird p {
		margin-bottom: 8px;
	}
	.details .desc {
		font-size: 16px;
	}
	.details-item * {
		font-size: 9px !important;
		font-family: 'Gilroy';
		font-weight: 300;
	}
	.details-item p {
		margin-bottom: 5px;
	}
	.cart-table .table-header, .table-row .price, .table-row .total {
		font-size: 16px;
	}
	.checkoutrowwrapper h6 {
		font-size: 18px;
	}
	.shipandpayboxinner ul li {
		margin-bottom: 10px;
	}
	.thankyouyourorder .row {
		justify-content: space-between;
	}
	
	ul.products.columns-4 .product img.attachment-woocommerce_thumbnail.size-woocommerce_thumbnail {
		padding: 20px !important;
		height: 300px !important;
	}
	.noncustomizeablecardsrow .col-info {
		margin-top: 60px;
	}
	.col-image, .col-info {
		width: 100% !important;
		position: relative !important;
		top: 0 !important;
	}
}
@media(max-width: 500px) {
	.container {
        padding: 0 20px;
    }
	html {
		margin: 0px !important;
	}
	.mainbannersec {
		padding: 100px 0;
	}
	.bannercontentwrap h1, 
	.aboutbannercontent h1,
	.contactsectionpg .titlebox h1, 
	.checkoutpgsec .titlebox h1 {
        font-size: 40px;
    }
	.bannercontentwrap p {
		font-size: 15px;
	}
	.getdoupstart .row {
		padding:  40px 20px;
	}
	.getdoupstart .row .imageleft {
		display: none;
	}
	.getdoupstart .col-getdoupstartcontent {
		max-width: 100%;
		text-align: center;
	}
	.appandgplay {
		margin: 30px 0 10px;
	}
	.getdoupstart {
		padding-bottom: 60px;
	}

	.doupclientpartnermarquee {
		padding: 40px 20px;
	}

	.doupclientpartnersec p {
		font-size: 18px;
	}
	.popularproducts, .faqsec {
		padding: 60px 0;
	}
	.titlebox h2, .review-form-title, .popularpdcontent h4, .sustainablecontentinner h2 {font-size: 30px;margin-bottom: 32px;}
	.pricewithquantity {
		flex-wrap: wrap;
		gap: 30px;
		margin: 20px 0;
	}
	.popularpdcontent p {
		font-size: 18px;
		margin-bottom: 20px;
	}
	.popularpdcontent h6.price {
		font-size: 24px;
	}
	.howdoesworksec .titlebox h2 {
		margin-bottom: 0px;
	}
	.howdoesworksec .titlebox {
		margin-bottom: 40;
		margin-bottom: 40px;
	}
	.faqsec .faqsecinner {
		padding: 40px 20px;
	}
	.faqsec .faqsecinner .titlebox {
		margin-bottom: 0;
	}
	.accordionheader h4 {
		font-size: 18px;
		margin-bottom: 10px;
	}
	.accordioncontent, .appgplaysec .appgplayrow.row p {
		font-size: 14px;
		line-height: 1.3;
	}
	.appgplaysec .appgplayrow.row {
		padding: 0;
	}
	.appgplaysec .appgplayrow.row .col-5, .appgplaysec .appgplayrow.row .col-3 {
		width: 100%;
	}
	.appgplaysec .appgplayrow.row h2 {
		font-size: 24px;
	}
	.appgplaycontent {
		text-align: center;
	}
	.footerwrapper .col-3, .footerwrapper .col-15, .footerwrapper .col-25 {
		width: 50%;
	}
	.footerwrapper .col-3 {
		width: 100%;
		text-align: center;
	}
	.footeraboutcontent p {
		margin-bottom: 20px;
	}
    .howdoesworkvideo {
        height: 350px;
        padding: 6px;
    }
	ul.socialmedia {
		gap: 2px;
	}
	footer.sitefooter {
		padding: 60px 0 120px;
		background-size: contain;
		background-repeat: no-repeat;
		background-color: #1d2021;
		margin-top: -8px;
	}
	.appgplayfooterbox {
		margin-top: 0;
		margin-right: auto;
		float: none;
		margin-left: auto;
		justify-content: center;
	}
	.aboutbannersec .aboutbannercontent {
		margin-bottom: 40px;
	}
	.aboutbannercontent h1, .aboutbannercontent p {
		margin-bottom: 20px;
	}
	.aboutbannersec {
		padding: 80px 0 10px;
	}
	.sustainablesec {
		padding-top: 60px;
	}
	.sustainablecontentinner h2 {
        margin-bottom: 20px;
        padding: 0;
		text-align: center;
    }
	.sustainablecontentinner p {
		width: 100%;
		left: 0px !important;
		margin-left: 0px !important;
		padding: 20px;
		font-size: 16px;
		text-align: center;
	}
	.sustainableboxwrapper .sustainablerow:nth-child(even) .sustainablecontentinner h2 {
		padding-left: 0;
	}
	.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
		margin: 0 0 1.5em;
		width: 100% !important;
	}
	.checkoutpgsec .titlebox.shop h2 {
		margin-bottom: 0 !important;
	}
    .contactseciner .col-third {
        width: 100%;
        margin-bottom: 20px;
    }
	.col-third.product.type-product {
		width: 100%;
	}
	.pdinfowrow .pdimage, .pdinfowrow .pdcontent {
		width: 100%;
	}
	.productinformationsection {
		padding: 80px 0;
	}
	.pdinfowrow .pdcontent .contentwrapper h1 {
		font-size: 34px;
		margin-bottom: 10px;
	}
	.woocommerce div.product form.cart {
		margin-bottom: 0;
	}
	.reviewsecstart .titlebox h2 {
		margin-bottom: 20px;
	}
	p.woocommerce-noreviews {
		font-size: 14px;
		text-align: center;
	}
	.woocommerce #reviews h3 {
		font-size: 30px
	}
	.pdsliderwrap {
		width: 100%;
		justify-content: space-between;
		gap: 10px;
	}
	.pdthumbslide {
		height: 50px;
		min-width: 50px;
	}
	.pdthumbslider .pdthumbslide img {
		padding: 2px;
	}
	.pdthumbslider .slick-slide {
		margin-bottom: 0px;
	}
    .pdinfowrow .pdcontent .contentwrapper h1 {
        font-size: 30px;
        margin-bottom: 10px;
    }
	.profileinfo h6 {
		font-size: 20px;
		line-height: 1.4;
		margin-bottom: 0;
	}
	.reviewtitle {
		padding: 20px 0 20px;
	}
	.reviewstar {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		gap: 10px;
	}
	.reviewfooter button {
		font-size: 16px;
		gap: 4px;
	}
	.reviewfooter button svg {
		width: 22px;
	}
	.usefulshare {
		gap: 10px;
	}
	.savereview {
		gap: 8px;
	}
	.savereview svg {
		width: 20px;
	}
	.reviewtitle h6 {
		font-size: 20px;
	}
	.woocommerce .woocommerce-error .button, .woocommerce .woocommerce-info .button, .woocommerce .woocommerce-message .button, .woocommerce-page .woocommerce-error .button, .woocommerce-page .woocommerce-info .button, .woocommerce-page .woocommerce-message .button {
		float: none;
		margin-top: 10px;
	}
	.checkoutrowwrapper .boxinner {
		border-radius: 35px;
		border: 1px solid rgba(255, 255, 255, 0.6);
		padding: 16px;
		margin-bottom: 28px;
	}
    .woocommerce #content table.cart td.actions .button, .woocommerce table.cart td.actions .button, .woocommerce-page #content table.cart td.actions .button, .woocommerce-page table.cart td.actions .button {
        justify-content: center;
    }
	tr.woocommerce-shipping-totals.shipping td:before {
		text-align: left;
		margin-bottom: 10px;
		display: none;
	}
	.woocommerce-shipping-totals.shipping .shipping-package-name {
		text-align: left;
		margin-bottom: 10px;
	}
	.woocommerce ul#shipping_method li label {
		display: inline;
		text-align: left;
		display: block;
        float: none !important;
	}
	.checkoutrowwrapper h4,.checkoutrowwrapper h5{
		font-size: 24px;
	}
		.woocommerce form .form-row-last, .woocommerce-page form .form-row-last, .woocommerce form .form-row-first, .woocommerce-page form .form-row-first {
		float: none;
		width: 100%;
	}
	.orderconfirmationsec {
		padding: 60px 0;
	}
	.headerwrapper {
		flex-wrap: wrap;
	}

	.headerwrapper .heading {
		width: 100%;
	}

	.orderconfirmationinner h1 {
		font-size: 24px;
		margin-bottom: 10px;
		text-align: center;
	}

	.orderconfirmationinner p {
		text-align: center;
		margin-bottom: 20px;
	}

	.headerwrapper .buttoncol {
		margin: 0 auto;
	}

	.orderconfirmationmiddle .middleboxthird {
		width: 100%;
		margin-bottom: 20px;
	}

	.orderconfirmationmiddle .middleboxthird p {
		text-align: left;
	}

	.shippingandpaymentsummary .col-45 {
		width: 100%;
	}

	.shipandpayboxinner {padding: 22px 20px;}

	.checkoutrowwrapper .shippingandpaymentsummary h6 {
		margin-bottom: 18px;
	}

	.shipandpaybox {
		margin-bottom: 30px;
	}
	.table-header, .table-row {
		min-width: 730px;
		width: 100%;
		white-space: nowrap;
	}
	.table-row .qty input {
		left: 0;
	}
	.cart-table {
		overflow-x: auto;
	}
	.details .desc {
		font-size: 16px;
		text-align: left;
	}
	.details-item p {
		margin-bottom: 5px !important;
	}
	.thankyouyourorderinner .col-third {
		width: 100%;
		margin: 20px 0;
	}
	p.comment-form-cookies-consent {
		font-size: 16px;
		align-items: flex-start;
		line-height: 1.1;
	}
	p.comment-form-cookies-consent input#wp-comment-cookies-consent {
		width: 10px;
		height: 10px;
	}
	.pdthumbslider {
		width: 60px;
	}
	.pdthumbslider .pdthumbslide img {
		padding: 5px !important;
	}
	.pdinfowrow .pdcontent {
		padding-top: 50px;
	}
	.morelikethisec .col-third .colthirdinner {
		text-align: center;
		padding: 20px 10px 20px;
	}
	.appgplaysec .appgplayrow.row .appgplaybox {
		gap: 20px;
		display: flex;
		margin-bottom: 30px;
	}
	.customizedandnontab ul.carboxtabs {
		width: 100%;
	}
	.cardboxtabs ul li a {
        font-size: 12px;
        padding: 8px 20px;
    }
	.customizedandnontab ul.carboxtabs li a {
        font-size: 12px;
        padding: 10px 18px;
    }
	.customizedandnontab ul.carboxtabs.pricecartbox {
		position: relative;
		left: 8px;
		width: 90%;
	}
	.customizedandnontab ul.carboxtabs.pricecartbox li a span {
		line-height: normal;
	}
	.customizedandnontab ul.carboxtabs.pricecartbox li a {
		font-size: 14px;
		padding: 15px 13px !important;
		width: 100%;
	}
	.customizedandnontab ul.carboxtabs {
		justify-content: space-between;
	}
	.cardboxtabs ul {
		margin-bottom: 30px;
	}
	.customizedandnontab.btnbox {
		margin-bottom: 30px;
		text-align: center;
	}
	.customizedandnontab ul.carboxtabs.pricecartbox li {
		width: 50% !important;
	}
	.doup-customizer-wrap .container {
		padding: 0;
	}
	.inputfield select, .inputfield input, .infocustomizecard .label {
		font-size: 16px
	}
	.noncustomizeablecardsrow .col-image .image {
		position: relative;
		background-size: cover;
		height: 300px;
	}
	.cardfrontdetails {
		text-align: left;
		margin-top: 85px;
		opacity: 0.5;
	}
	label.upload-btn {
		font-size: 13px;
		padding: 10px 16px;
	}
	#fileName_1 {
		font-size: 14px;
	}
	.image-radio-group {
		gap: 6px;
	}
	p.formnote {
		padding: 0;
	}
	.designyourplastictabcontentslider {
		padding-bottom: 20px;
	}
	.featuredpopularslide {
		padding: 0 5px;
	}
	.featuredpopularslide .featuredpopularslideiiner {
		background: rgb(185 216 219 / 20%);
		padding: 20px 15px 2px;
		border-radius: 10px;
	}
	.featuredpopularslider {
		margin: 0 -20px;
	}
	.featuredpopularslideiiner .row .slidecontent h3 {
        font-size: 18px;
        margin-bottom: 6px;
    }
	.featuredpopularslideiiner .row .slidecontent h3 {
		text-align: left;
		font-size: 24px;
	}
	.appgplaysec .appgplayrow.row h2 {
		text-align: left;
		font-size: 22px;
		font-weight: 600;
		line-height: 1.4;
	}
	.appgplaysec .appgplayrow.row h2 br {
		display: none;
	}
	.appgplaysec .appgplayrow.row p {
		text-align: left;
	}
	.appgplaysec .appgplayrow.row .appgplaybox {
		flex-direction: column;
		justify-content: left;
		text-align: left;
		max-width: 120px;
		gap: 5px;
	}
	.rightimage img {
		width: 220px;
		margin-left: auto;
	}
	.appgplaysec .rightimage {
		text-align: end;
		margin-top: -150px;
	}
	.aboutbannersec .aboutimage {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
	.aboutbannersec .aboutimage img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.aboutbannersec {
		overflow: hidden;
		padding-top: 160px;
		border-radius: 20px;
	}
	.aboutbannersec .aboutbannercontent {
		position: relative;
		z-index: 1;
	}
	.aboutbannersec .container:before {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: linear-gradient(
			45deg, black, transparent);
		z-index: 1;
		content: "";
	}
	.aboutbannersec {
		border-color: #50565d;
	}
	.sustainablecontentinner h2 {
		text-align: left;
		font-size: 20px;
	}
	.sustainableboxwrapper .sustainablerow:nth-child(even) {
		flex-direction: column-reverse;
		position: relative;
		z-index: 1;
	}
	.sustainableimage {
		width: 180px;
		position: absolute;
		top: -20px;
		right: 0;
		z-index: 1;
		height: 120px;
	}
	.sustainablerow {
		position: relative;
		padding-top: 45px;
	}
	.sustainableboxwrapper .sustainablerow:nth-child(even) .sustainableimage {
		left: 0;
		top: 3px;
		z-index: 2;
	}
	.sustainableboxwrapper .sustainablerow:nth-child(even) .sustainablecontentinner h2 {
		text-align: left;
		font-size: 20px;
		max-width: 130px;
		margin-right: 0;
		margin-left: auto;
	}
	.sustainableboxwrapper .sustainablerow:nth-child(even) .sustainablecontentinner p {
		z-index: -1;
		position: relative;
	}
	.sustainablesec .titlebox {
		padding-bottom: 40px;
	}
	.sustainableimage img {
		width: 100%;
		height: 100%;
	}
	.pdthumbslider {
		width: 100%;
	}
	.pdinfowrapper .pdsliderwrap {
		flex-wrap: wrap;
		flex-direction: column-reverse;
	}
	.pdthumbslide {
		height: 50px;
		min-width: 40px;
		padding: 4px;
	}
	.pdthumbslider img {
		width: 100%;
		border-radius: 10px;
	}
	.morelikethisec  .row {
		white-space: nowrap;
		flex-wrap: unset;
		justify-content: flex-start;
		overflow-x: auto;
		margin-right: -20px;
	}
	section.morelikethisec.related.products {
		overflow: hidden;
	}
	.morelikethisec .row .col-third {
		width: 100%;
		min-width: 320px;
		max-width: 320px;
	}
	.morelikethisec .row::-webkit-scrollbar {
		display: none;
	}
	ul.carboxtabs li {
		width: 50%;
	}
	ul.carboxtabs li:first-child, .customizedandnontab ul.carboxtabs.pricecartbox li:first-child {
		width: 60% !important;
	}
	.customizedandnontab ul.carboxtabs li a {
		text-align: center;
		justify-content: center;
	}
	ul.carboxtabs {
		width: 100% !important;
		left: 0 !important;
	}
	.featuredpopularslideiiner .slidecontent {
		width: 130%;
	}
	.partnercol {
		padding: 10px 10px;
	}
	.partnercol .image {
		height: 100px;
	}
	.appandgplay {
		margin: 30px 0 10px;
		gap: 0;
		justify-content: space-around;
	}

}