/* Fonts */
/* Fonts */
@font-face {
  font-family: 'CervoNeue-black';
  src: url("../fonts/CervoNeue-black.otf") format("truetype"); }

@font-face {
  font-family: 'CervoNeue-bold';
  src: url("../fonts/CervoNeue-bold.otf") format("truetype"); }

@font-face {
  font-family: 'CervoNeue-light';
  src: url("../fonts/CervoNeue-light.otf") format("truetype"); }

@font-face {
  font-family: 'CervoNeue-medium';
  src: url("../fonts/CervoNeue-medium.otf") format("truetype"); }

@font-face {
  font-family: 'CervoNeue-regular';
  src: url("../fonts/CervoNeue-regular.otf") format("truetype"); }

@font-face {
  font-family: 'CervoNeue-semi-bold';
  src: url("../fonts/CervoNeue-semi-bold.otf") format("truetype"); }

@font-face {
  font-family: 'CervoNeue-extra-bold';
  src: url("../fonts/CervoNeue-extra-bold.otf") format("truetype"); }

@font-face {
  font-family: 'CervoNeue-thin';
  src: url("../fonts/CervoNeue-thin.otf") format("truetype"); }

@font-face {
  font-family: 'opensans-regular';
  src: url("../fonts/OpenSansHebrew-Regular.ttf") format("truetype"); }

@font-face {
  font-family: 'opensans-bold';
  src: url("../fonts/OpenSansHebrew-Bold.ttf") format("truetype"); }

/* /Fonts */
/* Global */
html {
  margin: 0 !important; }

body {
  position: relative;
  margin: 0;
  padding: 0;
  font-size: 0;
  overflow-x: hidden; }

a {
  text-decoration: none; }

*, *::before, *::after {
  box-sizing: border-box;
  direction: ltr; }

p {
  margin: 0; }

ul {
  -webkit-padding-start: 0;
  list-style: none;
  margin: 0;
  padding: 0; }

.content ul {
  list-style: disc;
  -webkit-padding-start: 20px;
          padding-inline-start: 20px;
  margin-top: 20px; }

section {
  width: 100%;
  max-width: 1920px;
  margin: auto;
  overflow: hidden;
  font-size: 18px; }

.section-inner {
  max-width: 1386px;
  padding: 0 10px;
  width: 100%;
  margin: auto; }

.section-inner.wide {
  max-width: 1880px; }

.section-inner.wider {
  max-width: 1620px; }

/* ---------------------- header ---------------------- */
header {
  height: 90px;
  background: rgba(255, 255, 255, 0.95);
  position: fixed;
  width: 100%;
  z-index: 999; }
  header .inner {
    max-width: 1386px;
    padding: 0 10px;
    width: 100%;
    height: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center; }
  header .menu-cont > ul {
    display: flex;
    height: 100%;
    align-items: center; }
    header .menu-cont > ul > li {
      margin: 0 20px;
      position: relative; }
      header .menu-cont > ul > li > a {
        font-family: 'CervoNeue-semi-bold';
        font-size: 18px;
        color: #000;
        text-transform: uppercase;
        transition: 0.5s;
        display: inline-block;
        line-height: 90px;
        transition: 0.5s;
        white-space: nowrap; }
      header .menu-cont > ul > li.current_page_item a, header .menu-cont > ul > li.current-menu-item a {
        font-family: 'CervoNeue-extra-bold'; }
      header .menu-cont > ul > li .sub-menu {
        padding: 25px 10px;
        position: absolute;
        background-color: #00b4a5;
        z-index: 99;
        width: auto;
        left: 0;
        top: 100%;
        visibility: hidden;
        opacity: 0;
        transition: visibility 0s, opacity 0.5s linear;
        transition: 0.5s; }
        header .menu-cont > ul > li .sub-menu:before {
          content: "";
          position: absolute;
          height: 30px;
          top: -30px;
          left: 0;
          right: 0;
          background: pink;
          opacity: 0; }
        header .menu-cont > ul > li .sub-menu li {
          margin-top: 10px; }
          header .menu-cont > ul > li .sub-menu li:first-child {
            margin-top: 0; }
          header .menu-cont > ul > li .sub-menu li a {
            font-family: 'CervoNeue-regular';
            font-size: 18px;
            color: #fff;
            white-space: nowrap;
            transition: 0.5s;
            text-transform: uppercase; }
            header .menu-cont > ul > li .sub-menu li a:after {
              bottom: -24px; }
            header .menu-cont > ul > li .sub-menu li a:hover {
              color: #1c1c1c; }
      header .menu-cont > ul > li:hover .dropdown-menu {
        visibility: visible;
        top: 90px;
        opacity: 1; }
        @media only screen and (max-width: 1600px) {
          header .menu-cont > ul > li:hover .dropdown-menu {
            top: 60px; } }
      header .menu-cont > ul > li:hover > a {
        color: #00B4A5; }
      header .menu-cont > ul > li:hover .sub-menu {
        visibility: visible;
        opacity: 1; }
  header .search {
    width: 106px;
    text-align: right; }
    header .search .icon {
      display: inline-block;
      height: 45px;
      width: 45px;
      background: #00b4a5;
      text-align: center;
      position: relative;
      cursor: pointer; }
      header .search .icon i {
        color: #fff;
        font-size: 24px;
        position: relative;
        top: 50%;
        transform: translateY(-50%); }
        header .search .icon i.fa-close {
          display: none; }
        header .search .icon i.fa-search {
          display: block; }
    header .search.open .icon i.fa-close {
      display: block; }
    header .search.open .icon i.fa-search {
      display: none; }
  @media only screen and (max-width: 1100px) {
    header .menu-cont > ul > li {
      margin: 0 15px; }
      header .menu-cont > ul > li > a {
        font-size: 16px; } }
  @media only screen and (max-width: 950px) {
    header {
      height: 50px; }
      header .menu-cont {
        display: none; }
      header .search {
        flex-grow: 1;
        margin-right: 10px;
        width: auto; }
        header .search .icon {
          height: 40px;
          width: 40px; }
      header .logo img {
        width: 75px; } }

/* --------------------- /header ---------------------- */
.lang {
  font-family: 'CervoNeue-semi-bold';
  font-size: 18px;
  color: #000;
  white-space: nowrap;
  margin: 0 20px;
  cursor: pointer;
  display: inline-block; }
  .lang img {
    height: 15px; }
  .lang span, .lang img {
    display: inline-block;
    vertical-align: middle; }

/* --------------- Toggle button ---------------- */
.toggle-button {
  width: 40px;
  height: 40px;
  position: relative;
  background: #00B4A5;
  z-index: 103;
  cursor: pointer;
  display: none;
  transition: 0.5s; }
  @media only screen and (max-width: 950px) {
    .toggle-button {
      display: block; } }
  .toggle-button div {
    width: 22px;
    height: 3px;
    background-color: #fff;
    position: absolute;
    border-radius: 2px;
    transition: top 0.5s, transform 1s, opacity 0.5s, width 0.5s; }
  .toggle-button .inner {
    position: relative;
    left: 5px;
    top: 5px; }
  .toggle-button div:nth-child(1) {
    top: 5px;
    left: 4px; }
  .toggle-button div:nth-child(2) {
    top: 13px;
    left: 4px; }
  .toggle-button div:nth-child(3) {
    top: 21px;
    left: 4px; }
  .toggle-button.open div:nth-child(1) {
    top: 13px;
    transform: rotate(45deg); }
  .toggle-button.open div:nth-child(2) {
    opacity: 0;
    width: 1px; }
  .toggle-button.open div:nth-child(3) {
    top: 13px;
    transform: rotate(-45deg); }

/* --------------- /Toggle button ---------------- */
/* --------------- Mobile menu ---------------- */
.mobile-menu-cont {
  direction: rtl;
  padding: 10px 20px;
  background: #00b4a5;
  position: absolute;
  top: 50px;
  height: 900px;
  z-index: 101;
  left: 0;
  right: 0;
  display: none;
  text-align: left; }
  .mobile-menu-cont .lang {
    margin: 15px;
    margin-left: 0;
    margin-right: auto;
    background: #fff;
    padding: 5px;
    display: inline-block; }
  .mobile-menu-cont .mobile-menu > li {
    position: relative;
    text-align: left;
    padding: 10px 0;
    border-bottom: 2px solid rgba(24, 24, 24, 0.25); }
    .mobile-menu-cont .mobile-menu > li a {
      transition: 0.5s;
      font-family: 'CervoNeue-regular';
      font-size: 22px;
      padding: 3px 10px;
      color: #fff;
      white-space: nowrap;
      text-transform: uppercase; }
      .mobile-menu-cont .mobile-menu > li a:hover {
        color: #1c1c1c; }
    .mobile-menu-cont .mobile-menu > li#menu-item-1462 a {
      padding-right: 35px;
      background-image: url("../images/icons/en.png");
      background-repeat: no-repeat;
      background-position: right center; }
    .mobile-menu-cont .mobile-menu > li.current_page_item, .mobile-menu-cont .mobile-menu > li.current-menu-item > a {
      color: #1c1c1c; }
    .mobile-menu-cont .mobile-menu > li .sub-menu {
      padding-top: 10px; }
      .mobile-menu-cont .mobile-menu > li .sub-menu li {
        margin-top: 5px; }
        .mobile-menu-cont .mobile-menu > li .sub-menu li a {
          padding-right: 10px;
          font-size: 18px; }
  .mobile-menu-cont .mobile-menu li.current-menu-item > a, .mobile-menu-cont .mobile-menu li.current_page_item > a {
    color: #1c1c1c; }
  .mobile-menu-cont .mobile-menu .open-arrow {
    display: inline-block;
    color: #fff;
    cursor: pointer;
    transition: 0.5s;
    font-size: 14px;
    margin-right: 25px;
    position: absolute;
    top: 15px;
    right: 10px; }
    .mobile-menu-cont .mobile-menu .open-arrow span {
      position: relative;
      top: 2px; }
  .mobile-menu-cont .mobile-menu .rotate {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
    color: #1c1c1c; }

/* --------------- /Mobile menu ---------------- */
/* ---------------------- .search-popup ---------------------- */
.search-popup {
  padding-top: 130px;
  padding-bottom: 50px;
  background: #00b4a5;
  position: fixed;
  top: 0px;
  width: 100%;
  left: 0;
  z-index: 99;
  overflow-y: scroll;
  max-height: 100%;
  display: none; }
  .search-popup input {
    font-family: 'CervoNeue-extra-bold';
    font-size: 40px;
    color: #fff;
    background: none;
    border: none;
    outline: none;
    border-bottom: 7px solid #fff;
    padding: 10px;
    width: 100%; }
    .search-popup input::-webkit-input-placeholder {
      /* WebKit browsers */
      color: #fff; }
    .search-popup input:-moz-placeholder {
      /* Mozilla Firefox 4 to 18 */
      color: #fff; }
    .search-popup input::-moz-placeholder {
      /* Mozilla Firefox 19+ */
      color: #fff; }
    .search-popup input:-ms-input-placeholder {
      /* Internet Explorer 10+ */
      color: #fff; }
  .search-popup .results {
    margin-top: 45px;
    font-family: 'CervoNeue-regular';
    font-size: 24px;
    color: #181818; }
    .search-popup .results .item {
      white-space: nowrap;
      margin-top: 25px;
      display: block; }
      .search-popup .results .item .image, .search-popup .results .item .text {
        display: inline-block;
        vertical-align: top; }
      .search-popup .results .item .image img {
        width: 146px; }
      .search-popup .results .item .text {
        margin-left: 35px;
        padding-right: 140px;
        white-space: normal; }
        .search-popup .results .item .text .title {
          font-family: 'CervoNeue-regular';
          font-size: 24px;
          color: #fff;
          text-transform: uppercase; }
          .search-popup .results .item .text .title span {
            font-family: 'CervoNeue-bold';
            color: #1c1c1c; }
      .search-popup .results .item .short {
        font-family: 'CervoNeue-semi-bold';
        font-size: 18px;
        color: #fff;
        margin-top: 13px; }
  @media only screen and (max-width: 650px) {
    .search-popup {
      padding-top: 65px; }
      .search-popup input {
        font-size: 24px;
        border-bottom: 4px solid #fff; }
      .search-popup .results {
        padding-right: 80px; }
        .search-popup .results .item .image, .search-popup .results .item .text {
          vertical-align: middle; }
        .search-popup .results .item .image img {
          width: 80px; }
        .search-popup .results .item .text {
          margin-left: 20px;
          padding-right: 0; }
          .search-popup .results .item .text .title {
            font-size: 18px; }
        .search-popup .results .item .short {
          display: none; } }

/* --------------------- /.search-popup ---------------------- */
/* ---------------------- .dropdown-menu ---------------------- */
.dropdown-menu {
  position: absolute;
  right: 0px;
  left: 0px;
  top: 80px;
  z-index: 2;
  padding: 45px 0;
  visibility: hidden;
  opacity: 0;
  transition: 0.15s;
  background: #00b4a5; }
  @media only screen and (max-width: 1200px) {
    .dropdown-menu {
      right: 0px;
      left: 0px; } }
  .dropdown-menu .flex-cont {
    width: 100%;
    max-width: 1386px;
    padding: 0 10px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    font-size: 0; }
    .dropdown-menu .flex-cont .column {
      margin: 0 1%;
      width: 18%; }
      .dropdown-menu .flex-cont .column .title {
        font-family: 'CervoNeue-black';
        font-size: 24px;
        color: #181818;
        position: relative;
        transition: 0.5s;
        display: inline-block;
        height: 24px;
        text-transform: uppercase; }
      .dropdown-menu .flex-cont .column .content {
        margin-top: 20px; }
        .dropdown-menu .flex-cont .column .content ul {
          padding-right: 0; }
        .dropdown-menu .flex-cont .column .content a, .dropdown-menu .flex-cont .column .content p, .dropdown-menu .flex-cont .column .content li {
          font-family: 'CervoNeue-semi-bold';
          font-size: 18px;
          color: #fff;
          transition: 0.5s;
          margin: 0;
          display: block;
          margin-top: 10px;
          white-space: nowrap;
          text-transform: uppercase; }
          .dropdown-menu .flex-cont .column .content a:hover, .dropdown-menu .flex-cont .column .content p:hover, .dropdown-menu .flex-cont .column .content li:hover {
            color: #181818; }
        .dropdown-menu .flex-cont .column .content p {
          margin-top: 10px; }

/* --------------------- /.dropdown-menu ---------------------- */
@-webkit-keyframes left-right {
  0% {
    right: 0; }
  50% {
    right: -10px; }
  100% {
    right: 0; } }
@keyframes left-right {
  0% {
    right: 0; }
  50% {
    right: -10px; }
  100% {
    right: 0; } }

/* ---------------------- Section top ---------------------- */
section.top {
  position: relative;
  font-size: 0;
  height: 920px; }
  section.top .bg {
    height: 100%;
    position: absolute;
    left: 0;
    top: 0; }
  section.top .slider {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 1109px; }
    @media only screen and (max-width: 1777px) {
      section.top .slider {
        width: 60%; } }
    section.top .slider .cover {
      position: absolute;
      right: 0;
      bottom: 0;
      width: 100%;
      z-index: 2; }
      section.top .slider .cover img {
        width: 100%; }
    section.top .slider .slides {
      position: absolute;
      right: 0;
      bottom: 0;
      width: 100%;
      z-index: 1; }
      section.top .slider .slides .slide {
        display: none;
        position: absolute;
        bottom: 0;
        right: 0;
        width: 100%; }
        section.top .slider .slides .slide img {
          width: 100%; }
        section.top .slider .slides .slide:nth-child(1) {
          display: block; }
  section.top .section-inner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    z-index: 3;
    padding: 0 20px; }
    section.top .section-inner .line-1 {
      font-family: 'CervoNeue-thin';
      font-size: 130px;
      line-height: 130px;
      color: #fff;
      text-transform: uppercase; }
      section.top .section-inner .line-1 strong {
        font-family: 'CervoNeue-regular';
        font-weight: normal; }
    section.top .section-inner .line-2 {
      font-family: 'CervoNeue-light';
      font-size: 30px;
      color: #00b4a5;
      text-transform: uppercase;
      margin-top: 5px; }
      section.top .section-inner .line-2 strong {
        font-weight: normal;
        color: #fff; }
    section.top .section-inner .link {
      font-family: 'CervoNeue-medium';
      font-size: 47px;
      color: #00b4a5;
      text-transform: uppercase;
      margin-top: 60px;
      cursor: pointer; }
      section.top .section-inner .link i {
        font-size: 30px;
        position: relative;
        bottom: 5px;
        -webkit-animation: left-right 2s infinite;
                animation: left-right 2s infinite;
        -webkit-animation-timing-function: linear;
                animation-timing-function: linear; }
  section.top .contact-btn {
    position: fixed;
    left: 30px;
    bottom: 30px;
    cursor: pointer;
    z-index: 3; }
  section.top .arrow-d {
    position: absolute;
    left: 180px;
    bottom: 30px;
    cursor: pointer; }
  section.top .line-decor {
    position: absolute;
    width: 1px;
    top: 0;
    bottom: 130px;
    left: 200px;
    background: #5e5e5e; }
  @media only screen and (max-width: 1790px) {
    section.top .line-decor {
      display: none; } }
  @media only screen and (max-width: 1400px) {
    section.top {
      height: 790px; }
      section.top .section-inner {
        top: 90px;
        left: 20px;
        transform: none; } }
  @media only screen and (max-width: 1200px) {
    section.top {
      height: 740px; }
      section.top .slider {
        width: 70%; } }
  @media only screen and (max-width: 759px) {
    section.top {
      height: auto;
      padding-top: 75px; }
      section.top .arrow-d {
        display: none; }
      section.top .contact-btn {
        z-index: 10;
        left: 10px;
        bottom: 10px; }
        section.top .contact-btn img {
          width: 85px; }
      section.top .section-inner {
        left: 0px;
        top: 0px;
        position: relative; }
        section.top .section-inner .line-1 {
          font-family: 'CervoNeue-thin';
          font-size: 70px;
          line-height: 70px; }
        section.top .section-inner .line-2 {
          font-family: 'CervoNeue-light';
          font-size: 24px; }
        section.top .section-inner .link {
          font-size: 30px;
          margin-top: 30px; }
          section.top .section-inner .link i {
            font-size: 20px;
            bottom: 3px; }
      section.top .slider {
        width: 100%;
        position: relative;
        margin-top: 25px; }
        section.top .slider .cover {
          position: relative; } }

/* --------------------- /Section top ---------------------- */
/* ---------------------- Section news ---------------------- */
section.news {
  padding: 25px;
  background: #efefef;
  position: relative;
  overflow: hidden; }
  section.news .section-inner {
    overflow: visible; }
  section.news .cover-left {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2; }
  section.news .cover-right {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2; }
    @media only screen and (max-width: 1777px) {
      section.news .cover-right {
        right: auto;
        left: 81.8%; } }
    @media only screen and (max-width: 1200px) {
      section.news .cover-right {
        right: auto;
        left: 78.8%; } }
  section.news .cont .item {
    text-transform: uppercase; }
    section.news .cont .item .icon {
      width: 30px;
      display: inline-block;
      margin-right: 10px; }
      section.news .cont .item .icon img {
        position: absolute;
        max-width: 30px;
        top: 50%;
        transform: translateY(-50%); }
      @media only screen and (max-width: 600px) {
        section.news .cont .item .icon {
          width: 30px;
          margin-right: 0px; }
          section.news .cont .item .icon img {
            max-width: 20px; } }
    section.news .cont .item .title {
      font-family: 'CervoNeue-semi-bold';
      font-size: 18px;
      color: #181818; }
    section.news .cont .item .text {
      font-family: 'CervoNeue-light';
      font-size: 18px;
      color: #181818; }
    section.news .cont .item .date {
      font-family: 'CervoNeue-light';
      font-size: 18px;
      color: #adadad; }
  section.news .cont .sep {
    font-family: 'CervoNeue-light';
    font-size: 18px;
    color: #181818;
    margin: 0 10px;
    position: relative;
    bottom: 3px; }
  @media only screen and (max-width: 750px) {
    section.news {
      padding: 10px; }
      section.news .cover-right {
        display: none; }
      section.news .cover-left {
        display: none; } }

/* --------------------- /Section news ---------------------- */
/* ---------------------- Section our-company ---------------------- */
.section-title {
  font-family: 'CervoNeue-semi-bold';
  font-size: 120px;
  line-height: 120px;
  color: #03b4a5;
  text-transform: uppercase;
  position: relative;
  left: -80px;
  text-align: left; }
  @media only screen and (max-width: 1550px) {
    .section-title {
      left: 0px; } }
  @media only screen and (max-width: 1200px) {
    .section-title {
      font-size: 80px;
      line-height: 80px; } }
  @media only screen and (max-width: 950px) {
    .section-title {
      font-size: 50px;
      line-height: 50px; } }

@-webkit-keyframes opacity-toggle {
  0% {
    background: rgba(255, 255, 255, 0.5); }
  50% {
    background: rgba(255, 255, 255, 0.9); }
  100% {
    background: rgba(255, 255, 255, 0.5); } }

@keyframes opacity-toggle {
  0% {
    background: rgba(255, 255, 255, 0.5); }
  50% {
    background: rgba(255, 255, 255, 0.9); }
  100% {
    background: rgba(255, 255, 255, 0.5); } }

section.our-company {
  padding-top: 90px; }
  section.our-company .parts {
    display: flex;
    margin-top: 50px; }
  section.our-company .part-left {
    width: 44%;
    padding-right: 7%; }
    section.our-company .part-left .title {
      font-family: 'CervoNeue-medium';
      font-size: 30px;
      color: #181818; }
      section.our-company .part-left .title strong {
        font-family: 'CervoNeue-black'; }
    section.our-company .part-left .content {
      font-family: 'CervoNeue-regular';
      font-size: 18px;
      color: #181818;
      margin-top: 20px; }
    section.our-company .part-left .counters {
      margin-top: 50px; }
      section.our-company .part-left .counters .counter {
        border-bottom: 8px solid #181818;
        padding: 15px 0; }
        section.our-company .part-left .counters .counter div, section.our-company .part-left .counters .counter p {
          display: inline-block;
          vertical-align: middle; }
        section.our-company .part-left .counters .counter .icon {
          width: 70px; }
        section.our-company .part-left .counters .counter .number {
          font-family: 'CervoNeue-black';
          font-size: 30px;
          color: #00b4a5; }
        section.our-company .part-left .counters .counter .text {
          font-family: 'CervoNeue-semi-bold';
          font-size: 30px;
          color: #181818;
          text-transform: uppercase;
          margin-left: 5px; }
    section.our-company .part-left .button {
      font-family: 'CervoNeue-medium';
      font-size: 24px;
      color: #181818;
      text-transform: uppercase;
      display: inline-block;
      margin-top: 40px;
      cursor: pointer; }
      section.our-company .part-left .button i {
        color: #00b4a5; }
  section.our-company .products-col {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    transform: translateZ(-100px); }
    section.our-company .products-col .title {
      font-family: 'CervoNeue-medium';
      font-size: 30px;
      color: #181818;
      text-transform: uppercase;
      display: inline-block;
      padding-bottom: 15px;
      border-bottom: 1px solid #e1e1e1; }
      section.our-company .products-col .title strong {
        font-family: 'CervoNeue-black'; }
      section.our-company .products-col .title i {
        color: #00b4a5;
        font-size: 24px;
        position: relative;
        bottom: 3px; }
    section.our-company .products-col .subtitle {
      font-family: 'CervoNeue-regular';
      font-size: 18px;
      color: #181818;
      margin-top: 15px; }
    section.our-company .products-col .products .product {
      margin-top: 13px;
      display: block;
      font-family: 'CervoNeue-semi-bold';
      font-size: 18px;
      color: #181818;
      text-transform: uppercase; }
      section.our-company .products-col .products .product strong {
        font-family: 'CervoNeue-black'; }
      section.our-company .products-col .products .product i {
        color: #00b4a5;
        font-size: 16px;
        position: relative;
        bottom: 1px; }
  section.our-company .part-right {
    width: 56%;
    position: relative; }
    section.our-company .part-right .hot-spot {
      text-align: left;
      position: relative; }
      @media only screen and (max-width: 1780px) {
        section.our-company .part-right .hot-spot {
          transform: scale(0.8);
          left: 50px; } }
      @media only screen and (max-width: 1370px) {
        section.our-company .part-right .hot-spot {
          transform: scale(0.6);
          left: -40px; } }
      @media only screen and (max-width: 1200px) {
        section.our-company .part-right .hot-spot {
          transform: scale(0.6);
          left: -140px; } }
      @media only screen and (max-width: 670px) {
        section.our-company .part-right .hot-spot {
          transform: scale(0.5);
          left: -20%;
          margin-top: 110px; } }
      @media only screen and (max-width: 550px) {
        section.our-company .part-right .hot-spot {
          transform: scale(0.35);
          left: -120px;
          margin-top: 80px; } }
      section.our-company .part-right .hot-spot .spots {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 3;
        pointer-events: none; }
        section.our-company .part-right .hot-spot .spots .spot {
          position: absolute;
          z-index: 4;
          pointer-events: auto; }
          section.our-company .part-right .hot-spot .spots .spot:nth-child(1) {
            top: 500px;
            left: 500px; }
          section.our-company .part-right .hot-spot .spots .spot:nth-child(2) {
            top: 300px;
            left: 200px; }
          section.our-company .part-right .hot-spot .spots .spot:nth-child(3) {
            top: 400px;
            left: 900px; }
          section.our-company .part-right .hot-spot .spots .spot .circle {
            height: 75px;
            width: 75px;
            background: rgba(255, 255, 255, 0.7);
            border-radius: 100px;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translateY(-50%) translateX(-50%);
            transition: 0.25s;
            cursor: pointer;
            z-index: 2; }
            section.our-company .part-right .hot-spot .spots .spot .circle.outer {
              -webkit-animation: opacity-toggle 2s infinite;
                      animation: opacity-toggle 2s infinite; }
            section.our-company .part-right .hot-spot .spots .spot .circle .outer-c {
              height: 30px;
              width: 30px;
              background: #f8c7d5;
              border: 1px solid #fff; }
              section.our-company .part-right .hot-spot .spots .spot .circle .outer-c .inner-c {
                height: 20px;
                width: 20px;
                background: #ce0a42; }
          section.our-company .part-right .hot-spot .spots .spot.selected .outer-c {
            height: 60px;
            width: 60px; }
            section.our-company .part-right .hot-spot .spots .spot.selected .outer-c .inner-c {
              height: 45px;
              width: 45px; }
          section.our-company .part-right .hot-spot .spots .spot.selected .info {
            bottom: 0px;
            visibility: visible;
            opacity: 1; }
          section.our-company .part-right .hot-spot .spots .spot .info {
            background: rgba(2, 162, 149, 0.9);
            padding: 35px;
            padding-bottom: 0;
            position: absolute;
            left: -55px;
            width: 315px;
            text-align: right;
            z-index: 1;
            visibility: hidden;
            opacity: 0;
            bottom: -20px;
            transition: 0.5s; }
            @media only screen and (max-width: 1200px) {
              section.our-company .part-right .hot-spot .spots .spot .info {
                transform-origin: 0% 100%;
                transform: scale(1.3); } }
            @media only screen and (max-width: 550px) {
              section.our-company .part-right .hot-spot .spots .spot .info {
                transform-origin: 0% 100%;
                transform: scale(2); } }
            section.our-company .part-right .hot-spot .spots .spot .info .title {
              font-family: 'CervoNeue-semi-bold';
              font-size: 18px;
              color: #fff;
              text-transform: uppercase;
              text-align: left; }
            section.our-company .part-right .hot-spot .spots .spot .info .text {
              font-family: 'CervoNeue-thin';
              font-size: 18px;
              color: #fff;
              margin-top: 15px;
              text-align: left; }
            section.our-company .part-right .hot-spot .spots .spot .info .button {
              font-family: 'CervoNeue-semi-bold';
              font-size: 18px;
              color: #181818;
              text-transform: uppercase;
              background: #fff;
              display: inline-block;
              margin-top: 30px;
              padding: 15px 20px;
              cursor: pointer; }
              section.our-company .part-right .hot-spot .spots .spot .info .button i {
                color: #00b4a5; }
  @media only screen and (max-width: 950px) {
    section.our-company {
      padding-top: 35px; }
      section.our-company .parts {
        flex-direction: column;
        margin-top: 25px; }
        section.our-company .parts .part-right {
          width: 100%;
          margin-bottom: -100px; }
        section.our-company .parts .part-left {
          width: 100%;
          padding-right: 0; }
          section.our-company .parts .part-left .counters {
            margin-top: 15px; }
            section.our-company .parts .part-left .counters .number {
              font-size: 24px; }
            section.our-company .parts .part-left .counters .text {
              font-size: 24px; }
            section.our-company .parts .part-left .counters .icon {
              width: 55px; } }
  @media only screen and (max-width: 550px) {
    section.our-company .parts {
      flex-direction: column; }
      section.our-company .parts .part-right {
        margin-bottom: -190px; } }

/* --------------------- /Section our-company ---------------------- */
/* ---------------------- Section platform ---------------------- */
section.platform {
  padding: 70px 0;
  background: #181918; }
  section.platform .section-title {
    color: #03b4a5; }
  section.platform .boxes {
    display: flex;
    flex-wrap: wrap;
    font-size: 0;
    margin: 0 -0.5%;
    margin-top: 65px; }
    section.platform .boxes .box {
      width: 32.3333%;
      margin: 0.5%;
      display: block;
      position: relative;
      cursor: pointer; }
      section.platform .boxes .box:hover .image {
        opacity: 0.4; }
      section.platform .boxes .box .image {
        transition: 0.5s;
        opacity: 1; }
        section.platform .boxes .box .image img {
          width: 100%; }
      section.platform .boxes .box .caption {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        text-align: center; }
        section.platform .boxes .box .caption p {
          font-family: 'CervoNeue-medium';
          font-size: 30px;
          color: #fff;
          text-transform: uppercase; }
          section.platform .boxes .box .caption p strong {
            font-family: 'CervoNeue-black'; }
  @media only screen and (max-width: 950px) {
    section.platform {
      padding: 35px 0; }
      section.platform .boxes {
        margin-top: 35px; }
        section.platform .boxes .box {
          width: 49%;
          margin: 0.5%; }
          section.platform .boxes .box .caption p {
            font-size: 20px; }
          section.platform .boxes .box .image {
            opacity: 0.4; } }

/* --------------------- /Section platform ---------------------- */
/* ---------------------- Section.stats ---------------------- */
section.stats {
  padding: 70px 0;
  background-color: #e6e6e6;
  text-align: center;
  overflow: visible;
  background-image: url("../images/index/bg-services.jpg") no-repeat; }
  section.stats .section-inner {
    overflow: visible; }
  section.stats .levels {
    display: flex;
    justify-content: space-between; }
    section.stats .levels .box {
      position: relative;
      transition: 0.5s;
      cursor: pointer;
      text-align: center; }
      section.stats .levels .box .circle {
        position: relative;
        margin: auto; }
        section.stats .levels .box .circle:after {
          content: "";
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translateX(-50%) translateY(-50%);
          height: 92px;
          width: 92px;
          border: 6px solid #191919;
          border-radius: 100px;
          z-index: 1; }
        section.stats .levels .box .circle canvas {
          position: relative;
          z-index: 2; }
        section.stats .levels .box .circle .circleChart_text {
          width: auto !important;
          font-family: 'CervoNeue-medium';
          font-size: 18px !important;
          line-height: 18px !important;
          z-index: 2;
          text-align: center !important;
          font-weight: bold !important;
          position: absolute;
          top: 50% !important;
          left: 50%;
          color: #131313 !important;
          transform: translateY(-50%) translateX(-50%); }
      section.stats .levels .box p.desc {
        font-family: 'CervoNeue-medium';
        font-size: 24px;
        color: #131313;
        text-transform: uppercase;
        margin-top: 30px; }
  @media only screen and (max-width: 640px) {
    section.stats {
      padding: 35px 0;
      padding-top: 0; }
      section.stats .levels {
        flex-wrap: wrap; }
        section.stats .levels .box {
          width: 50%;
          margin-top: 35px; }
          section.stats .levels .box p.desc {
            font-size: 16px;
            margin-top: 10px; } }

/* --------------------- /Section.stats ---------------------- */
/* ---------------------- Section services ---------------------- */
section.services {
  padding: 70px 0;
  text-align: center; }
  section.services.blog {
    padding-top: 0;
    margin-top: -200px; }
    @media only screen and (max-width: 1200px) {
      section.services.blog {
        margin-top: 0px; } }
  section.services .title {
    margin-top: 50px;
    font-family: 'CervoNeue-medium';
    font-size: 30px;
    color: #181818;
    text-transform: uppercase; }
    section.services .title strong {
      font-family: 'CervoNeue-black'; }
  section.services .content {
    margin-top: 15px;
    font-family: 'CervoNeue-regular';
    font-size: 18px;
    color: #181818; }
  section.services .grid {
    font-size: 0;
    display: flex;
    flex-wrap: wrap;
    margin: -0.5%;
    margin-top: 60px; }
    section.services .grid .box {
      position: relative;
      cursor: pointer;
      overflow: hidden; }
      section.services .grid .box img {
        width: 100%;
        min-height: 100%;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0; }
      section.services .grid .box .caption {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        overflow: hidden;
        background: rgba(0, 0, 0, 0.35);
        transition: 0.5s; }
        section.services .grid .box .caption p {
          position: absolute;
          bottom: 20px;
          left: 20px;
          right: 20px;
          font-family: 'CervoNeue-medium';
          font-size: 18px;
          color: #fff;
          z-index: 1; }
        section.services .grid .box .caption:after {
          content: "";
          position: absolute;
          bottom: -100%;
          left: -50%;
          width: 100%;
          height: 200%;
          border-radius: 900px;
          background-color: rgba(0, 0, 0, 0.25);
          transform: scale(0.8);
          opacity: 0;
          transition: 0.75s; }
        section.services .grid .box .caption:before {
          content: "";
          position: absolute;
          bottom: -150%;
          left: -75%;
          width: 150%;
          height: 300%;
          border-radius: 900px;
          background-color: rgba(0, 0, 0, 0.25);
          transform: scale(0.8);
          opacity: 0;
          transition: 0.55s; }
      section.services .grid .box:hover .caption {
        background: rgba(0, 0, 0, 0.7); }
        section.services .grid .box:hover .caption:after, section.services .grid .box:hover .caption:before {
          opacity: 1;
          transform: scale(1); }
    section.services .grid .part-right {
      width: 40%;
      display: flex;
      flex-wrap: wrap; }
      section.services .grid .part-right .box {
        margin: 1%; }
        section.services .grid .part-right .box:nth-child(1), section.services .grid .part-right .box:nth-child(2) {
          width: 48%;
          padding-bottom: 24%; }
        section.services .grid .part-right .box:nth-child(3) {
          width: 100%;
          padding-bottom: 50%; }
    section.services .grid .part-middle {
      width: 20%;
      display: flex;
      flex-direction: row;
      flex-wrap: wrap; }
      section.services .grid .part-middle .box {
        margin: 2%;
        width: 100%;
        padding-bottom: 48%; }
    section.services .grid .part-left {
      width: 40%;
      display: flex;
      flex-wrap: wrap; }
      section.services .grid .part-left .box {
        margin: 1%; }
        section.services .grid .part-left .box:nth-child(2), section.services .grid .part-left .box:nth-child(3) {
          width: 48%;
          padding-bottom: 24%; }
        section.services .grid .part-left .box:nth-child(1) {
          width: 100%;
          padding-bottom: 50%; }
  section.services .button {
    font-family: 'CervoNeue-semi-bold';
    font-size: 18px;
    color: #181818;
    text-transform: uppercase;
    background: #00b4a5;
    display: inline-block;
    margin: auto;
    margin-top: 50px;
    padding: 15px 20px;
    cursor: pointer; }
    section.services .button i {
      color: #fff;
      margin-left: 5px;
      position: relative;
      right: 0;
      transition: 0.5s; }
    section.services .button:hover i {
      right: -5px; }
  section.services .pagination {
    font-family: 'CervoNeue-regular';
    font-size: 24px;
    color: #181818;
    margin-top: 35px; }
    section.services .pagination a {
      color: #181818; }
    section.services .pagination .current {
      color: #00B4A5; }
    section.services .pagination i {
      font-size: 18px;
      margin: 0 5px;
      line-height: 24px;
      position: relative;
      top: -1px; }
  @media only screen and (max-width: 1200px) {
    section.services .grid {
      margin-top: 60px; }
      section.services .grid .box .caption p {
        position: absolute;
        bottom: auto;
        left: 10px;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        font-family: 'CervoNeue-medium';
        font-size: 16px;
        line-height: 16px;
        color: #fff;
        z-index: 1; } }
  @media only screen and (max-width: 700px) {
    section.services {
      padding: 35px 0; }
      section.services .grid {
        margin-top: 30px; } }
  @media only screen and (max-width: 500px) {
    section.services .title {
      font-size: 35px; }
      section.services .title img {
        width: 30px; }
    section.services .grid .part {
      width: 100%; }
    section.services .grid .part-middle .box {
      margin: 1%; }
    section.services .button {
      margin-top: 30px; } }

/* --------------------- /Section services ---------------------- */
/* ---------------------- Section clients ---------------------- */
section.clients {
  padding: 70px 0;
  background: #ebebeb;
  background-image: url("../images/index/bg-clients.jpg");
  background-repeat: no-repeat; }
  section.clients .section-title {
    color: #03b4a5; }
  section.clients .slider-clients {
    margin-top: 65px; }
    section.clients .slider-clients .owl-dots {
      margin-top: 75px; }
      section.clients .slider-clients .owl-dots .owl-dot span {
        border-radius: 0;
        transition: 0.5s;
        background: none;
        border: 2px solid #777777;
        height: 22px;
        width: 22px;
        position: relative; }
        section.clients .slider-clients .owl-dots .owl-dot span:after {
          content: "";
          position: absolute;
          background: #00b4a5;
          height: 12px;
          width: 12px;
          left: 3px;
          top: 3px;
          opacity: 0;
          transition: 0.5s; }
      section.clients .slider-clients .owl-dots .owl-dot.active span:after {
        opacity: 1; }
    section.clients .slider-clients .item {
      height: 110px;
      text-align: center; }
      section.clients .slider-clients .item img {
        width: auto;
        margin: auto;
        max-width: 90%;
        transition: 0.5s;
        position: relative;
        top: 50%;
        transform: translateY(-50%); }
  @media only screen and (max-width: 600px) {
    section.clients {
      padding: 15px 0; }
      section.clients .section-title {
        font-size: 45px; }
      section.clients .title {
        font-size: 24px;
        line-height: 24px; }
      section.clients .slider-clients {
        margin-top: 25px; }
        section.clients .slider-clients .owl-dots {
          margin-top: 25px; }
        section.clients .slider-clients .item img {
          max-width: 100px; } }

/* --------------------- /Section clients ---------------------- */
/* ---------------------- footer ---------------------- */
footer {
  padding-top: 70px;
  padding-bottom: 40px;
  background-image: url("../images/index/bg-footer.jpg");
  position: relative; }
  footer .arrow-u {
    position: absolute;
    right: 5%;
    bottom: 30px;
    cursor: pointer; }
  footer .line-decor {
    position: absolute;
    width: 1px;
    top: 0;
    bottom: 130px;
    right: 5%;
    background: #5e5e5e; }
    @media only screen and (max-width: 1570px) {
      footer .line-decor {
        display: none; } }
  footer .parts {
    display: flex; }
    footer .parts .title {
      font-family: 'CervoNeue-regular';
      font-size: 30px;
      color: #fff;
      text-transform: uppercase; }
      footer .parts .title strong {
        font-family: 'CervoNeue-black';
        color: #00b4a5; }
  footer .part-left {
    width: 50%;
    padding-right: 50px; }
    footer .part-left .content {
      font-family: 'CervoNeue-regular';
      font-size: 18px;
      color: #fff;
      margin-top: 55px; }
      footer .part-left .content .iso {
        float: right;
        padding: 30px;
        padding-right: 0; }
    footer .part-left .important {
      font-family: 'CervoNeue-semi-bold';
      font-size: 18px;
      color: #fff;
      margin-top: 35px;
      padding: 18px;
      padding-right: 90px;
      background-color: #00b4a5;
      background-image: url("../images/index/trees.png");
      background-repeat: no-repeat;
      background-position: right 10px center; }
    footer .part-left .contacts {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin: 0 -10px;
      margin-top: 50px; }
      footer .part-left .contacts .contact {
        margin: 0 10px;
        white-space: nowrap; }
        footer .part-left .contacts .contact .title {
          font-family: 'CervoNeue-semi-bold';
          font-size: 18px;
          color: #fff; }
          footer .part-left .contacts .contact .title strong {
            font-family: 'CervoNeue-semi-bold';
            font-size: 18px;
            color: #00b4a5; }
        footer .part-left .contacts .contact .text {
          font-family: 'CervoNeue-light';
          font-size: 18px;
          color: #fff;
          white-space: nowrap; }
      @media only screen and (max-width: 1100px) {
        footer .part-left .contacts {
          flex-direction: column;
          align-items: flex-start;
          margin-top: 25px; }
          footer .part-left .contacts .contact {
            margin: 5px 10px; } }
    footer .part-left .social {
      margin-top: 43px; }
      footer .part-left .social .item {
        display: inline-block;
        vertical-align: middle; }
        footer .part-left .social .item span {
          font-family: 'CervoNeue-medium';
          font-size: 24px;
          color: #00b4a5;
          text-transform: uppercase;
          display: inline-block;
          vertical-align: middle; }
        footer .part-left .social .item img {
          display: inline-block;
          vertical-align: middle;
          margin: 0 10px; }
  footer .part-right {
    width: 50%;
    padding-left: 50px; }
    footer .part-right .wpcf7 {
      margin-top: 20px; }
      footer .part-right .wpcf7 form {
        position: relative;
        text-align: left; }
      footer .part-right .wpcf7 input, footer .part-right .wpcf7 select {
        font-family: 'CervoNeue-regular';
        font-size: 18px;
        color: #939493;
        border: none;
        border-bottom: 6px solid #939493;
        background: none;
        outline: none;
        padding: 15px;
        width: 100%;
        height: 100%; }
        footer .part-right .wpcf7 input::-webkit-input-placeholder, footer .part-right .wpcf7 select::-webkit-input-placeholder {
          /* WebKit browsers */
          color: #939493; }
        footer .part-right .wpcf7 input:-moz-placeholder, footer .part-right .wpcf7 select:-moz-placeholder {
          /* Mozilla Firefox 4 to 18 */
          color: #939493; }
        footer .part-right .wpcf7 input::-moz-placeholder, footer .part-right .wpcf7 select::-moz-placeholder {
          /* Mozilla Firefox 19+ */
          color: #939493; }
        footer .part-right .wpcf7 input:-ms-input-placeholder, footer .part-right .wpcf7 select:-ms-input-placeholder {
          /* Internet Explorer 10+ */
          color: #939493; }
        footer .part-right .wpcf7 input:focus, footer .part-right .wpcf7 select:focus {
          border-bottom: 6px solid #fff;
          color: #fff; }
          footer .part-right .wpcf7 input:focus::-webkit-input-placeholder, footer .part-right .wpcf7 select:focus::-webkit-input-placeholder {
            /* WebKit browsers */
            color: #fff; }
          footer .part-right .wpcf7 input:focus:-moz-placeholder, footer .part-right .wpcf7 select:focus:-moz-placeholder {
            /* Mozilla Firefox 4 to 18 */
            color: #fff; }
          footer .part-right .wpcf7 input:focus::-moz-placeholder, footer .part-right .wpcf7 select:focus::-moz-placeholder {
            /* Mozilla Firefox 19+ */
            color: #fff; }
          footer .part-right .wpcf7 input:focus:-ms-input-placeholder, footer .part-right .wpcf7 select:focus:-ms-input-placeholder {
            /* Internet Explorer 10+ */
            color: #fff; }
      footer .part-right .wpcf7 .wpcf7-form-control-wrap {
        display: block;
        position: relative;
        margin-top: 20px; }
      footer .part-right .wpcf7 input[type="submit"] {
        font-family: 'CervoNeue-semi-bold';
        font-size: 18px;
        color: #181818;
        text-transform: uppercase;
        background: #fff;
        display: inline-block;
        margin-top: 35px;
        padding: 15px 40px;
        cursor: pointer;
        display: inline-block;
        width: auto;
        border: none;
        transition: 0.5s; }
        footer .part-right .wpcf7 input[type="submit"]:hover {
          background: #00B4A5; }
      footer .part-right .wpcf7 input[type="checkbox"] {
        height: auto;
        width: auto; }
      footer .part-right .wpcf7 .wpcf7-form-control-wrap.newsletter {
        display: inline-block; }
      footer .part-right .wpcf7 .newsletter-cb {
        font-family: 'CervoNeue-regular';
        font-size: 18px;
        color: #fff;
        display: block;
        margin-top: 15px;
        position: relative;
        cursor: pointer; }
        footer .part-right .wpcf7 .newsletter-cb input {
          display: none; }
        footer .part-right .wpcf7 .newsletter-cb .wpcf7-list-item-label {
          padding-left: 15px; }
          footer .part-right .wpcf7 .newsletter-cb .wpcf7-list-item-label:after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            height: 22px;
            width: 22px;
            border: 3px solid #fff; }
          footer .part-right .wpcf7 .newsletter-cb .wpcf7-list-item-label:before {
            content: "";
            position: absolute;
            top: 6px;
            left: 6px;
            height: 10px;
            width: 10px;
            background: #00b4a5;
            opacity: 0;
            transform: scale(0.1);
            transition: 0.5s; }
        footer .part-right .wpcf7 .newsletter-cb input:checked ~ .wpcf7-list-item-label:before {
          opacity: 1;
          transform: scale(1); }
      footer .part-right .wpcf7 span[role="alert"] {
        font-family: 'CervoNeue-regular';
        font-size: 14px;
        color: #0f796f;
        position: absolute;
        left: 0;
        bottom: -20px; }
      footer .part-right .wpcf7 .wpcf7-response-output {
        font-family: 'CervoNeue-regular';
        font-size: 16px;
        color: #0f796f;
        position: absolute;
        bottom: -30px;
        border: none;
        padding: 0;
        margin: 0; }
      footer .part-right .wpcf7 .ajax-loader {
        display: none; }
    footer .part-right .gallery {
      max-width: 340px;
      margin-top: 45px; }
      footer .part-right .gallery .boxes {
        display: flex;
        flex-wrap: wrap;
        font-size: 0;
        margin: 0 -2%; }
        footer .part-right .gallery .boxes .box {
          width: 29.3333%;
          margin: 2%;
          display: block; }
          footer .part-right .gallery .boxes .box img {
            width: 100%; }
  footer .footer-bottom {
    margin-top: 65px; }
    footer .footer-bottom .cont {
      display: flex;
      justify-content: space-between;
      align-items: center; }
      footer .footer-bottom .cont .copy {
        font-family: 'CervoNeue-regular';
        font-size: 18px;
        color: #fff;
        text-transform: uppercase; }
        footer .footer-bottom .cont .copy span {
          color: #00b4a5; }
      footer .footer-bottom .cont .credit {
        font-family: 'CervoNeue-regular';
        font-size: 18px;
        color: #fff;
        text-transform: uppercase; }
  @media only screen and (max-width: 950px) {
    footer {
      padding-top: 45px;
      padding-bottom: 20px; }
      footer .parts {
        flex-direction: column-reverse; }
        footer .parts .part-left {
          width: 100%;
          padding-right: 0;
          margin-top: 35px; }
          footer .parts .part-left > .title, footer .parts .part-left .content, footer .parts .part-left .important, footer .parts .part-left .social {
            display: none; }
        footer .parts .part-right {
          width: 100%;
          padding-left: 0; }
          footer .parts .part-right .wpcf7 form {
            text-align: center; }
            footer .parts .part-right .wpcf7 form input[type="submit"] {
              width: 100%;
              max-width: 100%; } }
  @media only screen and (max-width: 550px) {
    footer .footer-bottom {
      margin-top: 55px; }
      footer .footer-bottom .cont {
        flex-direction: column; }
        footer .footer-bottom .cont .credit {
          margin-top: 10px; } }

/* --------------------- /footer ---------------------- */
.decor-circle-top, .decor-circle-bottom {
  position: absolute;
  width: 1200px;
  height: 1200px;
  background: #eaeaea;
  border-radius: 100%;
  top: -600px;
  right: -300px; }
  .decor-circle-top:before, .decor-circle-bottom:before {
    content: "";
    position: absolute;
    border-radius: 100%;
    top: 10%;
    bottom: 10%;
    right: 10%;
    left: 10%;
    background-color: #e5e5e5; }
  .decor-circle-top:after, .decor-circle-bottom:after {
    content: "";
    position: absolute;
    border-radius: 100%;
    top: 20%;
    bottom: 20%;
    right: 20%;
    left: 20%;
    background-color: #dfdfdf; }
  @media only screen and (max-width: 1400px) {
    .decor-circle-top, .decor-circle-bottom {
      width: 800px;
      height: 800px;
      top: -370px;
      right: -343px; } }
  @media only screen and (max-width: 950px) {
    .decor-circle-top, .decor-circle-bottom {
      width: 550px;
      height: 550px; } }

.decor-circle-bottom {
  left: -400px;
  bottom: -800px;
  top: auto;
  right: auto; }
  @media only screen and (max-width: 1400px) {
    .decor-circle-bottom {
      left: -282px;
      bottom: -427px;
      top: auto;
      right: auto; } }

body.rtl section.top-inner {
  direction: rtl; }
  body.rtl section.top-inner * {
    direction: rtl; }
    body.rtl section.top-inner * .section-title {
      text-align: right;
      left: auto;
      right: -80px;
      font-family: 'opensans-regular'; }
      @media only screen and (max-width: 1550px) {
        body.rtl section.top-inner * .section-title {
          right: 0; } }
  body.rtl section.top-inner .parts .part-left .title {
    font-family: 'opensans-bold'; }
    body.rtl section.top-inner .parts .part-left .title strong {
      font-family: 'opensans-bold'; }
  body.rtl section.top-inner .parts .part-left .post-content {
    font-family: 'opensans-regular'; }

/* ---------------------- Section top-inner ---------------------- */
section.top-inner {
  position: relative;
  background-color: #efefef;
  min-height: 780px; }
  section.top-inner .section-title {
    color: #03b4a5; }
  section.top-inner .section-inner {
    position: relative;
    padding-top: 190px;
    z-index: 3; }
  section.top-inner .parts {
    margin-top: 45px;
    display: flex;
    font-size: 0; }
    section.top-inner .parts .part-left {
      width: 65%;
      padding-right: 80px;
      padding-bottom: 25px; }
      section.top-inner .parts .part-left.full {
        width: 100%;
        padding-right: 0; }
      section.top-inner .parts .part-left .title {
        font-family: 'CervoNeue-medium';
        font-size: 30px;
        color: #181818;
        text-transform: uppercase; }
        section.top-inner .parts .part-left .title strong {
          font-family: 'CervoNeue-black'; }
      section.top-inner .parts .part-left .parameters {
        margin-top: 20px; }
        section.top-inner .parts .part-left .parameters p {
          font-family: 'CervoNeue-medium';
          font-size: 18px;
          color: #181818;
          text-transform: uppercase; }
          section.top-inner .parts .part-left .parameters p strong {
            font-family: 'CervoNeue-black'; }
      section.top-inner .parts .part-left .form-link {
        cursor: pointer;
        font-family: 'CervoNeue-medium';
        font-size: 24px;
        color: #181818;
        text-transform: uppercase;
        margin-top: 35px; }
        section.top-inner .parts .part-left .form-link strong {
          font-family: 'CervoNeue-extra-bold';
          font-size: 24px;
          color: #00b4a5; }
          section.top-inner .parts .part-left .form-link strong i {
            font-size: 18px;
            position: relative;
            top: -3px; }
      section.top-inner .parts .part-left .content {
        -moz-column-count: 2;
             column-count: 2;
        -moz-column-gap: 80px;
             column-gap: 80px;
        font-family: 'CervoNeue-regular';
        font-size: 18px;
        color: #181818;
        margin-top: 20px;
        padding-bottom: 20px; }
      section.top-inner .parts .part-left .post-content {
        font-family: 'CervoNeue-regular';
        font-size: 18px;
        color: #181818;
        margin-top: 20px;
        padding-bottom: 20px; }
        section.top-inner .parts .part-left .post-content p {
          margin-top: 25px; }
        section.top-inner .parts .part-left .post-content img {
          max-width: 100%;
          margin-top: 15px; }
    section.top-inner .parts .part-right {
      width: 35%; }
      section.top-inner .parts .part-right .slider .owl-nav {
        position: absolute;
        bottom: 0;
        right: -80px; }
        section.top-inner .parts .part-right .slider .owl-nav .owl-prev, section.top-inner .parts .part-right .slider .owl-nav .owl-next {
          display: inline-block;
          font-size: 24px;
          height: 80px;
          width: 80px;
          background: #00b4a5;
          color: #fff;
          text-align: center;
          position: relative;
          transition: 0.5s; }
          section.top-inner .parts .part-right .slider .owl-nav .owl-prev i, section.top-inner .parts .part-right .slider .owl-nav .owl-next i {
            position: relative;
            top: 50%;
            transform: translateY(-50%); }
          section.top-inner .parts .part-right .slider .owl-nav .owl-prev:hover, section.top-inner .parts .part-right .slider .owl-nav .owl-next:hover {
            background: #069c8f; }
        @media only screen and (max-width: 1550px) {
          section.top-inner .parts .part-right .slider .owl-nav {
            right: 0px; } }
        @media only screen and (max-width: 600px) {
          section.top-inner .parts .part-right .slider .owl-nav .owl-prev, section.top-inner .parts .part-right .slider .owl-nav .owl-next {
            width: 40px;
            height: 40px; } }
      section.top-inner .parts .part-right .video {
        position: relative; }
        section.top-inner .parts .part-right .video img {
          width: 100%; }
        section.top-inner .parts .part-right .video .play {
          font-size: 24px;
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translateY(-50%) translateX(-50%);
          height: 80px;
          width: 80px;
          border-radius: 100%;
          background: #fff;
          cursor: pointer; }
          section.top-inner .parts .part-right .video .play i {
            color: #00b4a5;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translateY(-50%) translateX(-50%); }
          section.top-inner .parts .part-right .video .play:after {
            content: "";
            position: absolute;
            bottom: -20px;
            left: -20px;
            top: -20px;
            right: -20px;
            border-radius: 900px;
            background-color: rgba(255, 255, 255, 0.25);
            transform: scale(0.5);
            opacity: 0;
            transition: 0.45s; }
          section.top-inner .parts .part-right .video .play:before {
            content: "";
            position: absolute;
            bottom: -40px;
            left: -40px;
            top: -40px;
            right: -40px;
            border-radius: 900px;
            background-color: rgba(255, 255, 255, 0.25);
            transform: scale(0.5);
            opacity: 0;
            transition: 0.75s; }
          section.top-inner .parts .part-right .video .play:hover:after, section.top-inner .parts .part-right .video .play:hover:before {
            opacity: 1;
            transform: scale(1); }
  @media only screen and (max-width: 1200px) {
    section.top-inner {
      min-height: auto; }
      section.top-inner .section-inner {
        padding-top: 120px; } }
  @media only screen and (max-width: 950px) {
    section.top-inner .section-inner {
      padding-top: 70px; }
    section.top-inner .parts {
      margin-top: 35px; }
      section.top-inner .parts .part-left {
        padding-right: 40px; }
        section.top-inner .parts .part-left .content {
          -moz-column-count: 1;
               column-count: 1; } }
  @media only screen and (max-width: 600px) {
    section.top-inner .parts {
      flex-direction: column; }
      section.top-inner .parts .part-left {
        width: 100%;
        padding-right: 0; }
      section.top-inner .parts .part-right {
        width: 100%;
        padding-right: 0; } }

/* --------------------- /Section top-inner ---------------------- */
/* ---------------------- Section standards ---------------------- */
section.standards {
  padding-top: 100px;
  padding-bottom: 70px;
  background-color: #efefef; }
  section.standards .section-title {
    color: #03b4a5; }
  section.standards .images {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 45px; }
    section.standards .images img {
      max-width: 100%; }
  @media only screen and (max-width: 950px) {
    section.standards {
      padding-top: 45px; } }
  @media only screen and (max-width: 550px) {
    section.standards .images .left, section.standards .images .right {
      display: none; } }

/* --------------------- /Section standards ---------------------- */
/* ---------------------- Section quality-management ---------------------- */
section.quality-management {
  position: relative;
  z-index: 2;
  overflow: visible;
  margin-top: -35px; }
  section.quality-management .section-title {
    color: #03b4a5; }
  section.quality-management .section-inner {
    position: relative;
    background: #181918;
    padding: 70px;
    overflow: visible; }
    section.quality-management .section-inner:after {
      content: "";
      position: absolute;
      display: block;
      top: -25px;
      right: 0;
      height: 49px;
      width: 430px;
      background-image: url("../images/inner/about/quality/q-bg.png"); }
    section.quality-management .section-inner .parts {
      display: flex;
      justify-content: space-between; }
      section.quality-management .section-inner .parts .part-left {
        width: 50%;
        padding-right: 7%; }
      section.quality-management .section-inner .parts .part-right {
        width: 50%; }
        section.quality-management .section-inner .parts .part-right .items {
          -moz-column-count: 2;
               column-count: 2; }
          section.quality-management .section-inner .parts .part-right .items p {
            font-family: 'CervoNeue-semi-bold';
            font-size: 18px;
            color: #fff;
            text-transform: uppercase;
            margin-top: 15px;
            background: transparent url("../images/icons/vi-right.png") no-repeat;
            padding-left: 25px;
            background-position: top 5px left; }
            section.quality-management .section-inner .parts .part-right .items p:first-child {
              margin-top: 0; }
    section.quality-management .section-inner .title {
      font-family: 'CervoNeue-regular';
      font-size: 30px;
      color: #fff;
      text-transform: uppercase; }
      section.quality-management .section-inner .title strong {
        font-family: 'CervoNeue-extra-bold';
        color: #00b4a5; }
    section.quality-management .section-inner .content {
      margin-top: 20px;
      font-family: 'CervoNeue-regular';
      font-size: 18px;
      color: #fff; }
  @media only screen and (max-width: 1200px) {
    section.quality-management .section-inner .parts .part-right .items {
      -moz-column-count: 1;
           column-count: 1; } }
  @media only screen and (max-width: 850px) {
    section.quality-management .section-inner .parts {
      flex-direction: column; }
      section.quality-management .section-inner .parts .part-right {
        width: 100%;
        padding: 0;
        margin-top: 35px; }
      section.quality-management .section-inner .parts .part-left {
        width: 100%;
        padding: 0; } }
  @media only screen and (max-width: 550px) {
    section.quality-management .section-inner {
      padding: 35px; } }

/* --------------------- /Section quality-management ---------------------- */
/* ---------------------- Section management ---------------------- */
section.management {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #fff;
  position: relative; }
  section.management .section-title {
    color: #03b4a5; }
  section.management .section-inner {
    position: relative;
    z-index: 2; }
  section.management .content {
    margin-top: 45px;
    font-family: 'CervoNeue-regular';
    font-size: 18px;
    color: #181818; }
  section.management .members {
    max-width: 990px;
    margin: auto;
    margin-top: 55px; }
    section.management .members .boxes {
      display: flex;
      flex-wrap: wrap;
      font-size: 0;
      margin: 0 -1%; }
      section.management .members .boxes .box {
        width: 31.33333%;
        margin: 1%;
        display: block;
        position: relative;
        cursor: pointer; }
        section.management .members .boxes .box .image img {
          width: 100%; }
        section.management .members .boxes .box .cover {
          position: absolute;
          top: 0;
          left: 0;
          height: 100%;
          width: 100%;
          overflow: hidden;
          background: #00b4a5;
          transition: 0.5s;
          opacity: 0; }
          section.management .members .boxes .box .cover .inner {
            position: absolute;
            width: 100%;
            top: 50%;
            transform: translateY(-50%);
            text-align: center;
            z-index: 1; }
            section.management .members .boxes .box .cover .inner .name {
              font-family: 'CervoNeue-semi-bold';
              font-size: 24px;
              line-height: 24px;
              color: #fff;
              text-transform: uppercase;
              padding: 10px; }
            section.management .members .boxes .box .cover .inner .position {
              font-family: 'CervoNeue-regular';
              font-size: 20px;
              color: #181818;
              margin-top: 5px; }
            section.management .members .boxes .box .cover .inner .text {
              font-family: 'CervoNeue-regular';
              font-size: 16px;
              color: #181818;
              margin-top: 15px;
              padding: 0 20px;
              text-align: justify; }
              @media only screen and (max-width: 950px) {
                section.management .members .boxes .box .cover .inner .text {
                  padding: 0 10px;
                  font-size: 14px; } }
              @media only screen and (max-width: 650px) {
                section.management .members .boxes .box .cover .inner .text {
                  display: none; } }
            section.management .members .boxes .box .cover .inner .icon {
              width: 60px;
              height: 60px;
              background: #fff;
              border-radius: 100%;
              position: relative;
              text-align: center;
              margin: auto;
              margin-top: 25px;
              cursor: pointer; }
              section.management .members .boxes .box .cover .inner .icon i {
                font-size: 35px;
                color: #02a194;
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translateY(-50%) translateX(-50%);
                text-align: center; }
          section.management .members .boxes .box .cover:after {
            content: "";
            position: absolute;
            bottom: -121%;
            right: -78%;
            width: 200%;
            height: 200%;
            border-radius: 900px;
            background-color: rgba(0, 0, 0, 0.05);
            transform: scale(0.8);
            opacity: 0;
            transform: scale(0.8);
            transition: 0.75s; }
          section.management .members .boxes .box .cover:before {
            content: "";
            position: absolute;
            bottom: -80%;
            right: -40%;
            width: 130%;
            height: 130%;
            border-radius: 900px;
            background-color: rgba(0, 0, 0, 0.05);
            transform: scale(0.8);
            opacity: 0;
            transition: 0.55s; }
        section.management .members .boxes .box:hover .cover {
          opacity: 1; }
          section.management .members .boxes .box:hover .cover:after, section.management .members .boxes .box:hover .cover:before {
            opacity: 1;
            transform: scale(1); }
  @media only screen and (max-width: 950px) {
    section.management {
      padding-top: 45px;
      padding-bottom: 45px; } }
  @media only screen and (max-width: 650px) {
    section.management .members {
      margin-top: 35px; }
      section.management .members .boxes .box {
        width: 48%; }
        section.management .members .boxes .box .cover {
          opacity: 1;
          height: auto;
          top: auto;
          bottom: 0;
          background: rgba(0, 180, 165, 0.85); }
          section.management .members .boxes .box .cover .inner {
            position: static;
            transform: none;
            padding: 3px; }
            section.management .members .boxes .box .cover .inner .name {
              font-size: 18px;
              line-height: 18px;
              padding: 0; }
            section.management .members .boxes .box .cover .inner .position {
              font-size: 16px;
              line-height: 16px;
              margin-top: 0px; }
            section.management .members .boxes .box .cover .inner .icon {
              display: none; } }

/* --------------------- /Section management ---------------------- */
/* ---------------------- Section representatives ---------------------- */
section.representatives {
  padding-top: 100px;
  padding-bottom: 100px; }
  section.representatives .section-title {
    color: #03b4a5; }
  section.representatives .map {
    margin-top: 55px; }
    section.representatives .map img {
      max-width: 100%; }
  @media only screen and (max-width: 950px) {
    section.representatives {
      padding-top: 45px;
      padding-bottom: 25px; }
      section.representatives .map {
        margin-top: 25px; } }

/* --------------------- /Section representatives ---------------------- */
/* ---------------------- Section contacts-bottom ---------------------- */
section.contacts-bottom {
  background: #00b4a5;
  padding: 25px 0; }
  section.contacts-bottom .title {
    font-family: 'CervoNeue-medium';
    font-size: 30px;
    color: #fff;
    text-transform: uppercase;
    display: inline-block;
    vertical-align: middle; }
    section.contacts-bottom .title strong {
      font-family: 'CervoNeue-black';
      color: #181818; }
  section.contacts-bottom .contacts {
    display: inline-block;
    vertical-align: middle;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; }
    section.contacts-bottom .contacts .contact {
      font-family: 'CervoNeue-regular';
      font-size: 24px;
      color: #181818;
      text-transform: uppercase;
      white-space: nowrap;
      margin: 10px; }
      section.contacts-bottom .contacts .contact strong {
        font-family: 'CervoNeue-bold'; }
  @media only screen and (max-width: 1160px) {
    section.contacts-bottom .contacts {
      justify-content: flex-start; } }

/* --------------------- /Section contacts-bottom ---------------------- */
/* ---------------------- Section post ---------------------- */
section.post {
  padding-top: 100px;
  padding-bottom: 50px; }
  section.post .content {
    font-family: 'CervoNeue-regular';
    font-size: 18px;
    color: #181818; }
    section.post .content a {
      color: #00b4a5; }
    section.post .content p {
      margin-top: 20px; }
    section.post .content h1, section.post .content h2, section.post .content h3, section.post .content h4 {
      font-family: 'CervoNeue-medium';
      font-size: 24px;
      color: #181818;
      text-transform: uppercase; }
    section.post .content .bottom-img {
      margin-top: 25px;
      text-align: center;
      width: 100%; }
      section.post .content .bottom-img img {
        max-width: 100%; }
  @media only screen and (max-width: 950px) {
    section.post {
      padding-top: 35px;
      padding-bottom: 35px; } }

/* --------------------- /Section post ---------------------- */
/* ---------------------- Section additional-articles ---------------------- */
section.additional-articles {
  padding-top: 35px;
  padding-bottom: 90px; }
  section.additional-articles .title {
    font-family: 'CervoNeue-medium';
    font-size: 24px;
    color: #181818;
    text-transform: uppercase; }
  section.additional-articles .boxes {
    display: flex;
    flex-wrap: wrap;
    font-size: 0;
    margin: 0 -1%;
    margin-top: 25px; }
    section.additional-articles .boxes .box {
      width: 31.33333%;
      margin: 1%;
      display: block;
      position: relative;
      cursor: pointer; }
      section.additional-articles .boxes .box img {
        width: 100%; }
      section.additional-articles .boxes .box .caption {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        overflow: hidden;
        background: rgba(0, 0, 0, 0.5);
        transition: 0.5s;
        border-bottom: 5px solid #00b4a5;
        opacity: 0; }
        section.additional-articles .boxes .box .caption .inner {
          padding: 25px;
          position: absolute;
          bottom: 0; }
        section.additional-articles .boxes .box .caption p.title {
          font-family: 'CervoNeue-semi-bold';
          font-size: 24px;
          color: #fff; }
        section.additional-articles .boxes .box .caption p.desc {
          font-family: 'CervoNeue-regular';
          font-size: 18px;
          color: #fff;
          margin-top: 5px; }
      section.additional-articles .boxes .box:hover .caption {
        opacity: 1; }
  @media only screen and (max-width: 1200px) {
    section.additional-articles .boxes .box .caption .inner {
      padding: 10px; }
    section.additional-articles .boxes .box .caption p.title {
      font-size: 18px; }
    section.additional-articles .boxes .box .caption p.desc {
      font-size: 16px; } }
  @media only screen and (max-width: 900px) {
    section.additional-articles {
      padding-top: 25px;
      padding-bottom: 35px; }
      section.additional-articles .boxes .box {
        width: 100%; }
        section.additional-articles .boxes .box .caption {
          opacity: 1; }
          section.additional-articles .boxes .box .caption .inner {
            padding: 10px; }
          section.additional-articles .boxes .box .caption p.title {
            font-size: 18px; }
          section.additional-articles .boxes .box .caption p.desc {
            font-size: 16px; } }

/* --------------------- /Section additional-articles ---------------------- */
body.rtl section.text-bottom {
  direction: rtl; }
  body.rtl section.text-bottom * {
    direction: rtl; }
  body.rtl section.text-bottom .title {
    font-family: 'opensans-bold'; }
  body.rtl section.text-bottom .content {
    font-family: 'opensans-regular'; }

/* ---------------------- Section text-bottom ---------------------- */
section.text-bottom {
  padding-bottom: 70px; }
  section.text-bottom .title {
    font-family: 'CervoNeue-medium';
    font-size: 24px;
    color: #181818;
    text-transform: uppercase;
    margin-top: 25px; }
    section.text-bottom .title strong {
      font-family: 'CervoNeue-black'; }
  section.text-bottom .content {
    font-family: 'CervoNeue-regular';
    font-size: 18px;
    color: #181818; }
    section.text-bottom .content p {
      margin-top: 20px; }
  @media only screen and (max-width: 950px) {
    section.text-bottom {
      padding-bottom: 35px; } }

/* --------------------- /Section text-bottom ---------------------- */
/* ---------------------- Section map ---------------------- */
section.map {
  height: 700px;
  position: relative; }
  section.map #map {
    width: 100%;
    height: 100%; }
  section.map .section-inner {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2; }
  section.map .inner {
    background: #00b4a5;
    max-width: 480px;
    margin-right: 0;
    margin-left: auto;
    padding: 75px 60px; }
    section.map .inner .title {
      font-family: 'CervoNeue-medium';
      font-size: 30px;
      color: #181818;
      text-transform: uppercase; }
      section.map .inner .title strong {
        font-family: 'CervoNeue-black';
        color: #fff; }
    section.map .inner .content {
      font-family: 'CervoNeue-regular';
      font-size: 18px;
      color: #fff;
      margin-top: 30px; }
  @media only screen and (max-width: 900px) {
    section.map {
      height: auto; }
      section.map #map {
        height: 400px; }
      section.map .section-inner {
        position: static;
        transform: none;
        padding: 0;
        display: none; }
        section.map .section-inner .inner {
          max-width: 100%;
          padding: 25px 30px;
          padding-top: 75px; } }

/* --------------------- /Section map ---------------------- */
/* ---------------------- Section contact ---------------------- */
section.contact {
  padding-top: 70px;
  padding-bottom: 90px;
  position: relative; }
  section.contact .parts {
    display: flex; }
    section.contact .parts .title {
      font-family: 'CervoNeue-regular';
      font-size: 30px;
      color: #181818;
      text-transform: uppercase; }
      section.contact .parts .title strong {
        font-family: 'CervoNeue-black';
        color: #00b4a5; }
  section.contact .part-left {
    width: 50%;
    padding-right: 50px; }
    section.contact .part-left .content {
      font-family: 'CervoNeue-regular';
      font-size: 18px;
      color: #181818;
      margin-top: 25px; }
    section.contact .part-left .contacts {
      display: block;
      margin-top: 50px; }
      section.contact .part-left .contacts .contact {
        margin-top: 20px;
        white-space: nowrap;
        display: block; }
        section.contact .part-left .contacts .contact .title {
          font-family: 'CervoNeue-semi-bold';
          font-size: 18px;
          color: #181818;
          text-transform: uppercase; }
          section.contact .part-left .contacts .contact .title strong {
            font-family: 'CervoNeue-semi-bold';
            font-size: 18px;
            color: #00b4a5; }
        section.contact .part-left .contacts .contact .text {
          font-family: 'CervoNeue-light';
          font-size: 18px;
          color: #181818;
          white-space: nowrap;
          text-transform: uppercase; }
      @media only screen and (max-width: 1100px) {
        section.contact .part-left .contacts {
          flex-direction: column;
          align-items: flex-start;
          margin-top: 25px; }
          section.contact .part-left .contacts .contact {
            margin: 5px 10px; } }
    section.contact .part-left .social {
      margin-top: 60px; }
      section.contact .part-left .social .title {
        font-family: 'CervoNeue-regular';
        font-size: 24px;
        color: #181818; }
        section.contact .part-left .social .title strong {
          font-family: 'CervoNeue-black';
          color: #181818; }
      section.contact .part-left .social .items {
        margin-top: 43px;
        white-space: nowrap; }
        section.contact .part-left .social .items .item {
          display: inline-block;
          vertical-align: middle;
          margin-left: 25px; }
          section.contact .part-left .social .items .item:first-child {
            margin-left: 0; }
          section.contact .part-left .social .items .item span {
            font-family: 'CervoNeue-medium';
            font-size: 24px;
            color: #181818;
            text-transform: uppercase;
            display: inline-block;
            vertical-align: middle; }
          section.contact .part-left .social .items .item img {
            display: inline-block;
            vertical-align: middle;
            margin: 0 10px; }
  section.contact .part-right {
    width: 50%;
    padding-left: 50px; }
    section.contact .part-right .wpcf7 {
      margin-top: 20px; }
      section.contact .part-right .wpcf7 form {
        position: relative;
        text-align: left; }
      section.contact .part-right .wpcf7 input, section.contact .part-right .wpcf7 select {
        font-family: 'CervoNeue-regular';
        font-size: 18px;
        color: #939493;
        border: none;
        border-bottom: 6px solid #939493;
        background: none;
        outline: none;
        padding: 15px;
        width: 100%;
        height: 100%; }
        section.contact .part-right .wpcf7 input::-webkit-input-placeholder, section.contact .part-right .wpcf7 select::-webkit-input-placeholder {
          /* WebKit browsers */
          color: #939493; }
        section.contact .part-right .wpcf7 input:-moz-placeholder, section.contact .part-right .wpcf7 select:-moz-placeholder {
          /* Mozilla Firefox 4 to 18 */
          color: #939493; }
        section.contact .part-right .wpcf7 input::-moz-placeholder, section.contact .part-right .wpcf7 select::-moz-placeholder {
          /* Mozilla Firefox 19+ */
          color: #939493; }
        section.contact .part-right .wpcf7 input:-ms-input-placeholder, section.contact .part-right .wpcf7 select:-ms-input-placeholder {
          /* Internet Explorer 10+ */
          color: #939493; }
        section.contact .part-right .wpcf7 input:focus, section.contact .part-right .wpcf7 select:focus {
          border-bottom: 6px solid #181818;
          color: #181818; }
          section.contact .part-right .wpcf7 input:focus::-webkit-input-placeholder, section.contact .part-right .wpcf7 select:focus::-webkit-input-placeholder {
            /* WebKit browsers */
            color: #181818; }
          section.contact .part-right .wpcf7 input:focus:-moz-placeholder, section.contact .part-right .wpcf7 select:focus:-moz-placeholder {
            /* Mozilla Firefox 4 to 18 */
            color: #181818; }
          section.contact .part-right .wpcf7 input:focus::-moz-placeholder, section.contact .part-right .wpcf7 select:focus::-moz-placeholder {
            /* Mozilla Firefox 19+ */
            color: #181818; }
          section.contact .part-right .wpcf7 input:focus:-ms-input-placeholder, section.contact .part-right .wpcf7 select:focus:-ms-input-placeholder {
            /* Internet Explorer 10+ */
            color: #181818; }
      section.contact .part-right .wpcf7 .wpcf7-form-control-wrap {
        display: block;
        position: relative;
        margin-top: 20px; }
      section.contact .part-right .wpcf7 input[type="submit"] {
        font-family: 'CervoNeue-semi-bold';
        font-size: 18px;
        color: #181818;
        text-transform: uppercase;
        background: #00b4a5;
        display: inline-block;
        margin-top: 35px;
        padding: 15px 40px;
        cursor: pointer;
        display: inline-block;
        width: auto;
        border: none; }
      section.contact .part-right .wpcf7 input[type="checkbox"] {
        height: auto;
        width: auto; }
      section.contact .part-right .wpcf7 .wpcf7-form-control-wrap.newsletter {
        display: inline-block; }
      section.contact .part-right .wpcf7 .newsletter-cb {
        font-family: 'CervoNeue-regular';
        font-size: 18px;
        color: #181818;
        display: block;
        margin-top: 15px;
        position: relative;
        cursor: pointer; }
        section.contact .part-right .wpcf7 .newsletter-cb input {
          display: none; }
        section.contact .part-right .wpcf7 .newsletter-cb .wpcf7-list-item-label {
          padding-left: 15px; }
          section.contact .part-right .wpcf7 .newsletter-cb .wpcf7-list-item-label:after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            height: 22px;
            width: 22px;
            border: 3px solid #181818; }
          section.contact .part-right .wpcf7 .newsletter-cb .wpcf7-list-item-label:before {
            content: "";
            position: absolute;
            top: 6px;
            left: 6px;
            height: 10px;
            width: 10px;
            background: #00b4a5;
            opacity: 0;
            transform: scale(0.1);
            transition: 0.5s; }
        section.contact .part-right .wpcf7 .newsletter-cb input:checked ~ .wpcf7-list-item-label:before {
          opacity: 1;
          transform: scale(1); }
      section.contact .part-right .wpcf7 span[role="alert"] {
        font-family: 'CervoNeue-regular';
        font-size: 14px;
        color: #0f796f;
        position: absolute;
        left: 0;
        bottom: -20px; }
      section.contact .part-right .wpcf7 .wpcf7-response-output {
        font-family: 'CervoNeue-regular';
        font-size: 16px;
        color: #0f796f;
        position: absolute;
        bottom: -30px;
        border: none;
        padding: 0;
        margin: 0; }
      section.contact .part-right .wpcf7 .ajax-loader {
        display: none; }
  @media only screen and (max-width: 950px) {
    section.contact {
      padding-top: 45px;
      padding-bottom: 20px; }
      section.contact .parts {
        flex-direction: column-reverse; }
        section.contact .parts .part-left {
          width: 100%;
          padding-right: 0;
          margin-top: 35px; }
          section.contact .parts .part-left .social .items .item {
            display: block;
            margin-left: 0;
            margin-top: 20px; }
        section.contact .parts .part-right {
          width: 100%;
          padding-left: 0; }
          section.contact .parts .part-right .wpcf7 form {
            text-align: center; }
            section.contact .parts .part-right .wpcf7 form input[type="submit"] {
              width: 100%;
              max-width: 100%; } }

/* --------------------- /Section contact ---------------------- */
/* ---------------------- Section represents ---------------------- */
section.represents {
  position: relative;
  z-index: 2;
  overflow: visible;
  margin-top: 35px; }
  section.represents .section-inner {
    position: relative;
    background: #f0f0f0;
    padding: 70px;
    overflow: visible; }
    section.represents .section-inner:after {
      content: "";
      position: absolute;
      display: block;
      top: -25px;
      right: 0;
      height: 49px;
      width: 430px;
      background-image: url("../images/inner/about/quality/q-bg-dark.png"); }
    section.represents .section-inner .items {
      -moz-column-count: 6;
           column-count: 6;
      margin-top: 35px; }
      section.represents .section-inner .items p {
        font-family: 'CervoNeue-regular';
        font-size: 24px;
        color: #343434;
        text-transform: uppercase;
        margin-top: 15px;
        background: transparent url("../images/icons/squ.jpg") no-repeat;
        padding-left: 25px;
        background-position: top 10px left; }
        section.represents .section-inner .items p:first-child {
          margin-top: 0; }
    section.represents .section-inner .title {
      font-family: 'CervoNeue-regular';
      font-size: 30px;
      color: #181818;
      text-transform: uppercase; }
      section.represents .section-inner .title strong {
        font-family: 'CervoNeue-extra-bold';
        color: #181818; }
    section.represents .section-inner .content {
      margin-top: 20px;
      font-family: 'CervoNeue-regular';
      font-size: 18px;
      color: #fff; }
  @media only screen and (max-width: 1200px) {
    section.represents .section-inner .items {
      -moz-column-count: 4;
           column-count: 4; } }
  @media only screen and (max-width: 950px) {
    section.represents .section-inner .items {
      -moz-column-count: 2;
           column-count: 2; } }
  @media only screen and (max-width: 500px) {
    section.represents .section-inner {
      padding: 30px; }
      section.represents .section-inner .items {
        -moz-column-count: 2;
             column-count: 2; }
        section.represents .section-inner .items p {
          font-size: 18px;
          background-position: top 5px left; } }

/* --------------------- /Section represents ---------------------- */
/* ---------------------- Section process ---------------------- */
section.process {
  padding-top: 90px;
  padding-bottom: 70px; }
  section.process .title {
    font-family: 'CervoNeue-medium';
    font-size: 30px;
    color: #181818;
    text-transform: uppercase; }
    section.process .title strong {
      font-family: 'CervoNeue-black'; }
  section.process .circles {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 75px; }
    section.process .circles .divider {
      background-image: url("../images/icons/divider.jpg");
      background-position: center center;
      height: 20px;
      flex-grow: 1;
      margin: 0 20px; }
      section.process .circles .divider:last-child {
        display: none; }
    section.process .circles .circle {
      height: 110px;
      width: 110px;
      background: #00b4a5;
      border-radius: 100%;
      position: relative;
      transition: 0.5s;
      transform: scale(1);
      z-index: 2;
      cursor: pointer; }
      section.process .circles .circle:after {
        content: "";
        position: absolute;
        top: -20px;
        bottom: -20px;
        right: -20px;
        left: -20px;
        background-color: #00b4a5;
        border-radius: 100%;
        opacity: 0;
        z-index: -1;
        transform: scale(0.8);
        transition: 0.5s; }
      section.process .circles .circle:before {
        content: "";
        position: absolute;
        top: -40px;
        bottom: -40px;
        right: -40px;
        left: -40px;
        background-color: #00b4a5;
        border-radius: 100%;
        opacity: 0;
        z-index: -1;
        transform: scale(0.8);
        transition: 0.5s; }
      section.process .circles .circle .icon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
        opacity: 1;
        transition: 0.5s; }
      section.process .circles .circle .text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
        opacity: 0;
        font-family: 'CervoNeue-semi-bold';
        font-size: 24px;
        color: #fff;
        text-transform: uppercase;
        transition: 0.5s;
        text-align: center; }
      section.process .circles .circle:hover {
        transform: scale(1.2);
        margin: 0 50px; }
        section.process .circles .circle:hover:before, section.process .circles .circle:hover:after {
          opacity: 0.25;
          transform: scale(1); }
        section.process .circles .circle:hover .text {
          opacity: 1; }
        section.process .circles .circle:hover .icon {
          opacity: 0; }
  @media only screen and (max-width: 900px) {
    section.process {
      padding-top: 35px;
      padding-bottom: 30px; }
      section.process .circles {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 25px; }
        section.process .circles .circle {
          height: 90px;
          width: 90px;
          margin: 10px !important; }
          section.process .circles .circle:before, section.process .circles .circle:after {
            display: none; }
        section.process .circles .divider {
          display: none; } }

/* --------------------- /Section process ---------------------- */
/* ---------------------- Section product ---------------------- */
section.product .parts {
  display: flex;
  flex-wrap: wrap;
  font-size: 0; }
  section.product .parts .part {
    padding-top: 90px; }
    section.product .parts .part .title {
      font-family: 'CervoNeue-medium';
      font-size: 30px;
      color: #181818;
      text-transform: uppercase; }
    section.product .parts .part .items {
      margin-top: 45px;
      padding-bottom: 25px; }
      section.product .parts .part .items p {
        font-family: 'CervoNeue-semi-bold';
        font-size: 18px;
        color: #181818;
        text-transform: uppercase;
        margin-top: 15px;
        background: transparent url("../images/icons/vi-right.png") no-repeat;
        padding-left: 25px;
        background-position: top 5px left; }
        section.product .parts .part .items p:first-child {
          margin-top: 0; }
  section.product .parts .part-left {
    width: 32.5%;
    padding-right: 55px; }
  section.product .parts .part-left-wide {
    width: 65%;
    padding-top: 45px;
    padding-right: 45px; }
    section.product .parts .part-left-wide .pdf {
      position: relative;
      cursor: pointer;
      display: block; }
      section.product .parts .part-left-wide .pdf img {
        width: 100%; }
      section.product .parts .part-left-wide .pdf .cover {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        opacity: 1;
        transition: 0.5s; }
        section.product .parts .part-left-wide .pdf .cover .inner {
          position: absolute;
          left: 20px;
          bottom: 20px; }
          section.product .parts .part-left-wide .pdf .cover .inner i {
            font-size: 85px;
            color: #00b4a5;
            display: inline-block;
            vertical-align: middle; }
          section.product .parts .part-left-wide .pdf .cover .inner p {
            font-family: 'CervoNeue-semi-bold';
            font-size: 35px;
            line-height: 35px;
            color: #fff;
            text-transform: uppercase;
            display: inline-block;
            vertical-align: middle;
            margin-left: 15px; }
      section.product .parts .part-left-wide .pdf:hover .cover {
        opacity: 0; }
    section.product .parts .part-left-wide table {
      width: 100%;
      border-spacing: 0px;
      text-align: left;
      margin-top: 40px; }
      section.product .parts .part-left-wide table th {
        font-family: 'CervoNeue-bold';
        font-size: 18px;
        color: #fff;
        text-align: center;
        padding: 10px;
        background: #00b4a5;
        text-transform: uppercase; }
      section.product .parts .part-left-wide table tr {
        background: #efefef; }
        section.product .parts .part-left-wide table tr td {
          padding: 10px;
          font-family: 'CervoNeue-regular';
          font-size: 18px;
          color: #181818;
          text-align: center;
          transition: 0.5s;
          text-transform: uppercase; }
          section.product .parts .part-left-wide table tr td:first-child {
            font-family: 'CervoNeue-bold'; }
    @media only screen and (max-width: 650px) {
      section.product .parts .part-left-wide {
        /* Force table to not be like tables anymore */
        /* Hide table headers (but not display: none;, for accessibility) */
        /*
				Label the data
				*/ }
        section.product .parts .part-left-wide #no-more-tables table,
        section.product .parts .part-left-wide #no-more-tables thead,
        section.product .parts .part-left-wide #no-more-tables tbody,
        section.product .parts .part-left-wide #no-more-tables th,
        section.product .parts .part-left-wide #no-more-tables td,
        section.product .parts .part-left-wide #no-more-tables tr {
          display: block; }
        section.product .parts .part-left-wide table {
          margin-top: 15px; }
          section.product .parts .part-left-wide table th {
            font-size: 14px; }
          section.product .parts .part-left-wide table tr {
            padding: 5px;
            margin-top: 8px; }
            section.product .parts .part-left-wide table tr td {
              font-size: 14px;
              padding: 3px 5px; }
        section.product .parts .part-left-wide #no-more-tables thead tr {
          position: absolute;
          top: -9999px;
          left: -9999px; }
        section.product .parts .part-left-wide #no-more-tables td {
          /* Behave  like a "row" */
          border: none;
          position: relative;
          white-space: normal;
          text-align: left; }
        section.product .parts .part-left-wide #no-more-tables td:before {
          /* Now like a table header */
          /* Top/left values mimic padding */
          width: 45%;
          white-space: nowrap;
          display: inline-block; }
        section.product .parts .part-left-wide #no-more-tables td:first-child:before {
          display: none; }
        section.product .parts .part-left-wide #no-more-tables td:before {
          content: attr(data-title); } }
  section.product .parts .part-middle {
    width: 32.5%;
    padding-right: 55px; }
  section.product .parts .part-right {
    width: 35%;
    background: #181918;
    padding-right: 5%;
    padding-left: 5%;
    text-align: center; }
    section.product .parts .part-right .title {
      color: #fff;
      text-align: left; }
      section.product .parts .part-right .title strong {
        font-family: 'CervoNeue-medium';
        color: #00b4a5; }
    section.product .parts .part-right .items {
      text-align: left;
      margin-top: 45px; }
      section.product .parts .part-right .items p {
        font-family: 'CervoNeue-regular';
        font-size: 18px;
        color: #fff;
        text-transform: uppercase;
        margin-top: 15px;
        background: none;
        padding-left: 0; }
        section.product .parts .part-right .items p strong {
          font-family: 'CervoNeue-black'; }
    section.product .parts .part-right .button {
      font-family: 'CervoNeue-semi-bold';
      font-size: 18px;
      color: #181818;
      text-transform: uppercase;
      background: #00b4a5;
      display: inline-block;
      margin-top: 45px;
      padding: 15px 20px;
      cursor: pointer;
      margin-right: auto;
      margin-left: auto; }
      section.product .parts .part-right .button i {
        color: #fff;
        margin-left: 10px; }

@media only screen and (max-width: 1000px) {
  section.product .parts .part {
    padding-top: 35px; }
  section.product .parts .part-left {
    width: 48%;
    padding-right: 20px; }
  section.product .parts .part-left-wide {
    width: 100%;
    padding-right: 0; }
  section.product .parts .part-middle {
    width: 48%;
    padding-right: 0; }
  section.product .parts .part-right {
    width: 100%;
    margin-top: 25px; } }

@media only screen and (max-width: 600px) {
  section.product .parts .part .title {
    font-size: 18px; }
  section.product .parts .part .items {
    margin-top: 25px; }
    section.product .parts .part .items p {
      font-family: 'CervoNeue-regular';
      font-size: 14px;
      margin-top: 10px;
      padding-left: 10px;
      background-position: top 3px left; } }

/* --------------------- /Section product ---------------------- */
body.rtl section.relevant-products, body.rtl section.products {
  direction: rtl; }
  body.rtl section.relevant-products *, body.rtl section.products * {
    direction: rtl; }
  body.rtl section.relevant-products .boxes .box .info .text .title, body.rtl section.products .boxes .box .info .text .title {
    font-family: 'opensans-bold';
    line-height: 1; }
  body.rtl section.relevant-products .boxes .box .info .text .desc, body.rtl section.products .boxes .box .info .text .desc {
    font-family: 'opensans-regular'; }
  body.rtl section.relevant-products .boxes .box .info .button, body.rtl section.products .boxes .box .info .button {
    font-family: 'opensans-bold'; }
    body.rtl section.relevant-products .boxes .box .info .button i, body.rtl section.products .boxes .box .info .button i {
      margin-left: 0px;
      margin-right: 10px;
      transform: scaleX(-1); }

/* ---------------------- Section relevant-products ---------------------- */
section.relevant-products, section.products {
  padding-top: 75px;
  padding-bottom: 45px; }
  section.relevant-products .title, section.products .title {
    font-family: 'CervoNeue-medium';
    font-size: 30px;
    color: #181818;
    text-transform: uppercase; }
  section.relevant-products .boxes, section.products .boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0;
    margin: 0 -1%; }
    section.relevant-products .boxes .box, section.products .boxes .box {
      width: 23%;
      margin: 1%;
      display: block;
      text-align: center;
      padding: 50px 20px;
      position: relative;
      overflow: hidden;
      background: #fff; }
      section.relevant-products .boxes .box .image, section.products .boxes .box .image {
        text-align: center; }
        section.relevant-products .boxes .box .image img, section.products .boxes .box .image img {
          max-width: 100%; }
      section.relevant-products .boxes .box .info, section.products .boxes .box .info {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%; }
        section.relevant-products .boxes .box .info .bg, section.products .boxes .box .info .bg {
          background: #00b4a5;
          position: absolute;
          bottom: 0;
          left: 0;
          width: 100%;
          height: 60px;
          z-index: 1;
          transition: 0.5s;
          overflow: hidden; }
          section.relevant-products .boxes .box .info .bg:after, section.products .boxes .box .info .bg:after {
            content: "";
            position: absolute;
            bottom: -150%;
            left: 10%;
            width: 700px;
            height: 700px;
            border-radius: 900px;
            background-color: rgba(0, 0, 0, 0.25);
            opacity: 0;
            transition: 0.75s; }
          section.relevant-products .boxes .box .info .bg:before, section.products .boxes .box .info .bg:before {
            content: "";
            position: absolute;
            bottom: -120%;
            left: 50%;
            width: 500px;
            height: 500px;
            border-radius: 900px;
            background-color: rgba(0, 0, 0, 0.25);
            opacity: 0; }
        section.relevant-products .boxes .box .info .text, section.products .boxes .box .info .text {
          text-align: center;
          position: absolute;
          z-index: 2;
          width: 100%;
          bottom: 0;
          transform: translateY(0);
          transition: 0.5s; }
          section.relevant-products .boxes .box .info .text .title, section.products .boxes .box .info .text .title {
            font-family: 'CervoNeue-semi-bold';
            font-size: 24px;
            color: #fff;
            position: relative;
            transition: 0.5s;
            height: 58px; }
            section.relevant-products .boxes .box .info .text .title p, section.products .boxes .box .info .text .title p {
              position: relative;
              top: 50%;
              transform: translateY(-50%); }
          section.relevant-products .boxes .box .info .text .desc, section.products .boxes .box .info .text .desc {
            font-family: 'CervoNeue-regular';
            font-size: 24px;
            padding: 0 10px;
            color: #181818;
            transition: 0.5s;
            opacity: 0;
            top: 55px;
            position: absolute;
            width: 100%;
            left: 0;
            text-align: center; }
        section.relevant-products .boxes .box .info .button, section.products .boxes .box .info .button {
          font-family: 'CervoNeue-semi-bold';
          font-size: 18px;
          color: #181818;
          text-transform: uppercase;
          background: #fff;
          display: inline-block;
          margin-top: 45px;
          padding: 15px 20px;
          cursor: pointer;
          margin-right: auto;
          margin-left: auto;
          position: absolute;
          z-index: 2;
          bottom: 0;
          left: 50%;
          transform: translateX(-50%);
          transition: 0.5s;
          opacity: 0;
          white-space: nowrap; }
          section.relevant-products .boxes .box .info .button i, section.products .boxes .box .info .button i {
            color: #00b4a5;
            margin-left: 10px; }
      section.relevant-products .boxes .box:hover .info .bg, section.products .boxes .box:hover .info .bg {
        height: 100%; }
        section.relevant-products .boxes .box:hover .info .bg:before, section.products .boxes .box:hover .info .bg:before, section.relevant-products .boxes .box:hover .info .bg:after, section.products .boxes .box:hover .info .bg:after {
          opacity: 0.5; }
      section.relevant-products .boxes .box:hover .info .text, section.products .boxes .box:hover .info .text {
        bottom: 50%;
        transform: translateY(-50%); }
        section.relevant-products .boxes .box:hover .info .text .desc, section.products .boxes .box:hover .info .text .desc {
          opacity: 1; }
      section.relevant-products .boxes .box:hover .info .button, section.products .boxes .box:hover .info .button {
        opacity: 1; }
  @media only screen and (max-width: 830px) {
    section.relevant-products, section.products {
      padding-bottom: 25px; }
      section.relevant-products .boxes .box, section.products .boxes .box {
        width: 48%;
        padding: 50px 20px; }
        section.relevant-products .boxes .box .info .bg, section.products .boxes .box .info .bg {
          height: 35px; }
        section.relevant-products .boxes .box .info .text .title, section.products .boxes .box .info .text .title {
          font-family: 'CervoNeue-regular';
          font-size: 14px;
          height: 35px; }
        section.relevant-products .boxes .box .info .text .desc, section.products .boxes .box .info .text .desc {
          font-size: 18px; }
        section.relevant-products .boxes .box .info .button, section.products .boxes .box .info .button {
          font-size: 14px; } }

/* --------------------- /Section relevant-products ---------------------- */
/* ---------------------- Section products ---------------------- */
section.products {
  margin-top: -250px; }
  @media only screen and (max-width: 1200px) {
    section.products {
      margin-top: 0;
      padding-top: 35px; } }

/* --------------------- /Section products ---------------------- */
/* ---------------------- Section question ---------------------- */
section.question {
  margin-top: 25px; }
  section.question .section-inner {
    background: #efefef;
    padding-top: 35px;
    padding-bottom: 70px; }
  section.question .title {
    font-family: 'CervoNeue-medium';
    font-size: 24px;
    color: #181818;
    text-transform: uppercase;
    text-align: center; }
    section.question .title strong {
      font-family: 'CervoNeue-black';
      font-size: 24px;
      color: #00b4a5; }
  section.question .subtitle {
    font-family: 'CervoNeue-semi-bold';
    font-size: 18px;
    color: #181818;
    text-transform: uppercase;
    text-align: center;
    margin-top: 15px; }
  section.question .wpcf7 {
    margin-top: 20px; }
    section.question .wpcf7 form {
      position: relative;
      text-align: left;
      display: flex;
      justify-content: center;
      align-items: flex-end; }
    section.question .wpcf7 input, section.question .wpcf7 select {
      font-family: 'CervoNeue-regular';
      font-size: 18px;
      color: #939493;
      border: none;
      border-bottom: 6px solid #939493;
      background: none;
      outline: none;
      padding: 15px;
      width: 100%; }
      section.question .wpcf7 input::-webkit-input-placeholder, section.question .wpcf7 select::-webkit-input-placeholder {
        /* WebKit browsers */
        color: #939493; }
      section.question .wpcf7 input:-moz-placeholder, section.question .wpcf7 select:-moz-placeholder {
        /* Mozilla Firefox 4 to 18 */
        color: #939493; }
      section.question .wpcf7 input::-moz-placeholder, section.question .wpcf7 select::-moz-placeholder {
        /* Mozilla Firefox 19+ */
        color: #939493; }
      section.question .wpcf7 input:-ms-input-placeholder, section.question .wpcf7 select:-ms-input-placeholder {
        /* Internet Explorer 10+ */
        color: #939493; }
      section.question .wpcf7 input:focus, section.question .wpcf7 select:focus {
        border-bottom: 6px solid #181818;
        color: #181818; }
        section.question .wpcf7 input:focus::-webkit-input-placeholder, section.question .wpcf7 select:focus::-webkit-input-placeholder {
          /* WebKit browsers */
          color: #181818; }
        section.question .wpcf7 input:focus:-moz-placeholder, section.question .wpcf7 select:focus:-moz-placeholder {
          /* Mozilla Firefox 4 to 18 */
          color: #181818; }
        section.question .wpcf7 input:focus::-moz-placeholder, section.question .wpcf7 select:focus::-moz-placeholder {
          /* Mozilla Firefox 19+ */
          color: #181818; }
        section.question .wpcf7 input:focus:-ms-input-placeholder, section.question .wpcf7 select:focus:-ms-input-placeholder {
          /* Internet Explorer 10+ */
          color: #181818; }
    section.question .wpcf7 .wpcf7-form-control-wrap {
      display: block;
      position: relative;
      margin-top: 20px;
      margin: 0 25px; }
    section.question .wpcf7 input[type="submit"] {
      font-family: 'CervoNeue-semi-bold';
      font-size: 18px;
      color: #181818;
      text-transform: uppercase;
      background: #00b4a5;
      display: inline-block;
      margin-top: 35px;
      padding: 15px 40px;
      cursor: pointer;
      display: inline-block;
      width: auto;
      border: none; }
    section.question .wpcf7 span[role="alert"] {
      font-family: 'CervoNeue-regular';
      font-size: 14px;
      color: #0f796f;
      position: absolute;
      left: 0;
      bottom: -20px; }
    section.question .wpcf7 .wpcf7-response-output {
      font-family: 'CervoNeue-regular';
      font-size: 16px;
      color: #0f796f;
      position: absolute;
      bottom: -30px;
      border: none;
      padding: 0;
      margin: 0; }
    section.question .wpcf7 .ajax-loader {
      display: none; }
  @media only screen and (max-width: 950px) {
    section.question .section-inner {
      padding-bottom: 35px; }
    section.question .wpcf7 {
      margin-top: 20px; }
      section.question .wpcf7 form {
        flex-direction: column;
        align-items: center; }
        section.question .wpcf7 form .wpcf7-form-control-wrap {
          width: 100%;
          margin-top: 10px; } }

/* --------------------- /Section question ---------------------- */
