* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

body {
  min-width: 320px;
  font-family: 'Rubik', sans-serif; }

li {
  list-style: none; }

a {
  text-decoration: none; }

.blur-general {
  -webkit-filter: blur(1px);
          filter: blur(1px);
  opacity: 0.6;
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  -o-transition: filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease; }

header {
  position: absolute;
  z-index: 2;
  width: 100%; }
  header .header-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 30px 0 24px 0;
    position: relative; }
    header .header-content .logo {
      position: relative;
      z-index: 4; }
      header .header-content .logo a img {
        display: block;
        width: 100%;
        height: auto; }
    header .header-content nav {
      padding-bottom: 10px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
      header .header-content nav .nav-link {
        margin-right: 50px; }
        header .header-content nav .nav-link li {
          display: inline-block; }
          header .header-content nav .nav-link li:not(:last-of-type) {
            margin-right: 45px; }
          header .header-content nav .nav-link li a {
            font-weight: 500;
            font-size: 14px;
            color: #fff;
            position: relative; }
            header .header-content nav .nav-link li a::before {
              content: '';
              position: absolute;
              bottom: -4px;
              left: 0;
              width: 0%;
              height: 2px;
              background: #fff;
              -webkit-transition: width 0.2s ease;
              -o-transition: width 0.2s ease;
              transition: width 0.2s ease; }
            header .header-content nav .nav-link li a:hover::before {
              width: 100%; }
      header .header-content nav .contact-icons li {
        display: inline-block; }
        header .header-content nav .contact-icons li:first-of-type {
          margin-right: 30px; }
          header .header-content nav .contact-icons li:first-of-type a span {
            padding-left: 16px; }
          header .header-content nav .contact-icons li:first-of-type a i {
            -webkit-transform: scale(-1, 1);
                -ms-transform: scale(-1, 1);
                    transform: scale(-1, 1);
            -webkit-transition: all 0.2s ease;
            -o-transition: all 0.2s ease;
            transition: all 0.2s ease; }
            header .header-content nav .contact-icons li:first-of-type a i::after {
              content: '';
              position: absolute;
              background: rgba(255, 255, 255, 0.3);
              width: 30px;
              height: 30px;
              border-radius: 50%;
              z-index: -1;
              left: -8px;
              top: -8px;
              -webkit-transition: all 0.2s ease;
              -o-transition: all 0.2s ease;
              transition: all 0.2s ease; }
          header .header-content nav .contact-icons li:first-of-type a:hover i {
            color: #00FF78; }
            header .header-content nav .contact-icons li:first-of-type a:hover i::after {
              background: rgba(134, 255, 180, 0.2); }
        header .header-content nav .contact-icons li:last-of-type a i {
          -webkit-transition: all 0.2s ease;
          -o-transition: all 0.2s ease;
          transition: all 0.2s ease; }
          header .header-content nav .contact-icons li:last-of-type a i::after {
            content: '';
            position: absolute;
            background: rgba(255, 255, 255, 0.3);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            z-index: -1;
            left: -9px;
            top: -8px;
            -webkit-transition: all 0.2s ease;
            -o-transition: all 0.2s ease;
            transition: all 0.2s ease; }
        header .header-content nav .contact-icons li:last-of-type a:hover i {
          color: #00A4F0; }
          header .header-content nav .contact-icons li:last-of-type a:hover i::after {
            background: rgba(131, 216, 255, 0.2); }
        header .header-content nav .contact-icons li a {
          font-weight: 500;
          font-size: 14px;
          color: #fff; }
          header .header-content nav .contact-icons li a i {
            position: relative;
            z-index: 1; }
      header .header-content nav .mobile-nav-wrap {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 100vh; }
        header .header-content nav .mobile-nav-wrap .mobile-nav {
          position: fixed;
          top: 0;
          left: 0;
          right: 0;
          height: 100vh;
          background: rgba(0, 0, 0, 0.8);
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          -webkit-box-align: start;
              -ms-flex-align: start;
                  align-items: flex-start;
          padding-left: 50px; }
          header .header-content nav .mobile-nav-wrap .mobile-nav li:not(:last-of-type) {
            margin-bottom: 15px;
            font-size: 20px; }
          header .header-content nav .mobile-nav-wrap .mobile-nav li:nth-of-type(7) {
            margin-top: 20px;
            font-size: 15px;
            opacity: 0.8; }
          header .header-content nav .mobile-nav-wrap .mobile-nav li:last-of-type {
            font-size: 15px;
            opacity: 0.8; }
          header .header-content nav .mobile-nav-wrap .mobile-nav li a {
            color: #fff; }
    header .header-content .burger-menu {
      display: none;
      width: 40px;
      height: 40px;
      position: fixed;
      right: 30px;
      top: 25px;
      cursor: pointer;
      -webkit-tap-highlight-color: transparent !important; }
      header .header-content .burger-menu .hambergerIcon {
        -webkit-box-shadow: 0 0 3px #000;
                box-shadow: 0 0 3px #000;
        height: 4px;
        width: 40px;
        position: absolute;
        top: 50%;
        left: 50%;
        border-radius: 50px;
        background-color: #fff;
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
            -ms-transform: translate(-50%, -50%) rotate(0deg);
                transform: translate(-50%, -50%) rotate(0deg);
        -webkit-transition: all ease 0.5s;
        -o-transition: all ease 0.5s;
        transition: all ease 0.5s; }
        header .header-content .burger-menu .hambergerIcon::before, header .header-content .burger-menu .hambergerIcon::after {
          -webkit-box-shadow: 0 0 3px #000;
                  box-shadow: 0 0 3px #000;
          display: block;
          content: "";
          position: absolute;
          height: inherit;
          border-radius: inherit;
          background-color: inherit;
          margin: auto;
          width: 50%;
          -webkit-transition: all ease 0.5s;
          -o-transition: all ease 0.5s;
          transition: all ease 0.5s; }
        header .header-content .burger-menu .hambergerIcon::before {
          top: -10px;
          left: 0;
          -webkit-transform-origin: left;
              -ms-transform-origin: left;
                  transform-origin: left; }
        header .header-content .burger-menu .hambergerIcon::after {
          bottom: -10px;
          right: 0;
          -webkit-transform-origin: right;
              -ms-transform-origin: right;
                  transform-origin: right; }
      header .header-content .burger-menu .open {
        -webkit-transform: translate(-50%, -50%) rotate(135deg);
            -ms-transform: translate(-50%, -50%) rotate(135deg);
                transform: translate(-50%, -50%) rotate(135deg); }
        header .header-content .burger-menu .open::before {
          top: 0;
          -webkit-transform: translateX(100%) rotate(-90deg);
              -ms-transform: translateX(100%) rotate(-90deg);
                  transform: translateX(100%) rotate(-90deg); }
        header .header-content .burger-menu .open::after {
          bottom: 0;
          -webkit-transform: translateX(-100%) rotate(-90deg);
              -ms-transform: translateX(-100%) rotate(-90deg);
                  transform: translateX(-100%) rotate(-90deg); }

.main-page {
  width: 100%; }
  .main-page .greeting-section {
    background: url(../img/background_main-page.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    padding-bottom: 70px;
    height: 100vh;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    z-index: 0; }
    .main-page .greeting-section .mp-header-shadow {
      position: absolute;
      width: 100%;
      top: 0;
      height: 92px;
      background: -webkit-gradient(linear, left bottom, left top, from(rgba(20, 140, 215, 0.001)), to(rgba(20, 140, 215, 0.4)));
      background: -webkit-linear-gradient(bottom, rgba(20, 140, 215, 0.001), rgba(20, 140, 215, 0.4));
      background: -o-linear-gradient(bottom, rgba(20, 140, 215, 0.001), rgba(20, 140, 215, 0.4));
      background: linear-gradient(to top, rgba(20, 140, 215, 0.001), rgba(20, 140, 215, 0.4)); }
    .main-page .greeting-section .heading {
      color: #fff; }
      .main-page .greeting-section .heading h1 {
        font-weight: bold;
        font-size: 54px;
        line-height: 80px;
        margin-bottom: 10px; }
      .main-page .greeting-section .heading p {
        max-width: 350px;
        font-size: 18px;
        line-height: 32px;
        opacity: 0.9; }
  .main-page .excerpt-cards-about {
    padding: 60px 0;
    background-color: #fafaff; }
    .main-page .excerpt-cards-about .col-lg-3:nth-of-type(2) .card-about {
      background-image: url(../img/icon_card1.png);
      background-repeat: no-repeat;
      background-position: top 20px left 30px; }
      .main-page .excerpt-cards-about .col-lg-3:nth-of-type(2) .card-about .text-card h3 {
        color: #ff821b; }
    .main-page .excerpt-cards-about .col-lg-3:nth-of-type(3) .card-about {
      background-image: url(../img/icon_card2.png);
      background-repeat: no-repeat;
      background-position: top 20px left 30px; }
      .main-page .excerpt-cards-about .col-lg-3:nth-of-type(3) .card-about .text-card h3 {
        color: #12b47d; }
    .main-page .excerpt-cards-about .col-lg-3:nth-of-type(4) .card-about {
      background-image: url(../img/icon_card3.png);
      background-repeat: no-repeat;
      background-position: top 20px left 30px; }
      .main-page .excerpt-cards-about .col-lg-3:nth-of-type(4) .card-about .text-card h3 {
        color: #ff821b; }
    .main-page .excerpt-cards-about .about-oilenergie {
      color: #373956; }
      .main-page .excerpt-cards-about .about-oilenergie h2 {
        font-size: 24px;
        font-weight: 500;
        margin-bottom: 20px; }
      .main-page .excerpt-cards-about .about-oilenergie .line {
        height: 4px;
        width: 30px;
        background-color: #6772e5; }
    .main-page .excerpt-cards-about .card-about {
      background-color: #fff;
      border: 1px solid #f0f0f6;
      height: 330px;
      padding: 94px 30px 30px 30px;
      position: relative;
      border-radius: 5px; }
      .main-page .excerpt-cards-about .card-about .text-card h3 {
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 22px; }
      .main-page .excerpt-cards-about .card-about .text-card p {
        font-size: 14px;
        color: #8b8fa9;
        line-height: 24px; }
      .main-page .excerpt-cards-about .card-about .green-btn {
        position: absolute;
        bottom: 30px;
        left: 30px;
        display: inline-block;
        background: transparent; }
        .main-page .excerpt-cards-about .card-about .green-btn a {
          -webkit-box-shadow: 0px 7px 30px -1px rgba(16, 151, 105, 0.15);
                  box-shadow: 0px 7px 30px -1px rgba(16, 151, 105, 0.15);
          border-radius: 4px;
          background: -webkit-gradient(linear, left bottom, right top, from(#12b47d), to(#1fcd92));
          background: -webkit-linear-gradient(left bottom, #12b47d, #1fcd92);
          background: -o-linear-gradient(left bottom, #12b47d, #1fcd92);
          background: linear-gradient(to right top, #12b47d, #1fcd92);
          display: inline-block;
          width: 120px;
          height: 36px;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          font-size: 12px;
          text-transform: uppercase;
          font-weight: 500;
          color: #fff;
          position: relative;
          padding-right: 20px;
          -webkit-transition: all 0.2s ease;
          -o-transition: all 0.2s ease;
          transition: all 0.2s ease; }
@-webkit-keyframes arrow_move {
  0% {
    right: 17px; }
  50% {
    right: 10px; }
  100% {
    right: 17px; } }
@keyframes arrow_move {
  0% {
    right: 17px; }
  50% {
    right: 10px; }
  100% {
    right: 17px; } }
          .main-page .excerpt-cards-about .card-about .green-btn a:hover span i {
            -webkit-animation: arrow_move 0.7s linear infinite;
                    animation: arrow_move 0.7s linear infinite; }
          .main-page .excerpt-cards-about .card-about .green-btn a span {
            display: inline-block; }
            .main-page .excerpt-cards-about .card-about .green-btn a span i {
              -webkit-transition: all 0.2s ease;
              -o-transition: all 0.2s ease;
              transition: all 0.2s ease;
              position: absolute;
              top: 12px;
              right: 17px;
              font-size: 12px;
              padding-left: 8px;
              color: #fff; }
  .main-page .what-we-do {
    max-width: 1480px;
    margin: 0 auto; }
    .main-page .what-we-do .container-fluid:first-of-type .col-lg-5 {
      padding-right: 50px; }
    .main-page .what-we-do .container-fluid:first-of-type .col-lg-6 {
      padding-left: 0px; }
    .main-page .what-we-do .container-fluid:last-of-type .col-lg-5 {
      padding-left: 70px; }
      .main-page .what-we-do .container-fluid:last-of-type .col-lg-5 .green-btn {
        margin-top: 40px;
        display: inline-block;
        background: transparent; }
        .main-page .what-we-do .container-fluid:last-of-type .col-lg-5 .green-btn a {
          -webkit-box-shadow: 0px 7px 30px -1px rgba(16, 151, 105, 0.15);
                  box-shadow: 0px 7px 30px -1px rgba(16, 151, 105, 0.15);
          border-radius: 4px;
          background: -webkit-gradient(linear, left bottom, right top, from(#12b47d), to(#1fcd92));
          background: -webkit-linear-gradient(left bottom, #12b47d, #1fcd92);
          background: -o-linear-gradient(left bottom, #12b47d, #1fcd92);
          background: linear-gradient(to right top, #12b47d, #1fcd92);
          display: inline-block;
          width: 120px;
          height: 36px;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          font-size: 12px;
          text-transform: uppercase;
          font-weight: 500;
          color: #fff;
          position: relative;
          padding-right: 20px;
          -webkit-transition: all 0.2s ease;
          -o-transition: all 0.2s ease;
          transition: all 0.2s ease; }
@keyframes arrow_move {
  0% {
    right: 17px; }
  50% {
    right: 10px; }
  100% {
    right: 17px; } }
          .main-page .what-we-do .container-fluid:last-of-type .col-lg-5 .green-btn a:hover span i {
            -webkit-animation: arrow_move 0.7s linear infinite;
                    animation: arrow_move 0.7s linear infinite; }
          .main-page .what-we-do .container-fluid:last-of-type .col-lg-5 .green-btn a span {
            display: inline-block; }
            .main-page .what-we-do .container-fluid:last-of-type .col-lg-5 .green-btn a span i {
              -webkit-transition: all 0.2s ease;
              -o-transition: all 0.2s ease;
              transition: all 0.2s ease;
              position: absolute;
              top: 12px;
              right: 17px;
              font-size: 12px;
              padding-left: 8px;
              color: #fff; }
    .main-page .what-we-do .container-fluid:last-of-type .col-lg-6 {
      padding-right: 0px; }
    .main-page .what-we-do .container-fluid .row {
      padding: 60px 0 30px 0; }
      .main-page .what-we-do .container-fluid .row .img-row img {
        display: block;
        width: 100%;
        height: auto; }
      .main-page .what-we-do .container-fluid .row .col-lg-1 {
        padding: 0px; }
      .main-page .what-we-do .container-fluid .row .description__we-do {
        max-width: 445px; }
        .main-page .what-we-do .container-fluid .row .description__we-do span {
          display: block;
          color: #8b8fa9;
          font-size: 16px;
          font-weight: 500;
          text-transform: uppercase; }
        .main-page .what-we-do .container-fluid .row .description__we-do h3 {
          margin: 20px 0 30px 0;
          font-size: 18px;
          color: #6772e5;
          font-weight: 600; }
        .main-page .what-we-do .container-fluid .row .description__we-do p {
          font-size: 14px;
          color: #8b8fa9;
          line-height: 28px; }
          .main-page .what-we-do .container-fluid .row .description__we-do p:not(:last-of-type) {
            margin-bottom: 16px; }
  .main-page .our-purpose {
    margin-top: 90px;
    margin-bottom: 120px; }
    .main-page .our-purpose .col-md-6:first-of-type h4 {
      color: #6772e5; }
    .main-page .our-purpose .col-md-6:first-of-type .purpose {
      background: url(../img/purpose1.png) no-repeat;
      background-position: left 40px top 15px;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
    .main-page .our-purpose .col-md-6:last-of-type h4 {
      color: #12b47d; }
    .main-page .our-purpose .col-md-6:last-of-type .purpose {
      background: url(../img/purpose2.png) no-repeat;
      background-position: left 125px top 15px;
      -webkit-box-align: end;
          -ms-flex-align: end;
              align-items: flex-end; }
    .main-page .our-purpose .col-md-6 .purpose {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      text-align: left;
      padding-left: 100px; }
      .main-page .our-purpose .col-md-6 .purpose h4 {
        text-align: left;
        text-transform: uppercase;
        font-size: 24px;
        font-weight: 600;
        max-width: 275px;
        margin-bottom: 28px; }
      .main-page .our-purpose .col-md-6 .purpose p {
        text-align: left;
        font-size: 14px;
        line-height: 26px;
        color: #8b8fa9;
        max-width: 275px; }

.about-page .greeting-about {
  background: url(../img/background_about.png) no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  height: 100vh;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 0; }
  .about-page .greeting-about .about-header-shadow {
    position: absolute;
    width: 100%;
    top: 0;
    height: 92px;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(156, 142, 171, 0.0001)), to(rgba(156, 142, 171, 0.2)));
    background: -webkit-linear-gradient(bottom, rgba(156, 142, 171, 0.0001), rgba(156, 142, 171, 0.2));
    background: -o-linear-gradient(bottom, rgba(156, 142, 171, 0.0001), rgba(156, 142, 171, 0.2));
    background: linear-gradient(to top, rgba(156, 142, 171, 0.0001), rgba(156, 142, 171, 0.2)); }
  .about-page .greeting-about .about-heading {
    background-color: #fff;
    padding: 40px 60px 70px 60px;
    border-radius: 6px 6px 0 0; }
    .about-page .greeting-about .about-heading h1 {
      color: #373956;
      font-size: 42px;
      line-height: 80px;
      font-weight: 600;
      margin-bottom: 5px; }
    .about-page .greeting-about .about-heading .line {
      height: 4px;
      width: 30px;
      background: #6772e5;
      margin-bottom: 34px; }
    .about-page .greeting-about .about-heading p {
      font-size: 14px;
      line-height: 28px;
      color: #373956; }
      .about-page .greeting-about .about-heading p span b {
        color: #6772e5; }
.about-page .about-description .container {
  margin: 115px auto 94px auto; }
  .about-page .about-description .container .img-row {
    margin-left: 80px; }
    .about-page .about-description .container .img-row img {
      border-radius: 50%;
      -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0);
              box-shadow: 0 0 30px rgba(0, 0, 0, 0);
      display: block;
      width: 78%;
      height: auto;
      -webkit-transition: all 0.2s ease;
      -o-transition: all 0.2s ease;
      transition: all 0.2s ease; }
      .about-page .about-description .container .img-row img:hover {
        -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
                box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
        -webkit-transform: scale(1.05);
            -ms-transform: scale(1.05);
                transform: scale(1.05); }
  .about-page .about-description .container .text-about p {
    font-size: 14px;
    line-height: 28px;
    color: #373956; }
    .about-page .about-description .container .text-about p:not(:last-child) {
      margin-bottom: 16px; }
.about-page .about-description .container-fluid {
  padding-top: 80px;
  margin: 0 auto 80px auto;
  max-width: 1480px; }
  .about-page .about-description .container-fluid .row .col-lg-5 {
    padding-left: 70px; }
  .about-page .about-description .container-fluid .row .col-lg-6 {
    padding-right: 0px; }
  .about-page .about-description .container-fluid .img-row img {
    display: block;
    width: 100%;
    height: auto; }
  .about-page .about-description .container-fluid .text-about {
    max-width: 445px; }
    .about-page .about-description .container-fluid .text-about p {
      font-size: 14px;
      line-height: 28px;
      color: #373956; }
      .about-page .about-description .container-fluid .text-about p:not(:last-child) {
        margin-bottom: 20px; }
    .about-page .about-description .container-fluid .text-about .green-btn {
      display: inline-block;
      background: transparent; }
      .about-page .about-description .container-fluid .text-about .green-btn a {
        -webkit-box-shadow: 0px 7px 30px -1px rgba(16, 151, 105, 0.15);
                box-shadow: 0px 7px 30px -1px rgba(16, 151, 105, 0.15);
        border-radius: 4px;
        background: -webkit-gradient(linear, left bottom, right top, from(#12b47d), to(#1fcd92));
        background: -webkit-linear-gradient(left bottom, #12b47d, #1fcd92);
        background: -o-linear-gradient(left bottom, #12b47d, #1fcd92);
        background: linear-gradient(to right top, #12b47d, #1fcd92);
        display: inline-block;
        width: 120px;
        height: 36px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        font-size: 12px;
        text-transform: uppercase;
        font-weight: 500;
        color: #fff;
        position: relative;
        padding-right: 20px;
        -webkit-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        transition: all 0.2s ease; }
@keyframes arrow_move {
  0% {
    right: 17px; }
  50% {
    right: 10px; }
  100% {
    right: 17px; } }
        .about-page .about-description .container-fluid .text-about .green-btn a:hover span i {
          -webkit-animation: arrow_move 0.7s linear infinite;
                  animation: arrow_move 0.7s linear infinite; }
        .about-page .about-description .container-fluid .text-about .green-btn a span {
          display: inline-block; }
          .about-page .about-description .container-fluid .text-about .green-btn a span i {
            -webkit-transition: all 0.2s ease;
            -o-transition: all 0.2s ease;
            transition: all 0.2s ease;
            position: absolute;
            top: 12px;
            right: 17px;
            font-size: 12px;
            padding-left: 8px;
            color: #fff; }

.consultation-page .greeting-consultation {
  background: url(../img/consultation-background.png) no-repeat;
  background-position: top 50% left 50%;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50vh;
  width: 100%;
  position: relative; }
  .consultation-page .greeting-consultation .heading-consultation h1 {
    text-align: center;
    color: #fff;
    font-weight: 600;
    font-size: 42px;
    line-height: 80px; }
  .consultation-page .greeting-consultation .consultation-icon {
    width: 100px;
    height: 100px;
    background: url(../img/icon_consultation.png) no-repeat center;
    position: absolute;
    left: 50%;
    bottom: -100px;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); }
.consultation-page .consultation-description {
  margin-bottom: 80px; }
  .consultation-page .consultation-description .col-lg-8 {
    margin: 0 auto; }
    .consultation-page .consultation-description .col-lg-8 .consultation-text {
      padding-top: 120px; }
      .consultation-page .consultation-description .col-lg-8 .consultation-text p {
        font-size: 14px;
        line-height: 28px;
        color: #373956; }
        .consultation-page .consultation-description .col-lg-8 .consultation-text p:not(:last-of-type) {
          margin-bottom: 16px; }
.consultation-page .connect-oilenergy {
  margin-bottom: 80px; }
  .consultation-page .connect-oilenergy .col-lg-10 {
    margin: 0 auto; }
    .consultation-page .connect-oilenergy .col-lg-10 .oilenergie-contact {
      text-align: center; }
      .consultation-page .connect-oilenergy .col-lg-10 .oilenergie-contact h2 {
        font-size: 24px;
        line-height: 28px;
        color: #373956;
        font-weight: 600;
        margin-bottom: 16px; }
      .consultation-page .connect-oilenergy .col-lg-10 .oilenergie-contact p {
        font-size: 14px;
        line-height: 28px;
        color: #8b8fa9;
        margin-bottom: 36px; }
      .consultation-page .connect-oilenergy .col-lg-10 .oilenergie-contact .green-btn {
        display: inline-block;
        background: transparent; }
        .consultation-page .connect-oilenergy .col-lg-10 .oilenergie-contact .green-btn a {
          -webkit-box-shadow: 0px 7px 30px -1px rgba(16, 151, 105, 0.15);
                  box-shadow: 0px 7px 30px -1px rgba(16, 151, 105, 0.15);
          border-radius: 4px;
          background: -webkit-gradient(linear, left bottom, right top, from(#12b47d), to(#1fcd92));
          background: -webkit-linear-gradient(left bottom, #12b47d, #1fcd92);
          background: -o-linear-gradient(left bottom, #12b47d, #1fcd92);
          background: linear-gradient(to right top, #12b47d, #1fcd92);
          display: inline-block;
          width: 120px;
          height: 36px;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          font-size: 12px;
          text-transform: uppercase;
          font-weight: 500;
          color: #fff;
          position: relative;
          padding-right: 20px;
          -webkit-transition: all 0.2s ease;
          -o-transition: all 0.2s ease;
          transition: all 0.2s ease; }
@keyframes arrow_move {
  0% {
    right: 17px; }
  50% {
    right: 10px; }
  100% {
    right: 17px; } }
          .consultation-page .connect-oilenergy .col-lg-10 .oilenergie-contact .green-btn a:hover span i {
            -webkit-animation: arrow_move 0.7s linear infinite;
                    animation: arrow_move 0.7s linear infinite; }
          .consultation-page .connect-oilenergy .col-lg-10 .oilenergie-contact .green-btn a span {
            display: inline-block; }
            .consultation-page .connect-oilenergy .col-lg-10 .oilenergie-contact .green-btn a span i {
              -webkit-transition: all 0.2s ease;
              -o-transition: all 0.2s ease;
              transition: all 0.2s ease;
              position: absolute;
              top: 12px;
              right: 17px;
              font-size: 12px;
              padding-left: 8px;
              color: #fff; }
        .consultation-page .connect-oilenergy .col-lg-10 .oilenergie-contact .green-btn a {
          padding-right: 0px; }

.contact-page .background-headline {
  height: 92px;
  background: url(../img/yellow-headline.png); }
.contact-page .contact-us .heading-contact {
  margin-top: 76px;
  margin-bottom: 66px; }
  .contact-page .contact-us .heading-contact h1 {
    text-align: center;
    font-size: 42px;
    line-height: 80px;
    color: #373956; }
.contact-page .contact-us .contact-info {
  padding-top: 10px; }
  .contact-page .contact-us .contact-info .location .line {
    height: 4px;
    width: 30px;
    background: #6772e5;
    margin-bottom: 12px; }
  .contact-page .contact-us .contact-info .location span {
    color: #373956;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 18px;
    display: block; }
  .contact-page .contact-us .contact-info .location .location-info {
    margin-bottom: 28px;
    padding-left: 35px; }
    .contact-page .contact-us .contact-info .location .location-info li {
      color: #8b8fa9;
      font-size: 14px; }
      .contact-page .contact-us .contact-info .location .location-info li:not(:last-of-type) {
        margin-bottom: 14px; }
      .contact-page .contact-us .contact-info .location .location-info li:first-of-type {
        position: relative;
        right: 33px;
        top: 31px; }
      .contact-page .contact-us .contact-info .location .location-info li a {
        font-size: 15px;
        left: 6px;
        position: relative;
        z-index: 1;
        color: #6772e5; }
        .contact-page .contact-us .contact-info .location .location-info li a::after {
          content: '';
          position: absolute;
          left: -6.6px;
          top: -4px;
          width: 25px;
          height: 25px;
          background: #d9dff4;
          border-radius: 50%;
          z-index: -1; }
  .contact-page .contact-us .contact-info .reach-us span {
    display: block;
    color: #373956;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 34px; }
  .contact-page .contact-us .contact-info .reach-us .reach-info li {
    font-size: 14px; }
    .contact-page .contact-us .contact-info .reach-us .reach-info li:first-of-type {
      font-weight: 500;
      margin-bottom: 32px; }
      .contact-page .contact-us .contact-info .reach-us .reach-info li:first-of-type a {
        color: #12b47d;
        position: relative;
        z-index: 1; }
        .contact-page .contact-us .contact-info .reach-us .reach-info li:first-of-type a i {
          -webkit-transform: scale(-1, 1);
              -ms-transform: scale(-1, 1);
                  transform: scale(-1, 1);
          padding-left: 20px;
          font-size: 14px;
          left: 6px;
          position: relative;
          z-index: 1; }
          .contact-page .contact-us .contact-info .reach-us .reach-info li:first-of-type a i::after {
            content: '';
            position: absolute;
            left: 14px;
            top: -6px;
            width: 26px;
            height: 26px;
            background: #cce9e5;
            border-radius: 50%;
            z-index: -1; }
    .contact-page .contact-us .contact-info .reach-us .reach-info li:not(:first-of-type) {
      margin-bottom: 14px; }
      .contact-page .contact-us .contact-info .reach-us .reach-info li:not(:first-of-type) a {
        color: #6772e5; }
        .contact-page .contact-us .contact-info .reach-us .reach-info li:not(:first-of-type) a i {
          padding-right: 20px;
          font-size: 14px;
          left: 6px;
          position: relative;
          z-index: 1; }
          .contact-page .contact-us .contact-info .reach-us .reach-info li:not(:first-of-type) a i::after {
            content: '';
            position: absolute;
            left: -5.785px;
            top: -5px;
            width: 25px;
            height: 25px;
            background: #d9dff4;
            border-radius: 50%;
            z-index: -1; }
.contact-page .contact-us .map {
  overflow: hidden; }
  .contact-page .contact-us .map img {
    -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
            transform: scale(1.2);
    display: block;
    width: 100%;
    height: auto; }
.contact-page .contact-us .contact-form-cont {
  margin-top: 80px;
  margin-bottom: 80px; }
  .contact-page .contact-us .contact-form-cont .form-title h3 {
    text-align: center;
    font-size: 24px;
    color: #373956;
    margin-bottom: 25px; }
  .contact-page .contact-us .contact-form-cont .form-title .line {
    height: 4px;
    width: 30px;
    background: #6772e5;
    margin: 0 auto;
    margin-bottom: 35px; }

.main-page {
  width: 100%; }
  .main-page .greeting-section {
    background: url(../img/background_main-page.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    padding-bottom: 70px;
    height: 100vh;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    z-index: 0; }
    .main-page .greeting-section .mp-header-shadow {
      position: absolute;
      width: 100%;
      top: 0;
      height: 92px;
      background: -webkit-gradient(linear, left bottom, left top, from(rgba(20, 140, 215, 0.001)), to(rgba(20, 140, 215, 0.4)));
      background: -webkit-linear-gradient(bottom, rgba(20, 140, 215, 0.001), rgba(20, 140, 215, 0.4));
      background: -o-linear-gradient(bottom, rgba(20, 140, 215, 0.001), rgba(20, 140, 215, 0.4));
      background: linear-gradient(to top, rgba(20, 140, 215, 0.001), rgba(20, 140, 215, 0.4)); }
    .main-page .greeting-section .heading {
      color: #fff; }
      .main-page .greeting-section .heading h1 {
        font-weight: bold;
        font-size: 54px;
        line-height: 80px;
        margin-bottom: 10px; }
      .main-page .greeting-section .heading p {
        max-width: 350px;
        font-size: 18px;
        line-height: 32px;
        opacity: 0.9; }
  .main-page .excerpt-cards-about {
    padding: 60px 0;
    background-color: #fafaff; }
    .main-page .excerpt-cards-about .col-lg-3:nth-of-type(2) .card-about {
      background-image: url(../img/icon_card1.png);
      background-repeat: no-repeat;
      background-position: top 20px left 30px; }
      .main-page .excerpt-cards-about .col-lg-3:nth-of-type(2) .card-about .text-card h3 {
        color: #ff821b; }
    .main-page .excerpt-cards-about .col-lg-3:nth-of-type(3) .card-about {
      background-image: url(../img/icon_card2.png);
      background-repeat: no-repeat;
      background-position: top 20px left 30px; }
      .main-page .excerpt-cards-about .col-lg-3:nth-of-type(3) .card-about .text-card h3 {
        color: #12b47d; }
    .main-page .excerpt-cards-about .col-lg-3:nth-of-type(4) .card-about {
      background-image: url(../img/icon_card3.png);
      background-repeat: no-repeat;
      background-position: top 20px left 30px; }
      .main-page .excerpt-cards-about .col-lg-3:nth-of-type(4) .card-about .text-card h3 {
        color: #ff821b; }
    .main-page .excerpt-cards-about .about-oilenergie {
      color: #373956; }
      .main-page .excerpt-cards-about .about-oilenergie h2 {
        font-size: 24px;
        font-weight: 500;
        margin-bottom: 20px; }
      .main-page .excerpt-cards-about .about-oilenergie .line {
        height: 4px;
        width: 30px;
        background-color: #6772e5; }
    .main-page .excerpt-cards-about .card-about {
      background-color: #fff;
      border: 1px solid #f0f0f6;
      height: 330px;
      padding: 94px 30px 30px 30px;
      position: relative;
      border-radius: 5px; }
      .main-page .excerpt-cards-about .card-about .text-card h3 {
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 22px; }
      .main-page .excerpt-cards-about .card-about .text-card p {
        font-size: 14px;
        color: #8b8fa9;
        line-height: 24px; }
      .main-page .excerpt-cards-about .card-about .green-btn {
        position: absolute;
        bottom: 30px;
        left: 30px;
        display: inline-block;
        background: transparent; }
        .main-page .excerpt-cards-about .card-about .green-btn a {
          -webkit-box-shadow: 0px 7px 30px -1px rgba(16, 151, 105, 0.15);
                  box-shadow: 0px 7px 30px -1px rgba(16, 151, 105, 0.15);
          border-radius: 4px;
          background: -webkit-gradient(linear, left bottom, right top, from(#12b47d), to(#1fcd92));
          background: -webkit-linear-gradient(left bottom, #12b47d, #1fcd92);
          background: -o-linear-gradient(left bottom, #12b47d, #1fcd92);
          background: linear-gradient(to right top, #12b47d, #1fcd92);
          display: inline-block;
          width: 120px;
          height: 36px;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          font-size: 12px;
          text-transform: uppercase;
          font-weight: 500;
          color: #fff;
          position: relative;
          padding-right: 20px;
          -webkit-transition: all 0.2s ease;
          -o-transition: all 0.2s ease;
          transition: all 0.2s ease; }
@keyframes arrow_move {
  0% {
    right: 17px; }
  50% {
    right: 10px; }
  100% {
    right: 17px; } }
          .main-page .excerpt-cards-about .card-about .green-btn a:hover span i {
            -webkit-animation: arrow_move 0.7s linear infinite;
                    animation: arrow_move 0.7s linear infinite; }
          .main-page .excerpt-cards-about .card-about .green-btn a span {
            display: inline-block; }
            .main-page .excerpt-cards-about .card-about .green-btn a span i {
              -webkit-transition: all 0.2s ease;
              -o-transition: all 0.2s ease;
              transition: all 0.2s ease;
              position: absolute;
              top: 12px;
              right: 17px;
              font-size: 12px;
              padding-left: 8px;
              color: #fff; }
  .main-page .what-we-do {
    max-width: 1480px;
    margin: 0 auto; }
    .main-page .what-we-do .container-fluid:first-of-type .col-lg-5 {
      padding-right: 50px; }
    .main-page .what-we-do .container-fluid:first-of-type .col-lg-6 {
      padding-left: 0px; }
    .main-page .what-we-do .container-fluid:last-of-type .col-lg-5 {
      padding-left: 70px; }
      .main-page .what-we-do .container-fluid:last-of-type .col-lg-5 .green-btn {
        margin-top: 40px;
        display: inline-block;
        background: transparent; }
        .main-page .what-we-do .container-fluid:last-of-type .col-lg-5 .green-btn a {
          -webkit-box-shadow: 0px 7px 30px -1px rgba(16, 151, 105, 0.15);
                  box-shadow: 0px 7px 30px -1px rgba(16, 151, 105, 0.15);
          border-radius: 4px;
          background: -webkit-gradient(linear, left bottom, right top, from(#12b47d), to(#1fcd92));
          background: -webkit-linear-gradient(left bottom, #12b47d, #1fcd92);
          background: -o-linear-gradient(left bottom, #12b47d, #1fcd92);
          background: linear-gradient(to right top, #12b47d, #1fcd92);
          display: inline-block;
          width: 120px;
          height: 36px;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          font-size: 12px;
          text-transform: uppercase;
          font-weight: 500;
          color: #fff;
          position: relative;
          padding-right: 20px;
          -webkit-transition: all 0.2s ease;
          -o-transition: all 0.2s ease;
          transition: all 0.2s ease; }
@keyframes arrow_move {
  0% {
    right: 17px; }
  50% {
    right: 10px; }
  100% {
    right: 17px; } }
          .main-page .what-we-do .container-fluid:last-of-type .col-lg-5 .green-btn a:hover span i {
            -webkit-animation: arrow_move 0.7s linear infinite;
                    animation: arrow_move 0.7s linear infinite; }
          .main-page .what-we-do .container-fluid:last-of-type .col-lg-5 .green-btn a span {
            display: inline-block; }
            .main-page .what-we-do .container-fluid:last-of-type .col-lg-5 .green-btn a span i {
              -webkit-transition: all 0.2s ease;
              -o-transition: all 0.2s ease;
              transition: all 0.2s ease;
              position: absolute;
              top: 12px;
              right: 17px;
              font-size: 12px;
              padding-left: 8px;
              color: #fff; }
    .main-page .what-we-do .container-fluid:last-of-type .col-lg-6 {
      padding-right: 0px; }
    .main-page .what-we-do .container-fluid .row {
      padding: 60px 0 30px 0; }
      .main-page .what-we-do .container-fluid .row .img-row img {
        display: block;
        width: 100%;
        height: auto; }
      .main-page .what-we-do .container-fluid .row .col-lg-1 {
        padding: 0px; }
      .main-page .what-we-do .container-fluid .row .description__we-do {
        max-width: 445px; }
        .main-page .what-we-do .container-fluid .row .description__we-do span {
          display: block;
          color: #8b8fa9;
          font-size: 16px;
          font-weight: 500;
          text-transform: uppercase; }
        .main-page .what-we-do .container-fluid .row .description__we-do h3 {
          margin: 20px 0 30px 0;
          font-size: 18px;
          color: #6772e5;
          font-weight: 600; }
        .main-page .what-we-do .container-fluid .row .description__we-do p {
          font-size: 14px;
          color: #8b8fa9;
          line-height: 28px; }
          .main-page .what-we-do .container-fluid .row .description__we-do p:not(:last-of-type) {
            margin-bottom: 16px; }
  .main-page .our-purpose {
    margin-top: 90px;
    margin-bottom: 120px; }
    .main-page .our-purpose .col-md-6:first-of-type h4 {
      color: #6772e5; }
    .main-page .our-purpose .col-md-6:first-of-type .purpose {
      background: url(../img/purpose1.png) no-repeat;
      background-position: left 40px top 15px;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
    .main-page .our-purpose .col-md-6:last-of-type h4 {
      color: #12b47d; }
    .main-page .our-purpose .col-md-6:last-of-type .purpose {
      background: url(../img/purpose2.png) no-repeat;
      background-position: left 125px top 15px;
      -webkit-box-align: end;
          -ms-flex-align: end;
              align-items: flex-end; }
    .main-page .our-purpose .col-md-6 .purpose {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      text-align: left;
      padding-left: 100px; }
      .main-page .our-purpose .col-md-6 .purpose h4 {
        text-align: left;
        text-transform: uppercase;
        font-size: 24px;
        font-weight: 600;
        max-width: 275px;
        margin-bottom: 28px; }
      .main-page .our-purpose .col-md-6 .purpose p {
        text-align: left;
        font-size: 14px;
        line-height: 26px;
        color: #8b8fa9;
        max-width: 275px; }

.products-page .greeting-products {
  background: url(../img/products-background.jpg) no-repeat;
  background-position: top 50% left 50%;
  background-size: cover;
  background-attachment: scroll;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50vh;
  width: 100%;
  position: relative;
  z-index: 0;
  margin-bottom: 83px; }
  .products-page .greeting-products .container {
    height: 100%; }
    .products-page .greeting-products .container .row {
      height: 100%; }
  .products-page .greeting-products .col-lg-10 {
    margin: 0 auto;
    height: 100%; }
    .products-page .greeting-products .col-lg-10 .products-heading {
      position: relative;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      text-align: center;
      height: 100%; }
      .products-page .greeting-products .col-lg-10 .products-heading h1 {
        color: #fff;
        font-size: 54px;
        line-height: 80px;
        font-weight: 600;
        padding-bottom: 30px; }
      .products-page .greeting-products .col-lg-10 .products-heading .products-subtitle {
        background-color: #fff;
        border-radius: 6px;
        border: 1px solid #eff0f6;
        position: absolute;
        bottom: -83px;
        padding: 44px 94px; }
        .products-page .greeting-products .col-lg-10 .products-heading .products-subtitle p {
          text-align: left;
          color: #373956;
          font-size: 14px;
          line-height: 28px; }
.products-page .products-items .products-list-title {
  margin-bottom: 54px; }
  .products-page .products-items .products-list-title h2 {
    margin-top: 76px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 24px;
    color: #373956;
    font-weight: 500; }
  .products-page .products-items .products-list-title .line {
    height: 4px;
    width: 30px;
    background: #6772e5;
    margin: 0 auto; }
.products-page .products-items .col-lg-9 {
  padding-left: 60px;
  margin: 0 auto;
  margin-bottom: 96px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  .products-page .products-items .col-lg-9 .products-list:first-of-type li:nth-of-type(1), .products-page .products-items .col-lg-9 .products-list:first-of-type li:nth-of-type(2), .products-page .products-items .col-lg-9 .products-list:first-of-type li:nth-of-type(3) {
    background: url(../img/product_icon-green.png) no-repeat;
    background-position: left 5px top 3px; }
  .products-page .products-items .col-lg-9 .products-list:first-of-type li:nth-of-type(4), .products-page .products-items .col-lg-9 .products-list:first-of-type li:nth-of-type(5), .products-page .products-items .col-lg-9 .products-list:first-of-type li:nth-of-type(6) {
    background: url(../img/product_icon-orange.png) no-repeat;
    background-position: left 5px top 3px; }
  .products-page .products-items .col-lg-9 .products-list:last-of-type li:nth-of-type(1), .products-page .products-items .col-lg-9 .products-list:last-of-type li:nth-of-type(2), .products-page .products-items .col-lg-9 .products-list:last-of-type li:nth-of-type(3) {
    background: url(../img/product_icon-orange.png) no-repeat;
    background-position: left 5px top 3px; }
  .products-page .products-items .col-lg-9 .products-list:last-of-type li:nth-of-type(4), .products-page .products-items .col-lg-9 .products-list:last-of-type li:nth-of-type(5), .products-page .products-items .col-lg-9 .products-list:last-of-type li:nth-of-type(6) {
    background: url(../img/product_icon-green.png) no-repeat;
    background-position: left 5px top 3px; }
  .products-page .products-items .col-lg-9 .products-list li {
    font-size: 16px;
    color: #373956;
    padding-left: 45px;
    line-height: 40px; }
    .products-page .products-items .col-lg-9 .products-list li:not(:last-child) {
      margin-bottom: 20px; }
.products-page .connect-oilenergy {
  margin-bottom: 108px; }
  .products-page .connect-oilenergy .col-lg-10 {
    margin: 0 auto; }
    .products-page .connect-oilenergy .col-lg-10 .oilenergie-contact {
      text-align: center;
      margin-bottom: 100px; }
      .products-page .connect-oilenergy .col-lg-10 .oilenergie-contact h2 {
        font-size: 24px;
        line-height: 28px;
        color: #373956;
        font-weight: 600;
        margin-bottom: 16px; }
      .products-page .connect-oilenergy .col-lg-10 .oilenergie-contact p {
        font-size: 14px;
        line-height: 28px;
        color: #8b8fa9;
        margin-bottom: 36px; }
      .products-page .connect-oilenergy .col-lg-10 .oilenergie-contact .green-btn {
        display: inline-block;
        background: transparent; }
        .products-page .connect-oilenergy .col-lg-10 .oilenergie-contact .green-btn a {
          -webkit-box-shadow: 0px 7px 30px -1px rgba(16, 151, 105, 0.15);
                  box-shadow: 0px 7px 30px -1px rgba(16, 151, 105, 0.15);
          border-radius: 4px;
          background: -webkit-gradient(linear, left bottom, right top, from(#12b47d), to(#1fcd92));
          background: -webkit-linear-gradient(left bottom, #12b47d, #1fcd92);
          background: -o-linear-gradient(left bottom, #12b47d, #1fcd92);
          background: linear-gradient(to right top, #12b47d, #1fcd92);
          display: inline-block;
          width: 120px;
          height: 36px;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          font-size: 12px;
          text-transform: uppercase;
          font-weight: 500;
          color: #fff;
          position: relative;
          padding-right: 20px;
          -webkit-transition: all 0.2s ease;
          -o-transition: all 0.2s ease;
          transition: all 0.2s ease; }
@keyframes arrow_move {
  0% {
    right: 17px; }
  50% {
    right: 10px; }
  100% {
    right: 17px; } }
          .products-page .connect-oilenergy .col-lg-10 .oilenergie-contact .green-btn a:hover span i {
            -webkit-animation: arrow_move 0.7s linear infinite;
                    animation: arrow_move 0.7s linear infinite; }
          .products-page .connect-oilenergy .col-lg-10 .oilenergie-contact .green-btn a span {
            display: inline-block; }
            .products-page .connect-oilenergy .col-lg-10 .oilenergie-contact .green-btn a span i {
              -webkit-transition: all 0.2s ease;
              -o-transition: all 0.2s ease;
              transition: all 0.2s ease;
              position: absolute;
              top: 12px;
              right: 17px;
              font-size: 12px;
              padding-left: 8px;
              color: #fff; }
        .products-page .connect-oilenergy .col-lg-10 .oilenergie-contact .green-btn a {
          padding-right: 0px; }
    .products-page .connect-oilenergy .col-lg-10 .oilenergie-description {
      background: url(../img/product_page-illustration.png) no-repeat;
      background-position: left 20px top 0px; }
      .products-page .connect-oilenergy .col-lg-10 .oilenergie-description p {
        max-width: 640px;
        margin-left: auto;
        margin-right: 0;
        font-size: 14px;
        line-height: 28px;
        color: #373956; }
        .products-page .connect-oilenergy .col-lg-10 .oilenergie-description p:first-of-type {
          margin-bottom: 14px; }

.services-page .greeting-services {
  background: url(../img/services-background.png) no-repeat;
  background-position: top 50% left 50%;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50vh;
  width: 100%;
  position: relative; }
  .services-page .greeting-services .heading-services h1 {
    text-align: center;
    color: #fff;
    font-weight: 600;
    font-size: 42px;
    line-height: 80px; }
  .services-page .greeting-services .srvices-icon {
    width: 100px;
    height: 100px;
    margin-left: 8px;
    background: url(../img/icon_srvices.png) no-repeat center;
    position: absolute;
    left: 50%;
    bottom: -100px;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); }
.services-page .services-description {
  margin-bottom: 80px; }
  .services-page .services-description .col-lg-8 {
    margin: 0 auto; }
    .services-page .services-description .col-lg-8 .services-text {
      padding-top: 120px; }
      .services-page .services-description .col-lg-8 .services-text p {
        font-size: 14px;
        line-height: 28px;
        color: #373956; }
        .services-page .services-description .col-lg-8 .services-text p:not(:last-of-type) {
          margin-bottom: 16px; }
.services-page .connect-oilenergy {
  margin-bottom: 80px; }
  .services-page .connect-oilenergy .col-lg-10 {
    margin: 0 auto; }
    .services-page .connect-oilenergy .col-lg-10 .oilenergie-contact {
      text-align: center; }
      .services-page .connect-oilenergy .col-lg-10 .oilenergie-contact h2 {
        font-size: 24px;
        line-height: 28px;
        color: #373956;
        font-weight: 600;
        margin-bottom: 16px; }
      .services-page .connect-oilenergy .col-lg-10 .oilenergie-contact p {
        font-size: 14px;
        line-height: 28px;
        color: #8b8fa9;
        margin-bottom: 36px; }
      .services-page .connect-oilenergy .col-lg-10 .oilenergie-contact .green-btn {
        display: inline-block;
        background: transparent; }
        .services-page .connect-oilenergy .col-lg-10 .oilenergie-contact .green-btn a {
          -webkit-box-shadow: 0px 7px 30px -1px rgba(16, 151, 105, 0.15);
                  box-shadow: 0px 7px 30px -1px rgba(16, 151, 105, 0.15);
          border-radius: 4px;
          background: -webkit-gradient(linear, left bottom, right top, from(#12b47d), to(#1fcd92));
          background: -webkit-linear-gradient(left bottom, #12b47d, #1fcd92);
          background: -o-linear-gradient(left bottom, #12b47d, #1fcd92);
          background: linear-gradient(to right top, #12b47d, #1fcd92);
          display: inline-block;
          width: 120px;
          height: 36px;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          font-size: 12px;
          text-transform: uppercase;
          font-weight: 500;
          color: #fff;
          position: relative;
          padding-right: 20px;
          -webkit-transition: all 0.2s ease;
          -o-transition: all 0.2s ease;
          transition: all 0.2s ease; }
@keyframes arrow_move {
  0% {
    right: 17px; }
  50% {
    right: 10px; }
  100% {
    right: 17px; } }
          .services-page .connect-oilenergy .col-lg-10 .oilenergie-contact .green-btn a:hover span i {
            -webkit-animation: arrow_move 0.7s linear infinite;
                    animation: arrow_move 0.7s linear infinite; }
          .services-page .connect-oilenergy .col-lg-10 .oilenergie-contact .green-btn a span {
            display: inline-block; }
            .services-page .connect-oilenergy .col-lg-10 .oilenergie-contact .green-btn a span i {
              -webkit-transition: all 0.2s ease;
              -o-transition: all 0.2s ease;
              transition: all 0.2s ease;
              position: absolute;
              top: 12px;
              right: 17px;
              font-size: 12px;
              padding-left: 8px;
              color: #fff; }
        .services-page .connect-oilenergy .col-lg-10 .oilenergie-contact .green-btn a {
          padding-right: 0px; }

.india-page .greeting-india {
  background: url(../img/india.jpg) no-repeat;
  background-position: top 30% left 50%;
  background-size: cover;
  background-attachment: fixed;
  padding-bottom: 70px;
  height: 75vh;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  position: relative; }
  .india-page .greeting-india .india-header-shadow {
    position: absolute;
    width: 100%;
    top: 0;
    height: 92px;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.001)), to(rgba(0, 0, 0, 0.1)));
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.001), rgba(0, 0, 0, 0.1));
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.001), rgba(0, 0, 0, 0.1));
    background: linear-gradient(to top, rgba(0, 0, 0, 0.001), rgba(0, 0, 0, 0.1)); }
  .india-page .greeting-india .heading-india {
    margin-top: 70px;
    padding-bottom: 70px;
    background: url(../img/why_india_icon.png) no-repeat;
    background-position: left 50% top 90px; }
    .india-page .greeting-india .heading-india h1 {
      font-size: 54px;
      line-height: 80px;
      color: #fff;
      font-weight: 600; }
.india-page .india-facts .col-lg-8 {
  margin: 0 auto; }
  .india-page .india-facts .col-lg-8 .facts-description {
    margin-top: 60px;
    margin-bottom: 80px; }
    .india-page .india-facts .col-lg-8 .facts-description p {
      font-size: 14px;
      line-height: 28px;
      color: #373956; }
      .india-page .india-facts .col-lg-8 .facts-description p:first-of-type {
        margin-bottom: 50px; }
      .india-page .india-facts .col-lg-8 .facts-description p:last-of-type {
        margin-top: 54px; }
    .india-page .india-facts .col-lg-8 .facts-description h2 {
      font-size: 18px;
      color: #6772e5;
      font-weight: 600;
      text-transform: uppercase;
      margin-bottom: 38px; }
    .india-page .india-facts .col-lg-8 .facts-description .india-advantages li {
      font-size: 16px;
      line-height: 28px;
      color: #373956;
      padding-left: 90px; }
      .india-page .india-facts .col-lg-8 .facts-description .india-advantages li:not(:last-of-type) {
        margin-bottom: 22px; }
    .india-page .india-facts .col-lg-8 .facts-description .india-advantages li.blue {
      background: url(../img/check_blue.png) no-repeat;
      background-position: left 35px top 0; }
    .india-page .india-facts .col-lg-8 .facts-description .india-advantages li.orange {
      background: url(../img/check_orange.png) no-repeat;
      background-position: left 35px top 0; }
    .india-page .india-facts .col-lg-8 .facts-description .india-advantages li.green {
      background: url(../img/check_green.png) no-repeat;
      background-position: left 35px top 0; }
    .india-page .india-facts .col-lg-8 .facts-description .india-advantages li.yellow {
      background: url(../img/check_yellow.png) no-repeat;
      background-position: left 35px top 0; }

footer {
  padding: 60px 0 30px 0;
  background-color: #edf2f7; }
  footer .footer-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    footer .footer-nav .logo a img {
      display: block;
      width: 100%;
      height: auto; }
    footer .footer-nav nav span {
      display: block;
      color: #373956;
      font-size: 14px;
      font-weight: 500;
      text-transform: uppercase;
      margin-bottom: 34px; }
    footer .footer-nav nav .quick-links li:not(:last-of-type) {
      margin-bottom: 18px; }
    footer .footer-nav nav .quick-links li a {
      font-size: 16px;
      color: #373956; }
      footer .footer-nav nav .quick-links li a:hover {
        text-decoration: underline; }
  footer .contact-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-left: 40px; }
    footer .contact-info .location span {
      display: block;
      color: #373956;
      font-size: 14px;
      font-weight: 500;
      text-transform: uppercase;
      margin-bottom: 34px; }
    footer .contact-info .location .location-info li {
      color: #8b8fa9;
      font-size: 14px; }
      footer .contact-info .location .location-info li:not(:last-of-type) {
        margin-bottom: 16px; }
      footer .contact-info .location .location-info li a {
        font-size: 15px;
        left: 6px;
        position: relative;
        z-index: 1;
        color: #6772e5; }
        footer .contact-info .location .location-info li a::after {
          content: '';
          position: absolute;
          left: -6.6px;
          top: -4px;
          width: 25px;
          height: 25px;
          background: #d9dff4;
          border-radius: 50%;
          z-index: -1; }
    footer .contact-info .reach-us span {
      display: block;
      color: #373956;
      font-size: 14px;
      font-weight: 500;
      text-transform: uppercase;
      margin-bottom: 34px; }
    footer .contact-info .reach-us .reach-info li {
      font-size: 14px; }
      footer .contact-info .reach-us .reach-info li:first-of-type {
        font-weight: 500;
        margin-bottom: 26px; }
        footer .contact-info .reach-us .reach-info li:first-of-type a {
          color: #12b47d;
          position: relative;
          z-index: 1; }
          footer .contact-info .reach-us .reach-info li:first-of-type a i {
            -webkit-transform: scale(-1, 1);
                -ms-transform: scale(-1, 1);
                    transform: scale(-1, 1);
            padding-left: 20px;
            font-size: 14px;
            left: 6px;
            position: relative;
            z-index: 1; }
            footer .contact-info .reach-us .reach-info li:first-of-type a i::after {
              content: '';
              position: absolute;
              left: 14px;
              top: -6px;
              width: 26px;
              height: 26px;
              background: #cce9e5;
              border-radius: 50%;
              z-index: -1; }
      footer .contact-info .reach-us .reach-info li:not(:first-of-type) {
        margin-bottom: 14px; }
        footer .contact-info .reach-us .reach-info li:not(:first-of-type) a {
          color: #6772e5; }
          footer .contact-info .reach-us .reach-info li:not(:first-of-type) a i {
            padding-right: 20px;
            font-size: 14px;
            left: 6px;
            position: relative;
            z-index: 1; }
            footer .contact-info .reach-us .reach-info li:not(:first-of-type) a i::after {
              content: '';
              position: absolute;
              left: -5.785px;
              top: -5px;
              width: 25px;
              height: 25px;
              background: #d9dff4;
              border-radius: 50%;
              z-index: -1; }
  footer .copyright {
    margin-top: 80px;
    text-align: center; }
    footer .copyright h6 {
      font-size: 12px;
      color: #8b8fa9;
      font-weight: 400; }

@media (max-width: 1200px) {
  header .header-content nav .nav-link {
    margin-right: 35px; }
    header .header-content nav .nav-link li:not(:last-of-type) {
      margin-right: 20px; }

  .main-page .excerpt-cards-about .col-lg-3 .card-about {
    height: 360px; }
    .main-page .excerpt-cards-about .col-lg-3 .card-about .text-card h3 {
      line-height: 22px; }
  .main-page .what-we-do .container-fluid:first-of-type .row .col-lg-1 {
    display: none; }
  .main-page .what-we-do .container-fluid:first-of-type .col-lg-5 {
    padding-right: 0px; }
  .main-page .our-purpose .col-md-6:first-of-type .purpose {
    background-position: left 30px top 15px; }
  .main-page .our-purpose .col-md-6:last-of-type .purpose {
    background-position: left 70px top 15px; }

  footer .contact-info {
    padding-left: 10px; }

  .products-page .greeting-products .col-lg-10 .products-heading .products-subtitle {
    bottom: -101px; }
  .products-page .products-items .col-lg-9 {
    padding-left: 15px; }
  .products-page .connect-oilenergy .col-lg-10 .oilenergie-description {
    background-position: left 20px top 25px; }
    .products-page .connect-oilenergy .col-lg-10 .oilenergie-description p {
      max-width: 480px; } }
@media (max-width: 992px) {
  header .header-content nav .nav-link {
    display: none; }
  header .header-content nav .contact-icons {
    display: none; }
  header .header-content nav .burger-menu {
    display: block; }

  .main-page .greeting-section {
    background-attachment: scroll; }
  .main-page .excerpt-cards-about .about-oilenergie {
    margin: 0 auto 25px auto;
    text-align: center; }
    .main-page .excerpt-cards-about .about-oilenergie .line {
      margin: 0 auto; }
  .main-page .excerpt-cards-about .col-lg-3 .card-about {
    height: auto;
    min-height: 250px;
    max-width: 500px;
    margin: 0 auto 20px auto; }
    .main-page .excerpt-cards-about .col-lg-3 .card-about .text-card p {
      max-width: 300px;
      margin-bottom: 60px; }
  .main-page .what-we-do .container-fluid:first-of-type .col-lg-6 {
    padding-right: 0px;
    margin-bottom: 25px; }
    .main-page .what-we-do .container-fluid:first-of-type .col-lg-6 .img-row {
      max-width: 600px;
      margin: 0 auto; }
  .main-page .what-we-do .container-fluid:first-of-type .col-lg-5 {
    padding-right: 15px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  .main-page .what-we-do .container-fluid:last-of-type .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse; }
    .main-page .what-we-do .container-fluid:last-of-type .row .description__we-do {
      margin: 0 auto;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
  .main-page .what-we-do .container-fluid:last-of-type .col-lg-6 {
    padding-right: 0px;
    padding-left: 0px;
    margin-bottom: 22px; }
    .main-page .what-we-do .container-fluid:last-of-type .col-lg-6 .img-row {
      max-width: 600px;
      margin: 0 auto; }
  .main-page .what-we-do .container-fluid:last-of-type .col-lg-1 {
    display: none; }
  .main-page .what-we-do .container-fluid:last-of-type .col-lg-5 {
    padding-right: 15px;
    padding-left: 15px; }
    .main-page .what-we-do .container-fluid:last-of-type .col-lg-5 .green-btn {
      margin-top: 20px; }
  .main-page .our-purpose {
    margin-top: 60px;
    margin-bottom: 80px; }
    .main-page .our-purpose .container .row {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
    .main-page .our-purpose .col-md-6:first-of-type {
      margin-bottom: 25px; }
      .main-page .our-purpose .col-md-6:first-of-type .purpose {
        background-position: left 0px top 30px;
        padding-left: 0px; }
        .main-page .our-purpose .col-md-6:first-of-type .purpose h4 {
          margin-bottom: 95px; }
        .main-page .our-purpose .col-md-6:first-of-type .purpose p {
          max-width: 360px; }
    .main-page .our-purpose .col-md-6:last-of-type .purpose {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start;
      background-position: left 0px top 30px;
      padding-left: 0px; }
      .main-page .our-purpose .col-md-6:last-of-type .purpose h4 {
        margin-bottom: 95px; }
      .main-page .our-purpose .col-md-6:last-of-type .purpose p {
        max-width: 360px; }

  footer .container .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    footer .container .row .col-md-1 {
      display: none; }
    footer .container .row .col-md-5 {
      max-width: 80%;
      margin: 0 auto; }
      footer .container .row .col-md-5 .footer-nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        margin-bottom: 50px; }
        footer .container .row .col-md-5 .footer-nav nav .quick-links li {
          display: inline-block; }
          footer .container .row .col-md-5 .footer-nav nav .quick-links li:not(:last-of-type) {
            margin-bottom: 0px;
            margin-right: 20px; }
          footer .container .row .col-md-5 .footer-nav nav .quick-links li a {
            font-size: 14px; }
        footer .container .row .col-md-5 .footer-nav nav span {
          text-align: center;
          margin-bottom: 20px; }
        footer .container .row .col-md-5 .footer-nav .logo {
          max-width: 180px;
          margin-bottom: 20px; }
    footer .container .row .col-md-6 {
      max-width: 80%;
      margin: 0 auto; }
      footer .container .row .col-md-6 .contact-info {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between; }
        footer .container .row .col-md-6 .contact-info .location span {
          text-align: center;
          margin-bottom: 10px; }
        footer .container .row .col-md-6 .contact-info .reach-us span {
          text-align: center; }

  .about-page .greeting-about {
    background-attachment: scroll; }
  .about-page .about-description .container {
    margin-top: 60px;
    margin-bottom: 60px; }
    .about-page .about-description .container .row .col-lg-1 {
      display: none; }
    .about-page .about-description .container .text-about {
      max-width: 445px;
      margin: 0 auto; }
    .about-page .about-description .container .img-row {
      margin: 0 auto;
      margin-bottom: 22px; }
      .about-page .about-description .container .img-row img {
        margin: 0 auto;
        width: 50%; }
  .about-page .about-description .container-fluid {
    margin-bottom: 35px;
    padding-top: 0px; }
    .about-page .about-description .container-fluid .row {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
          -ms-flex-direction: column-reverse;
              flex-direction: column-reverse; }
      .about-page .about-description .container-fluid .row .col-lg-6 {
        padding-left: 0px;
        padding-right: 0px; }
      .about-page .about-description .container-fluid .row .col-lg-5 {
        padding-left: 15px; }
      .about-page .about-description .container-fluid .row .col-lg-1 {
        display: none; }
    .about-page .about-description .container-fluid .text-about {
      margin: 0 auto; }
    .about-page .about-description .container-fluid .img-row {
      margin: 0 auto;
      max-width: 600px;
      margin-bottom: 22px; }

  .products-page .greeting-products {
    background-position: top 100% left 50%; }

  .contact-page .contact-us .contact-info {
    margin-bottom: 35px; } }
@media (max-width: 768px) {
  .main-page .our-purpose .col-md-6:first-of-type .purpose {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    max-width: 360px;
    margin: 0 auto; }
  .main-page .our-purpose .col-md-6:last-of-type .purpose {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    max-width: 360px;
    margin: 0 auto; }

  footer .container .row .col-md-6 {
    max-width: 90%; }

  .products-page .greeting-products .col-lg-10 .products-heading {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-top: 90px; }
    .products-page .greeting-products .col-lg-10 .products-heading .products-subtitle {
      bottom: -143px; }
  .products-page .products-items .products-list-title h2 {
    margin-top: 100px; }
  .products-page .products-items .col-lg-9 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    .products-page .products-items .col-lg-9 .products-list {
      margin-right: 20px;
      margin-left: 20px; }
      .products-page .products-items .col-lg-9 .products-list li {
        font-size: 14px;
        margin-bottom: 0px !important; }
  .products-page .connect-oilenergy .col-lg-10 .oilenergie-contact {
    margin-bottom: 40px; }
  .products-page .connect-oilenergy .col-lg-10 .oilenergie-description {
    padding-bottom: 200px;
    background-position: left 50% top 100%; }
    .products-page .connect-oilenergy .col-lg-10 .oilenergie-description p {
      margin: 0 auto; } }
@media (max-width: 768px) and (orientation: landscape) {
  header .header-content {
    padding: 15px 0 12px 0; }
    header .header-content nav .burger-menu {
      top: 10px; }
    header .header-content nav .mobile-nav-wrap .mobile-nav {
      padding-top: 10px;
      padding-left: 80px; }
      header .header-content nav .mobile-nav-wrap .mobile-nav li:not(:last-of-type) {
        margin-bottom: 10px;
        font-size: 14px; }
      header .header-content nav .mobile-nav-wrap .mobile-nav li:nth-of-type(7) {
        margin-top: 5px; }

  .main-page .greeting-section {
    position: relative;
    padding-bottom: 0px; }
    .main-page .greeting-section::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0.1)));
      background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1));
      background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1));
      background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1)); }
    .main-page .greeting-section .heading {
      position: relative;
      z-index: 2;
      text-align: center; }
      .main-page .greeting-section .heading h1 {
        font-size: 32px;
        line-height: 44px;
        margin-bottom: 5px; }
      .main-page .greeting-section .heading p {
        margin: 0 auto;
        opacity: 1;
        line-height: 28px; }

  .about-page .greeting-about {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative; }
    .about-page .greeting-about::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.4)), color-stop(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.1)));
      background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
      background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
      background: linear-gradient(to top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1)); }
    .about-page .greeting-about .about-heading {
      margin-top: 30px;
      border-radius: 6px;
      position: relative;
      z-index: 2;
      padding: 10px 15px 20px 15px; }
      .about-page .greeting-about .about-heading h1 {
        font-size: 32px;
        line-height: 44px;
        margin-bottom: 10px; }
      .about-page .greeting-about .about-heading .line {
        margin-bottom: 15px; }

  .products-page .greeting-products {
    height: 100vh;
    margin-bottom: 0px;
    position: relative; }
    .products-page .greeting-products::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.4)), color-stop(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.1)));
      background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
      background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
      background: linear-gradient(to top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1)); }
    .products-page .greeting-products .col-lg-10 .products-heading {
      position: relative;
      z-index: 2;
      padding-top: 50px; }
      .products-page .greeting-products .col-lg-10 .products-heading h1 {
        font-size: 32px; }
      .products-page .greeting-products .col-lg-10 .products-heading .products-subtitle {
        width: 100%;
        bottom: 40%;
        left: 50%;
        -webkit-transform: translate(-50%, 50%);
            -ms-transform: translate(-50%, 50%);
                transform: translate(-50%, 50%);
        padding: 20px 15px; }

  .services-page .greeting-services .heading-services h1 {
    font-size: 32px;
    line-height: 44px; }
  .services-page .greeting-services .srvices-icon {
    bottom: -120px;
    margin-left: 3px; }
  .services-page .services-description .col-lg-8 .services-text {
    padding-top: 90px; }

  .consultation-page .greeting-consultation .heading-consultation h1 {
    font-size: 32px;
    line-height: 44px; }
  .consultation-page .greeting-consultation .srvices-icon {
    bottom: -120px; }
  .consultation-page .consultation-description .col-lg-8 .consultation-text {
    padding-top: 90px; }

  .consultation-page .greeting-consultation .heading-consultation h1 {
    font-size: 32px;
    line-height: 44px; }
  .consultation-page .greeting-consultation .consultation-icon {
    bottom: -120px; }
  .consultation-page .consultation-description .col-lg-8 .consultation-text {
    padding-top: 90px; }

  .india-page .greeting-india {
    margin-bottom: 0px;
    position: relative; }
    .india-page .greeting-india::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.2)), color-stop(rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0)));
      background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
      background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
      background: linear-gradient(to top, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0)); }
    .india-page .greeting-india .heading-india {
      position: relative;
      z-index: 2;
      background-position: left 50% top 50px; }
      .india-page .greeting-india .heading-india h1 {
        font-size: 32px;
        line-height: 44px; }

  .contact-page .contact-us .heading-contact {
    margin-top: 20px;
    margin-bottom: 15px; }
  .contact-page .background-headline {
    height: 60px; } }
@media (max-width: 576px) {
  header .header-content {
    position: relative;
    z-index: 2;
    padding: 15px 0 12px 0; }
    header .header-content .logo {
      max-width: 140px; }
    header .header-content .burger-menu {
      top: 10px;
      right: 15px; }

  .main-page .greeting-section {
    position: relative;
    background-position: left 60% center;
    padding-bottom: 50px; }
    .main-page .greeting-section::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.6)), color-stop(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.1)));
      background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1));
      background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1));
      background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1)); }
    .main-page .greeting-section .mp-header-shadow {
      height: 56px; }
    .main-page .greeting-section .heading {
      position: relative;
      z-index: 2;
      text-align: center; }
      .main-page .greeting-section .heading h1 {
        font-size: 32px;
        line-height: 44px;
        margin-bottom: 15px; }
      .main-page .greeting-section .heading p {
        margin: 0 auto;
        opacity: 1;
        line-height: 28px; }
  .main-page .excerpt-cards-about {
    padding: 30px 0 20px 0; }
    .main-page .excerpt-cards-about .col-lg-3 .card-about .text-card h3 {
      margin-bottom: 10px; }
  .main-page .what-we-do .container-fluid:last-of-type .row .description__we-do {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start; }
  .main-page .what-we-do .container-fluid .row {
    padding: 0px 0px 30px 0px; }
  .main-page .our-purpose {
    margin-top: 30px;
    margin-bottom: 35px; }
    .main-page .our-purpose .col-md-6:first-of-type .purpose {
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      background-position: left 50% top 30px; }
      .main-page .our-purpose .col-md-6:first-of-type .purpose .text h4 {
        text-align: center;
        max-width: 100%; }
      .main-page .our-purpose .col-md-6:first-of-type .purpose .text p {
        text-align: center; }
    .main-page .our-purpose .col-md-6:last-of-type .purpose {
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      background-position: left 50% top 30px; }
      .main-page .our-purpose .col-md-6:last-of-type .purpose .text h4 {
        text-align: center;
        max-width: 100%; }
      .main-page .our-purpose .col-md-6:last-of-type .purpose .text p {
        text-align: center; }

  footer {
    padding: 35px 0 30px 0; }
    footer .container .row .col-md-5 {
      max-width: 100%; }
      footer .container .row .col-md-5 .footer-nav {
        margin-bottom: 35px; }
        footer .container .row .col-md-5 .footer-nav .logo {
          max-width: 140px; }
        footer .container .row .col-md-5 .footer-nav nav {
          max-width: 220px; }
          footer .container .row .col-md-5 .footer-nav nav .quick-links {
            text-align: center; }
            footer .container .row .col-md-5 .footer-nav nav .quick-links li:not(:last-of-type) {
              margin-right: 6px;
              margin-left: 6px;
              margin-bottom: 8px; }
            footer .container .row .col-md-5 .footer-nav nav .quick-links li:last-of-type {
              margin-right: 6px;
              margin-left: 6px;
              margin-bottom: 8px; }
    footer .container .row .col-md-6 {
      max-width: 100%; }
      footer .container .row .col-md-6 .contact-info {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center; }
        footer .container .row .col-md-6 .contact-info .location {
          margin-bottom: 35px; }
          footer .container .row .col-md-6 .contact-info .location span {
            margin-bottom: 2px; }
          footer .container .row .col-md-6 .contact-info .location .location-info li:not(:last-of-type) {
            margin-bottom: 12px; }
        footer .container .row .col-md-6 .contact-info .reach-us span {
          margin-bottom: 15px; }
        footer .container .row .col-md-6 .contact-info .reach-us .reach-info li:first-of-type {
          margin-bottom: 16px; }
    footer .copyright {
      margin-top: 30px; }

  .about-page .greeting-about {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative; }
    .about-page .greeting-about .about-header-shadow {
      display: none; }
    .about-page .greeting-about::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.4)), color-stop(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.1)));
      background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
      background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
      background: linear-gradient(to top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1)); }
    .about-page .greeting-about .about-heading {
      position: relative;
      z-index: 2;
      border-radius: 6px;
      padding: 10px 15px 20px 15px; }
      .about-page .greeting-about .about-heading h1 {
        font-size: 32px;
        line-height: 44px;
        margin-bottom: 10px; }
      .about-page .greeting-about .about-heading p {
        line-height: 26px; }
      .about-page .greeting-about .about-heading .line {
        margin-bottom: 15px; }
  .about-page .about-description .container {
    margin-top: 30px;
    margin-bottom: 30px; }

  .products-page .greeting-products {
    height: 100vh;
    position: relative;
    margin-bottom: 0px; }
    .products-page .greeting-products::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.4)), color-stop(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.1)));
      background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
      background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
      background: linear-gradient(to top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1)); }
    .products-page .greeting-products .col-lg-10 .products-heading {
      position: relative;
      z-index: 2;
      padding-top: 70px; }
      .products-page .greeting-products .col-lg-10 .products-heading h1 {
        font-size: 32px; }
      .products-page .greeting-products .col-lg-10 .products-heading .products-subtitle {
        width: 100%;
        padding: 20px 15px;
        bottom: 40%;
        left: 50%;
        -webkit-transform: translate(-50%, 50%);
            -ms-transform: translate(-50%, 50%);
                transform: translate(-50%, 50%); }
  .products-page .products-items .products-list-title {
    margin-bottom: 25px; }
    .products-page .products-items .products-list-title h2 {
      margin-top: 30px; }
  .products-page .products-items .col-lg-9 {
    margin-bottom: 40px; }
    .products-page .products-items .col-lg-9 .products-list {
      margin-right: 0px;
      margin-left: 0px; }
      .products-page .products-items .col-lg-9 .products-list li {
        padding-left: 30px;
        font-size: 14px; }
  .products-page .connect-oilenergy {
    margin-bottom: 30px; }
    .products-page .connect-oilenergy .col-lg-10 .oilenergie-contact {
      margin-bottom: 20px; }
      .products-page .connect-oilenergy .col-lg-10 .oilenergie-contact p {
        margin-bottom: 16px; }

  .services-page .greeting-services .heading-services h1 {
    font-size: 32px;
    line-height: 44px; }
  .services-page .greeting-services .srvices-icon {
    margin-left: 5px; }
  .services-page .services-description {
    margin-bottom: 40px; }
    .services-page .services-description .col-lg-8 .services-text {
      padding-top: 70px; }
  .services-page .connect-oilenergy {
    margin-bottom: 20px; }
    .services-page .connect-oilenergy .col-lg-10 .oilenergie-contact {
      margin-bottom: 20px; }
      .services-page .connect-oilenergy .col-lg-10 .oilenergie-contact p {
        margin-bottom: 16px; }

  .consultation-page .greeting-consultation .heading-consultation h1 {
    font-size: 32px;
    line-height: 44px; }
  .consultation-page .greeting-consultation .srvices-icon {
    margin-left: 5px; }
  .consultation-page .consultation-description {
    margin-bottom: 40px; }
    .consultation-page .consultation-description .col-lg-8 .consultation-text {
      padding-top: 70px; }
  .consultation-page .connect-oilenergy {
    margin-bottom: 20px; }
    .consultation-page .connect-oilenergy .col-lg-10 .oilenergie-contact {
      margin-bottom: 20px; }
      .consultation-page .connect-oilenergy .col-lg-10 .oilenergie-contact p {
        margin-bottom: 16px; }

  .india-page .greeting-india {
    position: relative; }
    .india-page .greeting-india .india-header-shadow {
      height: 56px;
      display: none; }
    .india-page .greeting-india::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.2)), color-stop(rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0)));
      background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
      background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
      background: linear-gradient(to top, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0)); }
    .india-page .greeting-india .heading-india {
      position: relative;
      z-index: 2;
      background-position: left 50% top 50px; }
      .india-page .greeting-india .heading-india h1 {
        font-size: 32px;
        line-height: 44px; }
  .india-page .india-facts .col-lg-8 .facts-description {
    margin-top: 30px;
    margin-bottom: 30px; }
    .india-page .india-facts .col-lg-8 .facts-description p:first-of-type {
      margin-bottom: 20px; }
    .india-page .india-facts .col-lg-8 .facts-description p:last-of-type {
      margin-top: 30px; }
    .india-page .india-facts .col-lg-8 .facts-description h2 {
      margin-bottom: 30px;
      line-height: 26px; }
    .india-page .india-facts .col-lg-8 .facts-description .india-advantages li {
      padding-left: 40px;
      font-size: 14px; }
      .india-page .india-facts .col-lg-8 .facts-description .india-advantages li:not(:last-of-type) {
        margin-bottom: 16px; }
    .india-page .india-facts .col-lg-8 .facts-description .india-advantages li.blue {
      background-position: left 0px top 0; }
    .india-page .india-facts .col-lg-8 .facts-description .india-advantages li.orange {
      background-position: left 0px top 0; }
    .india-page .india-facts .col-lg-8 .facts-description .india-advantages li.green {
      background-position: left 0px top 0; }
    .india-page .india-facts .col-lg-8 .facts-description .india-advantages li.yellow {
      background-position: left 0px top 0; }

  .contact-page .background-headline {
    height: 58px; }
  .contact-page .contact-us .heading-contact {
    margin-top: 20px;
    margin-bottom: 25px; }
  .contact-page .contact-us .map img {
    -webkit-transform: scale(1.8);
        -ms-transform: scale(1.8);
            transform: scale(1.8); }
  .contact-page .contact-us .col-lg-7 {
    padding: 0px; }
  .contact-page .contact-us .contact-form-cont {
    margin-top: 35px;
    margin-bottom: 35px; } }
@media (max-width: 576px) and (orientation: landscape) {
  .products-page .greeting-products .col-lg-10 .products-heading {
    padding-top: 40px; }

  .about-page .greeting-about {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative; }
    .about-page .greeting-about .about-heading {
      margin-top: 30px;
      border-radius: 6px;
      padding: 10px 15px 20px 15px; }
      .about-page .greeting-about .about-heading h1 {
        font-size: 32px;
        line-height: 44px;
        margin-bottom: 10px; }
      .about-page .greeting-about .about-heading .line {
        margin-bottom: 15px; } }