@import url("https://fonts.googleapis.com/css2?family=Boldonse&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
a,
ul,
span,
svg,
img,
button {
  -webkit-transition: all ease-in-out 0.3s;
  -moz-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

body.wp-theme-storefront {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  background-color: #131313;
  color: #FFFBF1;
  font-size: 16px;
}

* {
  outline: none !important;
  text-decoration: none;
  margin: 0px;
  padding: 0px;
}

div,
p {
  cursor: default;
}

a {
  cursor: pointer;
}

mark {
  color: #fff !important;
}

img {
  border-radius: 0 !important;
}

::selection {
  background: #fad686;
  /* WebKit/Blink Browsers */
  color: #fff;
}

::-moz-selection {
  background: #fad686;
  /* Gecko Browsers */
  color: #fff;
}

.font-boldonse {
  font-family: "Boldonse", system-ui;
  font-weight: 400;
  font-style: normal;
}

h1,
h2,
h3,
h4 {
  font-family: "Boldonse", system-ui;
  font-weight: 400;
  font-style: normal;
  line-height: 2;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.lazyload-custom {
  opacity: 0;
}

.menu-header-main-container {
  font-size: 16px;
  font-weight: 600;
}

.menu-item-has-children {
  position: relative;
  padding-right: 20px;
}
.menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.menu-item-has-children::after {
  content: "";
  width: 10px;
  height: 7px;
  background-image: url("../images/icons/arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
}
.menu-item-has-children .sub-menu {
  position: absolute;
  width: 250px;
  top: 100%;
  left: 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  background-color: #F3394E;
  padding: 10px 20px;
  font-size: 14px;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.menu-item-has-children .sub-menu::before {
  content: "";
  width: 100%;
  height: 10px;
  position: absolute;
  left: 0;
  top: -10px;
}
.menu-item-has-children .sub-menu::after {
  content: "";
  position: absolute;
  left: 10px;
  top: -10px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #F3394E;
}
.menu-item-has-children .sub-menu li {
  position: relative;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4470588235);
}
.menu-item-has-children .sub-menu li:last-child {
  border-bottom: none;
}
.menu-item-has-children .sub-menu li.menu-item-has-children {
  padding-right: 25px;
}
.menu-item-has-children .sub-menu li.menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  left: calc(100% + 6px);
  top: -10px;
}
.menu-item-has-children .sub-menu li.menu-item-has-children::after {
  filter: brightness(100);
  transform: rotate(-90deg) translateX(50%);
}
.menu-item-has-children .sub-menu li.menu-item-has-children .sub-menu {
  top: -10px;
  left: 100%;
  margin-top: 0;
  background-color: #c02436;
}
.menu-item-has-children .sub-menu li.menu-item-has-children .sub-menu::before {
  width: 20px;
  height: 100px;
  left: -20px;
}
.menu-item-has-children .sub-menu li.menu-item-has-children .sub-menu::after {
  transform: rotate(-90deg) translateX(56%);
  left: -15px;
  top: 56%;
  border-bottom: 10px solid #c02436;
}

.menu-list {
  display: flex;
  gap: 30px;
}
.menu-list a:hover {
  opacity: 0.7;
}

.main {
  max-width: 1400px;
  width: 90%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  align-items: center;
}

.slick-dots {
  position: absolute;
  left: 0;
  bottom: 40px;
  display: flex;
  gap: 20px;
}
.slick-dots .slick-active button {
  background-color: #F3394E;
}
.slick-dots button {
  width: 30px;
  height: 3px;
  font-size: 0;
  border: 0;
  background-color: #fff;
}

.slick-arrow {
  position: absolute;
  left: -5px;
  top: 0;
  bottom: 0;
  width: 58px;
  height: 120px;
  font-size: 0;
  z-index: 2;
  margin: auto;
  background: url("../images/icons/arrow-prev.svg") no-repeat;
  background-size: contain;
  background-color: transparent !important;
}
.slick-arrow.slick-disabled {
  filter: grayscale(100);
}
.slick-arrow:hover {
  left: 0px;
}
.slick-arrow.slick-next {
  left: initial;
  right: -5px;
  background: url("../images/icons/arrow-next.svg") no-repeat;
  background-size: contain;
}
.slick-arrow.slick-next:hover {
  right: 0px;
}

.text-box p {
  margin: 15px 0;
}
.text-box h1,
.text-box h2,
.text-box h3,
.text-box h4,
.text-box h5,
.text-box h6 {
  color: #FFFBF1;
}
.text-box h2 {
  font-size: 48px;
  line-height: 1.5;
}
.text-box h3 {
  font-size: 22px;
}
.text-box h4 {
  font-size: 16px;
}
.text-box h5 {
  font-size: 20px;
  line-height: 1.2;
}

footer {
  background-color: #000;
  position: relative;
  z-index: 2;
  padding-top: 60px;
}
footer:before {
  content: "";
  width: 265px;
  height: 490px;
  position: absolute;
  left: 0px;
  background: url("../images/laser01.png") no-repeat;
  background-size: contain;
  top: 0;
  z-index: 2;
}
footer:after {
  content: "";
  width: 265px;
  height: 490px;
  position: absolute;
  right: 0px;
  background: url("../images/laser01.png") no-repeat;
  transform: rotateY(180deg);
  background-size: contain;
  bottom: 0;
  z-index: 2;
}
footer .top {
  width: 1400px;
  position: relative;
  margin: 0 auto;
  background: #000;
  top: -100px;
  text-align: center;
  padding-top: 20px;
  margin-bottom: -50px;
}
footer .top img {
  margin: 0 auto;
}
footer .top:before {
  content: "";
  width: 0;
  height: 0;
  border-top: 100px solid transparent;
  border-right: 100px solid #000;
  position: absolute;
  left: -100px;
  top: 0;
}
footer .top::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 100px solid transparent;
  border-left: 100px solid #000;
  position: absolute;
  right: -100px;
  top: 0;
}
footer .menu-list {
  width: 100%;
  justify-content: center;
  gap: 50px;
}
footer .main {
  position: relative;
  z-index: 4;
}

body.home footer {
  padding-top: 0;
}
body.home footer .top {
  display: block;
}

.content-area {
  float: none !important;
  min-height: 60vh;
}

.site-main {
  width: 90%;
  max-width: 1300px;
  margin: 50px auto !important;
  display: block;
}

main,
.content-area {
  margin-top: 180px;
}

#menuMobile {
  display: none;
  position: absolute;
  right: -5px;
  top: 65px;
  z-index: 9;
  background: #F3394E;
  padding: 20px;
  min-width: 200px;
}
#menuMobile::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #F3394E;
  position: absolute;
  right: 12px;
  top: -10px;
}
#menuMobile .menu-list {
  display: block;
}
#menuMobile .menu-list li {
  margin: 5px 0;
  display: block;
}

@media only screen and (max-width: 1400px) {
  footer .top {
    width: 100%;
  }
}
@media only screen and (max-width: 1100px) {
  .newsletter-section .bg {
    right: initial;
    left: 180px;
  }
  .menu-header-main-container {
    font-size: 14px;
  }
  main,
  .content-area {
    margin-top: 140px;
  }
}
@media only screen and (max-width: 950px) {
  .menu-header-main-container .menu-list {
    display: none;
  }
  footer .menu-list {
    gap: 20px;
    flex-wrap: wrap;
  }
  .slick-arrow {
    width: 45px;
    height: 82px;
  }
}
@media only screen and (max-width: 600px) {
  footer .top {
    display: none !important;
  }
  body.home footer {
    padding-top: 50px;
  }
  footer:after,
  footer:before {
    display: none;
  }
}
.brands-bar a {
  text-align: center;
}
.brands-bar a img {
  margin: 0 auto;
  min-height: 60px;
  object-fit: contain;
  max-width: 90% !important;
}
.brands-bar .slick-arrow {
  background: url(../images/icons/arrow-type-02.svg) no-repeat;
  background-position: center;
  width: 20px;
  height: 40px;
}
.brands-bar .slick-arrow.slick-prev {
  transform: rotate(-180deg);
  left: -20px;
}

.neon-line {
  width: 100%;
  height: 2px;
  position: relative;
  background-color: #D9D9D9;
}
.neon-line::before {
  content: "";
  /* Ellipse 316 */
  position: absolute;
  width: 100%;
  height: 20px;
  left: 0;
  top: 0;
  background: #F3394E;
  filter: blur(28px);
}

.product-list {
  justify-content: center;
}
.product-list .product-item:hover figure img {
  transform: scale(1.03);
}
.product-list .product-item .price del {
  font-size: 15px;
  text-decoration: line-through;
}
.product-list .product-item figure {
  overflow: hidden;
}
.product-list .product-item figure img {
  width: 100%;
  display: block;
  height: 310px;
  object-fit: contain;
}

.cart-icon {
  position: relative;
}
.cart-icon .number {
  position: absolute;
  right: -10px;
  top: -10px;
  background: url("../images/icons/polygon.svg");
  color: #fff;
  text-align: center;
  width: 20px;
  height: 20px;
  font-weight: 600;
  font-size: 12px;
  line-height: 22px;
}

.btn-styled {
  display: inline-flex;
  align-items: center;
  background-color: #F3394E;
  color: #fff;
  padding: 10px 15px;
  padding-right: 25px;
  font-weight: 600;
  gap: 10px;
  position: relative;
  min-height: 51px;
}
.btn-styled.no-arrow::before, .btn-styled.no-arrow::after {
  display: none;
}
.btn-styled:hover {
  background-color: #cd3143;
  padding-right: 28px;
}
.btn-styled:hover::before {
  border-left: 25px solid #cd3143;
}
.btn-styled:hover::after {
  right: -12px;
}
.btn-styled svg {
  width: 25px;
}
.btn-styled::before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  right: -25px;
  top: 0;
  border-top: 26px solid transparent;
  border-bottom: 25px solid transparent;
  border-left: 25px solid #F3394E;
  z-index: 0;
  transition: all ease-in-out 0.3s;
}
.btn-styled::after {
  content: "";
  width: 14px;
  height: 25px;
  position: absolute;
  right: -10px;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url("../images/icons/arrow-type-02.svg") no-repeat;
  z-index: 1;
  transition: all ease-in-out 0.3s;
}

.btn-add-to-cart {
  display: inline-flex;
  align-items: center;
  background-color: #F3394E;
  color: #fff;
  padding: 10px 15px;
  padding-right: 40px;
  font-weight: 600;
  gap: 10px;
  position: relative;
  font-size: 14px;
}
.btn-add-to-cart:hover {
  background-color: #cd3143;
}
.btn-add-to-cart:hover::after {
  right: 8px;
}
.btn-add-to-cart img {
  width: 22px;
}
.btn-add-to-cart::after {
  content: "";
  width: 10px;
  height: 19px;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url("../images/icons/arrow-type-02.svg") no-repeat;
  background-size: contain;
  z-index: 1;
  transition: all ease-in-out 0.3s;
}

.banner-ads {
  max-width: 1400px;
  margin: 0 auto;
  display: block;
}
.banner-ads:hover img {
  opacity: 0.8;
}
.banner-ads img {
  width: 100%;
  display: block;
}

.modalBusca {
  width: 100%;
  background-color: #F3394E;
  z-index: 99;
  position: absolute;
  bottom: -87px;
  left: 0;
  padding: 20px 20px;
  display: none;
}
.modalBusca .close {
  position: absolute;
  right: -60px;
  top: 24px;
  cursor: pointer;
}
.modalBusca .close:hover {
  opacity: 0.7;
}
.modalBusca .close svg {
  transform: scale(1.5);
}
.modalBusca form {
  position: relative;
  width: 100%;
  margin-bottom: 0;
}
.modalBusca form input {
  width: 100%;
  padding: 10px 20px;
  font-size: 18px;
}
.modalBusca form button {
  background-color: #000;
  padding: 10px 20px;
}
.modalBusca form button:hover {
  opacity: 0.7;
}

.page-numbers {
  width: 40px;
  height: 40px;
  display: inline-block;
  line-height: 40px;
  color: #c4c4c4;
  margin: 0 10px;
}
.page-numbers.current {
  border: 1px solid #fff;
  color: #fff;
}

.product_nav_gallery {
  width: 150px;
  position: relative;
}
.product_nav_gallery img {
  cursor: pointer;
}
.product_nav_gallery .slick-arrow {
  top: 0;
  bottom: initial;
  width: 50px;
  height: 100%;
  transform: rotate(90deg);
}
.product_nav_gallery .slick-next {
  top: initial;
  bottom: 0;
}
.product_nav_gallery .slick-slide {
  margin-bottom: 15px;
  opacity: 0.4;
}
.product_nav_gallery .slick-slide.slick-current {
  opacity: 1;
  border: 2px solid #F3394E;
}
.product_nav_gallery .slick-slide:last-child {
  margin-bottom: 0;
}

.product_gallery {
  width: calc(100% - 150px);
}
.product_gallery .slick-arrow {
  width: 40px;
  height: 83px;
  left: 0;
}
.product_gallery .slick-arrow.slick-next {
  left: initial;
  right: 0;
}
.product_gallery .attachment-large {
  width: 100%;
  height: 650px;
  object-fit: contain;
  cursor: url("../images/icons/zoom-in.svg"), zoom-in;
}

.player {
  position: relative;
}
.player::before {
  content: "";
  width: 90px;
  height: 90px;
  background: url("../images/icons/play.svg") no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  margin: auto;
}
.player img {
  opacity: 0.7;
}

.website-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
}
.website-header div,
.website-header img {
  transition: all ease-in-out 0.2s;
}
.website-header.scrolled .top {
  margin-top: -50px;
  opacity: 0;
}
.website-header.scrolled .base .brand img {
  width: 120px;
}

.form-container {
  max-width: 500px;
  margin: 0 auto;
}
.form-container div {
  margin: 25px 0;
}
.form-container label {
  font-weight: 200;
  display: inline-block;
  margin-bottom: 8px;
}
.form-container input,
.form-container textarea,
.form-container select {
  width: 100%;
  background-color: transparent !important;
  color: #fff !important;
  border: 1px solid #fff !important;
  padding: 15px 20px !important;
}
.form-container input[type=submit] {
  background-color: #F3394E !important;
  border: 0 !important;
}

select.custom {
  width: 100%;
  background-color: transparent !important;
  color: #fff !important;
  border: 1px solid #fff !important;
  padding: 15px 20px !important;
}
select.custom option {
  background-color: #fff;
  color: #000 !important;
}

.faq-list {
  max-width: 1000px;
  margin: 50px auto;
}
.faq-list h3 {
  margin: 20px 0;
  text-transform: uppercase;
  font-size: 18px;
  margin-top: 60px;
}
.faq-list .item {
  border: 1px solid #FFFBF1;
  margin: 20px 0;
}
.faq-list .item.active .top {
  border-bottom: 1px solid #FFFBF1;
}
.faq-list .item.active .top::after {
  transform: rotate(180deg);
}
.faq-list .item.active .content {
  display: block;
}
.faq-list .item .top {
  padding: 15px 25px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
}
.faq-list .item .top::after {
  content: "";
  width: 16px;
  height: 10px;
  background: url("../images/icons/arrow.svg") no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
}
.faq-list .item .content {
  padding: 20px 25px;
  font-size: 14px;
  display: none;
}

.newsletter-section {
  position: relative;
  z-index: 0;
  padding-bottom: 100px;
}
.newsletter-section .main {
  position: relative;
  z-index: 2;
}
.newsletter-section .bg {
  width: 838px;
  max-width: initial !important;
  position: absolute;
  top: -95px;
  right: 0;
  z-index: 0;
}
.newsletter-section .wpcf7 form.invalid .wpcf7-response-output,
.newsletter-section .wpcf7 form.unaccepted .wpcf7-response-output,
.newsletter-section .wpcf7 form.payment-required .wpcf7-response-output {
  background-color: #000 !important;
  color: #fff !important;
}
.newsletter-section input {
  width: 100%;
}
.newsletter-section .wpcf7-form-control-wrap {
  position: relative;
}
.newsletter-section .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  position: absolute;
  left: 0;
  top: -30px;
  color: #fff;
}

.social-item:hover svg path {
  fill: #F3394E;
}
.social-item:hover svg {
  stroke: #F3394E;
}

@media only screen and (max-width: 950px) {
  .newsletter-section {
    padding-bottom: 20px;
  }
  .btn-styled::before,
  .btn-styled::after {
    display: none;
  }
}
@media only screen and (max-width: 600px) {
  .product_gallery .attachment-large {
    height: 400px;
  }
  .product_nav_gallery {
    width: 100px;
  }
  .product_gallery {
    width: calc(100% - 100px);
  }
}
@media only screen and (max-width: 430px) {
  .product_gallery .attachment-large {
    height: 300px;
  }
  .product_nav_gallery {
    width: 70px;
  }
  .product_gallery {
    width: calc(100% - 70px);
  }
}
.woocommerce-info,
.woocommerce-error,
.woocommerce-noreviews,
p.no-comments {
  background-color: #FFFBF1 !important;
  color: #000 !important;
}
.woocommerce-info::before,
.woocommerce-error::before,
.woocommerce-noreviews::before,
p.no-comments::before {
  display: none !important;
}
.woocommerce-info a,
.woocommerce-error a,
.woocommerce-noreviews a,
p.no-comments a {
  color: #000 !important;
}

.woocommerce-message {
  background-color: #F3394E !important;
  border-left: 0px !important;
}
.woocommerce-message::before {
  display: none !important;
}

.entry-header {
  padding-top: 50px !important;
}
.entry-header h1.entry-title {
  font-size: 24px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 40px;
}

.woocommerce-MyAccount-content h2 {
  font-size: 20px !important;
}
.woocommerce-MyAccount-content p {
  margin: 15px 0;
}

.desktop {
  display: block !important;
}

.mobile {
  display: none !important;
}

.xoo-wl-inline-form {
  text-align: left !important;
  margin-top: 60px !important;
}
.xoo-wl-inline-form input {
  border-radius: 0 !important;
  padding: 10px 15px !important;
}
.xoo-wl-inline-form button.xoo-wl-submit-btn {
  margin: 0 !important;
  border-radius: 0 !important;
}

.woocommerce-account p {
  margin: 15px 0;
}
.woocommerce-account .entry-content {
  max-width: 1000px;
  margin: 0 auto;
}
.woocommerce-account button.button {
  background-color: #F3394E;
  color: #fff;
  margin-top: 20px;
}
.woocommerce-account button.button:hover {
  opacity: 0.7;
}
.woocommerce-account .woocommerce-error {
  position: absolute;
  z-index: 2;
  top: 20%;
}

.woocommerce-LostPassword a {
  text-decoration: none !important;
}
.woocommerce-LostPassword a:hover {
  opacity: 0.7;
}

.woocommerce-ResetPassword {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.woocommerce-ResetPassword p {
  display: block;
  width: 100%;
}
.woocommerce-ResetPassword .button {
  margin-top: 0 !important;
}

.wc-block-grid__products {
  flex-wrap: nowrap !important;
  margin: 0 !important;
  gap: 29px;
}
.wc-block-grid__products .add_to_cart_button {
  background-color: #F3394E !important;
  color: #fff !important;
  padding: 10px 20px !important;
}

.woocommerce-cart .wc-block-grid.wp-block-product-new {
  display: none !important;
}

.theme-twentytwenty .wc-block-grid.has-4-columns .wc-block-grid__product,
.wc-block-grid.has-4-columns .wc-block-grid__product {
  flex: initial !important;
}

.wc-block-cart__submit-container * {
  cursor: pointer !important;
}

.woocommerce-variation-add-to-cart {
  display: flex;
}

#af-wrapper .notices-panel {
  background-color: #dedede !important;
  border: 1px solid #a5a5a5 !important;
  color: #000000 !important;
}

#af-wrapper #forum-search {
  background-color: #141414 !important;
}

#af-wrapper #forum-search input {
  color: #fff !important;
}

#af-wrapper #forum-search {
  color: #cbcbcb !important;
}

#af-wrapper #forum-header,
#af-wrapper #forum-breadcrumbs {
  display: none !important;
}

.infixs-correios-automatico-tracking-search-form-input {
  display: flex;
  gap: 10px;
}
.infixs-correios-automatico-tracking-search-form-input button {
  background-color: #F3394E !important;
  color: #fff !important;
  padding: 10px 20px !important;
}

.infixs-correios-automatico-tracking-search-form {
  max-width: 400px;
  margin: 0 auto;
  margin-top: 50px;
}

.infixs-caref-order-tracking-history {
  text-align: center;
  margin-top: 50px;
  display: block;
}
.infixs-caref-order-tracking-history p {
  display: block;
  margin-bottom: 20px;
}

@media only screen and (max-width: 650px) {
  .desktop {
    display: none !important;
  }
  .mobile {
    display: block !important;
  }
}
.front-page .slider {
  opacity: 0;
  visibility: hidden;
  position: relative;
  top: 20px;
  transition: all ease-in-out 0.3s;
}
.front-page .slider a {
  position: relative;
  z-index: 99;
}
.front-page .slider .image-floating {
  transform: translateX(-10%) scale(0.95);
  opacity: 0;
  transition-delay: 0.1s;
  transition: all ease-in-out 0.6s;
  max-height: 490px;
}
.front-page .slider.ready {
  opacity: 1;
  visibility: visible;
  top: 0px;
}
.front-page .slider ._item-slider.slick-slide {
  position: relative;
  height: 600px;
  display: flex !important;
  align-items: center;
  padding: 20px 0;
}
.front-page .slider ._item-slider.slick-slide .ctn {
  width: 100%;
}
.front-page .slider ._item-slider.slick-slide .ctn::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 12;
  opacity: 0.8;
  visibility: visible;
  transition: all ease-in-out 0.6s;
}
.front-page .slider ._item-slider.slick-slide .ctn h2 {
  line-height: 1.7 !important;
}
.front-page .slider ._item-slider.slick-slide.slick-active .ctn::before {
  opacity: 0;
  visibility: hidden;
}
.front-page .slider ._item-slider.slick-slide.slick-active .image-floating {
  transform: translateX(0) scale(1);
  opacity: 1;
}

@media only screen and (max-width: 1000px) {
  .front-page .slider ._item-slider.slick-slide {
    height: auto;
    padding-bottom: 40px;
  }
}
.product-page h1 {
  line-height: 1.5 !important;
}
.product-page .text-container {
  font-size: 14px;
}
.product-page .text-container h2 {
  font-size: 34px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.product-page .text-container p {
  margin: 20px 0;
}
.product-page .text-container ul {
  list-style: disc;
  padding-left: 20px;
}
.product-page .price del {
  font-size: 20px;
  font-weight: 900;
  color: #9b9b9b;
  text-decoration: line-through;
  margin-bottom: 10px;
  display: block;
}
.product-page .variations input,
.product-page .variations textarea,
.product-page .variations select {
  width: 100%;
  background-color: transparent !important;
  color: #fff !important;
  border: 1px solid #fff !important;
  padding: 15px 20px !important;
}
.product-page .variations input option,
.product-page .variations textarea option,
.product-page .variations select option {
  color: #000;
}

.single-product .woocommerce-message {
  display: none !important;
}

@media only screen and (max-width: 480px) {
  .product-page .text-container h2 {
    font-size: 28px;
  }
}
.about-page .banner {
  position: relative;
  padding: 50px 0;
  background: url("../images/banner-about.jpg") no-repeat;
  background-size: cover;
  background-position: center;
}
.about-page .banner .text {
  max-width: 900px;
  margin: 0 auto;
  margin-top: 400px;
}
.about-page .banner .text h1 {
  font-size: 40px;
  text-align: center;
  display: block;
  margin-bottom: 30px;
  line-height: 1.7;
}
.about-page .banner .text p {
  margin: 20px 0;
  line-height: 1.5;
}
.about-page .section02 {
  color: #000;
}
.about-page .section02 h2 {
  font-size: 42px;
  color: #000;
}
.about-page .section02 h2 strong {
  color: #fff;
}

@media only screen and (max-width: 700px) {
  .about-page .banner .text h1 {
    font-size: 30px;
  }
}

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