/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
	 ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
	 ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
	 ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 1.5em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
	 ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
	 ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
	 ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type=checkbox],
input[type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
	 ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.ellipsis {
  white-space: nowrap;
  /* 1 */
  text-overflow: ellipsis;
  /* 2 */
  overflow: hidden;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

* {
  max-height: 1000000px;
}

body {
  color: #3D3D3D;
  background: #EFEFEF;
  font: 18px/1.444 "Lato", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  min-width: 320px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

.gm-style img {
  max-width: none;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6,
.h {
  font-family: "Martel Sans", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  font-weight: 300;
  margin: 0 0 0.5em;
  color: inherit;
  line-height: 1;
}

h1, .h1 {
  font-size: 80px;
}

h2, .h2 {
  font-size: 60px;
}

h3, .h3 {
  font-size: 50px;
}

h4, .h4 {
  font-size: 21px;
}

h5, .h5 {
  font-size: 17px;
}

h6, .h6 {
  font-size: 15px;
}

p {
  margin: 0 0 1em;
  font-size: 16px;
}

a {
  color: #39f;
}
a:hover, a:focus {
  text-decoration: none;
}

form,
fieldset {
  margin: 0;
  padding: 0;
  border-style: none;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=search],
input[type=password],
textarea {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #3D3D3D;
  padding: 0.4em 0.7em;
}
input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
input[type=search]:focus,
input[type=password]:focus,
textarea:focus {
  border-color: #191919;
}
input[type=text]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=search]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #3D3D3D;
}
input[type=text]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=search]::-moz-placeholder,
input[type=password]::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 1;
  color: #3D3D3D;
}
input[type=text]:-moz-placeholder,
input[type=tel]:-moz-placeholder,
input[type=email]:-moz-placeholder,
input[type=search]:-moz-placeholder,
input[type=password]:-moz-placeholder,
textarea:-moz-placeholder {
  color: #3D3D3D;
}
input[type=text]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=search]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #3D3D3D;
}
input[type=text].placeholder,
input[type=tel].placeholder,
input[type=email].placeholder,
input[type=search].placeholder,
input[type=password].placeholder,
textarea.placeholder {
  color: #3D3D3D;
}

select {
  -webkit-border-radius: 0;
}

textarea {
  resize: vertical;
  vertical-align: top;
}

button,
input[type=button],
input[type=reset],
input[type=file],
input[type=submit] {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  cursor: pointer;
}

@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.eot?b35whi");
  src: url("../fonts/icomoon.eot?b35whi#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?b35whi") format("truetype"), url("../fonts/icomoon.woff?b35whi") format("woff"), url("../fonts/icomoon.svg?b35whi#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-copyright:before {
  content: "\e907";
}

.icon-plant:before {
  content: "\e900";
}

.icon-protein:before {
  content: "\e901";
}

.icon-search:before {
  content: "\e902";
}

.icon-smooth:before {
  content: "\e903";
}

.icon-arrow-down-circle:before {
  content: "\e904";
}

.icon-built:before {
  content: "\e905";
}

.icon-instagram:before {
  content: "\e906";
}

@media (max-width: 1023px) {
  body {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 12px;
    line-height: 1.25;
  }
}

#wrapper {
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1158px;
  padding: 0 35px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 379px) {
  .container {
    padding: 0 15px;
  }
}

a:not(.btn) {
  text-decoration: none;
  color: #959595;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
a:not(.btn):hover {
  color: #191919;
}

.btn {
  display: inline-block;
  vertical-align: top;
  border: 1px solid #191919;
  min-width: 144px;
  text-align: center;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  color: #191919;
  padding: 13px;
  border-radius: 30px;
  text-decoration: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.btn:hover {
  background: #9180F6;
  border-color: #9180F6;
  color: #fff;
}

@media (max-width: 1199px) {
  h1,
.h1 {
    font-size: 60px;
  }
}
@media (max-width: 379px) {
  h1,
.h1 {
    font-size: 48px;
  }
}

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

@media (min-width: 768px) {
  .hidden-desktop {
    display: none;
  }
}

.header {
  padding: 35px 0;
  position: relative;
}
@media (max-width: 767px) {
  .header {
    padding: 25px 0;
  }
}
.header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.nav-opener {
  width: 23px;
  height: 19px;
  border-top: 3px solid #0A0A0A;
  position: relative;
  display: block;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.nav-active .nav-opener {
  border: none;
}
.nav-opener:before, .nav-opener:after {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: absolute;
  left: 0;
  right: 0;
  top: 4px;
  content: "";
  background: #0A0A0A;
  height: 3px;
}
.nav-active .nav-opener:before, .nav-active .nav-opener:after {
  top: 7px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.nav-opener:after {
  top: 11px;
}
.nav-active .nav-opener:after {
  top: 7px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media (max-width: 767px) {
  .nav-drop {
    position: absolute;
    right: 0;
    width: 100%;
    background: #EFEFEF;
    top: 100%;
    z-index: 9;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0);
  }
  .nav-active .nav-drop {
    -webkit-transform: none;
            transform: none;
  }
}

.logo {
  display: block;
  width: 126px;
}
@media (max-width: 1023px) {
  .logo {
    width: 100px;
  }
}
@media (max-width: 767px) {
  .logo {
    width: 84px;
  }
}
.logo a {
  display: block;
}
.logo img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

.menu {
  font: 600 16px/19px "Noto Sans", sans-serif;
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 767px) {
  .menu {
    display: block;
  }
}
.menu li {
  padding: 0 15px;
}
@media (max-width: 1023px) {
  .menu li {
    padding: 0 10px;
  }
}
.menu a {
  display: block;
  position: relative;
  padding: 10px 0;
  border-bottom: 1px solid transparent;
}
.menu a:hover, .menu a.active {
  border-bottom-color: #8C87C8;
  color: #191919;
}

.actions-links {
  margin: 0 -21px;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1023px) {
  .actions-links {
    margin: 0 -10px;
  }
}
@media (max-width: 767px) {
  .actions-links {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    margin: 0 -6px;
  }
}
.actions-links li {
  padding: 0 21px;
}
@media (max-width: 1023px) {
  .actions-links li {
    padding: 0 10px;
  }
}
@media (max-width: 767px) {
  .actions-links li {
    padding: 0 6px;
  }
}
.actions-links a:not(.btn) {
  color: #3E3E3E;
}
.actions-links .icon {
  font-size: 28px;
}
@media (max-width: 767px) {
  .actions-links .icon {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .actions-links .btn {
    font-size: 10px;
    line-height: 13px;
    padding: 8px;
    min-width: 85px;
  }
}

.visual {
  position: relative;
  padding: 60px 0;
  font-weight: 300;
}
@media (max-width: 767px) {
  .visual {
    padding: 53px 0;
  }
}
.visual .visual-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 0 55px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}
@media (max-width: 1023px) {
  .visual .visual-wrap {
    padding: 0 0 72px;
    margin: 0 0 47px;
  }
}
.visual .image-holder {
  width: 50%;
  position: relative;
}
@media (max-width: 1023px) {
  .visual .image-holder {
    position: static;
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    max-width: 344px;
    margin: 0 auto;
  }
}
.visual .image-holder img {
  width: 100%;
  height: auto;
  vertical-align: top;
}
.visual .text-holder {
  width: 45.9%;
}
@media (max-width: 1023px) {
  .visual .text-holder {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding: 0 25% 30px 0;
  }
}
.visual .img-circle {
  width: 700px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  z-index: -1;
}
@media (max-width: 1023px) {
  .visual .img-circle {
    width: 75%;
    left: auto;
    right: -25%;
    -webkit-transform: none;
            transform: none;
    top: -80px;
  }
}
.visual .btn-holder {
  width: 30%;
  text-align: center;
}
@media (max-width: 1023px) {
  .visual .btn-holder {
    width: 100%;
  }
}
.visual h1 {
  color: #191919;
  margin: 0;
}
@media (max-width: 1023px) {
  .visual h1 br {
    display: none;
  }
}
.visual p {
  margin: 0 0 16px;
}
.visual .btn-scroll {
  color: #3D3D3D;
  font-weight: 700;
  font-size: 18px;
}
.visual .btn-scroll .icon {
  display: inline-block;
  vertical-align: middle;
  font-size: 26px;
  margin: 0 10px 0 0;
}
@media (max-width: 1023px) {
  .visual .btn {
    position: absolute;
    left: 50%;
    max-width: 344px;
    width: 100%;
    bottom: 0;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}
@media (max-width: 379px) {
  .visual .btn {
    max-width: 280px;
  }
}

.block-protein {
  position: relative;
  padding: 47px 0 90px;
  font-weight: 300;
}
@media (max-width: 767px) {
  .block-protein {
    padding: 17px 0 70px;
  }
}
.block-protein .container {
  position: relative;
}
.block-protein .shape-holder {
  position: absolute;
  right: -300px;
  bottom: 100px;
  max-width: 727px;
  width: 100%;
  z-index: -1;
}
@media (max-width: 767px) {
  .block-protein .shape-holder {
    right: auto;
    left: -60%;
    width: 150%;
    max-width: inherit;
  }
}
.block-protein .btn {
  min-width: 236px;
}
@media (max-width: 767px) {
  .block-protein .btn {
    max-width: 320px;
    width: 100%;
  }
}

.block-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 49px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .block-head {
    max-width: 80%;
  }
}
.block-head .h1 {
  text-transform: uppercase;
  margin: 0;
}
@media (max-width: 767px) {
  .block-head .h1 {
    margin: 0 0 6px;
  }
}

.three-cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 8px;
}
@media (max-width: 1023px) {
  .three-cols {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 767px) {
  .three-cols {
    margin: 0;
  }
}
.three-cols .col-text {
  width: 190px;
  padding: 14px 0 0;
}
@media (max-width: 767px) {
  .three-cols .col-text {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 100%;
    padding: 0;
  }
}
@media (max-width: 767px) {
  .three-cols .col-text:first-child {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.three-cols .block-text {
  position: relative;
  overflow: hidden;
  margin: 0 0 177px;
}
@media (max-width: 1023px) {
  .three-cols .block-text {
    margin: 0 0 90px;
  }
}
@media (max-width: 767px) {
  .three-cols .block-text {
    max-width: 210px;
    margin: 0 auto 45px;
  }
}
.three-cols .block-text:last-child {
  margin: 0;
}
@media (max-width: 767px) {
  .three-cols .block-text:last-child {
    margin: 0 auto 45px;
  }
}
.three-cols .title {
  display: block;
  font-size: 24px;
  line-height: 28px;
  margin: 0 0 4px;
}
@media (max-width: 767px) {
  .three-cols .title {
    margin: 0 0 6px;
  }
}
.three-cols .title .icon {
  display: inline-block;
  vertical-align: top;
  margin: 2px 10px 0 0;
  color: #D8D8D8;
  font-size: 24px;
}
.three-cols .col-image {
  width: calc(100% - 380px);
  padding: 0 10px;
}
@media (max-width: 767px) {
  .three-cols .col-image {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin: 0 0 -3px;
  }
}
.three-cols .image-holder {
  position: relative;
}
.three-cols .image-holder img {
  width: 100%;
  height: auto;
  vertical-align: top;
}
.three-cols .image-product {
  max-width: 546px;
  padding: 15px;
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin: -20px 0 0;
}
@media (max-width: 1199px) {
  .three-cols .image-product {
    max-width: 460px;
  }
}
@media (max-width: 767px) {
  .three-cols .image-product {
    max-width: 230px;
    padding: 0;
    top: 42%;
  }
}
@media (max-width: 379px) {
  .three-cols .image-product {
    max-width: 190px;
    top: 50%;
  }
}

.block-function {
  position: relative;
  padding: 30px 0 0;
  margin: 0 0 30px;
  background: #191919;
  color: #fff;
  text-transform: uppercase;
}
@media (max-width: 1023px) {
  .block-function {
    padding: 70px 0;
    margin: 0;
  }
}
@media (max-width: 767px) {
  .block-function {
    text-align: center;
  }
}
.block-function .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1023px) {
  .block-function .container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.block-function .image-box {
  width: 40%;
  position: relative;
  z-index: 2;
  margin: 0 0 -30px -40px;
}
@media (max-width: 1199px) {
  .block-function .image-box {
    width: 30%;
  }
}
@media (max-width: 1023px) {
  .block-function .image-box {
    width: 100%;
    margin: 0 auto 50px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media (max-width: 1023px) {
  .block-function .image-box .image-area {
    max-width: 328px;
    margin: 0 auto;
  }
}
.block-function .image-box .item-rotate {
  position: absolute;
  right: -60px;
  top: -30px;
  max-width: 424px;
  width: 100%;
  z-index: -1;
}
@media (max-width: 1023px) {
  .block-function .image-box .item-rotate {
    right: auto;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.block-function .image {
  width: 184px;
  margin: 0 auto 30px;
}
@media (max-width: 767px) {
  .block-function .image {
    margin: 0 auto 20px;
    width: 128px;
  }
}
.block-function .image img {
  width: 100%;
  height: auto;
  vertical-align: top;
}
@media (max-width: 1023px) {
  .block-function .text-left {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding: 0 8px 0 0;
  }
}
@media (max-width: 767px) {
  .block-function .text-left {
    width: 100%;
    padding: 0;
  }
}
.block-function .h1 {
  margin: 0;
  font-size: 64px;
}
@media (max-width: 767px) {
  .block-function .h1 {
    font-size: 52px;
  }
}
@media (max-width: 1023px) {
  .block-function .text-right {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    padding: 0 0 0 8px;
  }
}
@media (max-width: 767px) {
  .block-function .text-right {
    width: 100%;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.block-function .text-right .image {
  margin: 0 0 30px auto;
}
@media (max-width: 767px) {
  .block-function .text-right .image {
    margin: 20px auto 0;
    width: 135px;
  }
}

.block-faq {
  padding: 89px 0 65px;
  position: relative;
}
@media (max-width: 1023px) {
  .block-faq {
    padding: 87px 0 102px;
  }
}
.block-faq .h1 {
  text-align: center;
}
@media (max-width: 767px) {
  .block-faq .h1 {
    margin: 0 0 -6px;
  }
}
.block-faq .shape-holder {
  position: absolute;
  left: -300px;
  max-width: 777px;
  width: 100%;
  bottom: 0;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 1023px) {
  .block-faq .shape-holder {
    width: 100%;
    left: -30%;
    bottom: 20%;
  }
}
.block-faq .shape-holder img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

.faq-wrap {
  position: relative;
  border: 1px solid #707070;
  border-radius: 40px;
  padding: 12px 40px;
}
@media (max-width: 767px) {
  .faq-wrap {
    padding: 12px 30px;
  }
}
.faq-wrap:after {
  position: absolute;
  border: 1px solid #707070;
  border-radius: 40px;
  content: "";
  inset: 12px;
  pointer-events: none;
}
.faq-wrap .faq-box {
  max-width: 825px;
  margin: 0 auto;
  padding: 80px 0;
}
@media (max-width: 767px) {
  .faq-wrap .faq-box {
    padding: 50px 0 76px;
  }
}

.accordion {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: my-awesome-counter;
}
.accordion li {
  border-bottom: 1px solid #191919;
  overflow: hidden;
}
.accordion .active .img-plus:after {
  -webkit-transform: none;
          transform: none;
}
.accordion a {
  font-size: 21px;
  line-height: 25px;
  display: block;
  padding: 16px 30px 16px 50px;
  color: #191919;
  position: relative;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  counter-increment: my-awesome-counter;
}
@media (max-width: 1023px) {
  .accordion a {
    font-size: 18px;
    line-height: 22px;
    padding: 10px 15px 10px 32px;
  }
}
@media (max-width: 767px) {
  .accordion a {
    font-size: 12px;
    line-height: 15px;
  }
}
.accordion a:hover {
  color: #9180F6;
}
.accordion a:before {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  text-transform: uppercase;
  content: counter(my-awesome-counter, lower-alpha);
}
.accordion .img-plus {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.accordion .img-plus:after, .accordion .img-plus:before {
  position: absolute;
  right: 0;
  top: 50%;
  content: "";
  width: 14px;
  height: 2px;
  background: currentColor;
}
@media (max-width: 767px) {
  .accordion .img-plus:after, .accordion .img-plus:before {
    width: 10px;
  }
}
.accordion .img-plus:after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.accordion .slide-wrap {
  position: relative;
  overflow: hidden;
  padding: 5px 0 5px 50px;
}
@media (max-width: 767px) {
  .accordion .slide-wrap {
    padding: 5px 0 5px 20px;
  }
}

.block-insta {
  position: relative;
  padding: 0 0 50px;
}
.block-insta .insta-images {
  position: relative;
  margin: 0 0 67px;
}
@media (max-width: 767px) {
  .block-insta .insta-images {
    margin: 0 0 59px;
  }
}
.block-insta .insta-images img {
  width: 100%;
  height: auto;
  vertical-align: top;
}
.block-insta .btn {
  min-width: 283px;
}
@media (max-width: 767px) {
  .block-insta .btn {
    max-width: 320px;
    width: 100%;
  }
}
.block-insta .btn .icon {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 0 10px;
}

.block-journey {
  background: #191919;
  color: #fff;
  text-align: center;
  padding: 101px 0;
}
@media (max-width: 767px) {
  .block-journey {
    padding: 51px 0;
  }
}
@media (max-width: 767px) {
  .block-journey h2 {
    margin: 0 0 22px;
  }
}
.block-journey .btn {
  color: #fff;
  border-color: #fff;
  font-size: 31px;
  line-height: 34px;
  min-width: 333px;
  padding: 25px 15px;
  border-radius: 80px;
}
@media (max-width: 767px) {
  .block-journey .btn {
    padding: 11px;
    max-width: 320px;
    width: 100%;
    min-width: inherit;
  }
}
.block-journey .btn:hover {
  border-color: #9180F6;
}
.block-journey .btn .img {
  width: 108px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 0 20px;
}
.block-journey .btn .img img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

.footer {
  background: #9180F6;
  color: #fff;
  padding: 58px 0 40px;
}
@media (max-width: 767px) {
  .footer {
    font-size: 10px;
    padding: 36px 0 40px;
  }
}
.footer .container {
  max-width: 1080px;
}
.footer .top-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0 0 86px;
}
@media (max-width: 1023px) {
  .footer .top-area {
    margin: 0 0 50px;
  }
}
@media (max-width: 767px) {
  .footer .top-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin: 0 0 20px;
  }
}
.footer .right-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  min-width: 0;
  padding: 0 0 0 20px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 767px) {
  .footer .right-col {
    width: 100%;
    padding: 0 0 20px;
    -webkit-box-flex: inherit;
        -ms-flex: inherit;
            flex: inherit;
    display: block;
    text-align: center;
  }
}
.footer .contact-box {
  width: 304px;
}
@media (max-width: 1023px) {
  .footer .contact-box {
    width: 270px;
  }
}
@media (max-width: 767px) {
  .footer .contact-box {
    width: 171px;
    margin: 0 auto 13px;
  }
}
.footer .contact-box .heading {
  margin: 0 0 18px;
  display: block;
  font-weight: 400;
}
@media (max-width: 767px) {
  .footer .contact-box .heading {
    font-size: 12px;
    margin: 0 0 10px;
  }
}
.footer .address-area {
  font-size: 16px;
  line-height: 1.2;
}
@media (max-width: 1023px) {
  .footer .address-area {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .footer .address-area {
    font-size: 8px;
  }
}
.footer .title {
  display: block;
}
@media (max-width: 767px) {
  .footer .title {
    font-size: 10px;
  }
}
.footer address {
  font-style: normal;
}
.footer .footer-links {
  width: 100px;
  margin: 0 0 0 80px;
  padding: 0;
  list-style: none;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .footer .footer-links {
    width: 100px;
    margin: 0 0 0 30px;
  }
}
@media (max-width: 767px) {
  .footer .footer-links {
    margin: 0;
    width: 100%;
    font-size: 12px;
  }
}
.footer .footer-links li {
  margin: 0 0 20px;
}
@media (max-width: 767px) {
  .footer .footer-links li {
    margin: 0 0 15px;
  }
}
.footer a {
  color: #fff;
}
.footer a:hover {
  color: #fff;
}

.form-email {
  max-width: 236px;
  margin: 0 0 27px;
}
@media (max-width: 767px) {
  .form-email {
    margin: 0 0 10px;
  }
}
.form-email input[type=text],
.form-email input[type=email] {
  font-size: 11px;
  line-height: 14px;
  width: 100%;
  padding: 13px;
  background: rgba(255, 255, 255, 0.15);
  height: 40px;
  border: none;
  font-weight: 600;
  color: #fff;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.form-email input[type=text]::-webkit-input-placeholder,
.form-email input[type=email]::-webkit-input-placeholder {
  color: #fff;
}
.form-email input[type=text]::-moz-placeholder,
.form-email input[type=email]::-moz-placeholder {
  opacity: 1;
  color: #fff;
}
.form-email input[type=text]:-moz-placeholder,
.form-email input[type=email]:-moz-placeholder {
  color: #fff;
}
.form-email input[type=text]:-ms-input-placeholder,
.form-email input[type=email]:-ms-input-placeholder {
  color: #fff;
}
.form-email input[type=text].placeholder,
.form-email input[type=email].placeholder {
  color: #fff;
}
@media (max-width: 767px) {
  .form-email input[type=text],
.form-email input[type=email] {
    font-size: 10px;
    line-height: 12px;
    height: 22px;
    padding: 5px 10px;
    text-align: center;
  }
}

.f-logo {
  display: block;
  width: 283px;
}
@media (max-width: 1023px) {
  .f-logo {
    width: 240px;
  }
}
@media (max-width: 767px) {
  .f-logo {
    width: 155px;
    margin: 0 auto 10px;
  }
}
.f-logo a {
  display: block;
}
.f-logo img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

.copyright {
  text-align: center;
}
.copyright p {
  margin: 0;
}




/* Added trash code */

.faq-wrap-1 {
  position: relative;
  border: 1px solid #707070;
  border-radius: 40px;
  padding: 12px 40px;
}
@media (max-width: 767px) {
  .faq-wrap-1 {
    padding: 12px 30px;
  }
}
.faq-wrap-1:after {
  position: absolute;
  border: 1px solid #707070;
  border-radius: 40px;
  content: "";
  inset: 12px;
  pointer-events: none;
}
.faq-wrap-1 .faq-box {
  max-width: 825px;
  margin: 0 auto;
  padding: 80px 0;
}
@media (max-width: 767px) {
  .faq-wrap-1 .faq-box {
    padding: 50px 0 76px;
  }
}

.review-block
{
  /* border: solid red 1px; */
 display: flex;
 flex-direction: column;
 justify-content: space-between;
 width: 100%;
 

}

@media screen and (min-width:400px) {
.review-block{
  flex-direction: row;
}
}

.review-block-inner{
  overflow-wrap: break-word;
  padding-bottom: 10px;
  padding-right: 2px;
  /* max-width: 33%; */
}

.faq-wrap-1 .faq-box-1 {
  max-width: 825px;
  width: 100%;
  margin: 0 auto;
  padding: 10px;
}
@media (max-width: 767px) {
  .faq-wrap-1 .faq-box-1 {
    padding: 50px 0 76px;
  }