@import"https://fonts.googleapis.com/css?family=Mada:400,600,700,900&display=swap";

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

html,
body {
  height: 100%;
  background-color: #fff;
  color: #686868;
  font-size: 14px;
  font-weight: 400
}

input,
select,
textarea {
  background: transparent;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border: inherit;
  outline: 0;
  font-family: Raleway, sans-serif
}

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

html,
body,
input,
select,
textarea,
button,
.button {
  font-family: Raleway, sans-serif
}

img {
  display: block;
  width: 100%;
  max-width: 100%
}

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

.rtl {
  direction: rtl;
  text-align: right;
  font-family: Mada, Open Sans, Helvetica, Arial, sans-serif
}

.rtl .form_group .input label {
  left: auto !important;
  right: 10px
}

.rtl input,
.rtl input[type=text],
.rtl input[type=email],
.rtl input[type=password],
.rtl input[type=tel] {
  text-align: right
}

.rtl p,
.rtl li {
  font-size: 110%
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: #424c67
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li {
  line-height: 1.2
}

h1 {
  font-size: 54px
}

h2 {
  font-size: 42px
}

h3 {
  font-size: 33px
}

.lang-jp h3 {
  font-size: 29px
}

h4 {
  font-size: 25px
}

h5 {
  font-size: 20px
}

h6 {
  font-size: 16px
}

@media (max-width: 1200px) {
  h1 {
    font-size: 50px
  }

  h2 {
    font-size: 38px
  }

  h3 {
    font-size: 33px
  }

  h6 {
    font-size: 14px
  }
}

@media (max-width: 1024px) {
  h1 {
    font-size: 44px
  }

  h2 {
    font-size: 34px
  }

  h6 {
    font-size: 14px
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 40px
  }

  h2 {
    font-size: 32px
  }
}

li {
  position: relative;
  list-style-type: none
}

.outer__button { 
  background-color: #0074d4;
  font-size: 30px;
  color: #fff;
  font-weight: 700;
  border: 0;
  padding: 30px 15px;
  margin: 20px 0;
  border-radius: 7px;
  width: 90%;
  max-width: 400px;
  min-width: 350px;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
}

/* LEFT TO RIGHT */
.button__left-right {
  border: 2px solid #0074d4;
  background: linear-gradient(to right, #0074d4 50%, #fff 50%);
  background-size: 200% 100%;
  background-position: right;
  transition: all 1s cubic-bezier(0.77, 0, 0.175, 1);
  animation: gradient 1.2s normal forwards cubic-bezier(0.77, 0, 0.175, 1);
  animation-delay: .2s;
}

@keyframes gradient {
  100% {
    background-color: #0074d4;
    background-position: left;
    color: #fff;
  }
}

.button__left-right:hover {
  background-color: #0074d4;
  background-position: left;
  color: #fff;
}

button,
.button {
  position: relative;
  display: block;
  border: 0;
  outline: 0;
  padding: 16px 20px;
  border-radius: 6px;
  line-height: 1;
  text-align: center;
  transition: background .2s ease;
  cursor: pointer
}

figure {
  position: relative
}

.container {
  max-width: 1024px;
  margin: auto
}

@media (max-width: 768px) {
  .container {
    width: calc(100% - 40px)
  }
}

.hide-desktop {
  display: none
}

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

@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
  }
}

.registration_wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  color: #f7f9fa
}

@media (max-width: 767px) {
  .registration_wrap {
    height: auto;
    overflow-y: auto;
    padding: 20px
  }
}

.registration_wrap .container {
  position: relative;
  z-index: 1;
  min-width: 700px;
  padding: 0;
  border-radius: 8px;
  /* background: #17556B; */
  background: #f9f9f9;
  color: #6f6f6f;
  overflow: hidden
}

@media (max-width: 767px) {
  .registration_wrap .container {
    min-width: auto;
    width: 100%
  }

  .registration_wrap .container.embedded-billing_wrap {
    padding: 0;
    box-shadow: none;
    border-radius: 0
  }
}

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

.registration_wrap .container .col {
  padding: 30px 15px
}

.registration_wrap .container .col:first-child {
  align-self: flex-start
}

.registration_wrap .container .col:last-child {
  background: #fff;
  width: 100%
}

.registration_wrap .container .col:last-child h5 {
  color: #424c67;
  font-weight: 700
}

@media (max-width: 767px) {
  .registration_wrap .container .col {
    padding: 15px
  }

  .registration_wrap .container .col:first-child {
    align-self: center
  }
}

.registration_wrap .container h5 {
  width: 100%;
  margin: 10px auto;
  padding-bottom: 0;
  text-align: center;
  /* color: #f7f9fa; */
  color: #6f6f6f;
  font-size: 18px;
  font-weight: 300
}

.registration_wrap .container h5 strong {
  font-size: 27px;
  font-weight: 700
}

.lang-fi .registration_wrap .container h5 strong {
  font-size: 21px
}

.lang-sk .registration_wrap .container h5 strong,
.lang-pl .registration_wrap .container h5 strong {
  font-size: 23px
}

@media (max-width: 768px) {

  .lang-de .registration_wrap .container h5 strong,
  .lang-my .registration_wrap .container h5 strong {
    font-size: 24px
  }
}

@media (max-width: 768px) {

  .lang-pl .registration_wrap .container h5 strong,
  .lang-sk .registration_wrap .container h5 strong {
    font-size: 23px
  }
}

.registration_wrap .container .stepz {
  width: 100%;
  max-width: 300px;
  text-align: start;
  padding: 40px 10px 0
}

.registration_wrap .container .stepz li {
  display: flex;
  align-items: flex-start;
  padding: 13px 0;
  /* color: #bcc3d6; */
  color: #6f6f6f;
  line-height: 1.3;
  overflow: hidden;
  margin-top: -4px
}

.registration_wrap .container .stepz li:first-child {
  font-weight: 700;
}

.circle {
  /* background: #fff; */
  background: #0074d4;
  color: #fff;
}

.circle:after {
  display: none
}

.lang-pl .registration_wrap .container .stepz li {
  font-size: 13px
}

@media (max-width: 768px) {

  .lang-de .registration_wrap .container .stepz li,
  .lang-es .registration_wrap .container .stepz li,
  .lang-fr .registration_wrap .container .stepz li,
  .lang-it .registration_wrap .container .stepz li,
  .lang-pt .registration_wrap .container .stepz li,
  .lang-pl .registration_wrap .container .stepz li {
    font-size: 12px
  }
}

@media (max-width: 768px) {
  .lang-is .registration_wrap .container .stepz li {
    font-size: 13px
  }
}

@media (max-width: 768px) {
  .lang-bg .registration_wrap .container .stepz li {
    font-size: 11.5px
  }
}

@media (max-width: 768px) {
  .lang-pl .registration_wrap .container .stepz li {
    font-size: 11px
  }
}

.circle {
  position: relative;
  width: 31px;
  height: 31px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  /* color: #fff; */
  color: #6f6f6f;
  font-size: 18px;
  font-weight: 700;
  /* background-color: #24728e; */
  background-color: #fff;
  box-shadow: 0 0 0 1px #bbb inset;
  border-radius: 50%;
  margin-inline-end: 10px;
  padding: 13px;
  margin-top: -9px;
  z-index: 2;
  font-family: Roboto, sans-serif
}

.circle:after {
  content: "";
  position: absolute;
  top: 31px;
  left: 15px;
  width: 1px;
  height: 100%;
  background-color: #24728e;
  z-index: 1
}

@media (max-width: 767px) {
  .registration_wrap .container .stepz {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    padding-top: 17px
  }

  .registration_wrap .container .stepz li {
    font-size: 13px
  }
}

.registration_wrap .container .form-text {
  text-align: center;
  color: #818181;
  font-size: 10px
}

.registration_wrap .container button {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  /* font-weight: 400; */
  font-weight: 700;
  height: 55px;
  padding: 0
}

.form {
  position: relative
}

.form .form-title {
  margin-bottom: 20px;
  text-align: center
}

.form button {
  width: 100%;
  min-width: auto
}

.lead-form {
  max-width: 400px;
  width: 100%;
  margin: 10px auto 0;
}

.form_group {
  display: block;
  height: 50px;
  margin-bottom: 20px;
  position: relative;
}

.form_group .input {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

.form_group .input label {
  display: flex;
  align-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  left: 10px !important;
  font-size: 16px;
  color: #818181;
  transition: .2s ease;
}

.form_group .input label:before {
  content: "email";
  font-family: Material Icons;
  z-index: 1;
  font-size: 18px;
  margin-inline-end: 10px
}

.form_group .input input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 0 35px;
  box-shadow: inset 0 0 0 1px #818181;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 300;
  transition: .2s ease;
}

.form_group .input input::placeholder {
	color: #6f6f6f;
	opacity: .9;
}

.form_group .input input::-webkit-input-placeholder {
	color: #6f6f6f;
	opacity: .9;
}

.form_group .input input::-moz-placeholder {
	color: #6f6f6f;
	opacity: .9;
}

.form_group .input input:-ms-input-placeholder {
	color: #6f6f6f;
	opacity: .9;
}

.form_group .input input::-ms-input-placeholder {
	color: #6f6f6f;
	opacity: .9;
}

.form_group.active label {
  width: auto;
  z-index: 3;
  transform: none;
  top: -12px;
  padding: 3px;
  background-color: #fff;
  font-size: 12px;
  font-weight: 500;
  color: #424c67
}

.form_group.active input {
  box-shadow: inset 0 0 0 2px #686868
}

.form_group .input-error-msg {
  font-size: 12px;
  text-align: end;
  color: red
}

.form_group.form-password .input label:before {
  content: "lock"
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
   -webkit-transition-delay: 9999s;
   transition-delay: 9999s;
}

.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;
  width: 100px;
  height: 100px
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

span #overlay {
  z-index: 1002
}

span .modal {
  z-index: 1003
}

.modal {
  position: fixed;
  bottom: 0;
  width: 100%;
  max-width: 100vw;
  height: 80dvh;
  min-height: -webkit-fill-available;
  background: white;
  display: none;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: space-between;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 1002;
}

.modal-content {
  height: 70dvh;
  max-height: 90dvh;
  position: fixed;
  top: 5dvh;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 800px;
  border-radius: 16px;
  background: white;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
}

.modal-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 20px;
}

.close-modal {
  position: absolute;
  z-index: 100;
  color: #000000;
  top: calc(env(safe-area-inset-top, 59px) + 10px);
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

.modal-footer {
  position: sticky;
  bottom: 0;
  background: white;
  padding-bottom: env(safe-area-inset-bottom, 20px);
}

input:focus {
  scroll-margin-bottom: 150px;
}

.modal p {
  font-weight: 500
}

.modal button {
  margin: 20px auto 0;
  padding: 10px 30px;
  font-weight: 400
}

.modal::-webkit-scrollbar {
  width: 5px
}

.modal::-webkit-scrollbar-track {
  background: #ccc;
  border-radius: 10px
}

.modal::-webkit-scrollbar-thumb {
  background: #999999;
  border-radius: 10px
}

.modal::-webkit-scrollbar-thumb:hover {
  background: gray
}

.modal-legal {
  background: #fff;
  width: 90%
}

.modal-legal * {
  cursor: text
}

.modal-legal .modal-close {
  color: #686868 !important
}

.modal-legal .modal-content {
  text-align: left;
  font-family: Raleway, sans-serif;
  color: #686868
}

.modal-legal .modal-content * {
  cursor: text
}

.modal-legal .modal-content h4 {
  font-size: 23px
}

.modal-legal .modal-content h5 {
  font-size: 21px
}

.modal-legal .modal-content h6 {
  font-size: 19px
}

.modal-legal .modal-content h4,
.modal-legal .modal-content h5,
.modal-legal .modal-content h6 {
  margin: 20px 0 0
}

.modal-legal .modal-content p {
  color: #686868;
  text-align: start;
  font-size: 13px;
  line-height: 1.2;
  padding: 13px 0
}

.modal-legal .modal-content ul,
.modal-legal .modal-content ol {
  margin-inline-start: 30px
}

.modal-legal .modal-content ul li,
.modal-legal .modal-content ol li {
  padding: 5px 0
}

.modal-legal .modal-content ul li:before,
.modal-legal .modal-content ol li:before {
  display: none
}

.modal-legal .modal-content ul li {
  list-style-type: disc
}

.modal-legal .modal-content ol li {
  list-style-type: decimal
}

.modal-legal .modal-content iframe {
  border: none;
  width: 100%;
  height: 100%
}

.modal-legal::-webkit-scrollbar {
  width: 5px
}

.modal-legal::-webkit-scrollbar-track {
  background: #ccc;
  border-radius: 10px
}

.modal-legal::-webkit-scrollbar-thumb {
  background: #999999;
  border-radius: 10px
}

.modal-legal::-webkit-scrollbar-thumb:hover {
  background: gray
}

@media (max-width: 1024px) {
  .modal-legal {
    max-width: 800px
  }
}

@media (max-width: 768px) {
  .modal-legal {
    max-width: 600px
  }
}

.legal-links {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  color: #818181
}

.legal-links li {
  margin-inline-end: 10px;
  font-size: 12px;
  cursor: pointer
}

.legal-links li:last-child {
  margin-inline-end: 0
}

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

.cols_wrap .col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center
}

button,
.button {
  background-color: #0074d4;
  font-size: 30px;
  color: #fff;
  font-weight: 700;
  border: 0;
  padding: 30px 15px;
  margin: 20px 0;
  border-radius: 7px;
  width: 90%;
  min-width: 350px;
  max-width: 400px;
  cursor: pointer
}

@media (max-width: 767px) {
  button,
  .button {
    width: 100%;
    min-width: auto;
    max-width: 350px!important;
  }
}

main {
  display: flex;
  flex-direction: column;
  background: #f0f4f6;
  background-image: url(images/background.webp);
  background-repeat: no-repeat;
  background-size: 2700px;
  background-position: center top
}

@media (max-width: 768px) {
  main {
    min-height: 100vh;
    /* background-image: url(images/background-m.webp) */
  }
}

header {
  padding: 20px
}

@media (max-width: 767px) {
  header {
    background-image: none;
    background: linear-gradient(#E0E8ED, #fff);
    padding: 10px 0
  }
}

header .container {
  display: flex;
  justify-content: space-between
}

header .logo {
  width: 133px
}

.nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  cursor: pointer
}

@media (max-width: 768px) {
  .nav:first-child {
    display: none
  }
}

/* .nav:last-child {
  display: none
} */

@media (max-width: 768px) {
  .nav:last-child {
    display: flex
  }
}

.nav li {
  margin-inline-end: 30px;
  color: #818181;
  font-weight: 500
}

.nav li:last-child {
  margin-inline-end: 0
}

.button_wrap {
  flex: 1;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #ffffffb3
}

.button_wrap .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center
}

@media (max-width: 767px) {
  .button_wrap .container {
    padding: 30px 0
  }
}

.button_wrap h3 {
  padding-bottom: 55px
}

.button_wrap .connection {
  margin-top: 13px
}

.button_wrap .connection:before {
  content: "circle";
  font-family: Material Icons;
  z-index: 1;
  vertical-align: middle;
  color: #2eb03b;
  margin-inline-end: 5px;
  animation: blinker 1.3s linear infinite;
  -webkit-animation: blinker 1.3s linear infinite
}

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

.button_wrap button {
  text-transform: uppercase;
  margin: 0
}

@media (max-width: 767px) {
  .button_wrap {
    background-color: #fff;
    padding: 0
  }
}

.button_wrap.section2 {
  display: none
}

@media (max-width: 767px) {
  .button_wrap.section2 {
    display: flex
  }
}

.bottom-icons {
  padding: 70px 0 30px
}

.bottom-icons .container {
  max-width: 600px
}

.bottom-icons figure {
  width: 90px;
  height: 90px;
  background-color: #fff;
  border-radius: 17px;
  padding: 27px;
  margin: 10px;
  box-shadow: 0 0 15px -3px #424c67bf
}

.bottom-icons img {
  opacity: .5;	
}

.bottom-icons p {
  padding-top: 13px;
  text-align: center;
  color: #7d7c7c
}

@media (max-width: 1024px) {
  .bottom-icons {
    padding: 30px 0
  }
}

@media (max-width: 767px) {
  .bottom-icons {
    padding: 20px 0 40px;
    background-color: #f1f5f8
  }

  .bottom-icons .cols_wrap {
    flex-wrap: wrap
  }

  .bottom-icons .cols_wrap .col {
    flex: 50%
  }

  .bottom-icons .cols_wrap .col:nth-child(1),
  .bottom-icons .cols_wrap .col:nth-child(3) {
    border-right: 1px solid #ECECEC
  }

  .bottom-icons .cols_wrap .col:nth-child(1),
  .bottom-icons .cols_wrap .col:nth-child(2) {
    padding-bottom: 20px;
    border-bottom: 1px solid #ECECEC
  }

  .bottom-icons .cols_wrap .col:nth-child(3),
  .bottom-icons .cols_wrap .col:nth-child(4) {
    padding-top: 10px
  }

  .bottom-icons figure {
    background-color: transparent;
    width: 73px;
    height: 73px;
    padding: 13px;
    margin: 0;
    box-shadow: none
  }

  .bottom-icons p {
    padding-top: 0;
    font-size: 14px
  }
}

.img-wrapper {
  padding: 50px 0
}

.img-wrapper img {
  width: 70%;
  max-width: 500px;
  margin: auto
}

@media (max-width: 767px) {
  .img-wrapper img {
    width: 90%
  }
}

.info {
  padding: 0 0 30px;
  text-align: center
}

.info h4 {
  margin-bottom: 33px
}

.info .cols_wrap {
  align-items: stretch;
  padding: 0 20px 30px
}

.info .cols_wrap .col {
  justify-content: flex-start;
  padding: 0 20px;
  border-right: 1px solid #ebeef3
}

.info .cols_wrap .col:last-child {
  border: none
}

.info figure {
  width: 90px;
  height: auto;
  margin: 0 auto
}

.info p {
  margin-top: 19px;
  font-size: 16px;
  line-height: 1.5
}

@media (max-width: 768px) {
  .info figure {
    width: 70px
  }
}

@media (max-width: 767px) {
  .info {
    padding: 0
  }

  .info .cols_wrap {
    flex-direction: column;
    align-items: flex-start;
    padding: 0
  }

  .info .cols_wrap .col {
    border: none;
    margin-bottom: 20px;
    padding: 0;
    flex-direction: row;
    text-align: start
  }

  .info figure {
    width: 33px;
    min-width: 33px;
    margin-inline-end: 10px
  }

  .info p {
    margin-top: 0;
    font-size: 14px
  }
}

.steps {
  padding: 30px 10px;
  text-align: center
}

.steps h4 {
  margin-bottom: 30px
}

@media (max-width: 767px) {
  .steps {
    display: none
  }
}

.list-dots {
  width: auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto
}

.list-dots li {
  position: relative;
  padding: 13px 0;
  font-size: 16px;
  display: flex;
  align-items: center;
  padding-inline-start: 47px
}

.list-dots li:before {
  position: absolute;
  content: "check";
  font-family: Material Icons;
  z-index: 1;
  width: 31px;
  height: 31px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 23px;
  font-weight: 700;
  background-color: #697388;
  border-radius: 50%;
  margin-inline-start: -40px
}

.list-dots.list-number {
  flex-direction: row;
  counter-reset: list-number
}

.list-dots.list-number li {
  margin-inline-end: 30px
}

.list-dots.list-number li:before {
  counter-increment: list-number;
  content: counter(list-number);
  font-family: Roboto, sans-serif;
  font-size: 17px;
  font-weight: 700
}

.list-dots.list-number li:last-child {
  margin-inline-end: 0
}

@media (max-width: 767px) {
  .list-dots.list-number li {
    margin-inline-end: 0
  }
  .list-dots.list-number {
    flex-direction: column
  }
  .list-dots {
    width: 240px
  }
  .categories .cols_wrap {
    flex-direction: column
  }
}

.categories .col {
  justify-content: flex-end;
  height: 160px;
  background-image: url(images/movies.3a3e9a9ad5842ea1.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat
}

@media (max-width: 767px) {
  .categories .col {
    width: 100%
  }
}

.categories .col:nth-child(2) {
  background-image: url(images/documentary.1dc351ed433a17e9.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat
}

.categories .col:nth-child(3) {
  background-image: url(images/sports.ed5ce1c3bdb9612e.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat
}

.categories .col:nth-child(4) {
  background-image: url(images/fitness.2ae4cb2e7a3042a1.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat
}

.categories h5 {
  width: 100%;
  height: 100%;
  color: #686868;
  padding: 130px 20px 20px;
  background: linear-gradient(0deg, #e0e8ed 0%, #e0e8ed 30%, rgba(105, 115, 136, .7) 100%)
}

@media (max-width: 767px) {
  .categories h5 {
    background: linear-gradient(90deg, #e0e8ed 0%, #e0e8ed 30%, rgba(105, 115, 136, .7) 100%);
    padding: 37px 20px;
    margin-top: -1px;
    margin-bottom: -1px
  }
}

.categories h5 span {
  display: block;
  text-align: center
}

@media (max-width: 767px) {
  .categories h5 span {
    text-align: start
  }
}

.lang-bg .categories h5 {
  font-size: 21px
}

@media (max-width: 768px) {
  .lang-bg .categories h5 {
    font-size: 15px
  }
}

@media (max-width: 767px) {
  .lang-bg .categories h5 {
    font-size: 17px
  }
}

footer {
  background-color: #e0e8ed;
  padding: 20px 20px 0px 20px;
}

footer p {
  font-size: 11px;
  text-align: center;
  color: #686868
}

#embeddedBillingTemplate {
  display: none !important
}

.shine {
  background: #f6f7f8;
  background-image: linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
  background: transparent;
  background-image: linear-gradient(to right, #d6dde400 0%, #edeef1 20%, #d6dde400 40%, #d6dde400 100%);
  background-repeat: no-repeat;
  background-size: 800px 104px;
  display: inline-block;
  position: relative;
  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-name: placeholderShimmer;
  -webkit-animation-timing-function: linear;
  margin: 2px 0;
  user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  color: transparent !important
}

.shine * {
  color: transparent !important
}

.shine[shimmer=false] {
  background: transparent !important
}

trans {
  transition: color .25s
}

.hide {
  display: none;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 40px 0;
}


.content-container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.mw-40 {
  max-width: 40%;
}

.mw-46 {
  max-widtH: 46%;
}

.content-bg {
  background: #f0f4f6;
  background-image: url(images/content-bg-white.jpg);
  background-repeat: no-repeat;
  background-position: center top;
}

.content h3 {
  margin: 1rem 0;
}

.content h4 {
  margin: 1rem 0;
}

.content p {
  margin: 2rem 0;
}

.items {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 100%;
  margin-top: 60px;
}

.content .container h2 {
  text-align: center;
}

.items li {
  padding: 20px;
}

.items img {
  max-height: 153px;
  border: 1.5px solid #17556B;
  box-shadow: 0 0 15px -3px #424c67bf;
}

.items p {
  text-align: center;
  transition: .3s;
  color: #333;
}

.items p:hover {
  cursor: pointer;
  text-decoration: underline;
}

.brands li {
  text-align: center;
  padding: 10px 40px;
  cursor: pointer;
}

.brands li:hover {
  text-decoration: underline;
}

.brands h3 {
  border-bottom: 1px solid #33333330;
}

.brands {
  padding-top: 0px;
  padding-bottom: 80px;
}

.benefits .content {
  text-align: center;
}

.third {
  padding: 20px;
}

.no-pad {
  padding: 20px 0 0 0!important;
}

.stack {
  margin-top: -100px;
}

.img-wrapper {
  padding-top: 0px;
}

.align-left {
  text-align: left!important;
}

.brands p {
  margin: 1rem 0 2rem 0;
}

.categories h4 {
  color: #686868;
  font-weight: 600;
}

.categories {
  text-align: center;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.divider {
    width: 50%;
    height: 2px;
    background: #394256;
    border-radius: 5px;
    display: block;
    margin: 0 auto;
}

.col-md-3 {
  margin: 30px;
}

.content-row {
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.bg-wrap img {
  max-width: 60px;
  margin: 0 auto;
}

.bg-wrap {
  text-align: center;
    background: #FFFFFF;
    border: 1px solid #EDEDED;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: 10px 14px 45px rgba(0, 0, 0, 0.1);
    box-shadow: 10px 14px 45px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 75px 40px;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
  padding: 30px 20px;
}

#note-text {
  font-size: 15px;
  font-weight: normal;
  color: black;
  text-align: center;
  line-height: 19px;
  max-width: none;
  padding: 20px 50px 30px 50px;
  background-color: #E0E8ED;
}

#note-text b {
  color: #333;
}

#note-text.row {
  display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    flex-direction: column;
}

#note-text a {
  color: #272fcb;
}

#footerino {
  margin-top: 5px;
}

#note-text div {
  margin: 5px 0;
}

#note-text.row:after, #note-text.row:before {
  content: " ";
  display: table;
}

@media (max-width: 991px) {
  section.category-section .row .col-md-3, footer .row .col-md-3 {
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%;
  }
}

@media (min-width: 768px) {
  .col-md-3 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
      flex: 0 0 25%;
      max-width: 25%;
  }
}

@media screen and (max-width: 992px) {
  .brands ul:nth-of-type(4), .brands ul:nth-of-type(5) {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .brands ul:nth-of-type(3) {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  #note-text {
    padding: 30px;
  }
  .stack {
    margin-top: -50px;
  }
  .col-md-3 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .items li {
    padding: 0;
  }
  .align-left {
    text-align: center!important;
  }
  .brands ul:nth-of-type(2) {
    display: none;
  }
  .content-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .mw-40, .mw-46 {
    max-width: 95%;
  }
  .list-hide {
    display: none;
  }
  .center {
    text-align: center;
  }
  .content {
    padding: 20px 0;
  }
  .brands .content-container {
    flex-direction: row;
    align-items: space-around;
  }
}

@media screen and (min-width: 769px) {
  main {
    min-height: 100vh;
  }
  .bottom-icons {
    padding: 40px 0;
  }
  .steps {
    padding: 80px 10px 30px 10px;
  }
}


@media screen and (min-width: 1400px) {
    .bottom-icons {
      padding: 10px 0 40px 0;
    }
    .steps {
      padding: 30px 10px 10px 10px;
    }
}

@media screen and (min-width: 1024px) {
  .button_wrap:nth-of-type(1) {
      background: url("images/bg-left.png") -4% 2.6% no-repeat, url("images/bg-right.png") 104% 2.6% no-repeat, #ffffffb3;
      background-size: 35vw;
  }
}




/* Style the navigation menu */
.topnav {
  overflow: hidden;
  position: relative;
}

/* Hide the links inside the navigation menu (except for logo/home) */
.topnav #myLinks {
  display: none;
}

/* Style navigation menu links */
.topnav a {
  color: #818181;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
}

/* Style the hamburger menu */
.topnav a.icon {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

/* Add a grey background color on mouse-over */
#myLinks a:hover {
  background-color: #ddd;
  color: black;
}


@media (max-width: 1200px) {
	html[lang="ru"] h3 {
		font-size: 30px;
	}
}

/* Reset modal styles */
body.modal-open {
  position: fixed;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}