/*===========
|   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%;
}

figure.slide-img img { 
max-height: 320px;
 width: auto; 
}

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: 100%;
}

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;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  text-align: center;
}

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;
  }
}

body {
  background-color: #fff;
  color: #24272c;
  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;
  }
}

@media (max-width: 767px) {
  section.info_wrap {
    padding: 40px;
  }
}

.container {
  max-width: 1000px;
  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;
  flex-wrap: wrap;
}

.cols_wrap > a {
  flex: 40%;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .cols_wrap > a {
    flex: 100%;
  }
}

.cols_wrap > a:nth-child(odd) {
  margin-right: 20px;
}

@media (max-width: 767px) {
  .cols_wrap > a:nth-child(odd) {
    margin-right: 0;
  }
}

.cols_wrap > a:last-child {
  flex: 0 1 49%;
}

@media (max-width: 767px) {
  .cols_wrap > a:last-child {
    flex: 100%;
  }
}

.cols_wrap .card {
  align-items: center;
}

.cols_wrap .card:hover {
  box-shadow: 0 2px 6px rgba(153, 153, 153, 0.3), inset 0 0 0 1px #0ec0db;
}

.cols_wrap .card figure {
  width: 130px;
  height: 130px;
  margin-right: 20px;
}

@media (max-width: 767px) {
  .cols_wrap .card figure {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.cols_wrap .card figure img {
  height: 100%;
  object-fit: contain;
}

@media (max-width: 767px) {
  .cols_wrap .card figure + div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    flex-direction: column;
  }
}

.cols_wrap h4 {
  text-align: start;
  text-transform: uppercase;
}

.cols_wrap p {
  padding: 15px 0 8px;
}

.cols_wrap p span {
  color: #0ec0db;
  font-weight: 600;
}

.cols_wrap button {
  padding: 8px 15px;
  background: linear-gradient(125deg, #0ec0db, #46e2c8);
  color: #fff;
  transition: background .5s;
}

.cols_wrap button:hover {
  background: linear-gradient(125deg, #46e2c8, #46e2c8);
  transition: background .5s;
}

.featured > a {
  flex: 1;
  margin-right: 20px;
}

.featured > a:last-child {
  margin-right: 0;
}

@media (max-width: 767px) {
  .featured > a:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .featured > a {
    flex: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.featured .card {
  padding: 0;
}

.featured .card:hover .cat {
  background: linear-gradient(49deg, #0ec0db, #0ec0db);
  transition: background .2s;
}

.featured .card figure {
  margin: 20px auto;
}

.featured .cat {
  padding: 10px;
  background: linear-gradient(49deg, #46e2c8, #0ec0db);
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 20px;
  transition: background .2s;
}

.featured h4 {
  text-align: center;
  padding: 0 20px;
}

.featured p {
  padding: 10px 20px 20px;
  text-align: center;
}

.card-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -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 #46e2c8;
  border: none;
  color: #46e2c8;
}

.card-btn:hover {
  background: #46e2c8;
  color: #fff;
}

.card-btn:hover .material-icons {
  color: #fff;
}

.card-btn .material-icons {
  color: #46e2c8;
}

button, .button {
  position: relative;
  overflow: hidden;
  margin: auto;
  padding: 1rem 2rem;
  border-radius: 6px;
  border: 1px solid #fff;
  outline: 0;
  font-size: 17px;
  text-transform: uppercase;
  line-height: 1;
  color: #fff;
  -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;
  padding: 2rem;
  border-radius: 6px;
  box-shadow: 0 0 15px 0 rgba(119, 119, 119, 0.2);
  background: #fff;
  overflow: hidden;
}

@media (max-width: 768px) {
  .card {
    padding: 1em;
  }
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .container {
    max-width: 96%;
  }
}

@media (max-width: 767px) {
  .container {
    max-width: 90%;
  }
}

.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 {
  height: 100%;
  padding: 0 !important;
}

@media (max-width: 767px) {
  .eula .container {
    max-width: 100%;
  }
}

.eula .close {
  position: absolute;
  top: 10px;
  right: 20px;
  color: #24272c;
  cursor: pointer;
}

@media (max-width: 767px) {
  .eula .close {
    right: 10px;
  }
}

#headerMain {
  padding: 10px;
}

#headerProduct {
  z-index: 10;
}

header {
  position: relative;
  width: 100%;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0 2px 6px rgba(153, 153, 153, 0.3);
  z-index: 10;
}

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;
  align-items: center;
}

@media (max-width: 767px) {
  header .container {
    flex-wrap: wrap;
  }
}

header .navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 767px) {
  header .navbar {
    display: none;
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    height: calc(100% - 60px);
    padding: 20px;
    background: #fafafa;
  }
}

header .navbar li {
  position: relative;
  padding: 0 10px;
  cursor: pointer;
}

@media (max-width: 767px) {
  header .navbar li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(153, 153, 153, 0.3);
  }
}

header .navbar li a {
  width: 100%;
}

header .navbar li:hover {
  color: #0ec0db;
}

@media (max-width: 767px) {
  header .navbar li:hover {
    color: #24272c;
  }
}

header .navbar li:after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -5px;
  width: 0;
  height: 1px;
  background: #0ec0db;
  transition: .2s;
}

header .navbar li:hover:after {
  width: 100%;
  transition: .2s;
}

@media (max-width: 767px) {
  header .navbar li:hover:after {
    width: 0;
  }
}

header .navbar li.current {
  color: #0ec0db;
}

@media (max-width: 767px) {
  header .navbar li.current {
    color: #24272c;
  }
}

header .navbar li.current:after {
  width: 100%;
}

@media (max-width: 767px) {
  header .navbar li.current:after {
    width: 0;
  }
}

@media (max-width: 767px) {
  header .button_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
  }
}

header button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -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: #0ec0db;
  border: 0;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 767px) {
  header button {
    flex: 1;
    font-size: 12px;
    padding: 7px 10px;
  }
}

header button:hover {
  background: #0b96ab;
}

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;
  }
}

.page-about .nav:first-child,
.page-support .nav:nth-child(2),
.page-faq .nav:last-child {
  color: #0ec0db;
}

@media (max-width: 767px) {
  .page-about .nav:first-child,
  .page-support .nav:nth-child(2),
  .page-faq .nav:last-child {
    color: #24272c;
  }
}

.page-about .nav:first-child:after,
.page-support .nav:nth-child(2):after,
.page-faq .nav:last-child:after {
  width: 100%;
}

@media (max-width: 767px) {
  .page-about .nav:first-child:after,
  .page-support .nav:nth-child(2):after,
  .page-faq .nav:last-child:after {
    width: 0;
  }
}

.footer {
  padding: 0;
  background: #fafafa;
  box-shadow: 0 -2px 6px rgba(153, 153, 153, 0.3);
  z-index: 0;
}

.footer .container {
  position: relative;
  padding: 20px 0;
  z-index: 1;
}

.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;
}
