/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
  font-family: 'Jost', sans-serif;
  font-size: 17px;
  line-height: 1.3;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}

.container {
  width: 1200px;
  max-width: 95%;
  margin: 0 auto;
}
body.page-template {
    background: #000000;
    color: white;
}
section {
    width: 100%;
    float: left;
    margin-bottom: 100px;
}
.rightLoginWrp a {
    float: right;
    background: #FFCC01;
    color: black;
}
.btn {
    padding: 15px 20px;
    display: inline-block;
    color: white;
    background: #FFCC01;
    text-decoration: none;
    border-radius: 3px;
    line-height: 1;
    cursor: pointer;
    transition: 0.2s all ease-in-out;
}
.btn:hover {
    background: #e6c12f;
    color: black;
    transform: scale(1.05);
    /*box-shadow: 0 0 10px rgb(0 0 0 / 22%);*/
    box-shadow: 0 0 0 rgb(255, 0, 0);
    animation: pulse 2s infinite;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgb(255 204 1);
  }
  70% {
      -webkit-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
  }
  100% {
      -webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgb(255 204 1);
    box-shadow: 0 0 0 0 rgb(255 204 1);
  }
  70% {
      -moz-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
      box-shadow: 0 0 0 10px rgba(204,169,44, 0);
  }
  100% {
      -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
      box-shadow: 0 0 0 0 rgba(204,169,44, 0);
  }
}
button.btn:hover {
    background: #e6c12f;
}
section.topBarSect {
    position: fixed;
    top: 5px;
    left: 0;
    right: 0;
    z-index: 2;
    transition: 0.2s all ease-in-out;
}
.leftTextHead {
    float: left;
    width: 50%;
    padding: 100px 0;
    z-index: 1;
}
section.firstSection {
    position: relative;
}
.imagineHeadRight {
    width: 50%;
    float: left;
    position: relative;
}
section.firstSection .container {
    display: flex;
    flex-wrap: wrap;
}
.imageToBe {
    height: 100%;
    background-size: cover;
    background-position: center center;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: calc(100% + 250px);
}
span.lftBlk {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&1+0,0+91 */
  background: -moz-linear-gradient(left,  rgba(0,0,0,1) 0%, rgba(0,0,0,0) 91%, rgba(0,0,0,0) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(left,  rgba(0,0,0,1) 0%,rgba(0,0,0,0) 91%,rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right,  rgba(0,0,0,1) 0%,rgba(0,0,0,0) 91%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#00000000',GradientType=1 ); /* IE6-9 */
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 300px;
}
span.rghtBlk {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0+9,1+100 */
  background: -moz-linear-gradient(left,  rgba(0,0,0,0) 0%, rgba(0,0,0,0) 9%, rgba(0,0,0,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(left,  rgba(0,0,0,0) 0%,rgba(0,0,0,0) 9%,rgba(0,0,0,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right,  rgba(0,0,0,0) 0%,rgba(0,0,0,0) 9%,rgba(0,0,0,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=1 ); /* IE6-9 */
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 200px;
}
span.bottomBlk {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0+6,1+100 */
  background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0) 6%, rgba(0,0,0,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0) 6%,rgba(0,0,0,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0) 6%,rgba(0,0,0,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 ); /* IE6-9 */
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 150px;
}
h1,h2,h3,h4,h5 {
  font-family: 'Merriweather';
}
.leftTextHead a.logoSite {
    width: 100%;
    float: left;
}
.leftTextHead .textInsideHead {
    width: 100%;
    float: left;
    margin: 50px 0;
}
.leftTextHead .buttonToBuy {
    width: 100%;
    float: left;
}
button.btn {
    border: none;
    line-height: 1;
    color: black;
    font-weight: 500;
    vertical-align: middle;
}
.infoNearCta {
    display: inline-block;
    margin-left: 20px;
    vertical-align: middle;
}
.leftTextHead .textInsideHead h2 {
    font-size: 35px;
    line-height: 50px;
    margin: 0;
}
.leftTextHead a.logoSite img.site-logo {
    width: 150px;
}
* {
  outline: none !important;
}
.linkToClipPrez {
    position: absolute;
    right: 30px;
    bottom: 30px;
    text-shadow: 0 0 10px rgb(0 0 0 / 0.5);
    cursor: pointer;
    transition: 0.2s all ease-in-out;
    border-bottom: 1px solid rgb(255 255 255 / 0%);
}
.linkToClipPrez:hover {
    border-bottom: 1px solid white;
}
video.imageVid {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: black;
}
.oneBoxToBe {
    width: calc(16.66% - 10px);
    float: left;
    height: 250px;
    background: gray;
    margin: 5px;
    border-radius: 5px;
    background-size: cover;
    background-position: center center;
}
.bigger_container {
    width: 1500px;
    margin: 0 auto;
    max-width: 95%;
}
.allBoxesWrp {
    width: 100%;
    float: left;
    position: relative;
}
.allBoxesWrp:after {
  content: '';
  background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 6%, rgba(0,0,0,1) 100%);
  background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0) 6%,rgba(0,0,0,1) 100%);
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0) 6%,rgba(0,0,0,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 );
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50%;
  pointer-events: none;
}
.container.pesteBoxes {
    position: absolute;
    height: auto;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 auto;
    width: 480px;
    left: 0;
    right: 0;
}
section.boxesSection {
    position: relative;
}
.pesteBoxesWrp {
    width: 100%;
    float: left;
    text-align: center;
    padding: 50px;
    background: #1A1A1A;
    background : rgba(26, 26, 26, 1);
    border-radius : 5px;
    -moz-border-radius : 5px;
    -webkit-border-radius : 5px;
    box-shadow: 0 0 15px rgb(0 0 0 / 60%);
    width: 380px;
}
.pesteBoxesWrp h2 {
    margin: 0 auto;
    width: 100%;
    float: left;
    line-height: 1.5;
    font-size: 1.5em;
}
body.page-template.page-template-page-new-landing-page {
    line-height: 1.2;
    font-size: 1.1em;
}
.pesteBoxesWrp hr {
    width: 100%;
    float: left;
    margin: 20px 0;
    border-color: #666666;
    border: 1px solid #666666;
}
.pesteBoxesWrp p {
    width: 100%;
    float: left;
    margin: 0 auto;
}
section.topBarSect.spcl {
    top: 0;
}
section.topBarSect.spcl a.btn {
    border-radius: 0 0 3px 3px;
    padding: 10px 20px;
    opacity: 0.5;
}
section.topBarSect.spcl a.btn:hover {
    opacity: 1;
}
section.stickyDown {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    background: #1a1a1a;
    padding: 10px 0;
    text-align: center;
    box-shadow: 0 0 10px rgb(0 0 0 / 50%);
}
section.stickyDown .infoNearCta {
    text-align: left;
}
.titleFields {
    width: 100%;
    float: left;
}
.titleFields big {
  font-family: 'Merriweather';
  font-size: 1.5em;
  display: inline-block;
  float: left;
}
.titleFields .filterTerms {
    display: inline-block;
    width: calc(100% - 210px);
    float: left;
    padding-left: 100px;
    box-sizing: border-box;
    margin-top: 7px;
    justify-content: space-between;
    text-align-last: justify;
}
.titleFields .filterTerms span {
    font-size: 1.2em;
    width: auto;
    display: inline-block;
    padding: 0 10px 3px;
    margin: 0;
    box-sizing: border-box;
    transition: 0.2s all ease-in-out;
    border-bottom: 1px solid rgb(128 128 128 / 0%);
    text-align: center;
    cursor: pointer;
}
.titleFields .filterTerms span:hover {
    color: #ffcc01;
    border-bottom-color: #ffcc01;
}
.fieldsToFilter {
    width: 100%;
    float: left;
    margin-top: 20px;
    line-height: 1.5;
}
.fieldsToFilter h3 {
    margin: 5px 20px 0px -5px;
    display: inline-block;
    font-size: inherit;
    font-family: inherit;
    padding: 0 5px;
    font-weight: 500;
    transition: 0.2s all ease-in-out;
    opacity: .4;
    border-bottom: 1px solid rgb(128 128 128 / 0%);
}
.fieldsToFilter h3.active {
    opacity: 1;
    border-bottom-color: white;
}
section.cifreSect .container {
    display: flex;
    flex-wrap: wrap;
}
.cifraWrp {
    text-align: center;
    line-height: 1;
    padding: 0 40px;
    box-sizing: border-box;
}
.cifraWrp big {
  font-family: 'Merriweather';
  font-size: 40px;
  width: 100%;
  float: left;
}
.cifraWrp p {
    width: 100%;
    margin: 10px auto 0;
    max-width: 180px;
    line-height: 1.4;
    font-family: 'Merriweather';
    font-size: 18px;
    display: inline-block;
}
.unBanner {
    height: 500px !important;
    background-color: grey;
    float: left;
    border-radius: 5px;
    background-size: cover;
    background-position: center;
}
.bannereSliderTobe {
    position: relative;
}
.bannereSliderTobe i.fas {
    padding: 15px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    display: inline-block;
    width: 17px;
    text-align: center;
    transition: 0.2s all ease-in-out;
    background: rgb(0 0 0 / 0.2);
    cursor: pointer;
    line-height: 1;
    border-radius: 3px;
}
.bannereSliderTobe i.fas.fa-chevron-right {
    right: 10px;
}
.bannereSliderTobe i.fas.fa-chevron-left {
    left: 10px;
}
.bannereSliderTobe i.fas:hover {
    background: rgb(0 0 0 / 75%);
}
.backGroundLibrary {
    width: 100%;
    position: absolute;
    top: -150px;
    left: 0;
    right: 0;
    bottom: -150px;
    background-color: black;
    background-position: center;
    background-size: cover;
    z-index: -1;
}
section.bannereSlider {
    position: relative;
}
.backGroundLibrary:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 170px;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+95&1+0,0+95 */
    background: -moz-linear-gradient(top,  rgba(0,0,0,1) 0%, rgba(0,0,0,0) 95%);
    /* FF3.6-15 */background: -webkit-linear-gradient(top,  rgba(0,0,0,1) 0%,rgba(0,0,0,0) 95%);
    /* Chrome10-25,Safari5.1-6 */background: linear-gradient(to bottom,  rgba(0,0,0,1) 0%,rgba(0,0,0,0) 95%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#00000000',GradientType=0 );
    /* IE6-9 */
}
.backGroundLibrary:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 170px;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+5,000000+100&0+5,1+100 */
    background: -moz-linear-gradient(top,  rgba(0,0,0,0) 5%, rgba(0,0,0,1) 100%);
    /* FF3.6-15 */background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 5%,rgba(0,0,0,1) 100%);
    /* Chrome10-25,Safari5.1-6 */background: linear-gradient(to bottom,  rgba(0,0,0,0) 5%,rgba(0,0,0,1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 );
    /* IE6-9 */
}
.firstTimeline {
    width: 100%;
    float: left;
    text-align: center;
}
.innerFrstTm {
    display: inline-block;
    max-width: 350px;
    line-height: 1.5;
}
section.likeTimeline big {
    font-family: 'Merriweather';
    font-size: 30px;
    width: 100%;
    float: left;
    margin-bottom: 20px;
}
section.likeTimeline p {
    width: 100%;
    float: left;
    margin: 0 0 30px;
}
.hrBetween {
    width: 100%;
    float: left;
    text-align: center;
    margin: 30px 0;
}
.hrBetween:before {
    content: '';
    width: 1px;
    background: #666666;
    height: 250px;
    display: inline-block;
}
.secondTimeline {
    width: 100%;
    float: left;
    text-align: center;
}
.leftImageSdT {
    display: inline-block;
    vertical-align: middle;
}
img.putereaOnDevices {
    width: 400px;
}
.rightTxtSdT {
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    max-width: 400px;
    margin-left: 50px;
}
section.likeTimeline {
    position: relative;
    margin: 100px 0 200px;
}
section.likeTimeline .backGroundLibrary {
    height: 700px;
    top: inherit;
    opacity: 0.5;
}
section.testimWrp {
    text-align: center;
    box-sizing: border-box;
}
big.sectTtl {
    font-family: 'Merriweather';
    font-size: 30px;
    width: 100%;
    float: left;
    margin-bottom: 20px;
}
section.testimWrp .bigger_container {
    background: #1A1A1A;
    border-radius: 5px;
    display: inline-block;
}
section.testimWrp big.sectTtl {
    margin: 50px 0 0;
    width: 100%;
    float: left;
}
.tesmtimSlider {
    width: 100%;
    float: left;
    margin-bottom: 50px;
}
.oneTestim {
    width: 100%;
    float: left;
}
.oneTestimInner {
    background: #353535;
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    text-align: left;
    padding: 50px 50px 50px 130px;
    border-radius: 5px;
    position: relative;
    display: inline-block;
    box-shadow: 0 0 10px rgb(0 0 0 / 35%);
    box-sizing: border-box;
}
.textTestim {
    width: 100%;
    float: left;
    display: inline-block;
    white-space: normal;
}
span.testimOwnr {
    width: 100%;
    float: left;
    display: inline-block;
    margin: 10px 0 0;
    color: #6f6f6f;
}
.imageOfTestim {
    position: absolute;
    top: -30px;
    left: -50px;
    width: 150px;
    height: 150px;
    border-radius: 3px;
    background-color: black;
    box-shadow: 0 0 10px rgb(0 0 0 / 35%);
    background-size: cover;
    background-position: center center; 
}
/*.tesmtimSlider {
    padding-top: 50px;
}*/
.tesmtimSlider > i.fas {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    cursor: pointer;
    transition: 0.2s all ease-in-out;
}
.tesmtimSlider > i.fas.fa-chevron-left.slick-arrow {
    left: 50px;
}
.tesmtimSlider > i.fas.fa-chevron-right.slick-arrow {
    right: 50px;
}
.tesmtimSlider .slick-list {
    padding-top: 40px;
}
.tesmtimSlider > i.fas:hover {
    color: #ffcc01;
    font-size: 25px;
}
.oneTestimInner.video {
    width: 550px;
    max-width: 100%;
    text-align: center;
    background-size: cover;
    background-position: center center;
    position: relative;
    padding: 50px;
    overflow: hidden;
}
.playTestim {
    width: 100%;
    float: left;
    text-align: center;
    position: relative;
}
.playTestim i {
    background: #ffcc01;
    padding: 20px 18px 20px 22px;
    line-height: 1;
    width: 30px;
    border-radius: 40px;
    font-size: 30px;
    animation: pulse 2s infinite;
    cursor: pointer;
    transition: 0.2s all ease-in-out;
}
.oneTestimInner.video .textTestim {
    position: relative;
    margin: 20px 0 0;
}
.oneTestimInner.video:before {
  content: '';
  background: rgb(0 0 0 / 35%);
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  position: absolute;
  z-index: 0;
}
.oneTestimInner.video span.testimOwnr {
    color: #9c9c9c;
    position: relative;
}
.playTestim i:hover {
    transform: scale(1.1);
    background: #e6c12f;
}
section.questionsWrp {
    text-align: center;
}
.oneQuestion {
    text-align: left;
    margin: 20px auto;
    width: 100%;
    max-width: 700px;
}
.accordion {
  background-color: #1a1a1a;
  color: #444;
  cursor: pointer;
  padding: 25px 30px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  transition: 0.4s;
  color: white;
  border-radius: 3px;
  box-shadow: 0 0 10px rgb(0 0 0 / 50%);
}
.active, .accordion:hover {
  background-color: #353535;
}
.accordion:after {
  color: #b3b3b3;
  float: right;
  margin-left: 5px;
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: 900;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  transition: 0.2s all ease-in-out;
  transform: rotate(90deg);
}
.active:after {
  transform: rotate(-90deg);
}
.panel {
  padding: 0 20px;
  background-color: #1a1a1a;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  width: 97%;
  box-sizing: border-box;
  margin: 0 auto;
  border-radius: 0 0 3px 3px;
}
section.questionsWrp big.sectTtl {
    margin-bottom: 50px;
}
footer.site-footer {
    width: 100%;
    float: left;
    margin: 0 0 70px;
    text-align: center;
    background: #1a1a1a;
    padding: 10px 0;
    box-sizing: border-box;
}
footer.site-footer a {
    color: gray;
    margin: 10px;
    padding: 0px;
    display: inline-block;
    text-decoration: none;
    transition: 0.2s all ease-in-out;
}
footer.site-footer a:not(:last-child) {
    border-right: 1px solid gray;
    padding-right: 25px;
}
footer.site-footer a:hover {
    color: #ffcc01;
}
.lftFot {
    float: left;
}
.rghtFot {
    float: right;
    margin: 10px 0 0;
    color: gray;
}
.sectionToBuy {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    text-align: center;
}
span.overlayToClose {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(53 53 53 / 90%);
    /*cursor: crosshair;*/
}
.innerSection {
    width: 520px;
    position: relative;
    margin: 50px auto;
    background: #1a1a1a;
    display: inline-block;
    padding: 50px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    box-shadow: 0 0 15px rgb(0 0 0 / 30%);
}
.sectionToBuy .innerSection i.fas.fa-times.closeBuySec {
    cursor: pointer;
    background: #1a1a1a;
    position: absolute;
    right: -60px;
    top: 0px;
    padding: 10px;
    font-size: 25px;
    width: 25px;
    line-height: 1;
    border-radius: 3px;
    box-shadow: 0 0 10px rgb(0 0 0 / 33%);
    color: gray;
    transition: 0.2s all ease-in-out;
}
.sectionToBuy .innerSection i.fas.fa-times.closeBuySec:hover {
    background: #ffcc01;
    color: black;
    transform: scale(1.1);
}
.abonamenteWrp {
    width: 100%;
    float: left;
    margin: 40px 0;
    display: flex;
    flex-wrap: wrap;
}
.unAbonament {
    width: 49%;
    float: left;
    background: #353535;
    padding: 20px 20px 70px;
    box-sizing: border-box;
    border-radius: 3px;
    box-shadow: 0 0 10px rgb(0 0 0 / 0.2);
    position: relative;
    border: 1px solid #353535;
    transition: 0.2s all ease-in-out;
}
.unAbonament:hover {
    border-color: #ffcc01;
}
.abonamenteDisclaimer {
    width: 100%;
    float: left;
    text-align: center;
}
.shieldLeft {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}
.shieldRght {
    display: inline-block;
    max-width: 250px;
    text-align: left;
    vertical-align: middle;
}
.shieldLeft i {
    color: #3aab00;
    font-size: 30px;
}
img.paymentIcons {
    width: 300px;
    margin-top: 10px;
}
.imageAbonament {
    width: 100%;
    float: left;
}
.imageAbonament img {
    max-height: 70px;
}
.infoAbonament {
    width: 100%;
    float: left;
    margin: 10px 0 0;
}
.unAbonament.lunar {
    margin-right: 2%;
}
.infoAbonament .sectTtl {
    font-family: 'Merriweather';
    font-size: 25px;
    width: 100%;
    float: left;
    margin: 15px 0;
}
.priceOpt {
    width: 100%;
    float: left;
    font-family: 'Merriweather';
    font-size: 20px;
    margin-bottom: 10px;
}
.advantagesAbnm {
    width: 100%;
    float: left;
}
.advantagesAbnm span {
    margin-bottom: 10px;
    display: inline-block;
}
button.alegAbonament.btn {
    position: absolute;
    bottom: 10px;
    margin: 0 auto;
    left: 10px;
    right: 10px;
    width: 90%;
    max-width: 200px;
}
.ribbon {
  width: 150px;
  height: 150px;
  overflow: hidden;
  position: absolute;
}
.ribbon::before,
.ribbon::after {
  position: absolute;
  content: '';
  display: block;
  border: 5px solid #775d02;
}
.ribbon span {
  position: absolute;
  display: block;
  width: 225px;
  padding: 15px 0;
  background-color: #deaf08;
  box-shadow: 0 5px 10px rgba(0,0,0,.1);
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-shadow: 0 1px 1px rgba(0,0,0,.2);
  text-transform: uppercase;
  text-align: center;
}
/* top right*/
.ribbon-top-right {
  top: -10px;
  right: -10px;
}
.ribbon-top-right::before,
.ribbon-top-right::after {
  border-top-color: transparent;
  border-right-color: transparent;
}
.ribbon-top-right::before {
  top: 0;
  left: 0;
}
.ribbon-top-right::after {
  bottom: 0;
  right: 0;
}
.ribbon-top-right span {
  left: -25px;
  top: 30px;
  transform: rotate(45deg);
}
.ribbon span {
    font-size: 9px;
    left: -50px;
    top: 13px;
}
.ribbon {
    width: 100px;
    height: 100px;
}
.loadingFade {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(53 53 53 / 98%);
    text-align: center;
    z-index: 9999;
}
.loadingIcon {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@keyframes ldio-c1d9lyfa54 {
  0% {
    top: 96px;
    left: 96px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 18px;
    left: 18px;
    width: 156px;
    height: 156px;
    opacity: 0;
  }
}
.ldio-c1d9lyfa54 div {
  position: absolute;
  border-width: 4px;
  border-style: solid;
  opacity: 1;
  border-radius: 50%;
  animation: ldio-c1d9lyfa54 1.6393442622950818s cubic-bezier(0,0.2,0.8,1) infinite;
}

.ldio-c1d9lyfa54 div:nth-child(1) {
  border-color: #ffcc01
}

.ldio-c1d9lyfa54 div:nth-child(2) {
  border-color: #ffcc01;
  animation-delay: -0.8196721311475409s;
}

.loadingio-spinner-ripple-678thds8f7w {
  width: 200px;
  height: 200px;
  display: inline-block;
  overflow: hidden;
}
.ldio-c1d9lyfa54 {
  width: 100%;
  height: 100%;
  position: relative;
  transform: translateZ(0) scale(1);
  backface-visibility: hidden;
  transform-origin: 0 0; /* see note above */
}
.ldio-c1d9lyfa54 div {
  box-sizing: content-box;
}
.secCnct {
    width: 100%;
    float: left;
}
.secCnct a {
    text-decoration: none;
    color: white;
    font-size: 25px;
    vertical-align: middle;
}
.secCnct a i {
    font-size: 30px;
    vertical-align: middle;
}
.textTestim .panel {
    max-height: 90px;
    background: no-repeat;
    margin: 0 0 20px;
    box-sizing: border-box;
    width: 100%;
    padding: 0;
}
.oneTestim.slick-slide .textTestim .panel {
    max-height: 90px;
}
.textTestim {
    position: relative;
}
.textTestim button.accordionTestim {
    font-size: 13px;
    background: none;
    padding: 0;
    box-shadow: none;
    position: absolute;
    bottom: 0;
    text-decoration: underline;
    color: #8e8e8e;
    border: none;
    cursor: pointer;
}
.textTestim button.accordionTestim:after {
    display: none;
}
.textTestim button.accordionTestim:before {
    content: 'Citeste mai mult'
}
.textTestim button.accordionTestim.active:before {
    content: 'Citeste mai putin'
}
.oneTestim.slick-slide {
    max-height: 250px;
    overflow: hidden;
    transition: 0.2s max-height ease-in-out;
    padding-top: 50px;
}
.oneTestim.slick-slide.slick-current.slick-active {
    max-height: 1500px;
}
.emsc_css_reboot.emsc_dialog.light.interstitial {
    top: auto;
    bottom: 0;
    height: auto;
    left: 0;
    right: 0;
    max-width: 100%;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    text-align: center;
}
.light.emsc_dialog button.emsc_b_ok, .light.emsc_dialog button.emsc_b_cp {
    font-size: inherit;
    border-radius: 2px !important;
    padding: 10px 30px;
    display: inline-block;
}
.light.emsc_dialog button.emsc_b_cp {
    background: #bfbfbf;
    margin-left: 20px;
}
.light.emsc_dialog button.emsc_b_ok {
    font-weight: bold;
    text-transform: uppercase;
}

@media (max-width: 950px) {
  .oneBoxToBe {
      height: 170px;
  }
  .unBanner {
      height: 300px !important;
  }
  .imageOfTestim {
      left: inherit;
      position: relative;
      top: inherit;
      display: inline-block;
      vertical-align: middle;
  }
  .textTestim {
      width: calc(100% - 160px);
      display: inline-block;
      float: none;
      padding-left: 15px;
      box-sizing: border-box;
      vertical-align: middle;
  }
  .oneTestimInner {
      padding: 50px;
  }
  section.stickyDown {
      padding: 10px 0 70px;
  }
}
@media (max-width: 850px) {
  .leftTextHead {
      width: calc(100% - 50px);
  }
  .imagineHeadRight {
      width: calc(100% - 110px);
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
  }
  .imageToBe {
      width: 100%;
  }
  span.rghtBlk {
      display: none;
  }
  span.lftBlk {
      width: 80%;
  }
  .rightTxtSdT {
      margin: 0 auto;
      display: block;
      text-align: center;
  }
  .tesmtimSlider > i.fas.fa-chevron-left.slick-arrow, .tesmtimSlider > i.fas.fa-chevron-right.slick-arrow {
      display: none !important;
  }
  .oneTestimInner {
    width: 95%;
  }
  .linkToClipPrez {
      z-index: 2;
  }
  .sectionToBuy {
      z-index: 9;
  }
}
@media (max-width: 750px) {
  .oneBoxToBe {
      width: calc(25% - 10px);
  }
  .oneBoxToBe:nth-child(13), .oneBoxToBe:nth-child(14) {
      display: none;
  }
  .titleFields .filterTerms {
      width: 100%;
      padding: 0;
      margin-top: 20px;
  }
  .cifraWrp {
      width: 50% !important;
  }
  .cifraWrp:nth-child(1), .cifraWrp:nth-child(2) {
      margin-bottom: 100px;
  }
  .rghtFot {
      float: left;
      margin: 10px 0 0 10px;
  }
  .pesteBoxesWrp {
      width: 100%;
      box-sizing: border-box;
      margin: 0 auto;
      display: inline-block;
  }
  .innerSection {
      width: calc(100% - 50px);
      box-sizing: border-box;
      top: 25px;
      margin: 0 auto;
  }
  .sectionToBuy .innerSection i.fas.fa-times.closeBuySec {
      right: 10px;
      top: 10px;
  }
  .oneTestimInner.video {
      width: 95%;
      padding: 150px 50px;
  }
}
@media (max-height: 750px) {
  .innerSection {
      overflow-y: scroll;
      height: calc(100% - 50px);
  }
}
@media (max-height: 850px) and (max-width: 600px) {
  .innerSection {
      overflow-y: scroll;
      height: calc(100% - 50px);
  }
}
@media (max-width: 650px) {
  .imageOfTestim {
      display: block;
      margin: 0 auto 30px;
  }
  .textTestim {
      width: 100%;
      padding-left: 0;
  }
}
@media (max-width: 600px) {
  .unAbonament {
      width: 100%;
      padding: 20px;
  }
  .unAbonament.lunar {
      margin-right: 0;
      margin-bottom: 30px;
  }
  .imageAbonament {
      width: 75px;
      display: inline-block;
      float: none;
      vertical-align: middle;
  }
  .infoAbonament {
      width: calc(100% - 85px);
      float: none;
      display: inline-block;
      text-align: left;
      margin: 0;
      vertical-align: middle;
      padding-left: 20px;
      box-sizing: border-box;
  }
  .infoAbonament .sectTtl {
      margin: 0 0 5px;
  }
  button.alegAbonament.btn {
      position: relative;
      left: inherit;
      right: inherit;
      bottom: inherit;
      width: auto;
      padding: 10px 50px;
  }
}
@media (max-width: 490px) {
  .imageAbonament {
      display: none;
  }
  .infoAbonament {
      width: 100%;
      padding: 0;
      text-align: center;
  }
  .leftTextHead {
      width: 100%;
  }
}
.anpcZone {
    width: 100%;
    float: left;
    text-align: center;
}
.anpcZone a {
    display: inline-block;
    width: 200px;
    margin: 10px 0 0;
}
.anpcZone a img {
    width: 200px;
}