:root {
  --header-h: 8vh;
  --page-w: 1366px;
}

@media (max-width: 767px) {
  :root {
    --page-w: 100%;
  }
}

/*===========
|   reset    |
=============*/
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

html,
body {
  font-size: 100%;
}

input,
select,
textarea {
  width: 100%;
  height: 100%;
  background: transparent;
  -moz-appearance: none;
  -webkit-appearance: none;
  border: inherit;
  outline: 0;
}

input:focus,
select:focus,
textarea:focus {
  border: inherit;
  outline: 0;
  outline-style: none;
  outline-color: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

img {
  display: block;
  width: 100%;
  max-width: 200px;
  max-height: 200px;
}

a, a:hover, a:focus {
  color: inherit;
  text-decoration: none;
}

.rtl {
  direction: rtl;
  text-align: right;
  font-family: 'Mada', 'Open Sans', Helvetica, Arial, sans-serif;
}

.rtl input {
  text-align: right;
}

.rtl input[type="text"], .rtl input[type="email"], .rtl input[type="password"], .rtl input[type="tel"] {
  text-align: right;
}

li {
  position: relative;
  list-style-type: none;
}

.no-wrap {
  white-space: nowrap;
}

.no-select {
  user-select: none;
}

:root {
  --header-h: 8vh;
  --page-w: 1366px;
}

@media (max-width: 767px) {
  :root {
    --page-w: 100%;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

p,
ul,
ol,
li {
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li {
  margin: 0;
  padding: 0;
  line-height: 1.2;
}

h1 {
  font-size: 54px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 14px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 32px;
  }
  h3 {
    font-size: 24px;
  }
}

:root {
  --header-h: 8vh;
  --page-w: 1366px;
}

@media (max-width: 767px) {
  :root {
    --page-w: 100%;
  }
}

body {
  color: #333;
  font-family: 'Poppins', sans-serif;
}

#wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
}

.flex-space {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

@media (max-width: 767px) {
  .flex_wrap {
    flex-direction: column;
  }
}

section {
  position: relative;
  width: 100%;
  padding: 40px 0;
  z-index: 1;
}

@media (max-width: 767px) {
  section {
    padding: 20px 0;
  }
}

.container {
  max-width: var(--page-w);
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .container {
    max-width: 96%;
  }
}

@media (max-width: 767px) {
  .container {
    max-width: 90%;
  }
}

.cols_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

@media (max-width: 767px) {
  .cols_wrap {
    flex-wrap: wrap;
  }
}

.info_wrap .cols_wrap {
  max-width: 800px;
}

.cols_wrap .col {
  flex: 1;
}

@media (max-width: 767px) {
  .cols_wrap .col {
    flex: initial;
    width: calc(50% - 10px);
  }
}

@media (max-width: 768px) {
  .cols_wrap .col:nth-child(1), .cols_wrap .col:nth-child(2) {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}

.cols_wrap .col p {
  text-align: center;
}

.icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 14px;
  padding: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #9c44f3;
}

.products_wrap .cols_wrap {
  flex-wrap: wrap;
}

.products_wrap .card {
  width: calc(100% / 3 - 40px / 3);
  margin-bottom: 20px;
  margin-inline-end: 20px;
  padding: 20px;
  cursor: pointer;
}

.products_wrap .card:nth-child(3n) {
  margin-inline-end: 0;
}

@media (max-width: 767px) {
  .products_wrap .card {
    width: 100%;
    margin-inline-end: 0;
  }
}

.products_wrap .card figure {
  max-width: 70%;
  margin: 0 auto 20px;
}

.products_wrap h4 {
  padding: 0 0 20px;
  text-align: start;
}

.products_wrap p,
.slider p,
.special-offer_wrap p,
.special-offer_wrap2 p {
  color: #333;
  text-transform: uppercase;
}

.products_wrap p span,
.slider p span,
.special-offer_wrap p span,
.special-offer_wrap2 p span {
  color: #ff26f6;
  font-weight: 600;
}

.card-btn {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  padding: 10px 20px;
  background: none;
  box-shadow: inset 0 0 0 2px #ff26f6;
  border: none;
  color: #ff26f6;
}

.card-btn:hover {
  background: #ff26f6;
  color: #fff;
}

.card-btn:hover .material-icons {
  color: #fff;
}

.card-btn .material-icons {
  color: #ff26f6;
}

button, .button {
  position: relative;
  overflow: hidden;
  margin: auto;
  padding: 5px;
  border-radius: 6px;
  border: 0;
  outline: 0;
  font-size: 17px;
  text-transform: uppercase;
  line-height: 1;
  -webkit-transition: .2s ease;
  transition: .2s ease;
  cursor: pointer;
}

.clear {
  clear: both;
}

.hide-desktop {
  display: none !important;
}

@media (max-width: 767px) {
  .hide-desktop {
    display: block !important;
  }
}

@media (max-width: 768px) {
  .hide-tablet {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}

.card {
  position: relative;
  border-radius: 20px;
  box-shadow: 0 0 0 1px rgba(61, 0, 103, 0.1), 0 40px 20px -40px rgba(61, 0, 103, 0.5);
  background: #fff;
  overflow: hidden;
}

@media (max-width: 768px) {
  .card {
    padding: 1em;
  }
}

.container {
  max-width: var(--page-w);
  margin: 0 auto;
}

@media (max-width: 767px) {
  .container {
    max-width: 100%;
  }
}

.input-error {
  position: absolute;
  right: 5px;
  bottom: 0;
  font-size: 12px;
  color: #ff0000;
}

@media (max-width: 767px) {
  .input-error {
    font-size: 10px;
  }
}

.rtl .input-error {
  right: initial;
  left: 5px;
}

.site-logo {
  max-width: 120px;
  cursor: pointer;
}

@media (max-width: 767px) {
  .site-logo {
    width: 100%;
    max-width: 100px;
  }
}

@media (max-width: 767px) {
  .site-logo figure {
    max-width: 100px;
    margin: 0 auto;
  }
}

.eula_wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  padding: 40px;
  z-index: 0;
  opacity: 0;
}

@media (max-width: 767px) {
  .eula_wrap {
    padding: 0;
  }
}

.eula,
embed {
  width: 100%;
  height: 100%;
  max-width: 1000px;
  margin: 0 auto;
  background-color: #fff;
}

.eula {
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}

@media (max-width: 767px) {
  .eula {
    border-radius: 0;
  }
}

.eula .container {
  max-width: 100%;
  height: 100%;
  padding: 0 !important;
}

@media (max-width: 767px) {
  .eula .container {
    max-width: 100%;
  }
}

.eula .close {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #333;
  cursor: pointer;
}

@media (max-width: 767px) {
  .eula .close {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(51, 51, 51, 0.5);
    background: #fff;
  }
}

.eula .close i {
  display: none;
}

.close:before, .close:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: 0 0;
  width: 20px;
  height: 2px;
  background-color: #000;
}

@media (max-width: 767px) {
  .close:before, .close:after {
    width: 16px;
    height: 2px;
    background-color: #666666;
  }
}

.close:before {
  transform: rotate(45deg) translate(-50%, -50%);
}

.close:after {
  transform: rotate(-45deg) translate(-50%, -50%);
}

:root {
  --header-h: 8vh;
  --page-w: 1366px;
}

@media (max-width: 767px) {
  :root {
    --page-w: 100%;
  }
}

#headerProduct {
  z-index: 10;
  text-align: center;
}

header {
  z-index: 10;
  width: 100%;
  padding: 10px 0;
  background: transparent;
  box-shadow: 0 0 10px 0 rgba(51, 51, 51, 0.1);
}

@media (max-width: 1366px) {
  header {
    padding: 10px;
  }
}

@media (max-width: 768px) {
  header {
    height: auto;
  }
}

header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

@media (max-width: 767px) {
  header .container {
    flex-wrap: wrap;
  }
}

header .site-logo {
  max-width: 140px;
}

header .navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  top: 0;
  height: 100%;
  padding: 20px;
  transition: .3s ease;
}

@media (max-width: 767px) {
  header .navbar {
    position: fixed;
    right: -100%;
    z-index: 10;
    width: 100%;
    background: linear-gradient(160deg, #9c44f3, #3d0067);
  }
  header .navbar.on {
    display: block;
    right: 0;
  }
}

header .navbar .close {
  display: none;
  position: absolute;
  top: 30px;
  right: 30px;
  user-select: none;
}

@media (max-width: 767px) {
  header .navbar .close {
    display: block;
  }
  header .navbar .close:before, header .navbar .close:after {
    background-color: #fff;
  }
}

header .navbar li {
  position: relative;
  margin: 0 10px;
  font-weight: 500;
  cursor: pointer;
}

@media (max-width: 767px) {
  header .navbar li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(51, 51, 51, 0.3);
    color: #fff;
  }
}

header .navbar li a {
  width: 100%;
}

@media (max-width: 767px) {
  header .navbar li:hover {
    color: #333;
  }
}

header .navbar li:after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -5px;
  width: 0;
  height: 4px;
  border-radius: 4px;
  background: #ff26f6;
  transition: .2s;
}

header .navbar li:hover:after {
  width: 100%;
  transition: .2s;
}

@media (max-width: 767px) {
  header .navbar li:hover:after {
    width: 0;
  }
}

@media (max-width: 767px) {
  header .button_wrap {
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 10px;
  }
}

header button {
  position: relative;
  overflow: hidden;
  border: 0;
  outline: 0;
  border-radius: 40px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  transition: .2s ease;
  text-align: center;
  margin: 0;
  padding: 10px 20px;
  background-image: linear-gradient(-90deg, #ff26f6, #eb8878);
  box-shadow: 0 10px 20px -10px rgba(61, 0, 103, 0.9);
  font-size: 14px;
  font-weight: 800;
  color: #3d0067;
  transition: .2s ease;
}

header button:hover {
  background-image: linear-gradient(90deg, #ff26f6, #eb8878);
}

@media (max-width: 767px) {
  header button {
    flex: 1;
    font-size: 12px;
    padding: 7px 10px;
    box-shadow: 0 5px 10px -5px rgba(61, 0, 103, 0.5);
  }
}

header button a, header button a:hover, header button a:focus {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

header .mobile-support {
  display: none;
  margin-right: 5%;
}

@media (max-width: 767px) {
  header .mobile-support {
    display: block;
  }
}

.nav-menu {
  display: none;
  margin-left: auto;
}

@media (max-width: 767px) {
  .nav-menu {
    display: block;
  }
}

.footer {
  padding: 0;
  background: #fff;
  box-shadow: 0 -2px 6px rgba(51, 51, 51, 0.3);
  z-index: 0;
}

@media (max-width: 768px) {
  .footer {
    padding: 20px;
  }
}

.footer .container {
  position: relative;
  max-width: 800px;
  padding: 20px 0;
  z-index: 1;
}

@media (max-width: 1366px) {
  .footer .container {
    padding: 20px;
  }
}

.footer .site-logo {
  margin-bottom: 10px;
  max-width: 100px;
}

@media (max-width: 767px) {
  .footer .flex-space {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .footer ul {
    padding: 10px 0;
  }
}

.footer li {
  padding-bottom: 5px;
  cursor: pointer;
  font-size: 80%;
}

@media (max-width: 767px) {
  .footer li {
    padding-bottom: 5px;
  }
}

.footer li.companyAddress {
  font-size: 65%;
}

.footer .col:last-child li {
  cursor: auto;
}

.footer_cc-logos {
  width: 260px;
  margin: 20px auto 0;
}
