/*
0 - 600px: Phone
660 - 900px: Tablet portrait
900 - 1200px: Tablet landscape
1200 - 1800px: is where normal styles apply
1800 +: Big Desktop

 $ breakpoint argument choices:
- phone
- tab-port
- tab-land
- big-desktop

1em = 16px
*/
/* KEYFRAMES */
@-webkit-keyframes goleft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    z-index: 2; }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    z-index: 2; } }

@-moz-keyframes goleft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
    z-index: 2; }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    transform: translateX(-100%);
    z-index: 2; } }

@-o-keyframes goleft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    z-index: 2; }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
    z-index: 2; } }

@keyframes goleft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    z-index: 2; }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
    z-index: 2; } }

.goleft {
  -webkit-animation: goleft 0.4s ease-in-out;
  -moz-animation: goleft 0.4s ease-in-out;
  -o-animation: goleft 0.4s ease-in-out;
  animation: goleft 0.4s ease-in-out;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both; }

@-webkit-keyframes goright {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    z-index: 2; }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    z-index: 2; } }

@-moz-keyframes goright {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
    z-index: 2; }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    transform: translateX(100%);
    z-index: 2; } }

@-o-keyframes goright {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    z-index: 2; }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    z-index: 2; } }

@keyframes goright {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    z-index: 2; }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    z-index: 2; } }

.goright {
  -webkit-animation: goright 0.4s ease-in-out;
  -moz-animation: goright 0.4s ease-in-out;
  -o-animation: goright 0.4s ease-in-out;
  animation: goright 0.4s ease-in-out;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both; }

@-webkit-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@-moz-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@-o-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.fadein {
  -webkit-animation: fadein 0.4s ease-in-out;
  -moz-animation: fadein 0.4s ease-in-out;
  -o-animation: fadein 0.4s ease-in-out;
  animation: fadein 0.4s ease-in-out;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both; }

.anim {
  opacity: 0; }

@-webkit-keyframes inleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-15px);
    transform: translateX(-15px); }
  50% {
    opacity: 1; }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

@-moz-keyframes inleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-15px);
    -moz-transform: translateX(-15px);
    transform: translateX(-15px); }
  50% {
    opacity: 1; }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0); } }

@-o-keyframes inleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-15px);
    -o-transform: translateX(-15px);
    transform: translateX(-15px); }
  50% {
    opacity: 1; }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0); } }

@keyframes inleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-15px);
    -moz-transform: translateX(-15px);
    -o-transform: translateX(-15px);
    transform: translateX(-15px); }
  50% {
    opacity: 1; }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0); } }

.inleft {
  -webkit-animation: inleft 0.4s ease-in-out;
  -moz-animation: inleft 0.4s ease-in-out;
  -o-animation: inleft 0.4s ease-in-out;
  animation: inleft 0.4s ease-in-out;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both; }

@-webkit-keyframes inright {
  0% {
    opacity: 0;
    -webkit-transform: translateX(15px);
    transform: translateX(15px); }
  50% {
    opacity: 1; }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

@-moz-keyframes inright {
  0% {
    opacity: 0;
    -webkit-transform: translateX(15px);
    -moz-transform: translateX(15px);
    transform: translateX(15px); }
  50% {
    opacity: 1; }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0); } }

@-o-keyframes inright {
  0% {
    opacity: 0;
    -webkit-transform: translateX(15px);
    -o-transform: translateX(15px);
    transform: translateX(15px); }
  50% {
    opacity: 1; }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0); } }

@keyframes inright {
  0% {
    opacity: 0;
    -webkit-transform: translateX(15px);
    -moz-transform: translateX(15px);
    -o-transform: translateX(15px);
    transform: translateX(15px); }
  50% {
    opacity: 1; }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0); } }

.inright {
  -webkit-animation: inright 0.4s ease-in-out;
  -moz-animation: inright 0.4s ease-in-out;
  -o-animation: inright 0.4s ease-in-out;
  animation: inright 0.4s ease-in-out;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both; }

body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #231f20; }

.heading-primary {
  color: #231f20;
  font-weight: 800;
  font-size: 4.5rem;
  line-height: 5.2rem; }
  @media (max-width: 37.5em) {
    .heading-primary {
      font-size: 5.5rem; } }
  .heading-primary--intro {
    margin: 2rem 0;
    color: #e60102;
    text-transform: uppercase; }
  .heading-primary--part-one {
    text-transform: uppercase; }
  .heading-primary--ingridients {
    text-transform: uppercase; }
  .heading-primary--special {
    text-align: center; }
  .heading-primary--proffesion {
    font-size: 6rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 7rem; }
    @media (max-width: 37.5em) {
      .heading-primary--proffesion {
        font-size: 5rem; } }

.heading-secondary {
  font-size: 2.5rem;
  font-weight: 400;
  display: inline-block;
  line-height: 3.5rem; }
  .heading-secondary--intro {
    font-weight: 700;
    margin: 0 0 2rem 0;
    font-size: 3rem; }
  .heading-secondary--proffesion {
    font-size: 4rem;
    text-decoration: underline;
    font-weight: 700;
    padding: 3rem 0; }
  .heading-secondary--madein {
    font-size: 4rem;
    font-weight: 900;
    padding: 6rem 3rem 3rem 3rem;
    line-height: 4rem; }
    .heading-secondary--madein span {
      text-transform: uppercase; }

.heading-tertiary {
  font-size: 3rem;
  font-weight: 700; }
  @media (max-width: 37.5em) {
    .heading-tertiary {
      font-size: 4rem; } }
  .heading-tertiary--part-two {
    font-size: 2rem;
    color: #8cce08;
    text-transform: uppercase; }
    @media (max-width: 37.5em) {
      .heading-tertiary--part-two {
        font-size: 3rem; } }

.heading-four {
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  font-style: italic;
  padding-bottom: 2rem; }
  @media (max-width: 37.5em) {
    .heading-four {
      font-size: 3.6rem; } }

.paragraph {
  font-size: 1.6rem; }
  @media (max-width: 37.5em) {
    .paragraph {
      font-size: 2.6rem; } }
  .paragraph--intro {
    margin: 0 0 2rem 0;
    font-size: 2rem; }
    @media (max-width: 37.5em) {
      .paragraph--intro {
        font-size: 2.6rem; } }
  @media (max-width: 37.5em) {
    .paragraph--part-one {
      font-size: 2.6rem; } }
  .paragraph--special-offer {
    text-transform: uppercase;
    font-weight: 700; }
  .paragraph--proffesion {
    font-size: 2rem;
    margin: 2rem;
    padding: 0 4rem; }
    @media (max-width: 37.5em) {
      .paragraph--proffesion {
        font-size: 2.6rem; } }
  .paragraph--testimonials {
    font-size: 2rem;
    font-weight: 400; }
  .paragraph--ordinare {
    font-weight: 700; }
    @media (max-width: 37.5em) {
      .paragraph--ordinare {
        font-size: 2.6rem; } }
  .paragraph--madein {
    font-size: 2.4rem;
    font-weight: 900; }
  .paragraph--form {
    text-transform: uppercase;
    font-weight: 700; }
    @media (max-width: 37.5em) {
      .paragraph--form {
        font-size: 3rem; } }

.u-center-text {
  text-align: center !important; }

.u-font-bold {
  font-weight: 700; }

.u-font-italic {
  font-style: italic; }

.u-margin-bottom-small {
  margin-bottom: 1.5rem !important; }

.u-margin-bottom-medium {
  margin-bottom: 4rem !important; }
  @media (max-width: 56.25em) {
    .u-margin-bottom-medium {
      margin-bottom: 3rem !important; } }

.u-margin-bottom-big {
  margin-bottom: 8rem !important; }
  @media (max-width: 56.25em) {
    .u-margin-bottom-big {
      margin-bottom: 5rem !important; } }

.u-margin-top-huge {
  margin-top: 10rem !important; }

.u-margin-top-big {
  margin-top: 8rem !important; }

.hide-on-mob {
  display: block; }
  @media (max-width: 37.5em) {
    .hide-on-mob {
      display: none !important;
      visibility: hidden !important; } }

.hide-on-desc {
  display: none;
  visibility: hidden; }
  @media (max-width: 37.5em) {
    .hide-on-desc {
      display: block !important; } }

.u-text-underline {
  text-decoration: underline; }

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

html, body {
  font-size: 62.5%;
  width: 100%;
  margin: 0;
  font-size: -webkit-calc(0px + (10 - 0) * (100vw - 0px) / (1200 - 0));
  font-size: -moz-calc(0px + (10 - 0) * (100vw - 0px) / (1200 - 0));
  font-size: calc(0px + (10 - 0) * (100vw - 0px) / (1200 - 0)); }
  @media (max-width: 37.5em) {
    html, body {
      font-size: -webkit-calc(0px + (10 - 0) * (100vw - 0px) / (600 - 0));
      font-size: -moz-calc(0px + (10 - 0) * (100vw - 0px) / (600 - 0));
      font-size: calc(0px + (10 - 0) * (100vw - 0px) / (600 - 0)); } }

body {
  box-sizing: border-box; }

.intro {
  background: url(../img/bg-1.png) no-repeat, url(../img/bg-2.png) no-repeat;
  background-size: 100% 50%, 100% 60%;
  background-position: bottom 0rem left 0rem, top 0rem left 0rem; }
  @media (max-width: 37.5em) {
    .intro {
      background-size: 100% 17%, 100% 90%; } }
  .intro__container {
    position: relative; }
    .intro__container__right {
      position: absolute;
      right: -4rem;
      bottom: 0rem; }
      @media (max-width: 37.5em) {
        .intro__container__right {
          position: unset; } }
  .intro__product {
    width: 45rem; }
  .intro__logo {
    margin-top: 4rem; }
    @media (max-width: 37.5em) {
      .intro__logo {
        margin-top: 22rem; } }
  .intro__badges {
    margin: 0 auto;
    margin-bottom: 4rem;
    display: block;
    width: 26rem; }
  @media (max-width: 37.5em) {
    .intro__btn {
      display: block !important;
      margin: 2rem auto; } }

.part-one {
  background: url(../img/bg-4.png) no-repeat, url(../img/bg-3.png) no-repeat;
  background-size: auto 100%, 83% 95%;
  background-position: top 0rem right 0rem,top 0rem left 0rem; }
  @media (max-width: 37.5em) {
    .part-one {
      background-size: 0%, 100% 95%;
      background-position: top 0rem right 0rem,top 0rem left 0rem; } }
  .part-one__container {
    padding: 6rem 0 10rem 0;
    width: 42rem; }

.part-two {
  background: url(../img/bg-6.png) no-repeat;
  background-size: auto 86%;
  background-position: top 0rem left 0rem; }
  @media (max-width: 37.5em) {
    .part-two {
      background-size: 0%; } }
  .part-two__item-container {
    display: flex;
    flex-wrap: wrap; }
  .part-two__item {
    padding: 2rem;
    display: flex;
    flex-basis: 50%; }
    @media (max-width: 37.5em) {
      .part-two__item {
        flex-direction: column;
        flex-basis: 100%;
        align-items: center;
        text-align: center; } }
    .part-two__item .item-right {
      padding: 0 2rem; }
    .part-two__item img {
      width: 88px;
      height: 85px; }

.proffesion {
  background: url(../img/bg-8.png) no-repeat, url(../img/bg-9.png) no-repeat, url(../img/bg-7.png) no-repeat;
  background-size: auto 60%, auto 40%, 100% 100%;
  background-position: left 0 bottom 2rem,right 0 top 0rem, top 0rem left 0rem;
  padding: 6rem 0; }
  @media (max-width: 37.5em) {
    .proffesion {
      background-size: 0%; } }
  .proffesion__center {
    text-align: center; }
  .proffesion__image {
    width: 22rem;
    display: block;
    margin: 0 auto; }

.madein {
  background: url(../img/bg-16.png) no-repeat, url(../img/bg-17.png) no-repeat, url(../img/bg-18.png) no-repeat, url(../img/bg-19.png) no-repeat;
  background-size: 100% 19%, auto 80%, auto 8%, auto 20%;
  background-position: bottom 66rem left 0rem, top -15rem right 0rem, bottom 18rem right 5rem, top 50rem left 0rem;
  text-align: center; }
  @media (max-width: 37.5em) {
    .madein {
      background-size: 0%; } }
  .madein__combined--img {
    display: block;
    width: 40rem;
    margin: 0 auto; }
  .madein__ordinare-list {
    display: flex;
    flex-wrap: wrap; }
    @media (max-width: 37.5em) {
      .madein__ordinare-list {
        flex-direction: column; } }
    .madein__ordinare-list .ordinare-item {
      padding: 2rem;
      flex: 0 0 33.333333%; }
      .madein__ordinare-list .ordinare-item .img--ordinare {
        width: 7rem;
        margin: 2rem; }
  .madein__logo {
    width: 30rem; }

.btn, .btn:link, .btn:visited {
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.6rem 1.8rem;
  display: inline-block;
  transition: all 0.2s;
  position: relative;
  font-size: 1.6rem;
  text-align: center;
  border: none; }

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2); }

.btn:active, .btn:focus {
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2); }

.btn::after {
  content: '';
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 10rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s; }

.btn--red, .btn--red:link, .btn--red:visited {
  font-size: 2rem;
  color: #fff;
  font-weight: 700;
  background-image: linear-gradient(120deg, #c50002 0%, #f30302 50%, #c50002 100%);
  background-size: 230%;
  display: inline-block;
  text-decoration: none;
  width: 22rem;
  transition: all .4s; }
  @media (max-width: 37.5em) {
    .btn--red, .btn--red:link, .btn--red:visited {
      width: 40rem;
      font-size: 4rem; } }

.btn--red:hover {
  background-position: 100%;
  color: #fff;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  transform: translateY(-2px); }

.btn--red:active {
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.15);
  transform: translateY(0); }

.ingridients__container {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  height: 100%; }
  .ingridients__container .ingridient {
    flex-basis: 50%;
    text-align: center; }
  @media (max-width: 37.5em) {
    .ingridients__container {
      display: block; } }

.ingridients__image {
  width: 32rem; }
  @media (max-width: 37.5em) {
    .ingridients__image {
      text-align: center;
      margin: 0 auto;
      display: block; } }

.special-offer {
  background: url(../img/bg-5.png) no-repeat;
  background-size: auto 35%;
  background-position: top 0rem left 0rem;
  margin-top: 6rem; }
  @media (max-width: 37.5em) {
    .special-offer {
      background-size: 0%; } }
  .special-offer__container {
    display: table;
    margin: 12rem auto 6rem auto;
    width: 80rem; }
    @media (max-width: 37.5em) {
      .special-offer__container {
        width: 100%; } }
    @media (max-width: 37.5em) {
      .special-offer__container {
        display: block;
        margin: 4rem 0 2rem 0; } }
  .special-offer__left {
    display: table-cell;
    width: 50%;
    vertical-align: middle; }
    @media (max-width: 37.5em) {
      .special-offer__left {
        display: block;
        width: 100%; } }
  .special-offer__right {
    display: table-cell;
    width: 50%;
    vertical-align: middle;
    position: relative; }
    @media (max-width: 37.5em) {
      .special-offer__right {
        display: block;
        width: 100%; } }
  .special-offer__product-image {
    width: 48rem;
    position: absolute;
    top: -8rem;
    left: 0rem; }
    @media (max-width: 37.5em) {
      .special-offer__product-image {
        position: unset;
        left: 0rem;
        width: 53rem;
        margin: 0 auto;
        margin: 2rem auto -7rem auto; } }
  .special-offer__badges {
    width: 26rem;
    position: absolute;
    bottom: 0rem;
    left: -10rem;
    z-index: 5; }
    @media (max-width: 37.5em) {
      .special-offer__badges {
        width: 30rem;
        left: 0rem; } }
  .special-offer__image {
    display: block;
    text-align: center;
    margin: 2rem auto;
    width: 24rem; }
    @media (max-width: 37.5em) {
      .special-offer__image {
        width: 40rem; } }
  .special-offer .heading-tertiary {
    text-transform: initial;
    font-weight: 900;
    line-height: 5rem; }
    .special-offer .heading-tertiary span {
      text-transform: uppercase;
      font-size: 6rem;
      text-decoration: underline; }
  .special-offer__action {
    text-align: center; }
    .special-offer__action__image {
      display: block;
      margin: 2rem auto;
      width: 24rem; }
      @media (max-width: 37.5em) {
        .special-offer__action__image {
          width: 40rem; } }
    .special-offer__action .btn--red {
      margin-bottom: 18rem; }
      @media (max-width: 37.5em) {
        .special-offer__action .btn--red {
          margin-bottom: 4rem; } }
  .special-offer__left--short {
    width: 60%; }
    @media (max-width: 37.5em) {
      .special-offer__left--short {
        width: 100%; } }
  .special-offer__center--short {
    text-align: center;
    position: relative; }
  .special-offer .btn--red {
    display: block !important;
    margin: 4rem auto; }

.testimonials {
  width: 100%;
  text-align: center;
  padding-top: 6.625rem; }
  @media (max-width: 37.5em) {
    .testimonials {
      padding-top: 0rem; } }
  .testimonials h3 {
    color: #333333;
    font-size: 3rem;
    line-height: 3.5rem;
    text-transform: uppercase;
    padding-bottom: 1.8125rem;
    font-weight: 900;
    /* margin-top: 5rem; */ }
  .testimonials .testi-table {
    width: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden; }
  .testimonials .testim-cont {
    width: 62rem;
    margin: 0 auto;
    height: 40rem; }
    @media (max-width: 37.5em) {
      .testimonials .testim-cont {
        height: 58rem;
        width: 44rem; } }
  .testimonials .leftarr {
    position: absolute;
    width: 4rem;
    text-align: left;
    height: 23.125rem;
    cursor: pointer;
    z-index: 3;
    left: 0;
    top: 0;
    -webkit-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out; }
  .testimonials .leftarr img {
    position: absolute;
    top: 9.125rem;
    left: 0;
    width: 3.625rem; }
  .testimonials .leftarr:hover {
    opacity: 0.7; }
  .testimonials .rightarr {
    position: absolute;
    width: 4rem;
    text-align: left;
    height: 23.125rem;
    cursor: pointer;
    z-index: 3;
    right: 0;
    top: 0;
    -webkit-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out; }
  .testimonials .rightarr img {
    position: absolute;
    top: 9.125rem;
    left: right;
    width: 3.625rem; }
  .testimonials .rightarr:hover {
    opacity: 0.7; }
  .testimonials__named-image {
    display: inline-block; }
  .testimonials__named {
    font-size: 2.4rem;
    color: #385a97;
    text-decoration: none;
    padding-left: 2rem;
    font-weight: bold;
    display: table-cell;
    vertical-align: bottom; }
    @media (max-width: 37.5em) {
      .testimonials__named {
        display: block;
        font-size: 2.4rem;
        padding-left: 0rem; } }
  .testimonials .fb_icon {
    text-align: right; }

.facebook-icon {
  position: absolute;
  top: 3rem;
  left: 20;
  width: 2.6rem; }

.test-shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1; }

.image-comment {
  width: 100%;
  position: absolute;
  top: inherit;
  z-index: -10; }

.comment-2 {
  margin: 0 auto;
  padding: 2rem 2rem 2rem 4rem;
  border: 7px solid #000;
  border-radius: 15px;
  background-color: #fff;
  -webkit-box-shadow: inset 0px 0px 0px 7px #385a97;
  -moz-box-shadow: inset 0px 0px 0px 7px #385a97;
  box-shadow: inset 0px 0px 0px 7px #385a97; }

.testimonials .comment {
  width: 62rem;
  padding: 1.25rem 0.9375rem 0.9375rem 1.125rem;
  text-align: center;
  position: absolute;
  top: 0;
  margin: 0 auto; }
  @media (max-width: 37.5em) {
    .testimonials .comment {
      width: 44rem; } }

.testimonials .comtabletop {
  width: 100%;
  display: block; }

.testimonials .imgcell {
  display: table;
  text-align: left; }

.testimonials .imgcell img {
  width: 10rem; }

.testimonials .namecell {
  display: block;
  vertical-align: top;
  text-align: left;
  padding-top: 1rem; }

.testimonials span {
  /* border-top: 2px solid #385a97; */
  width: 20rem;
  display: block;
  /* margin: 0 auto; */ }

.testimonials .namecell a {
  color: #385a97;
  text-decoration: none;
  font-weight: 700; }

.testimonials .namecell p img {
  width: 1.1875rem;
  vertical-align: middle; }

.testimonials .text {
  /* width: 100%;
    margin-left: 9rem;
    margin-top: -6rem; */ }

.testimonials .text p {
  color: #333333;
  line-height: 1.214;
  font-size: 1.42813rem;
  padding: 1.5rem 0 1.25rem; }

.testimonials .text p a {
  color: #385a97; }

.testimonials .text p a:hover {
  text-decoration: underline; }

.testimonials .text a {
  color: #385a97;
  font-size: 1.3125rem;
  line-height: 1; }

.testimonials .text a:hover {
  text-decoration: underline; }

.testimonials .sharestable {
  width: 100%;
  display: block;
  color: #90939b;
  font-size: 1.22437rem;
  padding: 0rem 0 3.125rem;
  bottom: 0;
  right: 0; }

.testimonials .emoticonscell {
  text-align: right;
  display: table-cell;
  vertical-align: middle;
  min-width: 9rem;
  float: right;
  bottom: -3rem;
  color: #231f20;
  font-size: 2rem; }

.testimonials .emoticonscell img {
  vertical-align: middle;
  display: inline-block;
  margin: 0 -0.125rem; }

.testimonials .emoticonscell img:last-of-type {
  margin-right: 0.125rem; }

.testimonials .commnbscell {
  display: table-cell;
  vertical-align: middle;
  text-align: right;
  padding-right: 0.3125rem; }

.testimonials .likeshare {
  width: 100%;
  display: table;
  table-layout: fixed;
  text-align: center;
  padding: 0.75rem;
  border-top: 3px solid #e5e5e5;
  border-bottom: 3px solid #e5e5e5; }

.testimonials .likemecell {
  display: table-cell;
  text-align: center; }

.testimonials .likemecell a {
  display: inline-block;
  vertical-align: middle; }

.testimonials .likemecell a:hover {
  opacity: 0.7; }

.testimonials .likemecell .like-me {
  width: 5.1875rem; }

.testimonials .likemecell .comm-me {
  width: 8.9375rem; }

.testimonials .likemecell .share-me {
  width: 6.1875rem; }

.testimonials .likemecell img {
  width: 100%; }

.testimonials .comment.hidden {
  display: none; }

#mailform {
  display: block;
  width: 35rem;
  background-color: #fff;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  border-radius: 14px;
  -webkit-box-shadow: 0 0 0.9375rem #999;
  -moz-box-shadow: 0 0 0.9375rem #999;
  box-shadow: 0 0 0.9375rem #999;
  text-align: center;
  padding: 3rem 3.4375rem;
  padding-bottom: 2rem; }
  @media (max-width: 37.5em) {
    #mailform {
      width: 100%;
      margin-bottom: 4rem; } }

#mailform input {
  width: 100%;
  background-color: #f1f1f1;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0.5px 0.866px 0px 0px rgba(176, 176, 176, 0.176), inset 0.5px 0.866px 0px 0px rgba(176, 176, 176, 0.176);
  -moz-box-shadow: 0.5px 0.866px 0px 0px rgba(176, 176, 176, 0.176), inset 0.5px 0.866px 0px 0px rgba(176, 176, 176, 0.176);
  box-shadow: 0.5px 0.866px 0px 0px rgba(176, 176, 176, 0.176), inset 0.5px 0.866px 0px 0px rgba(176, 176, 176, 0.176);
  font-size: inherit;
  color: #626262;
  margin: 0.4375rem 0;
  outline: none;
  border: 1px solid #cfcfcf;
  padding: 1rem; }
  @media (max-width: 37.5em) {
    #mailform input {
      font-size: 3rem; } }

#mailform input[name='email'] {
  margin-bottom: 2rem; }

#mailform .ins-table {
  width: 100%;
  display: table;
  table-layout: fixed; }

#mailform .ins-table .left {
  display: table-cell;
  vertical-align: middle;
  padding-right: 0.25rem; }

#mailform .ins-table .right {
  display: table-cell;
  vertical-align: middle;
  padding-left: 0.25rem; }

.countdown {
  position: fixed;
  top: 0px;
  right: 2rem;
  width: 500px;
  padding: 0 30px;
  background: url(../img/floating_counter_bcg.png) no-repeat 50%;
  background-size: 100% 100%;
  z-index: 99999; }

@media (max-width: 549px) {
  .countdown {
    left: 0;
    right: 0;
    max-width: 100%; } }

.countdown__content,
.countdown__time {
  display: flex; }

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

.countdown__hours,
.countdown__minutes,
.countdown__seconds {
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: auto auto; }

.countdown__hours,
.countdown__minutes {
  position: relative; }

.countdown__hours:after,
.countdown__minutes:after {
  content: ':';
  font-size: 20px;
  font-weight: 700;
  position: absolute;
  right: -2px;
  top: calc(50% - 9px);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%); }

.countdown__text {
  width: 160px;
  padding: 20px 0;
  text-align: right;
  font-weight: 700;
  font-size: 18px;
  margin: 0;
  line-height: 1; }

@media (max-width: 549px) {
  .countdown__text {
    font-size: 3rem;
    width: 100%;
    padding: 10px 0;
    text-align: center; } }

.countdown__time {
  padding-top: 10px; }

@media (max-width: 549px) {
  .countdown__time {
    justify-content: center; } }

.countdown__digit {
  margin: 0 5px; }

.countdown__digit--first {
  margin-right: 0; }

.countdown__label {
  grid-column: 1/3;
  margin: 0;
  text-align: center;
  font-weight: 700;
  font-size: 12px; }

.countdown__digit-value {
  width: 40px;
  height: 50px;
  border-radius: 4px;
  background: #000;
  color: #fff;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Rajdhani, sans-serif;
  margin: 0; }

.row {
  max-width: 114rem;
  margin: 0 auto;
  padding: 0 10rem; }
  @media (max-width: 56.25em) {
    .row:not(:last-child) {
      margin-bottom: 6rem !important; } }
  @media (max-width: 56.25em) {
    .row {
      padding: 0 3rem; } }
  .row::after {
    content: '';
    display: table;
    clear: both; }
  .row [class^="col-"] {
    float: left; }
    .row [class^="col-"]:not(:last-child) {
      margin-right: 6rem; }
      @media (max-width: 56.25em) {
        .row [class^="col-"]:not(:last-child) {
          margin-right: 0 !important;
          margin-bottom: 6rem !important; } }
    @media (max-width: 56.25em) {
      .row [class^="col-"] {
        width: 100% !important; } }
  .row .col-1-of-2 {
    width: calc((100% - 6rem) / 2); }
  .row .col-1-of-3 {
    width: calc((100% - 2 * 6rem) / 3); }
  .row .col-2-of-3 {
    width: calc( 2 * ((100% - 2 * 6rem) / 3) +  6rem); }
  .row .col-1-of-4 {
    width: calc((100% - 3 * 6rem) / 4); }
  .row .col-2-of-4 {
    width: calc(2 * ((100% - 3 * 6rem) / 4) +  6rem); }
  .row .col-3-of-4 {
    width: calc(3 * ((100% - 3 * 6rem) / 4) + 2 * 6rem); }

.header {
  background-color: #e60102; }
  @media (max-width: 37.5em) {
    .header {
      display: none; } }
  .header .paragraph {
    color: #fff;
    display: inline-block; }
  .header span {
    color: #e60102;
    background-color: #87ba00;
    padding: 0.4rem 1rem;
    font-weight: 700;
    font-size: 1.4rem;
    display: inline-block;
    margin-left: 2rem; }

.bg-wrapper {
  background: url(../img/bg-10.png) no-repeat, url(../img/bg-11.png) no-repeat;
  background-size: auto 27%, auto 27%;
  background-position: top 60rem right 0rem, bottom 6rem left 0rem; }
  @media (max-width: 37.5em) {
    .bg-wrapper {
      background-size: 0%; } }

.form {
  background: url(../img/bg-12.png) no-repeat, url(../img/bg-13.png) no-repeat, url(../img/bg-14.png) no-repeat, url(../img/bg-15.png) no-repeat;
  background-size: 100% 33%, auto 78%, auto 20%, 100% 80%;
  background-position: bottom 0rem left 0rem, left 0rem top 0rem, right 10rem top 0rem, bottom 0rem left 0rem;
  font-size: 1.6rem; }
  @media (max-width: 37.5em) {
    .form {
      background-size: 100% 15%, 0%, 0%, 0%; } }
  .form__container {
    padding: 10rem 0 4rem 0;
    display: table;
    width: 100%; }
    @media (max-width: 37.5em) {
      .form__container {
        display: block;
        width: 100%; } }
  .form__left {
    display: table-cell;
    width: 50%; }
    @media (max-width: 37.5em) {
      .form__left {
        display: block;
        width: 100%; } }
  .form__right {
    display: table-cell;
    width: 50%;
    position: relative;
    vertical-align: top; }
    @media (max-width: 37.5em) {
      .form__right {
        display: block;
        width: 100%;
        height: 50rem;
        text-align: center; } }
  .form__text {
    text-align: center; }
    @media (max-width: 37.5em) {
      .form__text {
        padding-top: 4rem; } }
  .form__image {
    padding: 5rem 0 2rem 0;
    width: 30rem; }
    @media (max-width: 37.5em) {
      .form__image {
        padding: 0rem 0 2rem 0;
        width: 28rem; } }
  .form__numbers-image {
    text-align: center;
    padding: 1rem 0 3rem 0; }
    .form__numbers-image img {
      width: 18rem; }
  .form__price2 {
    position: absolute;
    z-index: 5;
    width: 32rem;
    top: 18rem;
    left: -7rem; }
    @media (max-width: 37.5em) {
      .form__price2 {
        left: 0rem; } }
  .form__badges-red {
    width: 25rem;
    padding: 0 0 6rem 0rem; }
    @media (max-width: 37.5em) {
      .form__badges-red {
        width: 32rem; } }
  .form__priduct {
    width: 46rem;
    z-index: 10;
    position: absolute;
    right: 0rem;
    bottom: -4rem; }

.counter-main {
  position: relative; }
  .counter-main__image-counter {
    position: relative;
    width: 18rem; }
  .counter-main .downcounter {
    color: #fff;
    position: absolute;
    z-index: 1;
    font-family: Rajdhani, sans-serif;
    font-weight: 700;
    font-size: 5rem;
    letter-spacing: 2rem;
    line-height: 6rem;
    left: 0.8rem; }
  .counter-main .downcounter2 {
    left: 5.8rem; }
    @media (max-width: 37.5em) {
      .counter-main .downcounter2 {
        left: 14.2rem; } }
