@import url("https://fonts.googleapis.com/css2?family=Commissioner:wght@300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap");
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

dl,
ol,
ul {
  margin-bottom: 0;
}

*:focus {
  outline: none;
}

a,
a:hover {
  text-decoration: none;
}

* {
  line-height: 1.5;
}

table tr {
  display: table;
  width: 100%;
  table-layout: fixed;
}

img,
img.img-responsive {
  max-width: none;
  width: 100%;
  height: auto;
}

[type=reset],
[type=submit],
button,
html [type=button] {
  -webkit-appearance: none;
}

.form-control,
.form-select {
  border-radius: 0%;
  border: 1px solid #707070;
  font-family: "Open Sans", sans-serif;
  font-size: 1.6rem;
  color: #707070;
  font-weight: 400;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.form-control:focus,
.form-select:focus {
  box-shadow: none;
}

input.form-control,
select.form-select {
  height: 4rem;
}

.form-check-input[type=checkbox] {
  border-radius: 0%;
  width: 2.2rem;
  height: 2.2rem;
  margin-top: 0.2rem;
}

.form-check-input[type=checkbox]:checked {
  border-color: #5900AF;
  background-color: #5900AF;
}

.form-check-input[type=radio]:checked {
  border-color: #3C3C3B;
  background-color: #3C3C3B;
}

.accordion-button::after {
  background-image: url("../images/icons/Plus.png");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("../images/icons/Minus.png");
}

html {
  font-size: 62.5%;
}
@media (max-width: 991px) {
  html {
    font-size: 55%;
  }
}

body {
  font-size: 1.6rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  color: #3C3C3B;
}

@media (min-width: 1366px) {
  .container {
    max-width: 1106px;
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: 1340px;
  }
}
@media (min-width: 1920px) {
  .container {
    max-width: 1560px;
  }
}

.container-sub {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container-sub {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-sub {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-sub {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-sub {
    max-width: 1140px;
  }
}
@media (min-width: 1366px) {
  .container-sub {
    max-width: 1206px;
  }
}
@media (min-width: 1600px) {
  .container-sub {
    max-width: 1440px;
  }
}
@media (min-width: 1920px) {
  .container-sub {
    max-width: 1660px;
  }
}

@media (max-width: 767px) {
  .d-none-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .d-none-tablet {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .d-none-desktop {
    display: none !important;
  }
}

.border-right-white {
  border-right: 1px solid #FFFFFF;
}

.mt-120 {
  margin-top: 12rem;
}

@keyframes fadeInUp {
  from {
    transform: translate3d(0, 2rem, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {
  from {
    transform: translate3d(0, 2rem, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInRight {
  from {
    transform: translate3d(-6rem, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInRight {
  from {
    transform: translate3d(-6rem, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInLeft {
  from {
    transform: translate3d(6rem, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInLeft {
  from {
    transform: translate3d(6rem, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.fade-in-up {
  opacity: 0;
  animation-name: fadeInUp;
  animation-duration: 1s;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: both;
}

.fade-in-right {
  opacity: 0;
  animation-name: fadeInRight;
  animation-duration: 1s;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInRight;
  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: both;
}

.fade-in-left {
  opacity: 0;
  animation-name: fadeInLeft;
  animation-duration: 1s;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInLeft;
  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: both;
}

.delay-1s {
  animation-delay: 1s;
  -webkit-animation-delay: 1s;
}

.delay-2s {
  animation-delay: 2s;
  -webkit-animation-delay: 2s;
}

.delay-3s {
  animation-delay: 3s;
  -webkit-animation-delay: 3s;
}

.btn {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-transition: all 0.25s ease;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  justify-content: center;
  align-items: center;
  padding: 1rem 2.3rem;
  height: 4rem;
  min-width: 16rem;
  font-weight: 600;
  font-size: 1.6rem;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  text-transform: uppercase;
  border-radius: 0%;
}

.btn-yellow {
  color: #3C3C3B !important;
  background-color: #FFBC00;
  border: 1px solid #FFBC00;
}

.btn-white {
  color: #FFFFFF !important;
  background-color: transparent;
  border: 1px solid #FFFFFF;
}

.btn-black {
  color: #3C3C3B !important;
  background-color: transparent;
  border: 1px solid #3C3C3B;
}

.btn-grey {
  color: #FFFFFF !important;
  background-color: #707070;
  border: 1px solid #707070;
}

.btn-green {
  color: #3C3C3B !important;
  background-color: #a5efe0;
  border: 1px solid #a5efe0;
}

.c-white {
  color: #FFFFFF;
}

.c-black {
  color: #3C3C3B;
}

.c-purple {
  color: #5900AF;
}

.box-img-cover {
  width: 100%;
  height: 0;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}
.box-img-cover img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  top: 0;
  left: 0;
  transform-origin: center center;
  transition: transform 0.5s, visibility 1.5s ease-in;
}

@media screen and (max-width: 575px) {
  .d-none-xs {
    display: none;
  }
}

.header {
  position: relative;
  z-index: 1000;
  width: 100%;
  background-color: #FFFFFF;
}
.header .top-header {
  background-color: #FFFFFF;
  padding: 2rem 0;
  display: flex;
  justify-content: space-between;
}
.header .top-header .header-logo {
  width: 16.2rem;
  height: auto;
  max-height: 2.5rem;
}
.header .top-header .header-items {
  display: flex;
  align-self: center;
}
.header .top-header .header-items .item {
  display: flex;
  margin-left: 4rem;
}
@media screen and (max-width: 575px) {
  .header .top-header .header-items .item {
    margin-left: 2rem;
  }
}
.header .top-header .header-items .item .item-icon {
  height: 1.9rem;
  width: auto;
  max-width: 1.9rem;
}
.header .top-header .header-items .item .item-text {
  font-family: "Commissioner", sans-serif;
  font-size: 1.6rem;
  color: #3C3C3B;
  font-weight: 500;
  margin-left: 1rem;
}
@media screen and (max-width: 767px) {
  .header .top-header .header-items .item .item-text {
    display: none;
  }
}
.header .main-header {
  padding: 1.2rem 0;
  background-color: #5900AF;
}
.header .main-header .navbar-toggler {
  border: none;
  box-shadow: none;
}
.header .main-header .navbar-toggler .icon-navbar-toggler {
  width: 3rem;
  height: 2rem;
  position: relative;
  margin: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
.header .main-header .navbar-toggler .icon-navbar-toggler span {
  display: block;
  position: absolute;
  height: 0.3rem;
  width: 100%;
  border-radius: 1rem;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  background: #FFFFFF;
}
.header .main-header .navbar-toggler .icon-navbar-toggler span:nth-child(1) {
  top: 0;
}
.header .main-header .navbar-toggler .icon-navbar-toggler span:nth-child(2) {
  top: 1rem;
}
.header .main-header .navbar-toggler .icon-navbar-toggler span:nth-child(3) {
  top: 1rem;
}
.header .main-header .navbar-toggler .icon-navbar-toggler span:nth-child(4) {
  top: 2rem;
}
.header .main-header .navbar-toggler .icon-navbar-toggler.open span:nth-child(1) {
  top: 1rem;
  width: 0%;
  left: 50%;
}
.header .main-header .navbar-toggler .icon-navbar-toggler.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.header .main-header .navbar-toggler .icon-navbar-toggler.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.header .main-header .navbar-toggler .icon-navbar-toggler.open span:nth-child(4) {
  top: 1.1rem;
  width: 0%;
  left: 50%;
}
.header .main-header .navbar-collapse .navbar-nav {
  padding: 0;
}
.header .main-header .navbar-collapse .navbar-nav .nav-item {
  margin-right: 6rem;
}
@media screen and (max-width: 1199px) {
  .header .main-header .navbar-collapse .navbar-nav .nav-item {
    margin-right: 0;
  }
}
.header .main-header .navbar-collapse .navbar-nav .nav-item .nav-link {
  padding: 1rem 0;
  font-family: "Commissioner", sans-serif;
  font-size: 1.6rem;
  color: #FFFFFF;
  font-weight: 500;
}
.header .main-header .navbar-collapse .navbar-nav .nav-item .dropdown-toggle i {
  margin-left: 0.5rem;
}
.header .main-header .navbar-collapse .navbar-nav .nav-item .dropdown-toggle::after {
  display: none;
}
.header .main-header .navbar-collapse .navbar-nav .nav-item .dropdown-menu {
  padding: 1rem 0;
  margin-top: 2.5rem;
  border-radius: 0%;
}
@media screen and (max-width: 1199px) {
  .header .main-header .navbar-collapse .navbar-nav .nav-item .dropdown-menu {
    margin-top: 1rem;
  }
}
.header .main-header .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 1rem 2rem;
  font-family: "Commissioner", sans-serif;
  font-size: 1.4rem;
  color: #3C3C3B;
  font-weight: 400;
}
.header .main-header .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  background-color: transparent;
}
.header .main-header .navbar-collapse .navbar-nav .nav-item .dropdown-shop {
  width: 100% !important;
  margin-top: 2rem;
}
.header .main-header .search-form {
  position: relative;
}
.header .main-header .search-form .icon-search {
  position: absolute;
  left: 2rem;
  top: 1.2rem;
}
.header .main-header .search-form .icon-search i {
  font-size: 2rem;
  color: #acacac;
}
.header .main-header .search-form .input-search {
  height: 4.6rem;
  min-width: 30rem;
  padding-left: 5.5rem;
  padding-right: 1.5rem;
  border: none;
  font-family: "Open Sans", sans-serif;
  font-size: 1.4rem;
  color: #acacac;
  font-weight: 400;
}

.header.active {
  display: block;
  position: fixed;
  background-color: #FFFFFF;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  -webkit-transition: 0.7s all ease;
  transition: 0.7s all ease;
  box-shadow: 4px 8px 16px #003d501a;
}

.footer {
  background-color: #f3f5f6;
}
.footer .top-footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 1rem 0;
}
.footer .top-footer .footer-contact {
  display: flex;
  flex-wrap: wrap;
}
.footer .top-footer .footer-contact .contact-item {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  margin: 1rem 1.5rem;
}
.footer .top-footer .footer-contact .contact-item .contact-icon {
  width: 2.8rem;
  height: 2.8rem;
  margin-right: 1rem;
}
.footer .top-footer .footer-contact .contact-item .contact-icon img {
  width: 100%;
  height: 100%;
}
.footer .top-footer .footer-contact .contact-item .contact-text {
  font-size: 1.4rem;
}
.footer .top-footer .footer-social {
  display: flex;
  flex-wrap: nowrap;
}
.footer .top-footer .footer-social .social-item {
  width: 2.8rem;
  height: 2.8rem;
  margin: 1rem 1.5rem;
}
.footer .main-footer {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  flex-wrap: wrap;
}
.footer .main-footer-1 {
  flex: 0 0 37%;
  max-width: 37%;
  padding: 2rem 2rem;
}
@media screen and (max-width: 991px) {
  .footer .main-footer-1 {
    flex: 0 0 calc(65% - 4rem);
    max-width: calc(65% - 4rem);
  }
}
@media screen and (max-width: 575px) {
  .footer .main-footer-1 {
    flex: 0 0 calc(100% - 2rem);
    max-width: calc(100% - 2rem);
    padding: 2rem 1rem;
  }
}
.footer .main-footer-1 .footer-logo img {
  width: 16rem;
  height: auto;
  max-height: 2.4rem;
}
.footer .main-footer-1 .footer-description {
  font-size: 1.4rem;
  padding-top: 2rem;
}
.footer .main-footer-1 .footer-payment {
  padding-top: 6.8rem;
}
.footer .main-footer-1 .footer-payment .payment-title {
  font-size: 1.4rem;
  font-weight: 600;
}
.footer .main-footer-1 .footer-payment .payment-items {
  display: flex;
  padding-top: 0.8rem;
}
.footer .main-footer-1 .footer-payment .payment-items .item {
  margin-right: 2rem;
}
.footer .main-footer-1 .footer-payment .payment-items .item img {
  width: 7rem;
  height: auto;
  max-height: 4.25rem;
}
.footer .main-footer-2, .footer .main-footer-3 {
  flex: 0 0 15%;
  max-width: 15%;
  padding: 2rem 2rem;
}
@media screen and (max-width: 991px) {
  .footer .main-footer-2, .footer .main-footer-3 {
    flex: 0 0 calc(35% - 4rem);
    max-width: calc(35% - 4rem);
  }
}
@media screen and (max-width: 575px) {
  .footer .main-footer-2, .footer .main-footer-3 {
    flex: 0 0 calc(50% - 2rem);
    max-width: calc(50% - 2rem);
    padding: 2rem 1rem;
  }
}
.footer .main-footer-2 .menu-title, .footer .main-footer-3 .menu-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  color: #3C3C3B;
  font-weight: 700;
  padding-bottom: 1rem;
}
.footer .main-footer-2 .menu-item, .footer .main-footer-3 .menu-item {
  font-size: 1.4rem;
  padding-top: 1rem;
}
.footer .main-footer-4 {
  flex: 0 0 calc(33% - 4rem);
  max-width: calc(33% - 4rem);
  padding: 2rem 2rem;
}
@media screen and (max-width: 991px) {
  .footer .main-footer-4 {
    flex: 0 0 calc(65% - 4rem);
    max-width: calc(65% - 4rem);
  }
}
@media screen and (max-width: 575px) {
  .footer .main-footer-4 {
    flex: 0 0 calc(100% - 2rem);
    max-width: calc(100% - 2rem);
    padding: 2rem 1rem;
  }
}
.footer .main-footer-4 .subscribe-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  color: #3C3C3B;
  font-weight: 700;
  padding-bottom: 1rem;
}
.footer .main-footer-4 .subscribe-form input {
  border: none;
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  color: #acacac;
  font-weight: 400;
}
.footer .main-footer-4 .subscribe-form .btn-subscribe {
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  color: #FFFFFF;
  font-weight: 700;
  background-color: #ff7d8d;
}
.footer .bottom-footer .copyright {
  background-color: #5900AF;
  text-align: center;
  color: #FFFFFF;
  padding: 1rem 0;
}

.owl-banner-main .banner-main {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 16rem 0;
}
.owl-banner-main .banner-main .main-title {
  font-family: "Montserrat", sans-serif;
  font-size: 4rem;
  color: #FFFFFF;
  font-weight: 700;
}
.owl-banner-main .banner-main .description {
  color: #FFFFFF;
  padding-top: 2rem;
}
.owl-banner-main .banner-main .btn-wrap {
  padding-top: 3rem;
}
.owl-banner-main .banner-main .btn-wrap .btn {
  margin-right: 2rem;
  margin-top: 2rem;
}
.owl-banner-main .owl-dots {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
}
.owl-banner-main .owl-dots .owl-dot span {
  width: 9px;
  height: 9px;
  padding: 3px;
  border-radius: 0%;
  background: #FFFFFF !important;
}
.owl-banner-main .owl-dots .owl-dot span:hover {
  background: #FFBC00 !important;
}
.owl-banner-main .owl-dots .owl-dot.active span {
  background: #FFBC00 !important;
  width: 31px;
}

.list-services {
  margin-top: 6rem;
  margin-bottom: 6rem;
}
.list-services .main-title {
  font-family: "Montserrat", sans-serif;
  font-size: 4rem;
  color: #5900AF;
  font-weight: 700;
  text-align: center;
  padding-bottom: 2.7rem;
}
.list-services .item {
  margin-top: 3.4rem;
  position: relative;
}
.list-services .item .box-img-cover {
  padding-top: 47%;
}
.list-services .item .title {
  font-family: "Commissioner", sans-serif;
  font-size: 2.4rem;
  color: #FFFFFF;
  font-weight: 400;
  position: absolute;
  bottom: 3.4rem;
  left: 4.4rem;
}

.half-1 {
  background-position: left center, right center;
  background-size: 60% 100%, 40% 100%;
  background-repeat: no-repeat, no-repeat;
}
@media screen and (max-width: 1199px) {
  .half-1 {
    background-image: none !important;
  }
}
.half-1 .box-content {
  padding: 10rem 0;
}
@media screen and (min-width: 1200px) {
  .half-1 .box-content {
    background-image: none !important;
  }
}
.half-1 .box-content .title {
  font-family: "Montserrat", sans-serif;
  font-size: 3.2rem;
  color: #3C3C3B;
  font-weight: 600;
}
.half-1 .box-content .description {
  font-size: 1.8rem;
  padding-top: 2rem;
}
.half-1 .box-content .btn-wrap {
  padding-top: 5rem;
}
@media screen and (min-width: 1200px) {
  .half-1 .box-img {
    display: none;
  }
}

.grid-collections {
  margin-top: 6rem;
}
.grid-collections .main-title {
  font-family: "Montserrat", sans-serif;
  font-size: 4rem;
  color: #5900AF;
  font-weight: 700;
  text-align: center;
}
.grid-collections .grid-items {
  margin-top: 6rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(6, 8vw);
  grid-gap: 0;
}
@media screen and (max-width: 991px) {
  .grid-collections .grid-items {
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(18, 8vw);
  }
}
.grid-collections .grid-items .item {
  position: relative;
}
.grid-collections .grid-items .item .item-img {
  width: 100% !important;
  height: 100% !important;
}
.grid-collections .grid-items .item .item-img img {
  width: 100%;
  max-height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.grid-collections .grid-items .item:nth-child(1) {
  grid-column: 1/7;
  grid-row: 1/7;
}
.grid-collections .grid-items .item:nth-child(2) {
  grid-column: 7/10;
  grid-row: 1/4;
}
.grid-collections .grid-items .item:nth-child(3) {
  grid-column: 10/13;
  grid-row: 1/4;
}
.grid-collections .grid-items .item:nth-child(4) {
  grid-column: 7/10;
  grid-row: 4/7;
}
.grid-collections .grid-items .item:nth-child(5) {
  grid-column: 10/13;
  grid-row: 4/7;
}
@media screen and (max-width: 991px) {
  .grid-collections .grid-items .item:nth-child(1) {
    grid-column: 1/13;
    grid-row: 1/7;
  }
  .grid-collections .grid-items .item:nth-child(2) {
    grid-column: 1/7;
    grid-row: 7/13;
  }
  .grid-collections .grid-items .item:nth-child(3) {
    grid-column: 7/13;
    grid-row: 7/13;
  }
  .grid-collections .grid-items .item:nth-child(4) {
    grid-column: 1/7;
    grid-row: 13/19;
  }
  .grid-collections .grid-items .item:nth-child(5) {
    grid-column: 7/13;
    grid-row: 13/19;
  }
}
.grid-collections .grid-items .item .box-content {
  position: absolute;
  left: 10%;
  bottom: 10%;
}
@media screen and (max-width: 767px) {
  .grid-collections .grid-items .item .box-content {
    left: 5%;
  }
}
.grid-collections .grid-items .item .box-content .title {
  font-family: "Montserrat", sans-serif;
  font-size: 2.6rem;
  color: #FFFFFF;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .grid-collections .grid-items .item .box-content .title {
    font-size: 2rem;
  }
}
.grid-collections .grid-items .item .box-content .btn-wrap {
  padding-top: 2rem;
}

.grid-products {
  margin-top: 6rem;
}
.grid-products .main-title {
  font-family: "Montserrat", sans-serif;
  font-size: 4rem;
  color: #5900AF;
  font-weight: 700;
  text-align: center;
}
.grid-products .grid-items {
  margin-top: 6rem;
  display: grid;
  grid-template-columns: repeat(13, 1fr);
  grid-template-rows: repeat(8, 4.68vw);
  grid-gap: 3rem;
}
@media screen and (max-width: 991px) {
  .grid-products .grid-items {
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(19, 7.5vw);
  }
}
@media screen and (max-width: 575px) {
  .grid-products .grid-items {
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(18, 10vw);
  }
}
.grid-products .grid-items .product-item:nth-child(1) {
  grid-column: 1/8;
  grid-row: 1/9;
}
.grid-products .grid-items .product-item:nth-child(2) {
  grid-column: 8/11;
  grid-row: 1/5;
}
.grid-products .grid-items .product-item:nth-child(3) {
  grid-column: 11/14;
  grid-row: 1/5;
}
.grid-products .grid-items .product-item:nth-child(4) {
  grid-column: 8/11;
  grid-row: 5/9;
}
.grid-products .grid-items .product-item:nth-child(5) {
  grid-column: 11/14;
  grid-row: 5/9;
}
@media screen and (max-width: 991px) {
  .grid-products .grid-items .product-item:nth-child(1) {
    grid-column: 1/9;
    grid-row: 1/10;
  }
  .grid-products .grid-items .product-item:nth-child(2) {
    grid-column: 1/5;
    grid-row: 10/15;
  }
  .grid-products .grid-items .product-item:nth-child(3) {
    grid-column: 5/9;
    grid-row: 10/15;
  }
  .grid-products .grid-items .product-item:nth-child(4) {
    grid-column: 1/5;
    grid-row: 15/20;
  }
  .grid-products .grid-items .product-item:nth-child(5) {
    grid-column: 5/9;
    grid-row: 15/20;
  }
}
@media screen and (max-width: 767px) {
  .grid-products .grid-items .product-item:nth-child(1) {
    grid-column: 1/9;
    grid-row: 1/9;
  }
  .grid-products .grid-items .product-item:nth-child(2) {
    grid-column: 1/5;
    grid-row: 9/14;
  }
  .grid-products .grid-items .product-item:nth-child(3) {
    grid-column: 5/9;
    grid-row: 9/14;
  }
  .grid-products .grid-items .product-item:nth-child(4) {
    grid-column: 1/5;
    grid-row: 14/19;
  }
  .grid-products .grid-items .product-item:nth-child(5) {
    grid-column: 5/9;
    grid-row: 14/19;
  }
}
.grid-products .grid-items .product-item .product-bottom {
  margin-top: auto;
}
.grid-products .btn-wrap {
  text-align: center;
  padding-top: 7rem;
}

.product-item {
  display: flex;
  flex-direction: column;
}
.product-item:hover .box-img .box-img-cover img {
  transform: scale(1.05);
}
.product-item:hover .box-img .view-details {
  opacity: 1;
  transition: all 0.3s ease;
}
.product-item:hover .product-title a {
  font-family: "Commissioner", sans-serif;
  font-size: 1.8rem;
  color: #5900AF;
  font-weight: 700;
}
.product-item .box-img {
  position: relative;
}
.product-item .box-img .box-img-cover img {
  transform-origin: center center;
  transition: transform 0.5s, visibility 1.5s ease-in;
}
.product-item .box-img .view-details {
  position: absolute;
  width: 100%;
  font-family: "Commissioner", sans-serif;
  font-size: 1.8rem;
  color: #FFFFFF;
  font-weight: 500;
  text-align: center;
  padding: 1.4rem 0;
  background-color: rgba(89, 0, 175, 0.5);
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.3s ease;
}
.product-item .product-title {
  padding-top: 2rem;
}
.product-item .product-title a {
  font-family: "Commissioner", sans-serif;
  font-size: 1.8rem;
  color: #3C3C3B;
  font-weight: 500;
}
.product-item .product-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
}
.product-item .product-bottom .price {
  display: flex;
}
.product-item .product-bottom .price .regular-price {
  font-family: "Commissioner", sans-serif;
  font-size: 2.1rem;
  color: #FF7D8D;
  font-weight: 600;
  margin-right: 1.5rem;
}
.product-item .product-bottom .price .sale-price {
  font-family: "Commissioner", sans-serif;
  font-size: 2rem;
  color: #acacac;
  font-weight: 400;
  text-decoration: line-through;
}
.product-item .product-bottom .wish-icon {
  width: 2.8rem;
  height: auto;
  max-height: 2.8rem;
}

.slider-gifts {
  margin-top: 6rem;
}
.slider-gifts .main-title {
  font-family: "Montserrat", sans-serif;
  font-size: 4rem;
  color: #5900AF;
  font-weight: 700;
  text-align: center;
}
.slider-gifts .owl-gift {
  margin-top: 6rem;
}
.slider-gifts .owl-gift .gift-item .box-img-cover {
  padding-top: 65%;
}
.slider-gifts .owl-gift .gift-item .box-content {
  padding: 1.8rem;
  background-color: #f5f5f5;
}
.slider-gifts .owl-gift .gift-item .box-content .gift-category {
  padding-top: 1.4rem;
}
.slider-gifts .owl-gift .gift-item .box-content .gift-date {
  padding-top: 1.8rem;
}
.slider-gifts .owl-gift .gift-item .box-content .btn-wrap {
  padding-top: 5rem;
}
.slider-gifts .owl-gift .owl-nav {
  position: absolute;
  right: 0;
  top: -10rem;
  margin-top: 0;
}
.slider-gifts .owl-gift .owl-nav .owl-prev {
  margin-right: 1rem;
}
.slider-gifts .owl-gift .owl-nav .owl-prev img {
  width: 3.8rem;
  height: 3.8rem;
}
.slider-gifts .owl-gift .owl-nav .owl-next img {
  width: 3.8rem;
  height: 3.8rem;
}
.slider-gifts .owl-gift .owl-dots {
  position: absolute;
  bottom: -6.6rem;
  left: 50%;
  transform: translateX(-50%);
}
.slider-gifts .owl-gift .owl-dots .owl-dot span {
  width: 9px;
  height: 9px;
  padding: 3px;
  border-radius: 0%;
  background: #ffbc0030 !important;
}
.slider-gifts .owl-gift .owl-dots .owl-dot span:hover {
  background: #FFBC00 !important;
}
.slider-gifts .owl-gift .owl-dots .owl-dot.active span {
  background: #FFBC00 !important;
  width: 31px;
}

.gift-item .box-content .gift-title {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  color: #3C3C3B;
  font-weight: 700;
}
.gift-item .box-content .gift-category {
  font-family: "Open Sans", sans-serif;
  font-size: 2rem;
  color: #FF7D8D;
  font-weight: 400;
}
.gift-item .box-content .gift-date {
  font-family: "Open Sans", sans-serif;
  font-size: 1.8rem;
  color: #707070;
  font-weight: 400;
  font-style: italic;
}
.gift-item .box-content .btn-wrap a {
  display: flex;
  align-items: center;
}
.gift-item .box-content .btn-wrap a .btn-text {
  display: flex;
  align-self: center;
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  color: #5900AF;
  font-weight: 500;
  padding-right: 1rem;
}
.gift-item .box-content .btn-wrap a .btn-icon {
  display: flex;
  align-self: center;
  width: 1.65rem;
  height: 1.65rem;
}
.gift-item:hover .box-content .gift-title {
  color: #5900AF;
}
.gift-item:hover .box-content .btn-wrap a .btn-icon {
  transform: translateX(1rem);
  transition: transform 0.5s, visibility 1.5s ease-in;
}

.slider-clients {
  padding-top: 4rem;
  padding-bottom: 14rem;
  margin-top: 6rem;
  background-color: #fafafa;
}
.slider-clients .main-title {
  font-family: "Montserrat", sans-serif;
  font-size: 4rem;
  color: #5900AF;
  font-weight: 700;
  text-align: center;
}
.slider-clients .owl-client {
  margin-top: 6rem;
}
.slider-clients .owl-client .owl-dots {
  position: absolute;
  bottom: -6.6rem;
  left: 50%;
  transform: translateX(-50%);
}
.slider-clients .owl-client .owl-dots .owl-dot span {
  width: 9px;
  height: 9px;
  padding: 3px;
  border-radius: 0%;
  background: #ffbc0030 !important;
}
.slider-clients .owl-client .owl-dots .owl-dot span:hover {
  background: #FFBC00 !important;
}
.slider-clients .owl-client .owl-dots .owl-dot.active span {
  background: #FFBC00 !important;
  width: 31px;
}

.brand-item {
  width: 100%;
  height: 0;
  padding-top: 56.5%;
  position: relative;
  overflow: hidden;
}
.brand-item img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  top: 0;
  left: 0;
}

.banner-single-1 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 10rem;
  padding-bottom: 10rem;
}
.banner-single-1 .title {
  font-family: "Montserrat", sans-serif;
  font-size: 3.2rem;
  color: #FFFFFF;
  font-weight: 700;
  text-align: center;
}

.half-2,
.half-3 {
  margin-top: 10rem;
}
.half-2 .box-content,
.half-3 .box-content {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.half-2 .box-content .title,
.half-3 .box-content .title {
  font-family: "Montserrat", sans-serif;
  font-size: 2.4rem;
  color: #3C3C3B;
  font-weight: 700;
}
.half-2 .box-content .description,
.half-3 .box-content .description {
  font-family: "Open Sans", sans-serif;
  font-size: 1.8rem;
  color: #3C3C3B;
  font-weight: 400;
  padding-top: 2rem;
}
.half-2 .box-img img,
.half-3 .box-img img {
  width: 100%;
  height: auto;
  max-height: 43rem;
  object-fit: cover;
  -o-object-fit: cover;
}

.banner-items-1 {
  margin-top: 10rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #5900AF;
}
.banner-items-1 .box-content {
  padding-right: 7.2rem;
}
.banner-items-1 .box-content .title {
  font-family: "Montserrat", sans-serif;
  font-size: 2.4rem;
  color: #FFFFFF;
  font-weight: 700;
}
@media screen and (max-width: 991px) {
  .banner-items-1 .box-content .title {
    padding-right: 0;
  }
}
@media screen and (min-width: 992px) {
  .banner-items-1 .box-items {
    margin-left: 7.25rem;
    padding-left: 7.25rem;
    border-left: 1px solid #ffffff32;
  }
}
.banner-items-1 .box-items .item {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.banner-items-1 .box-items .item .box-icon img {
  width: auto;
  height: 4rem;
  max-width: 6rem;
}
.banner-items-1 .box-items .item .item-title {
  font-family: "Commissioner", sans-serif;
  font-size: 2rem;
  color: #FFFFFF;
  font-weight: 500;
  padding-top: 2rem;
}

.banner-items-1 + .banner-single-2 {
  margin-top: 0;
}

.banner-single-2 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 10rem;
  padding-top: 7rem;
  padding-bottom: 7rem;
}
.banner-single-2 .title {
  font-family: "Montserrat", sans-serif;
  font-size: 3.2rem;
  color: #FFFFFF;
  font-weight: 700;
  text-align: center;
}
.banner-single-2 .description {
  font-family: "Open Sans", sans-serif;
  font-size: 1.8rem;
  color: #FFFFFF;
  font-weight: 400;
  text-align: center;
  padding-top: 2rem;
}
.banner-single-2 .btn-wrap {
  text-align: center;
  padding-top: 5rem;
}

.list-brands {
  margin-top: 5rem;
}
.list-brands .main-title {
  font-family: "Montserrat", sans-serif;
  font-size: 4rem;
  color: #5900AF;
  font-weight: 700;
  text-align: center;
}
.list-brands .box-items {
  display: flex;
  flex-wrap: wrap;
  padding-top: 2rem;
  margin-left: -0.6rem;
  margin-right: -0.6rem;
}
.list-brands .box-items .item {
  flex: 0 0 calc(16.6666666667% - 1.2rem);
  max-width: calc(16.6666666667% - 1.2rem);
  margin: 4rem 0.6rem 0 0.6rem;
  -webkit-box-shadow: 0px 0px 10px 3px rgba(199, 199, 199, 0.8);
  box-shadow: 0px 0px 10px 2px rgba(199, 199, 199, 0.3);
}
@media screen and (max-width: 991px) {
  .list-brands .box-items .item {
    flex: 0 0 calc(25% - 1.2rem);
    max-width: calc(25% - 1.2rem);
  }
}
@media screen and (max-width: 575px) {
  .list-brands .box-items .item {
    flex: 0 0 calc(33.3333333333% - 1.2rem);
    max-width: calc(33.3333333333% - 1.2rem);
  }
}
.list-brands .box-items .item .box-img-cover {
  padding-top: 56%;
}

.three-items {
  margin-top: 4rem;
}
.three-items .item {
  margin-top: 6rem;
  display: flex;
  flex-direction: column;
  height: calc(100% - 6rem);
}
.three-items .item .item-title {
  font-family: "Montserrat", sans-serif;
  font-size: 2.2rem;
  color: #3C3C3B;
  font-weight: 500;
  text-align: center;
}
.three-items .item .item-description {
  color: #707070;
  text-align: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.three-items .item .box-bottom {
  margin-top: auto;
}
.three-items .item .box-bottom .box-img-cover {
  padding-top: 119%;
}
.three-items .item .box-bottom .btn-wrap {
  text-align: center;
  padding-bottom: 3rem;
}
.three-items .item .box-bottom .btn-wrap .btn-hidden {
  visibility: hidden;
}
.three-items .item .box-bottom .btn-wrap .btn-yellow {
  visibility: inherit;
}

.about-us {
  margin-top: 10rem;
}
.about-us .about-us-box {
  padding: 2.4rem 5%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.about-us .about-us-box .box-content .title {
  font-family: "Montserrat", sans-serif;
  font-size: 2.4rem;
  color: #3C3C3B;
  font-weight: 700;
}
.about-us .about-us-box .box-content .description {
  font-family: "Open Sans", sans-serif;
  font-size: 1.8rem;
  color: #3C3C3B;
  font-weight: 400;
  padding-top: 2rem;
}
.about-us .about-us-box .box-items {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1rem;
  margin-right: -1rem;
}
.about-us .about-us-box .box-items .item {
  flex: 0 0 calc(50% - 2rem);
  max-width: calc(50% - 2rem);
  text-align: center;
  padding: 2.4rem;
  margin: 1rem;
  background-color: #FFFFFF;
}
.about-us .about-us-box .box-items .item .box-icon img {
  width: auto;
  height: 5rem;
  max-width: 8rem;
}
.about-us .about-us-box .box-items .item .item-title {
  padding-top: 2.5rem;
  font-family: "Commissioner", sans-serif;
  font-size: 2rem;
  color: #3C3C3B;
  font-weight: 500;
}

.choose-us {
  margin-top: 5rem;
}
.choose-us .box-img img {
  width: 100%;
  height: auto;
  min-height: 36rem;
  object-fit: cover;
  -o-object-fit: cover;
}
.choose-us .box-content .title {
  font-family: "Montserrat", sans-serif;
  font-size: 2.4rem;
  color: #3C3C3B;
  font-weight: 700;
  padding-top: 4rem;
}
.choose-us .box-content .btn-wrap {
  padding-top: 4rem;
}
.choose-us .box-content .description {
  font-family: "Open Sans", sans-serif;
  font-size: 1.8rem;
  color: #3C3C3B;
  font-weight: 400;
  padding-top: 4rem;
}

.banner-items-2 {
  margin-top: 5rem;
  margin-bottom: 5rem;
}
.banner-items-2-box {
  background-color: #5900AF;
  padding: 4rem 5%;
}
.banner-items-2-box .box-content {
  border-bottom: 1px solid #ffffff30;
  padding-bottom: 4rem;
}
.banner-items-2-box .box-content .title {
  font-family: "Montserrat", sans-serif;
  font-size: 2.4rem;
  color: #FFFFFF;
  font-weight: 700;
  text-align: center;
}
.banner-items-2-box .box-content .description {
  font-family: "Open Sans", sans-serif;
  font-size: 1.8rem;
  color: #FFFFFF;
  font-weight: 400;
  text-align: center;
  padding-top: 2rem;
}
.banner-items-2-box .box-items .item {
  text-align: center;
  padding-top: 4rem;
}
.banner-items-2-box .box-items .item .box-icon img {
  height: 5rem;
  width: auto;
  max-width: 5rem;
}
.banner-items-2-box .box-items .item .item-title {
  font-family: "Montserrat", sans-serif;
  font-size: 2.4rem;
  color: #FFFFFF;
  font-weight: 700;
  padding-top: 2rem;
}
.banner-items-2-box .box-items .item .item-description {
  font-family: "Open Sans", sans-serif;
  font-size: 1.6rem;
  color: #FFFFFF;
  font-weight: 400;
  padding-top: 1rem;
}

.grid-images {
  margin-top: 5rem;
  margin-bottom: 5rem;
}
.grid-images .title {
  font-family: "Montserrat", sans-serif;
  font-size: 3.2rem;
  color: #5900AF;
  font-weight: 700;
  text-align: center;
  padding-bottom: 6rem;
}
.grid-images .sbi_load_btn {
  margin-top: 6rem !important;
  font-family: "Open Sans", sans-serif;
  font-size: 1.6rem !important;
  font-weight: 700 !important;
  color: #3C3C3B !important;
  background-color: #FFBC00 !important;
  border-radius: 0% !important;
  border: 1px solid #FFBC00;
  padding: 1rem 3rem !important;
}

.half-4 {
  margin-top: 10rem;
}
.half-4 .box-content {
  padding: 10rem 10%;
}
.half-4 .box-content .title {
  font-family: "Montserrat", sans-serif;
  font-size: 3.2rem;
  color: #3C3C3B;
  font-weight: 600;
}
.half-4 .box-content .description {
  font-size: 1.8rem;
  padding-top: 2rem;
}
.half-4 .box-content .btn-wrap {
  padding-top: 5rem;
}
.half-4 .box-img {
  height: 100%;
  max-height: 40rem;
}
.half-4 .box-img img {
  width: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: center;
  -o-object-position: center;
  height: 100%;
}

.join-us {
  margin-top: 10rem;
  margin-bottom: 10rem;
}
.join-us .title {
  font-family: "Montserrat", sans-serif;
  font-size: 2.4rem;
  color: #3C3C3B;
  font-weight: 700;
  text-align: center;
}
.join-us .description {
  font-family: "Open Sans", sans-serif;
  font-size: 1.8rem;
  color: #3C3C3B;
  font-weight: 400;
  text-align: center;
  padding: 2rem 5% 0 5%;
}
.join-us-box {
  margin-top: 6rem;
}
.join-us-box > table > tr > td {
  border-bottom: 1px solid #70707030;
}
.join-us-box > table thead tr td {
  font-family: "Commissioner", sans-serif;
  font-size: 1.8rem;
  color: #3C3C3B;
  font-weight: 500;
  border-bottom: 1px solid #70707030 !important;
  padding: 2rem;
}
.join-us-box > table tbody tr.main-row td {
  padding: 3rem 2rem;
  font-weight: 700;
  background-color: #fafafa;
}
.join-us-box > table tbody tr.main-row.collapsed td {
  font-weight: 400;
  background-color: transparent;
}
.join-us-box > table tbody tr.hidden-row td {
  padding: 0;
}
.join-us-box > table tbody tr.hidden-row td table tr td,
.join-us-box > table tbody tr.hidden-row td table tr th {
  padding: 3rem 2rem;
  border: none;
  background-color: #fafafa;
}

.faq {
  margin-top: 5rem;
  margin-bottom: 10rem;
}
.faq .col-tab-faq {
  flex: 0 0 20%;
  max-width: 20%;
}
@media (min-width: 576px) and (max-width: 1199px) {
  .faq .col-tab-faq {
    flex: 0 0 40%;
    max-width: 40%;
  }
}
@media screen and (max-width: 575px) {
  .faq .col-tab-faq {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.faq .col-tab-faq .nav-link {
  background-color: #fafafa;
  border-radius: 0%;
  padding: 1.8rem 3rem;
  font-family: "Commissioner", sans-serif;
  font-size: 2rem;
  color: #363636;
  font-weight: 500;
  border-top: 1px solid #70707010;
}
.faq .col-tab-faq .nav-link.active {
  background-color: #5900AF;
  color: #FFFFFF;
}
.faq .col-accordion-faq {
  flex: 0 0 80%;
  max-width: 80%;
}
@media (min-width: 576px) and (max-width: 1199px) {
  .faq .col-accordion-faq {
    flex: 0 0 60%;
    max-width: 60%;
  }
}
@media screen and (max-width: 575px) {
  .faq .col-accordion-faq {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.faq .col-accordion-faq .accordion-item .accordion-button {
  font-family: "Commissioner", sans-serif;
  font-size: 1.8rem;
  color: #2f2f2f;
  font-weight: 500;
  padding: 2rem 0;
  background-color: transparent !important;
  box-shadow: none !important;
}
.faq .col-accordion-faq .accordion-item .accordion-button:focus {
  box-shadow: none;
}
@media screen and (min-width: 576px) {
  .faq .col-accordion-faq .accordion-item:first-child .accordion-button {
    padding: 0 0 2rem 0;
  }
}
.faq .col-accordion-faq .accordion-item .accordion-body {
  font-family: "Open Sans", sans-serif;
  font-size: 1.6rem;
  color: #2f2f2f;
  font-weight: 400;
  padding: 0 0 2rem 0;
}

.terms-conditions {
  margin-top: 10rem;
  margin-bottom: 10rem;
}
.terms-conditions .main-title {
  font-family: "Montserrat", sans-serif;
  font-size: 3.2rem;
  color: #5900AF;
  font-weight: 700;
  text-align: center;
  padding-bottom: 10rem;
}
.terms-conditions .title {
  font-family: "Commissioner", sans-serif;
  font-size: 1.8rem;
  color: #2f2f2f;
  font-weight: 500;
}
.terms-conditions .description {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.contact-us {
  margin-top: 5rem;
}
.contact-us .contact-form {
  padding: 6rem 12%;
  background-color: #fafafa;
}
@media screen and (max-width: 575px) {
  .contact-us .contact-form {
    padding: 6rem 2rem;
  }
}
.contact-us .contact-form .title {
  font-family: "Montserrat", sans-serif;
  font-size: 2.4rem;
  color: #3C3C3B;
  font-weight: 700;
  padding-bottom: 2rem;
}
.contact-us .contact-form .form-label {
  padding-top: 2rem;
}
.contact-us .contact-form textarea {
  height: 15rem;
}
.contact-us .contact-form .btn-wrap {
  padding-top: 4rem;
}
.contact-us .box-column {
  display: flex;
  align-items: center;
  background-color: #5900AF;
}
.contact-us .contact-info {
  padding: 6rem 12%;
}
@media screen and (max-width: 575px) {
  .contact-us .contact-info {
    padding: 6rem 2rem;
  }
}
.contact-us .contact-info .title {
  font-family: "Montserrat", sans-serif;
  font-size: 2.4rem;
  color: #FFFFFF;
  font-weight: 700;
}
.contact-us .contact-info .item-title {
  font-family: "Commissioner", sans-serif;
  font-size: 2.4rem;
  color: #FFFFFF;
  font-weight: 400;
  padding-top: 4rem;
}
.contact-us .contact-info .item-description {
  font-family: "Open Sans", sans-serif;
  font-size: 1.8rem;
  color: #FFFFFF;
  font-weight: 400;
  padding-top: 2rem;
}
.contact-us .contact-info .item-social {
  display: flex;
  padding-top: 2rem;
}
.contact-us .contact-info .item-social .box-icon {
  padding-right: 2rem;
}
.contact-us .contact-info .item-social .box-icon img {
  width: 3.4rem;
  height: 3.4rem;
}

.contact-map {
  margin-top: 10rem;
}
.contact-map iframe {
  width: 100%;
  height: 46rem;
}

.banner-single-3 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.banner-single-3 .title {
  font-family: "Montserrat", sans-serif;
  font-size: 3.6rem;
  color: #FFFFFF;
  font-weight: 700;
  text-align: center;
}
.banner-single-3 .description {
  font-family: "Open Sans", sans-serif;
  font-size: 2rem;
  color: #FFFFFF;
  font-weight: 400;
  text-align: center;
  padding-top: 1rem;
}

.slider-category {
  margin-top: 5rem;
}
.slider-category .title {
  font-family: "Montserrat", sans-serif;
  font-size: 3.2rem;
  color: #5900AF;
  font-weight: 700;
  text-align: center;
  padding-bottom: 5rem;
  border-bottom: 1px solid #70707030;
}
.slider-category .owl-category {
  margin-top: 5rem;
  padding: 0 3%;
}
.slider-category .owl-category .item-title {
  font-family: "Commissioner", sans-serif;
  font-size: 1.4rem;
  color: #3C3C3B;
  font-weight: 500;
  padding-top: 1rem;
}
.slider-category .owl-category .owl-nav {
  margin-top: 0;
}
.slider-category .owl-category .owl-nav .owl-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -2rem;
}
.slider-category .owl-category .owl-nav .owl-prev img {
  width: 3.8rem;
  height: 3.8rem;
}
.slider-category .owl-category .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -2rem;
}
.slider-category .owl-category .owl-nav .owl-next img {
  width: 3.8rem;
  height: 3.8rem;
}
.slider-category .owl-category .owl-dots {
  position: absolute;
  bottom: -6.6rem;
  left: 50%;
  transform: translateX(-50%);
}
.slider-category .owl-category .owl-dots .owl-dot span {
  width: 9px;
  height: 9px;
  padding: 3px;
  border-radius: 0%;
  background: #ffbc0030 !important;
}
.slider-category .owl-category .owl-dots .owl-dot span:hover {
  background: #FFBC00 !important;
}
.slider-category .owl-category .owl-dots .owl-dot.active span {
  background: #FFBC00 !important;
  width: 31px;
}

.main-shop {
  margin-top: 10rem;
  margin-bottom: 10rem;
}
.main-shop .product-filter .shop-by {
  margin-bottom: 4rem;
}
.main-shop .product-filter .shop-by .title {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #70707030;
  margin-bottom: 2rem;
}
.main-shop .product-filter .shop-by .title .filter-title {
  font-family: "Montserrat", sans-serif;
  font-size: 2.2rem;
  color: #5900AF;
  font-weight: 700;
  padding-bottom: 1.5rem;
}
.main-shop .product-filter .shop-by .title .clear-filter {
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  color: #FF7D8D;
  font-weight: 500;
  padding-bottom: 1.5rem;
}
.main-shop .product-filter .shop-by .accordion .accordion-item {
  border: none;
}
.main-shop .product-filter .shop-by .accordion .accordion-item .accordion-button {
  font-family: "Commissioner", sans-serif;
  font-size: 1.8rem;
  color: #2f2f2f;
  font-weight: 400;
  padding: 0 0 2rem 0;
  background-color: transparent !important;
  box-shadow: none !important;
}
.main-shop .product-filter .shop-by .accordion .accordion-item .accordion-button .form-check-input {
  margin-right: 1.5rem;
}
.main-shop .product-filter .shop-by .accordion .accordion-item .accordion-body {
  font-family: "Commissioner", sans-serif;
  font-size: 1.8rem;
  color: #2f2f2f;
  font-weight: 400;
  padding: 0 0 0 3rem;
}
.main-shop .product-filter .shop-by .accordion .accordion-item .accordion-body .form-check {
  padding-bottom: 2rem;
}
.main-shop .product-filter .shop-by .accordion .accordion-item .accordion-body .form-check .form-check-input {
  margin-right: 1.5rem;
}
.main-shop .product-filter .color-filter {
  margin-bottom: 4rem;
}
.main-shop .product-filter .color-filter .filter-title {
  font-family: "Montserrat", sans-serif;
  font-size: 2.2rem;
  color: #5900AF;
  font-weight: 700;
  border-bottom: 1px solid #70707030;
  padding-bottom: 1.5rem;
}
.main-shop .product-filter .color-filter .color-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.main-shop .product-filter .color-filter .color-list .color {
  border-radius: 50%;
  border: 1px solid #70707050;
  width: 3rem;
  height: 3rem;
  margin-right: 0.8rem;
  margin-bottom: 1.5rem;
}
.main-shop .price-range {
  margin-bottom: 4rem;
}
.main-shop .price-range .filter-title {
  font-family: "Montserrat", sans-serif;
  font-size: 2.2rem;
  color: #5900AF;
  font-weight: 700;
  border-bottom: 1px solid #70707030;
  padding-bottom: 1.5rem;
}
.main-shop .price-range .form-range {
  margin-top: 2rem;
}
.main-shop .price-range .price {
  display: flex;
  justify-content: space-between;
  font-family: "Commissioner", sans-serif;
  font-size: 1.4rem;
  color: #3C3C3B;
  font-weight: 300;
}
.main-shop .top-filter {
  margin-bottom: -2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.main-shop .top-filter .count-result {
  display: flex;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  color: #707070;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.main-shop .top-filter .display-filter {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
.main-shop .top-filter .display-filter label {
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  color: #3C3C3B;
  font-weight: 500;
  margin-right: 1.5rem;
  white-space: nowrap;
}
.main-shop .top-filter .display-filter select {
  min-width: 13rem;
}
.main-shop .top-filter .sort-filter {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
.main-shop .top-filter .sort-filter label {
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  color: #3C3C3B;
  font-weight: 500;
  margin-right: 1.5rem;
  white-space: nowrap;
}
.main-shop .top-filter .sort-filter select {
  min-width: 20rem;
}
.main-shop .product-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -2rem;
  margin-right: -2rem;
}
.main-shop .product-list .product-item {
  flex: 0 0 calc(33.3333333333% - 4rem);
  max-width: calc(33.3333333333% - 4rem);
  margin: 2rem;
}
@media screen and (max-width: 991px) {
  .main-shop .product-list .product-item {
    flex: 0 0 calc(50% - 4rem);
    max-width: calc(50% - 4rem);
  }
}
.main-shop .product-pagination {
  margin-top: 10rem;
}
.main-shop .product-pagination .page-item .page-link {
  border: none;
  color: #3C3C3B;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}
.main-shop .product-pagination .page-item .page-link:hover {
  background-color: transparent;
  text-decoration: underline;
}
.main-shop .product-pagination .page-item .page-link:focus {
  box-shadow: none;
}
.main-shop .product-pagination .page-item.disabled .page-link {
  color: #707070;
}

.slider-upsell {
  margin-top: 8rem;
  margin-bottom: 10rem;
}
.slider-upsell .title {
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  color: #5900AF;
  font-weight: 700;
  text-align: center;
}
.slider-upsell .owl-upsell {
  margin-top: 8rem;
}

.reviews {
  margin-top: 6rem;
  margin-bottom: 6rem;
}
.reviews .review-title {
  font-family: "Open Sans", sans-serif;
  font-size: 1.8rem;
  color: #3C3C3B;
  font-weight: 400;
}
.reviews .review-description {
  font-family: "Open Sans", sans-serif;
  font-size: 1.5rem;
  color: #3C3C3B;
  font-weight: 400;
  padding-top: 0.8rem;
}
.reviews .rating-title {
  padding-top: 3rem;
}
.reviews .rating-icon {
  display: flex;
  margin-top: 1rem;
}
.reviews .rating-icon img {
  width: 3rem;
  height: auto;
  max-height: 3.2rem;
  margin-right: 0.7rem;
}
.reviews .review-form {
  padding-top: 1rem;
}
.reviews .review-form .form-label {
  padding-top: 2rem;
}
.reviews .review-form .form-control {
  margin-top: 1rem;
}
.reviews .review-form textarea {
  height: 14rem;
  padding: 1rem 1.5rem;
}
.reviews .review-form .form-check {
  margin-top: 2rem;
}
.reviews .review-form .btn-wrap {
  padding-top: 4rem;
}

.main-wishlist {
  margin-top: 5rem;
  margin-bottom: 10rem;
}
.main-wishlist .top-filter {
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.main-wishlist .top-filter .count-result {
  display: flex;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  color: #707070;
  font-weight: 500;
  padding-bottom: 1rem;
}
.main-wishlist .top-filter .sort-filter {
  display: flex;
  align-items: center;
  padding-bottom: 1rem;
}
.main-wishlist .top-filter .sort-filter label {
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  color: #3C3C3B;
  font-weight: 500;
  margin-right: 1.5rem;
  white-space: nowrap;
}
.main-wishlist .top-filter .sort-filter select {
  min-width: 20rem;
}
.main-wishlist .wish-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1rem;
  margin-right: -1rem;
}
.main-wishlist .wish-list .product-item {
  flex: 0 0 calc(25% - 2rem);
  max-width: calc(25% - 2rem);
  margin: 1rem;
}
@media screen and (max-width: 991px) {
  .main-wishlist .wish-list .product-item {
    flex: 0 0 calc(50% - 2rem);
    max-width: calc(50% - 2rem);
  }
}
.main-wishlist .wish-list .product-item .box-img .view-details {
  background-color: rgba(60, 60, 59, 0.5);
}
.main-wishlist .wish-list .product-item .product-title a {
  font-weight: 500 !important;
  color: #3C3C3B !important;
}
.main-wishlist .btn-wrap {
  padding-top: 5rem;
  text-align: center;
}

.product-detail {
  margin-top: 6rem;
  margin-bottom: 8rem;
}
.product-detail .product-breadcrumb {
  margin-bottom: 3rem;
}
.product-detail .product-breadcrumb .breadcrumb .breadcrumb-item {
  font-family: "Open Sans", sans-serif;
  font-size: 1.4rem;
  color: #707070;
  font-weight: 400;
}
.product-detail .product-breadcrumb .breadcrumb .breadcrumb-item.active {
  font-family: "Open Sans", sans-serif;
  font-size: 1.4rem;
  color: #3C3C3B;
  font-weight: 400;
}
.product-detail .product-gallery {
  -webkit-box-align: start;
  -ms-flex-align: start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.product-detail .product-gallery .slider-thumbs {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 12.3rem;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex: 0 0 9rem;
  flex-direction: column;
  margin-right: 2rem;
  width: 9rem;
}
@media screen and (max-width: 575px) {
  .product-detail .product-gallery .slider-thumbs {
    flex: 0 0 6rem;
    width: 6rem;
  }
}
.product-detail .product-gallery .slider-thumbs .gallery-thumbs {
  height: 42rem;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.product-detail .product-gallery .slider-thumbs .gallery-thumbs::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 575px) {
  .product-detail .product-gallery .slider-thumbs .gallery-thumbs {
    height: 30rem;
  }
}
.product-detail .product-gallery .slider-thumbs .gallery-thumbs .swiper-slide .box-img-cover img {
  opacity: 0.5;
  cursor: pointer;
}
.product-detail .product-gallery .slider-thumbs .gallery-thumbs .swiper-slide-thumb-active .box-img-cover img {
  opacity: 1;
  cursor: default;
}
.product-detail .product-gallery .slider-main {
  width: calc(100% - 11rem);
}
@media screen and (max-width: 575px) {
  .product-detail .product-gallery .slider-main {
    width: calc(100% - 8rem);
  }
}
.product-detail .product-gallery .swipe-container {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  list-style: none;
}
.product-detail .product-gallery .swipe-container .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  cursor: pointer;
}
.product-detail .product-info {
  padding-left: 8%;
  padding-right: 8%;
}
.product-detail .product-info .product-title {
  display: flex;
}
.product-detail .product-info .product-title .main-title {
  font-family: "Montserrat", sans-serif;
  font-size: 2.6rem;
  color: #3C3C3B;
  font-weight: 500;
}
.product-detail .product-info .price {
  display: flex;
  align-items: center;
  margin-top: 3rem;
}
.product-detail .product-info .price .sale-price {
  font-family: "Commissioner", sans-serif;
  font-size: 2.6rem;
  color: #FF7D8D;
  font-weight: 600;
  margin-right: 1rem;
}
.product-detail .product-info .price .regular-price {
  font-family: "Commissioner", sans-serif;
  font-size: 2.2rem;
  color: #acacac;
  font-weight: 400;
  text-decoration: line-through;
}
.product-detail .product-info .color-list {
  margin-top: 3rem;
}
.product-detail .product-info .color-list .box-color {
  display: flex;
  flex-wrap: wrap;
  padding-top: 1.4rem;
  padding-right: 15%;
}
.product-detail .product-info .color-list .box-color .color {
  border-radius: 50%;
  border: 1px solid #70707050;
  width: 3rem;
  height: 3rem;
  margin-right: 2rem;
  margin-bottom: 1.5rem;
}
.product-detail .product-info .quantity-simple {
  margin-top: 1.5rem;
}
.product-detail .product-info .quantity-simple .qty {
  margin-top: 1.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  border: 1px solid #e5e5e5;
  border-radius: 0%;
  height: 4rem;
  width: 10rem;
  -moz-appearance: textfield;
}
.product-detail .product-info .quantity-simple .qty::-webkit-outer-spin-button, .product-detail .product-info .quantity-simple .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.product-detail .product-info .product-additional-info {
  margin-top: 4rem;
}
.product-detail .product-info .product-additional-info .accordion .accordion-item .accordion-button {
  font-family: "Commissioner", sans-serif;
  font-size: 1.8rem;
  color: #2f2f2f;
  font-weight: 500;
  padding: 2rem 0;
  background-color: transparent !important;
}
.product-detail .product-info .product-additional-info .accordion .accordion-item .accordion-button:focus {
  box-shadow: none;
}
.product-detail .product-info .product-additional-info .accordion .accordion-item .accordion-body {
  font-family: "Open Sans", sans-serif;
  font-size: 1.6rem;
  color: #707070;
  font-weight: 400;
  padding: 0 0 2rem 0;
}
.product-detail .product-info .product-additional-info .accordion .accordion-item .accordion-body table {
  border: 1px solid #e5e5e5;
}
.product-detail .product-info .product-additional-info .accordion .accordion-item .accordion-body table tr td {
  border-bottom: 1px solid #e5e5e5;
  font-family: "Commissioner", sans-serif;
  font-size: 1.6rem;
  color: #3C3C3B;
  font-weight: 400;
  padding: 1.5rem 3rem;
}
.product-detail .product-info .product-additional-info .accordion .accordion-item .accordion-body table tr:last-child td {
  border-bottom: none;
}
.product-detail .product-info .product-additional-info .accordion .accordion-item .accordion-body table thead {
  background-color: #e5e5e5;
}
.product-detail .product-info .btn-wrap {
  padding-top: 3rem;
  display: flex;
}
.product-detail .product-info .btn-wrap .btn-yellow {
  width: calc(50% - 1rem);
  margin-right: 1rem;
  padding: 1rem;
}
.product-detail .product-info .btn-wrap .btn-green {
  width: calc(50% - 1rem);
  margin-left: 1rem;
  padding: 1rem;
}

.banner-single-4 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 10rem;
  padding-bottom: 10rem;
}
.banner-single-4 .title {
  font-family: "Montserrat", sans-serif;
  font-size: 3.2rem;
  color: #5900AF;
  font-weight: 700;
  text-align: center;
}

.gift-culture {
  margin-top: 4rem;
  margin-bottom: 10rem;
}
.gift-culture .categories-filter {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
}
.gift-culture .categories-filter label {
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  color: #3C3C3B;
  font-weight: 500;
  margin-right: 1.5rem;
  white-space: nowrap;
}
.gift-culture .categories-filter select {
  width: 20rem;
}
.gift-culture .latest-news .title {
  font-family: "Montserrat", sans-serif;
  font-size: 2.4rem;
  color: #3C3C3B;
  font-weight: 700;
}
.gift-culture .latest-news .gift-item {
  margin-top: 4rem;
}
.gift-culture .latest-news .gift-item:not(:last-child) {
  border-bottom: 1px solid #707070;
}
.gift-culture .latest-news .gift-item .box-img-cover {
  padding-top: 47%;
}
.gift-culture .latest-news .gift-item .box-content {
  padding-top: 3rem;
  padding-bottom: 4rem;
}
.gift-culture .latest-news .gift-item .box-content .gift-title {
  font-size: 2.6rem;
}
.gift-culture .latest-news .gift-item .box-content .gift-category {
  font-size: 2rem;
  padding-top: 2rem;
}
.gift-culture .latest-news .gift-item .box-content .gift-date {
  font-size: 2rem;
  padding-top: 2rem;
}
.gift-culture .latest-news .gift-item .box-content .btn-wrap {
  padding-top: 3rem;
}
.gift-culture .btn-wrap {
  padding-top: 10rem;
  text-align: center;
}

@media screen and (min-width: 992px) {
  .related-news {
    margin-left: 0.7rem;
    padding-left: 3.3rem;
    border-left: 1px solid #70707030;
  }
}
.related-news .title {
  font-family: "Montserrat", sans-serif;
  font-size: 2.4rem;
  color: #3C3C3B;
  font-weight: 700;
}
.related-news .gift-item {
  margin-top: 4rem;
}
.related-news .gift-item:not(:last-child) {
  border-bottom: 1px solid #707070;
}
.related-news .gift-item .box-img-cover {
  padding-top: 68%;
}
.related-news .gift-item .box-content {
  padding-top: 2rem;
  padding-bottom: 4rem;
}
.related-news .gift-item .box-content .gift-category {
  padding-top: 1rem;
}
.related-news .gift-item .box-content .gift-date {
  padding-top: 1rem;
}
.related-news .gift-item .box-content .btn-wrap {
  padding-top: 3rem;
}

.gift-detail {
  margin-top: 8rem;
  margin-bottom: 10rem;
}
.gift-detail .detail-news .gift-title {
  font-family: "Montserrat", sans-serif;
  font-size: 2.4rem;
  color: #3C3C3B;
  font-weight: 700;
  padding-bottom: 1rem;
}
.gift-detail .detail-news .gift-category {
  font-family: "Open Sans", sans-serif;
  font-size: 1.8rem;
  color: #FF7D8D;
  font-weight: 400;
  padding-right: 2rem;
}
.gift-detail .detail-news .gift-date {
  font-family: "Open Sans", sans-serif;
  font-size: 1.8rem;
  color: #707070;
  font-weight: 400;
  font-style: italic;
}
.gift-detail .detail-news .box-img-cover {
  padding-top: 44%;
  margin-top: 3.6rem;
}
.gift-detail .detail-news .paragraph-title {
  font-family: "Montserrat", sans-serif;
  font-size: 2.2rem;
  color: #3C3C3B;
  font-weight: 700;
  padding-top: 3rem;
}
.gift-detail .detail-news .paragraph {
  padding-top: 2rem;
}

.account-form .box-account-form {
  padding: 4rem 12%;
}
.account-form .box-account-form .main-title {
  font-family: "Montserrat", sans-serif;
  font-size: 3.2rem;
  color: #5900AF;
  font-weight: 700;
  padding-bottom: 2rem;
}
.account-form .box-account-form .description {
  color: #707070;
  padding-top: 2rem;
}
.account-form .box-account-form .form-label {
  padding-top: 2rem;
}
.account-form .box-account-form .form-control {
  padding-top: 1rem;
}
.account-form .box-account-form .form-check .form-check-label {
  padding-left: 1rem;
}
.account-form .box-account-form .remember-me,
.account-form .box-account-form .forget-pass {
  font-size: 1.4rem;
  color: #707070;
  margin-top: 1.2rem;
}
.account-form .box-account-form .btn-wrap {
  padding-top: 4rem;
}
.account-form .box-account-form .btn-wrap .btn {
  width: 100%;
}
.account-form .box-account-form .account-link {
  padding-top: 1rem;
}
.account-form .box-account-form .account-link a {
  color: #FF7D8D;
}

.my-cart {
  padding: 5rem 0 16rem 0;
}
.my-cart .main-title {
  font-family: "Montserrat", sans-serif;
  font-size: 3.2rem;
  color: #5900AF;
  font-weight: 700;
  text-align: center;
  padding-bottom: 5rem;
}
.my-cart .cart-table {
  margin-top: 5rem;
}
@media screen and (min-width: 1200px) {
  .my-cart .cart-table {
    margin-right: 5%;
  }
}
.my-cart .cart-table table thead {
  background-color: #fafafa;
}
.my-cart .cart-table table thead tr th {
  font-family: "Commissioner", sans-serif;
  font-size: 2rem;
  color: #260C11;
  font-weight: 400;
  padding: 1.3rem 2rem;
  border: none;
}
@media screen and (min-width: 768px) {
  .my-cart .cart-table table thead tr th.title-item {
    width: 50%;
  }
}
@media screen and (min-width: 768px) {
  .my-cart .cart-table table thead tr th.title-quatity {
    width: 20%;
  }
}
@media screen and (min-width: 768px) {
  .my-cart .cart-table table thead tr th.title-price {
    width: 30%;
  }
}
.my-cart .cart-table table tbody tr td {
  padding: 3rem 2rem;
  border-bottom: 1px solid #70707030 !important;
}
@media screen and (min-width: 768px) {
  .my-cart .cart-table table tbody tr td.product-thumbnail {
    width: 18%;
  }
}
.my-cart .cart-table table tbody tr td.product-thumbnail img {
  width: 10rem;
  max-height: 10rem;
}
.my-cart .cart-table table tbody tr td.product-name {
  font-size: 1.7rem;
}
@media screen and (min-width: 768px) {
  .my-cart .cart-table table tbody tr td.product-name {
    width: 32%;
  }
}
.my-cart .cart-table table tbody tr td.product-name .attribute {
  font-size: 1.4rem;
  color: #acacac;
  padding-top: 1rem;
}
@media screen and (min-width: 768px) {
  .my-cart .cart-table table tbody tr td.product-quantity {
    width: 20%;
  }
}
.my-cart .cart-table table tbody tr td.product-price {
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .my-cart .cart-table table tbody tr td.product-price {
    width: 15%;
  }
}
.my-cart .cart-table table tbody tr td.product-price .sale-price {
  font-size: 1.8rem;
}
.my-cart .cart-table table tbody tr td.product-price .regular-price {
  color: #acacac;
  text-decoration: line-through;
}
.my-cart .cart-table table tbody tr td.product-remove {
  text-align: right;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .my-cart .cart-table table tbody tr td.product-remove {
    width: 15%;
  }
}
.my-cart .cart-table table tbody tr td.product-remove img {
  width: 2.5rem;
  height: 2.5rem;
}
.my-cart .cart-table table tfoot tr td.actions {
  border: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  text-align: right;
}
.my-cart .cart-table table tfoot tr td.actions .coupon {
  flex: 0 0 40%;
  max-width: 40%;
  margin-top: 2rem;
}
@media screen and (max-width: 575px) {
  .my-cart .cart-table table tfoot tr td.actions .coupon {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.my-cart .cart-table table tfoot tr td.actions .coupon .input-group {
  width: 100%;
}
.my-cart .cart-table table tfoot tr td.actions .coupon .input-group input {
  height: 4rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  border: none;
  background-color: #fafafa;
  color: #707070;
}
.my-cart .cart-table table tfoot tr td.actions .coupon .input-group input:focus {
  box-shadow: none;
}
.my-cart .cart-table table tfoot tr td.actions .coupon .input-group .btn-apply {
  background-color: #5900AF;
  color: #FFFFFF;
}
.my-cart .cart-table table tfoot tr td.actions .btn-actions {
  flex: 0 0 60%;
  max-width: 60%;
  margin-top: 2rem;
}
@media screen and (max-width: 575px) {
  .my-cart .cart-table table tfoot tr td.actions .btn-actions {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.my-cart .cart-summary {
  margin-top: 5rem;
  background-color: #fafafa;
}
.my-cart .cart-summary .cart_totals table tr td {
  border-bottom: none;
  padding-left: 3rem;
  padding-right: 3rem;
}
.my-cart .cart-summary .cart_totals table tr.title td:first-child {
  font-family: "Commissioner", sans-serif;
  font-size: 2.4rem;
  color: #260C11;
  font-weight: 400;
  padding-top: 3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #70707010;
}
.my-cart .cart-summary .cart_totals table tr.title td:last-child {
  color: #707070;
  text-align: right;
  padding-top: 3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #70707010;
}
.my-cart .cart-summary .cart_totals table tr.subtotal td {
  font-size: 1.8rem;
  padding-top: 3rem;
}
.my-cart .cart-summary .cart_totals table tr.subtotal td:last-child {
  text-align: right;
}
.my-cart .cart-summary .cart_totals table tr.shipping td {
  font-size: 1.8rem;
  padding-top: 2.5rem;
}
.my-cart .cart-summary .cart_totals table tr.shipping td:last-child {
  text-align: right;
}
.my-cart .cart-summary .cart_totals table tr.method-shipping .form-check {
  padding-left: 2.5rem;
  padding-top: 1rem;
}
.my-cart .cart-summary .cart_totals table tr.method-shipping .form-check label.checkbox-title {
  padding-left: 1rem;
}
.my-cart .cart-summary .cart_totals table tr.discount td {
  font-size: 1.8rem;
  padding-top: 2.5rem;
}
.my-cart .cart-summary .cart_totals table tr.discount td:last-child {
  text-align: right;
}
.my-cart .cart-summary .cart_totals table tr.discount .coupon-code {
  color: #acacac;
  padding-top: 0.5rem;
}
.my-cart .cart-summary .cart_totals table tr.discount .link-remove {
  color: #FF7D8D;
  text-decoration: underline;
}
.my-cart .cart-summary .cart_totals table tr.total td {
  font-size: 2rem;
  padding-top: 6rem;
  padding-bottom: 3rem;
}
.my-cart .cart-summary .cart_totals table tr.total td:last-child {
  text-align: right;
}
.my-cart .cart-summary .cart_totals .btn-wrap a {
  width: 100%;
}

.quantity {
  display: flex;
  float: none !important;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  background-color: #f3f5f6;
  border-radius: 0%;
  margin-top: 2.4rem;
}
.quantity .minus,
.quantity .plus {
  text-align: center;
  cursor: pointer;
  display: flex;
  align-self: center;
  padding: 0 1rem;
  font-weight: 700;
  font-size: 2rem;
}
.quantity .number {
  display: flex;
  align-self: center;
}
.quantity .number .input-text {
  border: none;
  background-color: transparent;
  -moz-appearance: textfield;
  text-align: center;
  padding: 1rem 0;
}
.quantity .number .input-text:focus {
  outline: none;
  box-shadow: none;
}
.quantity .number .input-text::-webkit-outer-spin-button, .quantity .number .input-text::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.checkout-page {
  padding: 10rem 0 14rem 0;
}
.checkout-page .main-title {
  font-family: "Montserrat", sans-serif;
  font-size: 3.2rem;
  color: #5900AF;
  font-weight: 700;
  text-align: center;
  padding-bottom: 6rem;
}
@media screen and (min-width: 1200px) {
  .checkout-page .checkout-info {
    margin-right: 5%;
  }
}
.checkout-page .checkout-info .form-title {
  font-family: "Commissioner", sans-serif;
  font-size: 2rem;
  color: #260C11;
  font-weight: 400;
  background-color: #fafafa;
  padding: 1.3rem 2rem;
  margin-top: 4rem;
  margin-bottom: 1rem;
}
.checkout-page .checkout-info .billing-infomation,
.checkout-page .checkout-info .shipping-infomation,
.checkout-page .checkout-info .payment-method {
  padding-left: 2rem;
  padding-right: 2rem;
}
.checkout-page .checkout-info .billing-infomation .form-label,
.checkout-page .checkout-info .shipping-infomation .form-label,
.checkout-page .checkout-info .payment-method .form-label {
  margin-top: 2rem;
}
.checkout-page .checkout-info .billing-infomation .form-control,
.checkout-page .checkout-info .billing-infomation .form-select,
.checkout-page .checkout-info .shipping-infomation .form-control,
.checkout-page .checkout-info .shipping-infomation .form-select,
.checkout-page .checkout-info .payment-method .form-control,
.checkout-page .checkout-info .payment-method .form-select {
  margin-top: 0.5rem;
}
.checkout-page .checkout-info .shipping-infomation .form-check {
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.checkout-page .checkout-info .shipping-infomation .form-check .form-check-label {
  padding-left: 1.5rem;
}
.checkout-page .checkout-info .payment-method .form-check {
  padding-top: 2rem;
}
.checkout-page .checkout-info .payment-method .form-check .form-check-label {
  font-size: 1.8rem;
}
.checkout-page .checkout-info .payment-method .form-check .form-check-description {
  font-size: 1.8rem;
  color: #707070;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.checkout-page .checkout-summary {
  margin-top: 4rem;
}
.checkout-page .checkout-summary table {
  background-color: #fafafa;
}
.checkout-page .checkout-summary table tr td {
  border-bottom: none;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.checkout-page .checkout-summary table tr td:first-child {
  padding-left: 3rem;
}
.checkout-page .checkout-summary table tr td:last-child {
  text-align: right;
  padding-right: 3rem;
}
.checkout-page .checkout-summary table thead tr td {
  border-bottom: 1px solid #70707010;
  padding-top: 3rem;
  padding-bottom: 1.5rem;
}
.checkout-page .checkout-summary table thead tr td:first-child {
  font-family: "Commissioner", sans-serif;
  font-size: 2.4rem;
  color: #260C11;
  font-weight: 400;
}
.checkout-page .checkout-summary table thead tr td:last-child {
  color: #707070;
  text-decoration: underline;
}
.checkout-page .checkout-summary table tbody tr td {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.checkout-page .checkout-summary table tbody tr:first-child td {
  padding-top: 3rem;
}
.checkout-page .checkout-summary table tbody tr:last-child td {
  padding-bottom: 3rem;
  border-bottom: 1px solid #70707010;
}
@media screen and (min-width: 768px) {
  .checkout-page .checkout-summary table tbody tr td.product-img {
    width: 28%;
  }
}
.checkout-page .checkout-summary table tbody tr td.product-img img {
  width: 7rem;
  height: 7rem;
}
@media screen and (min-width: 768px) {
  .checkout-page .checkout-summary table tbody tr td.product-info {
    width: 52%;
  }
}
.checkout-page .checkout-summary table tbody tr td.product-info .product-name {
  font-size: 1.5rem;
}
.checkout-page .checkout-summary table tbody tr td.product-info .product-attribute {
  font-size: 1.3rem;
  color: #acacac;
}
.checkout-page .checkout-summary table tbody tr td.product-price {
  font-size: 1.5rem;
  vertical-align: top;
}
@media screen and (min-width: 768px) {
  .checkout-page .checkout-summary table tbody tr td.product-price {
    width: 20%;
  }
}
.checkout-page .checkout-summary table tfoot tr.subtotal td {
  font-size: 1.8rem;
  padding-top: 3rem;
  padding-bottom: 1.25rem;
}
.checkout-page .checkout-summary table tfoot tr.shipping td {
  font-size: 1.8rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.checkout-page .checkout-summary table tfoot tr.discount td {
  font-size: 1.8rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.checkout-page .checkout-summary table tfoot tr.discount td .coupon-code {
  font-size: 1.6rem;
  color: #acacac;
}
.checkout-page .checkout-summary table tfoot tr.total td {
  font-size: 2rem;
  padding-top: 6rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #70707010;
}
.checkout-page .checkout-summary .privacy {
  padding: 3rem;
  color: #707070;
  background-color: #fafafa;
  border-bottom: 1px solid #70707010;
}
.checkout-page .checkout-summary .privacy a {
  color: #FF7D8D;
}
.checkout-page .checkout-summary .terms {
  padding: 3rem;
  color: #707070;
  background-color: #fafafa;
}
.checkout-page .checkout-summary .terms .form-check-label {
  padding-left: 1.5rem;
}
.checkout-page .checkout-summary .terms .form-check-label a {
  color: #FF7D8D;
}
.checkout-page .checkout-summary .btn-wrap a {
  width: 100%;
}

.thankyou-page {
  margin-bottom: 10rem;
}
.thankyou-page .main-title {
  font-family: "Montserrat", sans-serif;
  font-size: 3.6rem;
  color: #5900AF;
  font-weight: 500;
  text-align: center;
  padding-top: 8rem;
}
.thankyou-page .bottom-title {
  font-size: 2rem;
  padding-top: 2rem;
  text-align: center;
}
.thankyou-page .order-details {
  margin-top: 10rem;
}
.thankyou-page .order-details-title {
  font-family: "Commissioner", sans-serif;
  font-size: 2rem;
  color: #260C11;
  font-weight: 400;
  padding: 1.3rem 2rem;
  background-color: #fafafa;
}
.thankyou-page .order-details .order-infomation,
.thankyou-page .order-details .billing-shipping {
  padding-left: 2rem;
  padding-right: 2rem;
}
.thankyou-page .order-details .order-infomation .title,
.thankyou-page .order-details .billing-shipping .title {
  font-family: "Commissioner", sans-serif;
  font-size: 2rem;
  color: #3C3C3B;
  font-weight: 500;
  padding-top: 3rem;
  padding-bottom: 1.8rem;
}
.thankyou-page .order-details .order-infomation table tr td,
.thankyou-page .order-details .billing-shipping table tr td {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  vertical-align: top;
}
.thankyou-page .order-details .order-infomation table tr td:last-child,
.thankyou-page .order-details .billing-shipping table tr td:last-child {
  font-weight: 300;
}
.thankyou-page .order-summary {
  margin-top: 5rem;
}
.thankyou-page .order-summary table thead {
  background-color: #fafafa;
}
.thankyou-page .order-summary table thead tr th {
  font-family: "Commissioner", sans-serif;
  font-size: 2rem;
  color: #260C11;
  font-weight: 400;
  padding: 1.3rem 2rem;
  border: none;
}
.thankyou-page .order-summary table thead tr th:last-child {
  text-align: right;
}
@media screen and (min-width: 768px) {
  .thankyou-page .order-summary table thead tr th.title-item {
    width: 60%;
  }
}
.thankyou-page .order-summary table thead tr th.title-quantity {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .thankyou-page .order-summary table thead tr th.title-quantity {
    width: 20%;
  }
}
.thankyou-page .order-summary table thead tr th.title-price {
  text-align: right;
}
@media screen and (min-width: 768px) {
  .thankyou-page .order-summary table thead tr th.title-price {
    width: 20%;
  }
}
.thankyou-page .order-summary table tbody tr td {
  padding: 3rem 2rem;
  border-bottom: 1px solid #70707030 !important;
}
@media screen and (min-width: 768px) {
  .thankyou-page .order-summary table tbody tr td.product-thumbnail {
    width: 12%;
  }
}
.thankyou-page .order-summary table tbody tr td.product-thumbnail img {
  width: 10rem;
  max-height: 10rem;
}
.thankyou-page .order-summary table tbody tr td.product-name {
  font-size: 1.7rem;
}
@media screen and (min-width: 768px) {
  .thankyou-page .order-summary table tbody tr td.product-name {
    width: 48%;
  }
}
.thankyou-page .order-summary table tbody tr td.product-name .attribute {
  font-size: 1.4rem;
  color: #acacac;
  padding-top: 1rem;
}
.thankyou-page .order-summary table tbody tr td.product-quantity {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .thankyou-page .order-summary table tbody tr td.product-quantity {
    width: 20%;
  }
}
.thankyou-page .order-summary table tbody tr td.product-price {
  text-align: right;
}
@media screen and (min-width: 768px) {
  .thankyou-page .order-summary table tbody tr td.product-price {
    width: 20%;
  }
}
.thankyou-page .order-summary table tbody tr td.product-price .sale-price {
  font-size: 1.8rem;
}
.thankyou-page .order-summary table tbody tr td.product-price .regular-price {
  color: #acacac;
  text-decoration: line-through;
}
.thankyou-page .order-summary table tfoot tr td {
  border-bottom: none;
  padding-left: 2rem;
  padding-right: 2rem;
}
.thankyou-page .order-summary table tfoot tr td:last-child {
  text-align: right;
}
.thankyou-page .order-summary table tfoot tr.subtotal td {
  font-size: 1.8rem;
  padding-top: 4rem;
  padding-bottom: 1.25rem;
}
.thankyou-page .order-summary table tfoot tr.shipping td {
  font-size: 1.8rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.thankyou-page .order-summary table tfoot tr.discount td {
  font-size: 1.8rem;
  padding-top: 1.25rem;
  padding-bottom: 4rem;
}
.thankyou-page .order-summary table tfoot tr.discount td .coupon-code {
  font-size: 1.6rem;
  color: #acacac;
}
.thankyou-page .order-summary table tfoot tr.total td {
  font-size: 2rem;
  font-weight: 700;
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #70707010;
  background-color: #f3f5f6;
}
.thankyou-page .btn-wrap {
  text-align: center;
  padding-top: 6rem;
}

.quote-requested {
  margin-top: 10rem;
  margin-bottom: 10rem;
}
.quote-requested .title {
  font-family: "Montserrat", sans-serif;
  font-size: 3.2rem;
  color: #5900AF;
  font-weight: 700;
  text-align: center;
}
.quote-requested .description {
  font-size: 1.8rem;
  color: #707070;
  padding-top: 3rem;
  text-align: center;
}
.quote-requested .btn-wrap {
  text-align: center;
  padding-top: 6rem;
}

.qoute-list {
  padding: 5rem 0 16rem 0;
}
.qoute-list .main-title {
  font-family: "Montserrat", sans-serif;
  font-size: 3.2rem;
  color: #5900AF;
  font-weight: 700;
  text-align: center;
}
.qoute-list .description {
  font-size: 1.8rem;
  color: #707070;
  text-align: center;
  padding-top: 3rem;
  padding-bottom: 5rem;
}
.qoute-list .qoute-table {
  margin-top: 5rem;
}
@media screen and (min-width: 1200px) {
  .qoute-list .qoute-table {
    margin-right: 5%;
  }
}
.qoute-list .qoute-table table thead {
  background-color: #fafafa;
}
.qoute-list .qoute-table table thead tr th {
  font-family: "Commissioner", sans-serif;
  font-size: 2rem;
  color: #260C11;
  font-weight: 400;
  padding: 1.3rem 2rem;
  border: none;
}
@media screen and (min-width: 768px) {
  .qoute-list .qoute-table table thead tr th.title-item {
    width: 60%;
  }
}
@media screen and (min-width: 768px) {
  .qoute-list .qoute-table table thead tr th.title-quantity {
    width: 40%;
  }
}
.qoute-list .qoute-table table tbody tr td {
  padding: 3rem 2rem;
  border-bottom: 1px solid #70707030 !important;
}
@media screen and (min-width: 768px) {
  .qoute-list .qoute-table table tbody tr td.product-thumbnail {
    width: 18%;
  }
}
.qoute-list .qoute-table table tbody tr td.product-thumbnail img {
  width: 10rem;
  max-height: 10rem;
}
.qoute-list .qoute-table table tbody tr td.product-name {
  font-size: 1.7rem;
}
@media screen and (min-width: 768px) {
  .qoute-list .qoute-table table tbody tr td.product-name {
    width: 42%;
  }
}
.qoute-list .qoute-table table tbody tr td.product-name .attribute {
  font-size: 1.4rem;
  color: #acacac;
  padding-top: 1rem;
}
@media screen and (min-width: 768px) {
  .qoute-list .qoute-table table tbody tr td.product-quantity {
    width: 30%;
  }
}
.qoute-list .qoute-table table tbody tr td.product-remove {
  text-align: right;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .qoute-list .qoute-table table tbody tr td.product-remove {
    width: 10%;
  }
}
.qoute-list .qoute-table table tbody tr td.product-remove img {
  width: 2.5rem;
  height: 2.5rem;
}
.qoute-list .qoute-table table tfoot tr td {
  border-bottom: none;
  padding: 2rem;
  text-align: right;
}
.qoute-list .qoute-form {
  margin-top: 5rem;
  background-color: #fafafa;
  padding: 3rem;
}
.qoute-list .qoute-form .title {
  font-family: "Commissioner", sans-serif;
  font-size: 2.4rem;
  color: #260C11;
  font-weight: 400;
  padding-bottom: 2rem;
  border-bottom: 1px solid #70707010;
}
.qoute-list .qoute-form .form-label {
  padding-top: 2rem;
}
.qoute-list .qoute-form textarea {
  height: 15rem;
}
.qoute-list .qoute-form .btn-wrap {
  padding-top: 4rem;
}
.qoute-list .btn-wrap a {
  width: 100%;
}

/*# sourceMappingURL=style.css.map */
