/* General Styles */
:root {
  --page-w: 1366px;
  --base-font-s: 14px;
}

@media (max-width: 1024px) {
  :root {
    --page-w: 1200px;
  }
}

@media (max-width: 768px) {
  :root {
    --page-w: 100%;
    --base-font-s: 14px;
  }
}

/*@mixin border-1px($color){
    box-shadow: $border-1px ($color);
}
@mixin border-b-1px($color){
    box-shadow: $border-b-1px ($color);
}
@mixin border-b-2px($color){
    box-shadow: $border-b-2px ($color);
}*/
/*=========== 
|   reset    |
=============*/
::selection {
  background: #4ABB9C;
  color: #fff;
}

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

html,
body {
  -ms-interpolation-mode: nearest-neighbor;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -webkit-crisp-edges;
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: crisp-edges;
}

body {
  position: relative;
  font-family: "Nunito Sans", sans-serif;
  color: #2C2E30;
}

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 {
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: block;
  outline: 0;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

a:hover, a:visited, a:active, a:focus {
  color: inherit;
  text-decoration: none;
}

ol, ul {
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
}

.clear {
  clear: both;
}

:root {
  --page-w: 1366px;
  --base-font-s: 14px;
}

@media (max-width: 1024px) {
  :root {
    --page-w: 1200px;
  }
}

@media (max-width: 768px) {
  :root {
    --page-w: 100%;
    --base-font-s: 14px;
  }
}

/*@mixin border-1px($color){
    box-shadow: $border-1px ($color);
}
@mixin border-b-1px($color){
    box-shadow: $border-b-1px ($color);
}
@mixin border-b-2px($color){
    box-shadow: $border-b-2px ($color);
}*/
#wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: auto;
}

.page-wrap {
  flex-grow: 1;
}

@media (max-width: 768px) {
  .page-wrap {
    width: 100%;
    margin-top: 47px;
  }
}

.page-wrap .container {
  padding: 0;
}

.page {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media (max-width: 768px) {
  .page .container {
    box-shadow: none;
  }
}

button, .button {
  position: relative;
  margin: 30px auto;
  padding: 17px 27px;
  border-radius: calc(15px / 1.5)/calc(15px * 3);
  border: 0;
  outline: 0;
  background: linear-gradient(#4ABB9C, #53D0A0);
  font-size: calc(var(--base-font-s) * 1.7);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: #fff;
  width: 90%;
  min-width: 300px;
  max-width: 350px;
  text-shadow: 1px 1px 3px rgba(44, 46, 48, 0.5);
  cursor: pointer;
}

button:hover, .button:hover {
  background: #4ABB9C;
}

header button, header .button {
  width: auto;
  min-width: auto;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  padding: 7px 17px;
}

header button:hover, header .button:hover {
  color: #fff;
}

.home button, .home .button {
  font-size: 33px;
  padding: 27px 27px;
}

@media (max-width: 768px) {
  .home button, .home .button {
    width: 70%;
  }
}

.cat-bg button, .cat-bg .button {
  background: transparent;
  border: 1px solid white;
}

.cat-bg button:hover, .cat-bg .button:hover {
  background: #4ABB9C;
  color: #2C2E30;
  border: 1px solid #53D0A0;
}

:root {
  --page-w: 1366px;
  --base-font-s: 14px;
}

@media (max-width: 1024px) {
  :root {
    --page-w: 1200px;
  }
}

@media (max-width: 768px) {
  :root {
    --page-w: 100%;
    --base-font-s: 14px;
  }
}

/*@mixin border-1px($color){
    box-shadow: $border-1px ($color);
}
@mixin border-b-1px($color){
    box-shadow: $border-b-1px ($color);
}
@mixin border-b-2px($color){
    box-shadow: $border-b-2px ($color);
}*/
body {
  font-family: "Nunito Sans", sans-serif;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
a,
label {
  margin: 0;
  padding: 0;
  line-height: 1.1;
  font-weight: 400;
}

p {
  line-height: 1.5;
}

label {
  font-weight: 300;
}

h1 {
  font-size: calc(var(--base-font-s) * 4);
}

h2 {
  font-size: calc(var(--base-font-s) * 3);
}

h3 {
  font-size: calc(var(--base-font-s) * 2.5);
}

h4 {
  font-size: calc(var(--base-font-s) * 2);
}

h5 {
  font-size: calc(var(--base-font-s) * 1.5);
}

h6 {
  font-size: calc(var(--base-font-s) * 1.25);
}

@media (max-width: 768px) {
  h1 {
    font-size: calc(var(--base-font-s) * 2);
  }
  h2 {
    font-size: calc(var(--base-font-s) * 1.75);
  }
  h3 {
    font-size: calc(var(--base-font-s) * 1.5);
  }
  h4 {
    font-size: calc(var(--base-font-s) * 1.25);
  }
  h5 {
    font-size: calc(var(--base-font-s) * 1.2s);
  }
  h6 {
    font-size: calc(var(--base-font-s) * 1.1);
  }
}

h1, h2, h3, h4, h5, h6 {
  margin: 20px 0;
}

h3 {
  font-size: 25px;
  text-align: center;
  padding: 0 30px;
}

h4 {
  font-size: 23px;
}

h5, h6 {
  font-weight: 400;
}

h5 {
  font-size: 21px;
}

h6 {
  font-size: 15px;
}

:root {
  --page-w: 1366px;
  --base-font-s: 14px;
}

@media (max-width: 1024px) {
  :root {
    --page-w: 1200px;
  }
}

@media (max-width: 768px) {
  :root {
    --page-w: 100%;
    --base-font-s: 14px;
  }
}

/*@mixin border-1px($color){
    box-shadow: $border-1px ($color);
}
@mixin border-b-1px($color){
    box-shadow: $border-b-1px ($color);
}
@mixin border-b-2px($color){
    box-shadow: $border-b-2px ($color);
}*/
.logo {
  position: relative;
  cursor: pointer;
  width: 113px;
  margin-inline-end: 17px;
}

@media (max-width: 768px) {
  .logo {
    width: 100px;
    padding-top: 0;
    margin-right: 0;
  }
}

/*header*/
header {
  position: relative;
  top: 0;
  z-index: 10;
  width: 100%;
  padding: 0 10px;
  background: #fff;
  box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.1);
  z-index: 120;
}

.wrapper-home header {
  position: fixed;
}

.wrapper-home header.header-up {
  transform: translateY(-80px);
  opacity: 0;
  transition: transform .5s ease-in-out, opacity 1s ease-in-out;
}

@media (max-width: 768px) {
  .wrapper-home header.header-up {
    transform: translateY(0);
    opacity: 1;
  }
}

.wrapper-home header.header-down {
  transition: .3s ease-in-out;
}

@media (max-width: 768px) {
  header {
    position: fixed;
    max-height: 46px;
  }
}

header .container {
  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: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: auto;
  transition: .2s ease;
}

@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    padding: 8px;
  }
}

header .container > button {
  display: none;
}

@media (max-width: 768px) {
  header .container > button {
    display: block;
  }
}

header button {
  margin-left: auto;
  padding: 5px 10px;
}

@media (max-width: 767px) {
  header button {
    padding: 5px 8px;
    font-size: 12px;
  }
}

header .navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 10px 0;
}

@media (max-width: 768px) {
  header .navbar {
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 30px;
    top: 46px;
    left: 0;
    background: #F6F8F9;
    color: #2C2E30;
    box-shadow: inset 0 10px 16px -10px rgba(0, 0, 0, 0.16);
  }
}

@media (max-width: 768px) {
  header .navbar.in, header .navbar.show {
    position: absolute;
    left: 0;
    height: 100vh;
    padding: 16px;
    background: rgba(0, 0, 0, 0.8);
  }
}

header .navbar.in + .navbar-toggle:after, header .navbar.show + .navbar-toggle:after {
  content: 'close';
}

header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

header ul:last-child {
  margin-left: auto;
}

@media (max-width: 767px) {
  header ul:last-child {
    margin: 0;
  }
}

@media (max-width: 768px) {
  header ul {
    display: block;
  }
}

header ul .btn-wrap {
  margin-inline-end: 15px;
}

header ul .nav-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-inline-end: 15px;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: .2s ease;
  border-bottom: 1px solid transparent;
}

@media (max-width: 768px) {
  header ul .nav-item {
    display: block;
    width: 100%;
    border: 0;
    text-align: left;
  }
}

@media (max-width: 768px) {
  header ul .nav-item {
    margin-inline-end: 0;
    padding: 10px 0;
  }
}

header ul .nav-item span {
  padding: 5px 0;
  transition: .2s ease;
}

@media (max-width: 767px) {
  header ul .nav-item span {
    padding: 0;
  }
}

header ul .nav-item:hover {
  border-color: #4ABB9C;
}

header .drop-down_wrap {
  position: relative;
  margin: 30px auto;
  padding: 17px 27px;
  border-radius: calc(15px / 1.5)/calc(15px * 3);
  border: 0;
  outline: 0;
  background: linear-gradient(#4ABB9C, #53D0A0);
  font-size: calc(var(--base-font-s) * 1.7);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: #fff;
  width: 90%;
  min-width: 300px;
  max-width: 350px;
  text-shadow: 1px 1px 3px rgba(44, 46, 48, 0.5);
  cursor: pointer;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 10px;
  padding: 6px 10px;
  white-space: nowrap;
  font-size: 83%;
  font-weight: inherit;
  cursor: pointer;
}

header .drop-down_wrap:hover {
  background: #4ABB9C;
}

header header .drop-down_wrap {
  width: auto;
  min-width: auto;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  padding: 7px 17px;
}

header header .drop-down_wrap:hover {
  color: #fff;
}

.home header .drop-down_wrap {
  font-size: 33px;
  padding: 27px 27px;
}

@media (max-width: 768px) {
  .home header .drop-down_wrap {
    width: 70%;
  }
}

.cat-bg header .drop-down_wrap {
  background: transparent;
  border: 1px solid white;
}

.cat-bg header .drop-down_wrap:hover {
  background: #4ABB9C;
  color: #2C2E30;
  border: 1px solid #53D0A0;
}

header .drop-down_wrap span {
  margin-top: -2px;
}

header .drop-down_wrap:after {
  content: "expand_more";
  font-family: 'Material Icons';
  text-transform: none;
  line-height: 1;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  z-index: 1;
  margin-inline-start: 5px;
  font-size: 100%;
}

header .drop-down_wrap:hover .drop-down, header .drop-down_wrap:focus .drop-down {
  display: block;
}

@media (max-width: 767px) {
  header .drop-down_wrap {
    order: 10;
    margin: 0;
    margin-inline-end: auto;
  }
}

header .drop-down {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: #000;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}

header .drop-down li {
  width: 100%;
  margin: 0;
}

header .drop-down li span {
  display: block;
  width: 100%;
  padding: 20px;
  text-align: start;
}

header .tel {
  cursor: unset;
}

@media (max-width: 767px) {
  header .tel {
    margin-inline-end: 15px;
  }
}

@media (max-width: 767px) {
  header .user-nav {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  header .user-nav li.btn-wrap {
    order: 1;
    display: none;
  }
}

header .user-nav li.btn-wrap button {
  margin: 0;
}

#touch-menu {
  display: none;
  width: 20px;
  height: 30px;
  position: relative;
  margin-inline-end: 10px;
}

@media (max-width: 768px) {
  #touch-menu {
    display: block;
  }
}

#touch-menu span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #666;
  width: 100%;
  height: 2px;
  transition: .2s ease;
}

#touch-menu span:before, #touch-menu span:after {
  position: absolute;
  width: 100%;
  height: 2px;
  content: '';
  background: #666;
  transition: .2s ease;
}

#touch-menu span:before {
  top: -5px;
}

#touch-menu span:after {
  top: 5px;
}

.dark #touch-menu span {
  background: #fff;
}

.dark #touch-menu span:before, .dark #touch-menu span:after {
  background: #fff;
}

#touch-menu.on span {
  background: transparent;
  height: 0;
}

#touch-menu.on span:before {
  top: -10px;
  transform: rotate(45deg) translate(6px, 5px);
}

#touch-menu.on span:after {
  transform: rotate(-45deg) translate(5px, -5px);
}

/*footer*/
footer {
  padding: 50px 20px 20px;
  background: #F6F8F9;
}

@media (max-width: 768px) {
  footer {
    padding: 20px;
  }
}

footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1200px;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  footer .container {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
  }
}

footer .container > p {
  padding: 20px 0;
  flex: 100%;
  font-size: 13px;
}

footer .row {
  margin-bottom: 20px;
}

footer .row:last-of-type {
  margin-bottom: 0;
}

footer .col {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-inline-end: 40px;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  footer .col {
    -webkit-box-flex: none;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
  }
}

footer .col:first-of-type {
  border-inline-end: 1px solid #a3e6cc;
}

@media (max-width: 768px) {
  footer .col:first-of-type {
    margin: 0;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border: 0;
  }
}

footer .col:last-of-type {
  padding-inline-end: 0;
  padding-inline-start: 40px;
}

@media (max-width: 768px) {
  footer .col:last-of-type {
    padding-inline-start: 0;
  }
}

footer p {
  margin-bottom: 10px;
  font-size: 13px;
}

footer ul {
  width: fit-content;
}

@media (max-width: 768px) {
  footer ul {
    margin: 0;
  }
}

footer ul.flex_wrap li {
  flex: 0 1 auto;
  margin-inline-end: 10px;
  margin-bottom: 0;
  padding-inline-end: 10px;
  border-inline-end: 1px solid #8E8E8E;
  text-align: center;
}

footer ul.flex_wrap li:last-child {
  margin: 0;
  padding: 0;
  border: 0;
}

@media (max-width: 768px) {
  footer ul.flex_wrap li {
    margin: 0 0 20px 0;
    padding: 0;
    border: 0;
    text-align: left;
  }
}

footer ul.terms-links_wrap {
  margin: 50px auto 0;
  justify-content: center;
  gap: 30px;
}

footer ul.terms-links_wrap li {
  color: #8E8E8E;
  font-size: 11px;
  border-inline-end: none;
  margin: 0;
  padding: 10px 0;
}

footer ul.terms-links_wrap li:hover a {
  color: #2C2E30;
}

@media (max-width: 768px) {
  footer ul.terms-links_wrap {
    margin: 20px 0 0;
    gap: 0;
  }
}

footer ul.contact {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  footer ul.contact {
    order: 2;
    width: 100%;
    margin: 20px 0 0;
    padding-top: 20px;
    border-top: 1px solid #def3ed;
  }
}

footer ul.contact a {
  white-space: nowrap;
}

footer li {
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: .2s ease;
}

footer li:hover a {
  color: #4ABB9C;
}

footer .contact_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  footer .contact_wrap .terms-links_wrap {
    order: 1;
  }
}

footer .logo {
  margin-bottom: 30px;
}

.footer_title {
  margin-bottom: 10px;
  font-weight: bold;
}

.company {
  font-size: 12px;
}

:root {
  --page-w: 1366px;
  --base-font-s: 14px;
}

@media (max-width: 1024px) {
  :root {
    --page-w: 1200px;
  }
}

@media (max-width: 768px) {
  :root {
    --page-w: 100%;
    --base-font-s: 14px;
  }
}

/*@mixin border-1px($color){
    box-shadow: $border-1px ($color);
}
@mixin border-b-1px($color){
    box-shadow: $border-b-1px ($color);
}
@mixin border-b-2px($color){
    box-shadow: $border-b-2px ($color);
}*/
.container {
  position: relative;
  margin: auto;
  padding: 0;
}

@media (max-width: 1920px) {
  .container {
    width: 100%;
    height: 100%;
    max-width: 1200px;
  }
}

@media (max-width: 1024px) {
  .container {
    width: 100%;
    height: 100%;
    max-width: 960px;
  }
}

.card {
  position: relative;
  background: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

.close-icon {
  font-size: 24px;
  font-weight: 100;
  cursor: pointer;
  transition: .2s ease;
}

.close-icon:before {
  content: "close";
  font-family: 'Material Icons';
  text-transform: none;
  line-height: 1;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  z-index: 1;
  color: #666;
}

.close-icon:hover:before {
  color: #4ABB9C;
}

.fade {
  opacity: 0;
  transition: opacity .2s linear;
}

.fade.in {
  opacity: 1;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1050;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}

.modal.in .modal-dialog {
  transform: translate(0, 0);
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-dialog {
  margin: auto;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1040;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.in {
  opacity: 0.7;
}

.modal-content {
  position: relative;
  box-shadow: none;
  border: none;
  box-sizing: border-box;
  background: transparent;
}

:root {
  --page-w: 1366px;
  --base-font-s: 14px;
}

@media (max-width: 1024px) {
  :root {
    --page-w: 1200px;
  }
}

@media (max-width: 768px) {
  :root {
    --page-w: 100%;
    --base-font-s: 14px;
  }
}

/*@mixin border-1px($color){
    box-shadow: $border-1px ($color);
}
@mixin border-b-1px($color){
    box-shadow: $border-b-1px ($color);
}
@mixin border-b-2px($color){
    box-shadow: $border-b-2px ($color);
}*/
.response {
  margin: 0;
  padding: 0;
  font-size: 12px;
  font-weight: 400;
  color: #FF0020;
}

input:focus,
select:focus,
textarea:focus {
  border: inherit;
  outline: 0;
  outline-style: none;
  outline-color: none;
}

input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-internal-autofill-selected,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-internal-autofill-selected,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-internal-autofill-selected {
  background-color: inherit !important;
}

input[type=file]:focus, input[type=checkbox]:focus, input[type=radio]:focus {
  border: inherit;
  outline: 0;
  outline-style: none;
  outline-color: none;
}

.form_group input:not([type="checkbox"]),
.form_group select,
.form_group textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  z-index: 2;
  width: 100%;
  height: 44px;
  padding: 0 10px;
  background-color: transparent;
  border: 0;
  outline: 0;
  transition: .3s ease;
  border-radius: 3px;
  box-shadow: inset 0 0 0 1px rgba(44, 46, 48, 0.5);
  font-size: 16px;
  color: #333;
}

.form_group input:not([type="checkbox"]):focus,
.form_group select:focus,
.form_group textarea:focus {
  border: inherit;
  outline: 0;
  outline-style: none;
  outline-color: none;
}

.form_group input:not([type="checkbox"]):focus,
.form_group select:focus,
.form_group textarea:focus {
  box-shadow: inset 0 0 0 2px #4ABB9C;
}

.form_group input:not([type="checkbox"]).has-error,
.form_group select.has-error,
.form_group textarea.has-error {
  box-shadow: inset 0 0 0 1px #4ABB9C;
}

.form_group input:not([type="checkbox"]).has-error:focus,
.form_group select.has-error:focus,
.form_group textarea.has-error:focus {
  box-shadow: inset 0 0 0 2px #4ABB9C;
}

.form_group textarea {
  height: 80px;
  padding: 10px;
}

input[type="checkbox"] {
  position: relative;
  background: #fff;
  -moz-appearance: none;
  -webkit-appearance: none;
  width: 16px;
  min-width: 16px;
  max-width: 16px;
  margin: 0;
  padding: 0;
  height: 16px;
  border: 0;
  outline: 0;
  border-radius: 2px;
  box-shadow: inset 0 0 0 1px #888888;
  transition: .3s ease;
  cursor: pointer;
}

input[type="checkbox"]:after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: 'check';
  font-family: 'Material Icons';
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  width: 16px;
  height: 16px;
  opacity: 0;
}

input[type="checkbox"]:checked {
  box-shadow: none;
  background: #4ABB9C;
}

input[type="checkbox"]:checked:after {
  opacity: 1;
}

input[type="checkbox"]:hover input[type=checkbox]:after {
  opacity: .5;
}

select {
  position: relative;
  background-image: url(../images/arrow-down.svg);
  background-size: 13px;
  background-position-x: calc(100% - 10px);
  background-position-y: 50%;
  background-repeat: no-repeat;
}

form label {
  font-size: 13px;
}

@media (max-width: 768px) {
  form button {
    width: 100%;
  }
}

form .term-wrap-text {
  margin-left: 10px;
}

form .term-wrap {
  margin: 20px 0;
}

form .term-wrap label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

form .term-wrap .terms-text {
  margin-left: 10px;
  font-size: 12px;
}

form .no-match {
  font-size: 12px;
  color: #FF0020;
}

form .general-error {
  position: relative;
  height: 20px;
}

form p {
  font-weight: 400;
}

form p a {
  text-decoration: underline;
}

form p a:hover {
  text-decoration: underline;
  color: #4ABB9C;
}

select {
  cursor: pointer;
}

.loader {
  position: relative;
  top: 10px;
  width: 0;
  height: 1px;
  transition: .2s all;
}

.loader-gradient, .loader, header .nav-loader {
  background: linear-gradient(to right, #4ABB9C 50%, rgba(255, 255, 255, 0) 100%);
}

.form_group {
  position: relative;
  margin-bottom: 20px;
}

.form_group label:not(.cc-label) {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  z-index: 1;
  font-size: 16px;
  transition: .2s ease;
  user-select: none;
  cursor: text;
}

.form_group.active label {
  top: -8px;
  left: 8px;
  z-index: 3;
  transform: none;
  padding: 0 4px;
  font-size: 13px;
  font-weight: 700;
  background: #fff;
}

.form_group .input-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.form_group .input-wrap label {
  margin-right: 10px;
  white-space: nowrap;
}

.form_group .input-wrap .cc-input {
  width: 60px;
  text-align: center;
}

.term-wrap {
  position: relative;
}

.required,
.input-msg {
  margin: 0;
  padding: 0;
  font-size: 12px;
  font-weight: 400;
  color: #FF0020;
  position: absolute;
}

.form_group .required, .form_group
.input-msg {
  right: 4px;
  bottom: 2px;
}

.term-wrap .required, .term-wrap
.input-msg {
  right: 0;
  bottom: 0;
}

#sign-up form button,
.signin-form form button,
#support form button {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
}

@media (max-width: 767px) {
  #sign-up form button,
  .signin-form form button,
  #support form button {
    max-width: 100%;
  }
}

#sign-up input, #sign-up select,
.signin-form input,
.signin-form select,
#support input,
#support select {
  font-size: 14px;
  color: #2C2E30;
}

#sign-up .links-wrap,
.signin-form .links-wrap,
#support .links-wrap {
  margin-top: 20px;
  text-align: center;
}

#sign-up .links-wrap p,
.signin-form .links-wrap p,
#support .links-wrap p {
  margin-bottom: 10px;
}

#sign-up .links-wrap p a,
#sign-up .links-wrap p span,
.signin-form .links-wrap p a,
.signin-form .links-wrap p span,
#support .links-wrap p a,
#support .links-wrap p span {
  cursor: pointer;
  color: #53D0A0;
}

#sign-up .links-wrap p a:hover,
#sign-up .links-wrap p span:hover,
.signin-form .links-wrap p a:hover,
.signin-form .links-wrap p span:hover,
#support .links-wrap p a:hover,
#support .links-wrap p span:hover {
  text-decoration: underline;
  color: #2b7460;
}

.signin-form {
  position: relative;
  background: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  z-index: 10;
  max-width: 360px;
  height: auto;
  margin: 0 auto;
  padding: 16px;
  border-radius: 4px;
}

.signin-form .loader {
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
}

.signin-form .close-icon {
  position: absolute;
  top: 0px;
  right: 5px;
  font-size: 24px;
  font-weight: 100;
  cursor: pointer;
}

.signin-form .close-icon:before {
  content: "close";
  font-family: 'Material Icons';
  text-transform: none;
  line-height: 1;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  z-index: 1;
}

.signin-form button {
  width: 100%;
  margin: 20px auto 0;
}

.signup-wrap {
  -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: 768px) {
  .signup-wrap {
    display: block;
  }
}

@media (max-width: 767px) {
  .support-content > div:first-child {
    order: 1;
  }
  .support-content > div:last-child {
    order: 0;
  }
}

.captcha-wrap {
  margin-bottom: 20px;
}

.phone-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.phone-wrap .prefix_wrap {
  width: 80px;
  margin-right: 5px;
}

.phone-wrap .prefix_wrap label {
  margin-left: 10px;
  color: #2C2E30;
  cursor: pointer;
}

.phone-wrap .prefix_wrap .btn {
  display: block;
  height: 100%;
  padding: 0;
  border: 0;
  box-shadow: none;
  background-color: transparent;
  border-radius: 0;
  line-height: 1;
}

.phone-wrap .prefix_wrap .dropdown-menu {
  min-width: 300px;
}

.phone-wrap .ui-select-container {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  z-index: 2;
  width: 100%;
  height: 44px;
  padding: 0 10px;
  background-color: transparent;
  border: 0;
  outline: 0;
  transition: .3s ease;
  z-index: 100;
  padding: 0 5px;
  box-shadow: inset 0 0 0 1px rgba(44, 46, 48, 0.5);
  border-radius: 3px;
}

.phone-wrap .ui-select-container:focus {
  border: inherit;
  outline: 0;
  outline-style: none;
  outline-color: none;
}

.phone-wrap .ui-select-container input {
  height: 100%;
  border: 0;
  box-shadow: none;
  background-color: transparent;
}

.phone-wrap .ui-select-container input:focus {
  border: 0;
  box-shadow: none;
  background-color: transparent;
}

.phone-wrap .ui-select-match {
  padding: 0;
}

.phone-wrap .ui-select-match::placeholder {
  color: #2C2E30;
}

.phone-wrap .ui-select-match-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  height: 44px;
  padding: 0;
  background-image: url(../images/arrow-down.svg);
  background-size: 13px;
  background-position-x: calc(100% - 0px);
  background-position-y: 50%;
  background-repeat: no-repeat;
}

.phone-wrap .ui-select-match-text + i {
  display: none;
}

.phone-wrap .ui-select-match-text span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 44px;
}

@media (max-width: 768px) {
  .phone-wrap .ui-select-match-text span {
    height: 44px;
  }
}

.phone-wrap .btn-default-focus {
  outline: 0;
  border: 0;
  box-shadow: none;
  background-color: transparent;
}

.phone-wrap .form_group {
  width: 100%;
  height: 100%;
  padding: 0;
}

.phone-wrap .form_group input {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  z-index: 2;
  width: 100%;
  height: 44px;
  padding: 0 10px;
  background-color: transparent;
  border: 0;
  outline: 0;
  transition: .3s ease;
}

.phone-wrap .form_group input:focus {
  border: inherit;
  outline: 0;
  outline-style: none;
  outline-color: none;
}

:root {
  --page-w: 1366px;
  --base-font-s: 14px;
}

@media (max-width: 1024px) {
  :root {
    --page-w: 1200px;
  }
}

@media (max-width: 768px) {
  :root {
    --page-w: 100%;
    --base-font-s: 14px;
  }
}

/*@mixin border-1px($color){
    box-shadow: $border-1px ($color);
}
@mixin border-b-1px($color){
    box-shadow: $border-b-1px ($color);
}
@mixin border-b-2px($color){
    box-shadow: $border-b-2px ($color);
}*/
section {
  display: flex;
  align-items: center;
  justify-content: center;
}

.home {
  background-image: url(../images/herobg.jpg);
  background-size: 100%;
  background-position: center top 0;
  background-repeat: no-repeat;
}

@media (max-width: 1024px) {
  .home {
    background-size: 115%;
    background-position: center top 70px;
  }
}

@media (max-width: 767px) {
  .home {
    background: none;
  }
}

hr {
  border-top: 1px solid rgba(142, 142, 142, 0.5);
  width: 80%;
  max-width: 960px;
  margin: 0 auto;
}

.hero-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: auto;
  min-height: calc(100vh - 50px);
  margin-top: 50px;
  padding: 15% 0 0;
}

.hero-wrapper > section {
  width: 100%;
}

.hero-wrapper > div {
  width: 100%;
}

@media (max-width: 768px) {
  .hero-wrapper {
    min-height: auto;
    padding-top: 7%;
  }
}

@media (max-width: 767px) {
  .hero-wrapper {
    padding-top: 0;
    margin-bottom: 0;
  }
}

.hero {
  padding: 0;
  text-align: center;
}

.hero .container {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.hero .container > div {
  flex: 1;
}

.hero img {
  display: none;
}

.hero h1 {
  font-size: 39px;
  line-height: 1;
  margin: 10px 0 30px;
  font-weight: 400;
}

.hero h1.h-desktop {
  display: none;
}

@media (max-width: 768px) {
  .hero {
    padding: 10px 0;
  }
}

@media (max-width: 767px) {
  .hero {
    align-items: flex-end;
  }
  .hero img {
    display: block;
    width: 90%;
    max-width: 270px;
  }
  .hero h1 {
    font-size: 31px;
  }
  .hero h1.h-desktop {
    display: block;
  }
  .hero h1.h-mobile {
    display: none;
  }
  .hero h5 {
    display: none;
  }
}

.button-wrap {
  padding: 50px 0;
  text-align: center;
  align-items: center;
  flex-direction: column;
}

.button-wrap button {
  margin: 0;
}

.button-wrap .connection {
  position: relative;
  margin-top: 13px;
  margin-inline-start: 40px;
}

.button-wrap .connection:before {
  position: absolute;
  content: "";
  background-image: url(../images/connection.svg);
  background-repeat: no-repeat;
  background-size: 33px;
  width: 100%;
  height: 100%;
  top: 0px;
  left: -40px;
  margin-inline-end: 5px;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

@-webkit-keyframes blinker {
  50% {
    opacity: 0;
  }
}

@media (max-width: 767px) {
  .button-wrap {
    height: auto;
    padding: 27px 0;
  }
}

.hero .button-wrap {
  padding: 10px 0;
}

.icons {
  padding: 0 0 50px;
  flex-direction: column;
  text-align: center;
  margin-top: auto;
}

.icons .container {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  gap: 90px;
}

.icons .container > div {
  flex: 1;
}

.icons .container > div {
  flex: initial;
  padding: 15px 0;
  text-align: center;
}

.icons figure {
  width: 40px;
  height: 40px;
  margin: 0 auto;
}

.icons h6 {
  font-weight: 400;
  margin-top: 19px;
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .icons .container {
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .icons {
    margin-top: 70px;
  }
  .icons .container {
    gap: 30px;
  }
  .icons figure {
    width: 45px;
    height: 45px;
  }
  .icons h3 {
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  .icons {
    background-color: #F6F8F9;
    border-top: 1px solid rgba(142, 142, 142, 0.2);
    border-bottom: 1px solid rgba(142, 142, 142, 0.2);
    padding: 13px 0;
  }
  .icons .container {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 0;
  }
  .icons .container > div {
    flex: 50%;
    border-bottom: 1px solid rgba(142, 142, 142, 0.2);
    border-right: 1px solid rgba(142, 142, 142, 0.2);
  }
  .icons .container > div:nth-child(even) {
    border-right: none;
  }
  .icons .container > div:nth-child(1n+3) {
    border-bottom: none;
  }
  .icons h6 {
    margin-top: 13px;
  }
}

.steps {
  padding: 50px 0;
  text-align: center;
  background-color: #F6F8F9;
}

.steps .container {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps .container > div {
  flex: 1;
}

@media (max-width: 767px) {
  .steps .container {
    flex-direction: column;
  }
}

.list-number {
  display: flex;
  align-items: center;
  justify-content: center;
  counter-reset: list-number;
  gap: 100px;
  font-size: 16px;
  margin-bottom: 30px;
  color: #8E8E8E;
}

.list-number li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  z-index: 1;
}

.list-number li:before {
  counter-increment: list-number;
  content: counter(list-number);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(142, 142, 142, 0.7);
  background-color: transparent;
  color: rgba(142, 142, 142, 0.7);
  font-size: 23px;
  font-weight: 500;
  margin: 20px auto;
}

.list-number li:after {
  position: absolute;
  top: 25px;
  left: calc(100% + 45px);
  content: "";
  background-image: url(../images/steps-arrow.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  width: 100%;
  height: 100%;
}

.list-number li:last-child:after {
  display: none;
}

.list-number li:first-child {
  color: #2C2E30;
  font-weight: 600;
}

.list-number li:first-child:before {
  background-color: #4ABB9C;
  border-color: #53D0A0;
  color: #fff;
  -webkit-box-shadow: inset -1px 10px 7px -4px rgba(0, 0, 0, 0.3);
  box-shadow: inset -1px 10px 7px -4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1024px) {
  .list-number {
    font-size: 15px;
  }
  .list-number li:before {
    margin: 10px auto;
  }
  .list-number li:after {
    top: 15px;
  }
}

@media (max-width: 768px) {
  .list-number {
    font-size: 16px;
    gap: 90px;
  }
}

@media (max-width: 767px) {
  .list-number {
    font-size: 13px;
    gap: 30px;
  }
  .list-number li:before {
    width: 30px;
    height: 30px;
    font-size: 17px;
    margin: 10px auto;
  }
  .list-number li:after {
    top: 15px;
    background-size: 15px;
    left: calc(100% + 10px);
  }
}

.find-wrap {
  padding: 70px 0 30px;
  background-color: #F6F8F9;
}

.find-wrap .container {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 30px;
  gap: 50px;
}

.find-wrap .container > div {
  flex: 1;
}

.find-wrap .container > div ul {
  list-style-type: none;
}

.find-wrap .container > div ul li {
  width: 100%;
  padding: 9px 0;
  line-height: 1;
  display: flex;
  font-size: 16px;
}

.find-wrap .container > div ul li:before {
  content: "";
  font-size: 19px;
  color: #4ABB9C;
  display: inline-flex;
  margin-inline-end: 10px;
}

.find-wrap .container > div ul li:nth-child(1):before {
  content: "\2764";
}

.find-wrap .container > div ul li:nth-child(2):before {
  content: "\27F3";
}

.find-wrap .container > div ul li:nth-child(3):before {
  content: "\25AE";
}

.find-wrap .container > div ul li:nth-child(4):before {
  content: "\2297";
}

.find-wrap .container > div ul li:nth-child(5):before {
  content: "\2605";
}

@media (max-width: 767px) {
  .find-wrap .container > div ul li:before {
    font-size: 23px;
  }
}

@media (max-width: 768px) {
  .find-wrap .container > div {
    margin: 20px 0 0;
  }
}

.find-wrap figure {
  width: 500px;
}

.find-wrap p:first-letter {
  font-size: 33px;
}

@media (max-width: 768px) {
  .find-wrap {
    padding: 50px 0 0;
  }
  .find-wrap figure {
    width: auto;
  }
}

@media (max-width: 767px) {
  .find-wrap .container {
    flex-direction: column;
    gap: 0;
  }
  .find-wrap .container > div {
    margin: 0;
  }
  .find-wrap .container > div ul {
    display: flex;
    flex-direction: column;
    width: fit-content;
    margin: auto;
  }
  .find-wrap figure {
    margin: 30px auto;
    width: 100%;
  }
}

.features {
  background-color: #F6F8F9;
  padding: 0 0 50px;
}

.features .container {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
}

.features .container > div {
  flex: 1;
}

.features .feat-icon {
  width: 100%;
  padding: 20px;
  text-align: center;
}

.features .feat-icon h6 {
  font-weight: 700;
  text-transform: uppercase;
}

.features .feat-icon p {
  line-height: 1.6;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .features .feat-icon p {
    margin-bottom: 0;
  }
}

.features .feat-icon figure {
  width: 45px;
  height: 45px;
  margin: 20px auto;
}

@media (max-width: 768px) {
  .features {
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .features .container {
    flex-direction: column;
    gap: 0;
  }
}

.banner-text {
  padding: 50px 0;
}

.banner-text .container {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.banner-text .container > div {
  flex: 1;
}

.banner-text p:first-letter {
  font-size: 33px;
}

.banners-wrap {
  flex-direction: column;
}

.banners-wrap .banner {
  display: flex;
  flex-direction: row;
  width: 100%;
  background-color: #F6F8F9;
}

.banners-wrap .banner > div {
  flex: 50%;
}

.banners-wrap .banner:nth-child(odd) {
  flex-direction: row-reverse;
}

.banners-wrap .banner p:first-letter {
  font-size: 33px;
}

.banners-wrap .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 30px 70px;
}

.banners-wrap .text h3 {
  font-weight: 700;
  margin: 0 0 15px;
  padding: 0;
  text-align: start;
}

.banners-wrap .text h3:after {
  content: "";
  display: flex;
  background-color: #4ABB9C;
  width: 100px;
  height: 9px;
  margin-top: 9px;
}

@media (max-width: 1024px) {
  .banners-wrap .banner .text {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .banners-wrap .banner {
    flex-direction: column;
  }
  .banners-wrap .banner > div {
    flex: 100%;
  }
  .banners-wrap .banner .text {
    padding: 50px 30px;
    background: none !important;
  }
}

.find-out {
  padding: 70px 0 0;
  text-align: center;
}

.find-out .container {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: start;
}

.find-out .container > div {
  flex: 1;
}

.find-out .container > div {
  padding: 0 30px;
}

.find-out figure {
  width: 70px;
  height: 70px;
  margin: 20px auto;
}

@media (max-width: 767px) {
  .find-out .container {
    flex-direction: column;
    align-items: center;
  }
  .find-out .container > div {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .find-out figure {
    margin: 20px auto 0;
  }
}

.slider-wrap.slider {
  display: none;
}

@media (max-width: 767px) {
  .slider-wrap.slider {
    display: block;
    background-color: #F6F8F9;
  }
}

.container.on-desktop,
.on-desktop {
  display: flex;
}

@media (max-width: 767px) {
  .container.on-desktop,
  .on-desktop {
    display: none;
  }
}

:root {
  --page-w: 1366px;
  --base-font-s: 14px;
}

@media (max-width: 1024px) {
  :root {
    --page-w: 1200px;
  }
}

@media (max-width: 768px) {
  :root {
    --page-w: 100%;
    --base-font-s: 14px;
  }
}

/*@mixin border-1px($color){
    box-shadow: $border-1px ($color);
}
@mixin border-b-1px($color){
    box-shadow: $border-b-1px ($color);
}
@mixin border-b-2px($color){
    box-shadow: $border-b-2px ($color);
}*/
.page {
  padding: 3% 20px;
}

.page .col {
  padding: 20px;
}

.page .col h5 {
  margin: 10px 0;
  color: #8E8E8E;
}

.page .col-title {
  margin-bottom: 20px;
}

.page .col-title h4 {
  color: #4ABB9C;
  font-weight: 600;
}

.page .col-form {
  width: 500px;
  min-width: 500px;
  max-width: 500px;
}

@media (max-width: 768px) {
  .page .col-form {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    order: 0;
  }
}

@media (max-width: 768px) {
  .page .col-text {
    order: 3;
  }
}

.page .text p {
  margin-bottom: 5px;
  line-height: 1.2;
}

@media (max-width: 767px) {
  .page.support-wrap, .page.signup-wrap, .page.pricing {
    padding: 0;
  }
}

.page.support-wrap .container, .page.signup-wrap .container, .page.pricing .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

@media (max-width: 768px) {
  .page.support-wrap .container, .page.signup-wrap .container, .page.pricing .container {
    flex-direction: column;
    box-shadow: none;
  }
}

.page-title {
  margin-bottom: 20px;
}

.signup-wrap,
.support-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%;
  height: auto;
  margin: auto;
}

.signup-wrap .content,
.support-wrap .content {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .signup-wrap .content,
  .support-wrap .content {
    display: block;
    border-radius: 0;
  }
}

.signup-wrap .content .text p,
.support-wrap .content .text p {
  margin-bottom: 10px;
}

.signup-wrap .content .text button,
.support-wrap .content .text button {
  flex-basis: 100%;
  margin-top: 20px;
}

.signup-wrap .contact,
.support-wrap .contact {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .signup-wrap .contact,
  .support-wrap .contact {
    margin-top: 0;
    padding-top: 0;
  }
}

/*=-=-=-=--=-=-
| support page |
-=-=-=-=-=-=-=-*/
.qnas h5 {
  margin-top: 20px;
}

.qna-wrap {
  margin-bottom: 10px;
  transition: .2s ease;
}

.qna-wrap:last-child .qna-content {
  border: 0;
}

.qna-title,
.qna-content {
  position: relative;
  padding-left: 20px;
  font-weight: 500;
  font-weight: 700;
}

.qna-title:before, .qna-title:after,
.qna-content:before,
.qna-content:after {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
}

.qna-title:before,
.qna-content:before {
  left: 0;
  transition: .15s ease;
  line-height: 1;
  font-weight: 700;
}

.qna-title {
  font-size: 14px;
  margin: 15px 0 0;
  cursor: pointer;
}

.qna-title:before {
  content: 'Q';
}

.qna-content {
  padding: 10px 10px 10px 20px;
  border-bottom: 1px solid #b9c8d0;
  font-size: 13px;
  font-weight: 400;
  transition: .2s;
}

.qna-content:before {
  content: 'A';
}

.contact p {
  margin: 5px 0;
}

.contact p span {
  font-weight: bold;
}

.contact p a {
  color: #53D0A0;
  text-decoration: underline;
}

.contact p:last-child {
  margin-bottom: 0;
}

.moneyback {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 20px 0 0;
  padding: 16px;
  border-radius: 4px;
  background: #fff;
  color: #000;
}

.moneyback h3 {
  margin-top: 0 !important;
}

.moneyback p {
  font-size: 15px;
}

.moneyback figure {
  width: 120px;
  min-width: 120px;
  max-width: 120px;
  margin-right: 20px;
}

@media (max-width: 768px) {
  .moneyback figure {
    width: 100px;
    min-width: 100px;
    max-width: 100px;
  }
}

.support-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-top: 30px;
}

.support-icons .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 10px 20px 0px;
}

.support-icons figure {
  position: relative;
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.support-icons p span {
  font-weight: bold;
}

/*=-=-=-=--=-=-
| sign-up page |
-=-=-=-=-=-=-=-*/
.signup-wrap .container {
  display: block;
}

.signup-wrap .container > .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

@media (max-width: 768px) {
  .signup-wrap .container > .content {
    flex-direction: column;
  }
}

.signup-wrap .col {
  -webkit-box-flex: 1 1 50%;
  -webkit-flex: 1 1 50%;
  -ms-flex: 1 1 50%;
  flex: 1 1 50%;
}

@media (max-width: 768px) {
  .signup-wrap .col {
    -webkit-box-flex: 1 1 100%;
    -webkit-flex: 1 1 100%;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }
}

.signup-wrap .col-text ul {
  margin: 20px 0;
}

.signup-wrap .col-text li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 5px;
}

.signup-wrap .col-text li:before {
  content: "check";
  font-family: 'Material Icons';
  text-transform: none;
  line-height: 1;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  z-index: 1;
  position: relative;
  margin-right: 5px;
  font-size: 150%;
  font-weight: bold;
  color: #4ABB9C;
}

.signup-wrap .col-text li span {
  font-weight: bold;
}

/*PRICES*/
.price-wrap .text {
  text-align: center;
  margin-bottom: 50px;
}

.price-wrap .text h4 {
  margin-bottom: 30px;
}

.price-wrap .prices {
  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;
  align-items: stretch;
}

@media (max-width: 1024px) {
  .price-wrap .prices {
    flex-wrap: wrap;
  }
}

.price-wrap .price-box {
  width: calc(100% / 4 - 2rem);
  margin: 0 10px;
  background: #fff;
  border-radius: 8px;
  text-align: center;
}

@media (max-width: 1024px) {
  .price-wrap .price-box {
    width: calc(100% / 2 - 2rem);
    margin: 10px auto;
  }
}

@media (max-width: 767px) {
  .price-wrap .price-box {
    width: 100%;
  }
}

.price-wrap .price-box:not(.featured) .price-title {
  padding-top: 19px;
}

.price-wrap .price-title {
  flex-direction: column;
  margin-bottom: 20px;
}

.price-wrap .price-title span {
  position: absolute;
  top: -20px;
  left: 50%;
  width: 70%;
  transform: translateX(-50%);
  background: #fff;
  text-align: center;
  color: #53D0A0;
  padding: 10px 20px;
  border-radius: 0;
  border-top: 1px solid #F6F8F9;
  border-bottom: 1px solid #F6F8F9;
}

.price-wrap .price-text {
  flex-direction: column;
}

@media (max-width: 768px) {
  .price-wrap .price-text {
    display: flex;
  }
}

.price-wrap .price-text button {
  display: block;
}

.price-wrap .price-num {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

@media (max-width: 768px) {
  .price-wrap .price-num {
    margin: initial;
  }
}

.price-wrap ul {
  flex-direction: column;
  align-items: flex-start;
  margin: 10px 0;
}

@media (max-width: 768px) {
  .price-wrap ul {
    justify-content: center;
  }
}

.price-wrap ul li {
  margin-bottom: 10px;
}

.price-wrap ul li:last-of-type {
  margin-bottom: 0;
}

.price-wrap button {
  margin: 20px auto 0 !important;
}

.price-box {
  position: relative;
  background: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  margin-bottom: 20px;
  padding: 20px;
  transition: .2s ease;
}

@media (max-width: 768px) {
  .price-box {
    margin-bottom: 10px;
    padding: 10px;
  }
}

.price-box:last-child {
  margin-bottom: 0;
}

.price-box.featured {
  box-shadow: 0 0 0 1px #f6f8f9, 0 0 10px 0 rgba(0, 0, 0, 0.3);
}

.price-box .content {
  width: 100%;
  margin: 0;
}

.price-box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .price-box ul {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

.price-box li {
  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-right: 10px;
  font-size: 15px;
  white-space: nowrap;
}

.price-box li:before {
  content: "navigate_next";
  font-family: 'Material Icons';
  text-transform: none;
  line-height: 1;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  z-index: 1;
  position: relative;
  font-size: 140%;
  font-weight: 700;
  color: #4ABB9C;
}

@media (max-width: 768px) {
  .price-box li {
    margin-right: 0;
  }
}

.price-box button {
  position: relative;
  margin: 30px auto;
  padding: 17px 27px;
  border-radius: calc(15px / 1.5)/calc(15px * 3);
  border: 0;
  outline: 0;
  background: linear-gradient(#4ABB9C, #53D0A0);
  font-size: calc(var(--base-font-s) * 1.7);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: #fff;
  width: 90%;
  min-width: 300px;
  max-width: 350px;
  text-shadow: 1px 1px 3px rgba(44, 46, 48, 0.5);
  cursor: pointer;
  min-width: auto;
  max-width: auto;
  margin-left: auto;
  font-size: 14px;
  white-space: nowrap;
  background-color: #8E8E8E;
}

.price-box button:hover {
  background: #4ABB9C;
}

header .price-box button {
  width: auto;
  min-width: auto;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  padding: 7px 17px;
}

header .price-box button:hover {
  color: #fff;
}

.home .price-box button {
  font-size: 33px;
  padding: 27px 27px;
}

@media (max-width: 768px) {
  .home .price-box button {
    width: 70%;
  }
}

.cat-bg .price-box button {
  background: transparent;
  border: 1px solid white;
}

.cat-bg .price-box button:hover {
  background: #4ABB9C;
  color: #2C2E30;
  border: 1px solid #53D0A0;
}

.price-box button:hover {
  background-color: #4ABB9C;
}

.price-box button.featured {
  background-color: #53D0A0;
}

.price-box button.featured:hover {
  background: #4ABB9C;
}

.price-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
}

.price-title h4 {
  font-size: 23px;
}

@media (max-width: 768px) {
  .price-title h4 {
    font-size: 21px;
  }
}

.price-title span {
  color: #2C2E30;
}

@media (max-width: 768px) {
  .price-title {
    margin-bottom: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #4ABB9C;
  }
}

.price-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .price-list {
    display: block;
  }
}

.price-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 768px) {
  .price-text {
    display: block;
    padding-bottom: 10px;
    border-bottom: 1px solid #4ABB9C;
  }
}

.price-text button {
  display: none;
}

p.price-num {
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid #4ABB9C;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}

p.price-num label {
  font-weight: 600;
}

p.price-num span {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -1px;
}

@media (max-width: 768px) {
  p.price-num {
    margin: auto;
    padding: 10px;
    border-right: 0;
    text-align: right;
  }
}

p.desc {
  margin-top: 20px;
  font-size: 14px;
  color: #666;
}

@media (max-width: 767px) {
  p.desc {
    font-size: 13px;
  }
}

.downloads {
  margin: 0 auto;
  background-color: #1a1a1a;
  flex-direction: column;
}

.downloads h1 {
  padding-top: 20px;
  letter-spacing: 2px;
  font-size: 24px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}

@media (max-width: 767px) {
  .downloads h1 {
    letter-spacing: 0px;
    font-size: 22px;
    padding: 10px 40px;
  }
}

.downloads .nameTitle {
  padding-top: 5px;
  color: #fff;
}

@media (max-width: 767px) {
  .downloads .nameTitle {
    font-size: 12px;
  }
}

.downloads .download-wrapper {
  margin: 0 auto;
  padding: 60px 80px 50px;
  max-width: 1600px;
}

.downloads .download-wrapper button {
  display: flex;
  padding: 10px 30px;
  background: #333;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-weight: 500;
  font-size: 14px;
}

.downloads .download-wrapper button:hover {
  background: #000;
  color: #4ABB9C;
}

.downloads .download-wrapper h2 {
  padding-bottom: 20px;
  text-align: center;
  letter-spacing: 1px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: 16px 0;
  grid-gap: 35px;
  font-size: 20px;
  font-weight: 700;
  color: #008cff;
}

@media (max-width: 767px) {
  .downloads .download-wrapper h2 {
    font-size: 18px;
  }
}

.downloads .download-wrapper h2:after, .downloads .download-wrapper h2:before {
  content: " ";
  display: block;
  border-bottom: 1px solid #008cff;
}

@media (max-width: 767px) {
  .downloads .download-wrapper {
    padding: 20px 0px 30px;
  }
}

.downloads .icon {
  position: relative;
}

.downloads .icon figure {
  max-width: 120px;
  margin: 0 auto;
}

.downloads .icon .content {
  display: none;
  position: absolute;
  top: 0px;
  left: 0px;
  border-radius: 23px;
  width: 100%;
}

@media (max-width: 1024px) {
  .downloads .icon .content {
    border-radius: 10px;
    padding: 5px 0px 8px;
    position: relative !important;
  }
}

.downloads .icon:hover > .content {
  display: block;
  opacity: 1;
  transition: 0.5s;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 2s linear;
  transform: translate(0);
}

.downloads .content {
  padding: 15px 0px;
  border-radius: 4px;
  transition: background-color 0.5s ease;
  transition: 0.5s;
  border-radius: 8px;
  flex: 1;
  height: 100%;
}

.downloads ul {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}

.downloads .material-icons {
  font-size: 20px;
}

@media (max-width: 768px) {
  .downloads .material-icons {
    font-size: 15px;
    padding-inline-start: 13px;
  }
}

.downloads .pc a, .downloads .mac a, .downloads .other a, .downloads .windows a {
  padding: 1px 0px;
  margin: 1px 9px 0px;
  background-color: #000;
  border-radius: 6px;
  border: 2px solid #2a2b33;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-inline-start: 30px;
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
}

@media (max-width: 1920px) {
  .downloads .pc a, .downloads .mac a, .downloads .other a, .downloads .windows a {
    padding-inline-start: 20px;
  }
}

@media (max-width: 768px) {
  .downloads .pc a, .downloads .mac a, .downloads .other a, .downloads .windows a {
    margin: 1px 8px 0px;
    padding-inline-start: 0px;
    padding: 0px 0px;
    font-size: 9px;
    line-height: 15px;
  }
}

.downloads .pc a:hover, .downloads .mac a:hover, .downloads .other a:hover, .downloads .windows a:hover {
  background: #333;
  color: #4ABB9C;
}

.downloads .other a {
  display: block;
  padding-inline-start: 0px;
  text-align: center;
}

.downloads .windows a .material-icons {
  font-size: 12px;
}

.downloads .download-wrap {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(6, 1fr);
}

@media (max-width: 1920px) {
  .downloads .download-wrap {
    grid-template-columns: repeat(8, 1fr);
  }
}

@media (max-width: 1366px) {
  .downloads .download-wrap {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 1024px) {
  .downloads .download-wrap {
    grid-template-columns: repeat(4, 1fr);
    padding: 0px 10px;
  }
}

@media (max-width: 767px) {
  .downloads .download-wrap {
    grid-template-columns: repeat(3, 1fr);
    padding: 0px 10px;
  }
}

.downloads .download-icons {
  text-align: center;
  color: #7f7f7f;
  cursor: pointer;
}

:root {
  --page-w: 1366px;
  --base-font-s: 14px;
}

@media (max-width: 1024px) {
  :root {
    --page-w: 1200px;
  }
}

@media (max-width: 768px) {
  :root {
    --page-w: 100%;
    --base-font-s: 14px;
  }
}

/*@mixin border-1px($color){
    box-shadow: $border-1px ($color);
}
@mixin border-b-1px($color){
    box-shadow: $border-b-1px ($color);
}
@mixin border-b-2px($color){
    box-shadow: $border-b-2px ($color);
}*/
/*.wrapper-iqtest, .wrapper-workout, .wrapper-pcprotect {
  .page-wrap {
    flex-grow: initial;
  }
}*/
.iqtest {
  margin-bottom: 50px;
}

.slideShow {
  width: 100%;
  max-width: 1000px;
  margin: auto;
}

.slideShow .timer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  color: #fff;
  background-color: #024065;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 7px;
}

.slideShow .timer-wrap #timer {
  font-weight: 800;
}

.slideShow .questionaire {
  background-color: #fff;
  margin-bottom: 30px;
}

.slideShow .questionaire .slide.slide-submit {
  min-height: 300px;
  display: flex;
  align-content: center;
  justify-content: center;
}

.slideShow .questionaire .question-wrap {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
}

@media (max-width: 767px) {
  .slideShow .questionaire .question-wrap {
    flex-direction: column;
  }
}

.slideShow .questionaire .question, .slideShow .questionaire .answers {
  flex: 1;
  flex-direction: column;
  border: 1px solid #024065;
  border-radius: 10px;
  padding: 20px 40px 40px;
}

@media (max-width: 767px) {
  .slideShow .questionaire .question, .slideShow .questionaire .answers {
    padding: 10px 20px 20px;
  }
}

.slideShow .questionaire h4 {
  font-size: 21px;
  font-weight: 700;
  line-height: 2;
  color: #024065;
  border-bottom: 2px solid #024065;
  margin: 0 0 40px;
}

@media (max-width: 767px) {
  .slideShow .questionaire h4 {
    font-size: 15px;
    margin: 0 0 15px;
  }
}

.slideShow .questionaire .question figure {
  width: 70%;
  max-width: 330px;
  margin: auto;
}

@media (max-width: 767px) {
  .slideShow .questionaire .question figure {
    max-width: 180px;
  }
}

@media (max-width: 767px) {
  .slideShow .questionaire .answers {
    padding-bottom: 5px;
  }
}

.slideShow .questionaire .answers-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-inline-start: 40px;
}

.slideShow .questionaire .answers-list li {
  flex: 50%;
  list-style-type: upper-alpha;
}

.slideShow .questionaire .answers-list li figure {
  width: 90px;
  padding: 10px;
  cursor: pointer;
}

.slideShow .questionaire .answers-list li::marker {
  font-size: 21px;
  color: #7e7e7e;
  font-weight: 700;
}

.slideShow .questionaire .answers-list li:hover figure {
  background-color: rgba(126, 126, 126, 0.2);
}

@media (max-width: 767px) {
  .slideShow .questionaire .answers-list li {
    flex: 33%;
  }
  .slideShow .questionaire .answers-list li figure {
    width: 50px;
    padding: 5px 5px 15px 0;
  }
  .slideShow .questionaire .answers-list li::marker {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .slideShow .questionaire {
    margin-bottom: 15px;
  }
}

.slideShow .questionaire-nav {
  background-color: rgba(126, 126, 126, 0.5);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 5px;
}

.slideShow .questionaire-nav .questions-list {
  text-align: center;
}

.slideShow .questionaire-nav button {
  width: auto;
  min-width: auto;
  max-width: auto;
  background: #7e7e7e;
  padding: 7px;
  margin: 3px;
  font-size: 14px;
}

.slideShow .questionaire-nav button:hover {
  background: rgba(126, 126, 126, 0.5);
}

.slideShow .questionaire-nav button:disabled {
  pointer-events: none;
  opacity: .5;
}

.slideShow .questionaire-nav .nav-button.current-nav {
  background: #024065;
}

@media (max-width: 767px) {
  .slideShow .questionaire-nav {
    padding: 10px 20px;
  }
  .slideShow .questionaire-nav .questions-list {
    display: none;
  }
}

#results-section {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 7% 0;
}

@media (max-width: 767px) {
  #results-section {
    padding-bottom: 70px;
  }
}

#submitDiv {
  display: none;
}

.muted {
  pointer-events: none;
  opacity: .3;
}

.highlighted {
  display: flex;
  align-items: center;
  justify-content: center;
}

.roundLoader {
  width: 150px;
  height: 150px;
  margin: 20px auto 30px;
  border: 13px solid #EAF0F6;
  border-top: 13px solid #4ABB9C;
  border-radius: 50%;
  animation: spin 3s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loading-wrap {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  width: 100%;
}

.loading-text {
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
}

.loading-text span {
  position: absolute;
  left: auto;
  top: 0;
  opacity: 0;
  animation: fadeInAndOut 3s ease-in-out forwards;
}

.loading-text span:nth-child(2) {
  animation-delay: 3s;
  /* Delay the second sentence */
}

.loading-text span:nth-child(3) {
  animation-delay: 6s;
  /* Delay the third sentence */
}

@keyframes fadeInAndOut {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.results-section-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.divLoader {
  width: 100%;
  animation: divLoaderAnim 9s linear forwards;
}

.divScore {
  visibility: hidden;
  height: 0;
  animation: divScoreAnim 1s linear 9s forwards;
  text-align: center;
}

.divScore h3 {
  color: #4ABB9C;
  font-weight: 700;
}

.divScore p {
  font-size: 17px;
}

.divScore h2 {
  margin-top: 60px;
}

.divScore h2 strong {
  background-color: #4ABB9C;
  color: #fff;
  padding: 5px 13px;
  border-radius: 13px;
}

@keyframes divLoaderAnim {
  0% {
    opacity: 1;
  }
  99% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
  }
}

@keyframes divScoreAnim {
  0% {
    visibility: hidden;
    opacity: 0;
  }
  100% {
    visibility: visible;
    opacity: 1;
    height: 100%;
  }
}

.home-wrkt {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 50px;
}

.home-wrkt > div {
  cursor: pointer;
  text-align: center;
}

.home-wrkt > div .workout-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: auto;
  overflow: hidden;
  border: 7px solid transparent;
  outline: 3px solid transparent;
}

.home-wrkt > div h5 {
  margin: 10px 0 0;
}

.home-wrkt > div:hover .workout-image {
  border: 7px solid transparent;
  outline: 3px solid #4ABB9C;
}

.home-wrkt > div:hover h5 {
  font-weight: 700;
}

@media (max-width: 768px) {
  .home-wrkt > div .workout-image {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 767px) {
  .home-wrkt {
    gap: 30px;
  }
  .home-wrkt > div .workout-image {
    width: 70px;
    height: 70px;
  }
  .home-wrkt > div h5 {
    font-size: 17px;
  }
}

.workout-page {
  padding: 3% 0;
}

.workout-page h4.level {
  text-align: center;
  width: fit-content;
  margin: 40px auto 30px;
  text-transform: uppercase;
  border-bottom: 5px solid #4ABB9C;
}

.workout-page .thumbs-block {
  display: flex;
  flex-wrap: wrap;
}

.workout-page .thumbs-block .thumb-wrap {
  flex: 20%;
  max-width: 20%;
  padding: 0 20px 20px;
  cursor: pointer;
}

.workout-page .thumbs-block .thumb-wrap .thumb {
  margin-bottom: 0;
}

.workout-page .thumbs-block .thumb-wrap .movie-title h5 {
  margin: 7px 0 0;
  font-size: 17px;
}

@media (max-width: 768px) {
  .workout-page .thumbs-block .thumb-wrap {
    flex: 25%;
    max-width: 25%;
  }
}

@media (max-width: 767px) {
  .workout-page .thumbs-block .thumb-wrap {
    flex: 50%;
    max-width: 50%;
  }
}

.video-player {
  width: 100%;
  height: auto;
  margin: 50px auto;
}

.pcprotect-page {
  padding: 3% 0;
}

.pcprotect-page .container {
  display: flex;
  justify-content: center;
  gap: 50px;
}

.pcprotect-page .container .col figure {
  width: 90%;
  max-width: 450px;
  margin: 50px auto;
}

.pcprotect-page .container .col a.button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px 0 30px;
}

.pcprotect-page .container .col hr {
  width: 100%;
  margin: 40px 0;
}

.pcprotect-page .container .col .instrutions li {
  display: flex;
  align-items: center;
  padding: 7px 0;
  font-size: 15px;
}

.pcprotect-page .container .col .instrutions li img {
  width: 37px;
  margin-inline-end: 10px;
}

.pcprotect-page .container .col .trial-mode {
  margin-top: 70px;
  max-width: 400px;
}

@media (max-width: 768px) {
  .pcprotect-page .container {
    flex-direction: column;
    gap: 0;
  }
  .pcprotect-page .container .col {
    text-align: center;
  }
  .pcprotect-page .container .col h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .pcprotect-page .container .col figure {
    margin: 0 auto;
  }
  .pcprotect-page .container .col a.button {
    margin: 30px auto 0;
  }
  .pcprotect-page .container .col .trial-mode {
    margin-top: 50px;
    max-width: 100%;
  }
  .pcprotect-page .container .col .instrutions {
    width: 80%;
    max-width: 470px;
    margin: auto;
    text-align: start;
  }
}

/* Helpers */
:root {
  --page-w: 1366px;
  --base-font-s: 14px;
}

@media (max-width: 1024px) {
  :root {
    --page-w: 1200px;
  }
}

@media (max-width: 768px) {
  :root {
    --page-w: 100%;
    --base-font-s: 14px;
  }
}

/*@mixin border-1px($color){
    box-shadow: $border-1px ($color);
}
@mixin border-b-1px($color){
    box-shadow: $border-b-1px ($color);
}
@mixin border-b-2px($color){
    box-shadow: $border-b-2px ($color);
}*/
/*============== 
|   helpers    |
===============*/
.flex_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.flex_wrap > * {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media (max-width: 768px) {
  .flex_wrap {
    flex-direction: column;
  }
}

.row {
  width: 100%;
  margin: 0;
}

.card {
  position: relative;
  background: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

:root {
  --page-w: 1366px;
  --base-font-s: 14px;
}

@media (max-width: 1024px) {
  :root {
    --page-w: 1200px;
  }
}

@media (max-width: 768px) {
  :root {
    --page-w: 100%;
    --base-font-s: 14px;
  }
}

/*@mixin border-1px($color){
    box-shadow: $border-1px ($color);
}
@mixin border-b-1px($color){
    box-shadow: $border-b-1px ($color);
}
@mixin border-b-2px($color){
    box-shadow: $border-b-2px ($color);
}*/
.hide {
  display: none !important;
}

.hide-desktop {
  display: none;
}

@media (max-width: 768px) {
  .hide-desktop {
    display: block;
  }
}

@media (max-width: 1024px) {
  .hide-tablet-h {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .hide-tablet {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .hide-tablet {
    display: block !important;
  }
}

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

.noSelect {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
