@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans&display=swap");
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  background-color: white;
  color: black;
}

ul, li, a {
  text-decoration: none;
  color: white;
}

.container {
  padding-top: 3rem;
  padding-left: 8rem;
  padding-right: 8rem;
}

.section-title {
  padding-top: 2rem;
  font-size: 2.5rem;
  font-weight: 400;
  text-transform: uppercase;
  text-align: left;
  color: black;
}

.top-spacing {
  padding-top: 15rem;
}

.hmbBlack nav .hamburguer span {
  background: black;
}

@media (max-width: 900px) {
  .container {
    padding-top: 2rem;
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding-top: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .section-tile {
    padding-top: 2rem;
    font-size: 2.5rem;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    color: black;
  }
  .hide-for-mobile {
    display: none;
  }
  .hide-for-mobile a, .hide-for-mobile h1, .hide-for-mobile h2, .hide-for-mobile h3, .hide-for-mobile h4 {
    display: none;
  }
}

@media (min-width: 481px) {
  .hide-for-desktop {
    display: none;
  }
  .hide-for-desktop a, .hide-for-desktop h1, .hide-for-desktop h2, .hide-for-desktop h3, .hide-for-desktop h4 {
    display: none;
  }
}

.header {
  top: 0;
  left: 0;
  width: 100%;
}

.header nav {
  background: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.header nav .logo {
  padding-left: 8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.header nav .logo img {
  height: 60px;
  width: 60px;
}

.header nav .logo .logo-text {
  padding-top: 1rem;
  font-size: 3rem;
  font-family: "Josefin Sans", sans-serif;
}

.header nav .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-right: 5rem;
}

.header nav .links a {
  text-transform: uppercase;
  padding-right: 3rem;
  font-size: 1rem;
  color: white;
}

.header nav .links a:hover {
  color: rgba(2, 59, 97, 0.788);
}

.header nav .hamburguer {
  display: none;
}

.header-home {
  position: absolute;
}

.header-home nav {
  background: transparent;
}

@media (max-width: 900px) {
  .header {
    background: black;
    top: 0;
    left: 0;
    width: 100%;
  }
  .header-home {
    position: absolute;
    background: transparent;
  }
  .header nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .header nav .logo {
    padding-left: 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .header nav .logo img {
    height: 70px;
    width: 70px;
  }
  .header nav .links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-right: 1rem;
  }
  .header nav .links a {
    text-transform: uppercase;
    padding-right: 1.5rem;
    font-size: 1.1rem;
    color: white;
  }
  .header nav .links a:hover {
    color: rgba(2, 59, 97, 0.788);
  }
  .header nav .hamburguer {
    display: none;
  }
}

@media (max-width: 480px) {
  .header nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header nav .logo {
    padding-top: 1rem;
    padding-left: 2rem;
  }
  .header nav .logo img {
    height: 4.375rem;
    width: 4.375rem;
  }
  .header nav .links {
    display: none;
  }
  .header nav .links-white {
    display: none;
  }
  .header nav .links-white a {
    text-transform: uppercase;
  }
  .header nav .hamburguer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-right: 2rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header nav .hamburguer span {
    margin-bottom: 5px;
    height: 2px;
    width: 30px;
    background: white;
  }
  .header nav .hmbBlack {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-right: 2rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header nav .hmbBlack span {
    margin-bottom: 5px;
    height: 2px;
    width: 30px;
    background: black;
  }
  #nav.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  #nav.active .hamburguer > span {
    position: relative;
  }
  #nav.active .hamburguer > span:first-child {
    background-color: transparent;
  }
  #nav.active .hamburguer > span:nth-child(2) {
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  #nav.active .hamburguer > span:last-child {
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
    top: -7px;
  }
  #nav.active .links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    z-index: 10;
    top: 7rem;
    width: 100%;
    position: absolute;
    padding-right: 0rem;
    background-color: black;
  }
  #nav.active .links a {
    padding-top: 3rem;
    padding-right: 0rem;
    padding-bottom: 3rem;
    text-align: center;
    font-size: 1.3rem;
    color: white;
  }
}

.hero {
  width: 100%;
  height: 100vh;
  background-image: url(/img/hero1.png);
  background-size: cover;
}

.hero h1 {
  width: 60%;
  padding-top: 20rem;
  padding-left: 8rem;
  font-size: 4rem;
  color: white;
  font-weight: 800;
}

.hero h1 span {
  color: royalblue;
}

.hero p {
  padding-left: 8rem;
  padding-top: 0rem;
  width: 50%;
  font-size: 1.8rem;
  color: white;
  font-weight: 600;
}

@media (max-width: 900px) {
  .hero {
    width: 100%;
    height: 100vh;
    background-image: url(/img/hero2.png);
    background-size: cover;
  }
  .hero h1 {
    width: 70%;
    padding-top: 15rem;
    padding-left: 5rem;
    font-size: 4rem;
    color: white;
  }
  .hero p {
    padding-left: 5rem;
    padding-top: 1rem;
    width: 60%;
    font-size: 2rem;
    color: white;
  }
}

@media (max-width: 480px) {
  .hero {
    width: 100%;
    height: 1000px;
    background-image: url(/img/hero1.png);
    background-size: cover;
  }
  .hero h1 {
    width: 80%;
    padding-top: 14rem;
    padding-left: 2rem;
    font-size: 3.5rem;
    color: white;
  }
  .hero p {
    padding-left: 2rem;
    padding-top: 2rem;
    width: 80%;
    font-size: 1.6rem;
    color: white;
  }
}

@-webkit-keyframes text-reveal-box {
  50% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0;
    left: 100%;
  }
}

@keyframes text-reveal-box {
  50% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0;
    left: 100%;
  }
}

.about .about-content {
  padding-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.about .about-content .right {
  width: 60%;
}

.about .about-content .right img {
  width: 100%;
}

.about .about-content .left {
  width: 40%;
  height: 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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-right: 3rem;
}

.about .about-content .left h2 {
  padding-bottom: 2rem;
}

.about .about-content .left p {
  width: 100%;
  padding-top: 2rem;
  font-size: 1.5rem;
  text-align: left;
}

.about .about-content .left a p {
  width: 100%;
  padding-top: 1rem;
  font-size: 1.3rem;
  font-weight: 800;
  color: black;
  text-align: left;
}

.content-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.content-page .section-title {
  padding-bottom: 3rem;
}

.content-page .content-section1 {
  padding-bottom: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.content-page .content-section2 {
  padding-bottom: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.content-page .right-image {
  width: 60%;
}

.content-page .right-image img {
  width: 100%;
}

.content-page .right-content {
  padding-top: 1rem;
  width: 50%;
  height: auto;
  padding-left: 2rem;
}

.content-page .right-content h2 {
  padding-bottom: 1.5rem;
}

.content-page .right-content p {
  width: 80%;
  font-size: 1.3rem;
}

.content-page .right-content a p {
  padding-top: 1rem;
  font-size: 1.3rem;
  font-weight: 800;
  color: black;
}

.content-page .left-image {
  width: 60%;
}

.content-page .left-image img {
  width: 100%;
}

.content-page .left-content {
  padding-top: 1rem;
  width: 40%;
  height: auto;
}

.content-page .left-content h2 {
  padding-bottom: 1.5rem;
}

.content-page .left-content p {
  width: 80%;
  font-size: 1.3rem;
}

.content-page .left-content a p {
  padding-top: 1rem;
  font-size: 1.3rem;
  font-weight: 800;
  color: black;
}

@media (max-width: 900px) {
  .about .about-content {
    padding-top: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about .about-content .right {
    width: 100%;
  }
  .about .about-content .right img {
    padding-top: 2rem;
    width: 100%;
  }
  .about .about-content .left {
    width: 100%;
    height: auto;
  }
  .about .about-content .left h2 {
    padding-bottom: 2rem;
  }
  .about .about-content .left p {
    width: 100%;
    font-size: 1.5rem;
  }
  .about .about-content .left a p {
    padding-top: 1rem;
    font-size: 1.1rem;
    font-weight: 800;
    color: black;
  }
  .content-page {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .content-page .content-section1 {
    padding-bottom: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .content-page .content-section2 {
    padding-bottom: 8rem;
    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;
  }
  .content-page .right-image {
    width: 100%;
  }
  .content-page .right-image img {
    width: 100%;
  }
  .content-page .right-content {
    padding-top: 1rem;
    width: 100%;
    height: auto;
    padding-left: 0rem;
  }
  .content-page .right-content h2 {
    padding-bottom: 2rem;
  }
  .content-page .right-content p {
    width: 100%;
    font-size: 1.5rem;
    padding-bottom: 1rem;
  }
  .content-page .right-content a p {
    padding-top: 1rem;
    font-size: 1.3rem;
    font-weight: 800;
    color: black;
  }
  .content-page .left-image {
    width: 100%;
  }
  .content-page .left-image img {
    width: 100%;
  }
  .content-page .left-content {
    padding-top: 1rem;
    width: 100%;
    height: auto;
  }
  .content-page .left-content h2 {
    padding-bottom: 2rem;
  }
  .content-page .left-content p {
    width: 100%;
    font-size: 1.5rem;
    padding-bottom: 1rem;
  }
  .content-page .left-content a p {
    padding-top: 1rem;
    font-size: 1.3rem;
    font-weight: 800;
    color: black;
  }
}

@media (max-width: 480px) {
  .about .about-content {
    padding-top: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about .about-content .right {
    width: 100%;
  }
  .about .about-content .right img {
    width: 100%;
  }
  .about .about-content .left {
    width: 100%;
    height: auto;
  }
  .about .about-content .left h2 {
    padding-bottom: 2rem;
  }
  .about .about-content .left p {
    width: 80%;
    font-size: 1.5rem;
  }
  .about .about-content .left a p {
    padding-top: 1rem;
    font-size: 1.3rem;
    font-weight: 800;
    color: black;
    padding-bottom: 2rem;
  }
  .content-page {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .content-page .content-section1 {
    padding-bottom: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .content-page .content-section2 {
    padding-bottom: 2rem;
    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;
  }
  .content-page .right-image {
    width: 100%;
  }
  .content-page .right-image img {
    width: 100%;
  }
  .content-page .right-content {
    padding-top: 1rem;
    width: 100%;
    height: auto;
    padding-left: 0rem;
  }
  .content-page .right-content h2 {
    padding-bottom: 2rem;
  }
  .content-page .right-content p {
    width: 100%;
    font-size: 1.5rem;
    padding-bottom: 1rem;
  }
  .content-page .right-content a p {
    padding-top: 1rem;
    font-size: 1.3rem;
    font-weight: 800;
    color: black;
  }
  .content-page .left-image {
    width: 100%;
  }
  .content-page .left-image img {
    width: 100%;
  }
  .content-page .left-content {
    padding-top: 1rem;
    width: 100%;
    height: auto;
  }
  .content-page .left-content h2 {
    padding-bottom: 2rem;
  }
  .content-page .left-content p {
    width: 100%;
    font-size: 1.5rem;
    padding-bottom: 2rem;
  }
  .content-page .left-content a p {
    padding-top: 1rem;
    font-size: 1.3rem;
    font-weight: 800;
    color: black;
  }
}

.services h2 {
  padding-bottom: 2rem;
}

.services .service-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.services .service-item {
  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;
  height: 200px;
  width: 200px;
}

.services .service-item h3 {
  padding-top: 1rem;
  color: black;
  font-size: 1.5rem;
}

@media (max-width: 480px) {
  .services h2 {
    padding-bottom: 2rem;
  }
  .services .service-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .services .service-item {
    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;
    height: 200px;
    width: 200px;
  }
  .services .service-item h3 {
    padding-top: 1rem;
    color: black;
    font-size: 1.5rem;
  }
}

.areas {
  padding-bottom: 5rem;
}

.areas .grid-area {
  padding-top: 1rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  -ms-grid-rows: 1fr 1fr 1fr 1fr;
      grid-template-rows: 1fr 1fr 1fr 1fr;
      grid-template-areas: "energy energy car car build build oil oil" "energy energy car car build build oil oil" "train train train agro agro telecom telecom more" "train train train agro agro telecom telecom more";
}

.areas .grid-area .grid-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 2rem;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#d5d4d0), color-stop(1%, #d5d4d0), color-stop(31%, #eeeeec), color-stop(75%, #efeeec), to(#e9e9e7));
  background-image: linear-gradient(to top, #d5d4d0 0%, #d5d4d0 1%, #eeeeec 31%, #efeeec 75%, #e9e9e7 100%);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 10px white solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.areas .grid-area .grid-item img {
  height: 80px;
  width: 80px;
}

.areas .grid-area .grid-item h2 {
  padding-top: 0.5rem;
  font-size: 1.1rem;
  color: black;
  text-transform: uppercase;
}

.areas .grid-area .no-background {
  background-image: none;
}

.areas .energy {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: energy;
}

.areas .telecom {
  -ms-grid-row: 3;
  -ms-grid-row-span: 2;
  -ms-grid-column: 6;
  -ms-grid-column-span: 2;
  grid-area: telecom;
}

.areas .oil {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 7;
  -ms-grid-column-span: 2;
  grid-area: oil;
}

.areas .building {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 5;
  -ms-grid-column-span: 2;
  grid-area: build;
  text-align: center;
}

.areas .paper {
  grid-area: paper;
  text-align: center;
}

.areas .train {
  -ms-grid-row: 3;
  -ms-grid-row-span: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: train;
}

.areas .car {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 3;
  -ms-grid-column-span: 2;
  grid-area: car;
}

.areas .agro {
  -ms-grid-row: 3;
  -ms-grid-row-span: 2;
  -ms-grid-column: 4;
  -ms-grid-column-span: 2;
  grid-area: agro;
}

.areas .more {
  -ms-grid-row: 3;
  -ms-grid-row-span: 2;
  -ms-grid-column: 8;
  grid-area: more;
}

@media (max-width: 900px) {
  .areas {
    padding-bottom: 5rem;
  }
  .areas .grid-area {
    padding-top: 1rem;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    -ms-grid-rows: 1fr 1fr 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr 1fr;
        grid-template-areas: "energy energy build build oil oil" "energy energy build build oil oil" "train train train telecom telecom more" "train train train telecom telecom more";
  }
  .areas .grid-area .grid-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border: 6px white solid;
  }
  .areas .grid-area .grid-item img {
    height: 80px;
    width: 80px;
  }
  .areas .grid-area .grid-item h2 {
    font-size: 1rem;
    padding-top: 0.5rem;
    color: black;
    text-transform: uppercase;
  }
}

@media (max-width: 480px) {
  .areas {
    padding-bottom: 2rem;
  }
  .areas .grid-area {
    padding-top: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .areas .grid-area .grid-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 3rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border: 5px white solid;
  }
  .areas .grid-area .grid-item img {
    height: 100px;
    width: 100px;
  }
  .areas .grid-area .grid-item h2 {
    padding-top: 0.5rem;
    color: black;
    text-transform: uppercase;
  }
  .areas .energy {
    background-image: url(/img/nikola-johnny-mirkovic-a8GDO1sWwr8-unsplash.jpg);
  }
  .areas .telecom {
    background-image: url(/img/sigmund-9FL6AI7ddzA-unsplash.jpg);
  }
  .areas .oil {
    background-image: url(/img/emmaus-studio-P006DyDoIY4-unsplash.jpg);
  }
  .areas .building {
    background-image: url(/img/photo-1535732759880-bbd5c7265e3f.jpg);
    text-align: center;
  }
  .areas .paper {
    background-image: url(/img/jonathan-borba-5oXVPPRKiRo-unsplash.jpg);
    text-align: center;
  }
  .areas .train {
    background-image: url(/img/r-nolan-hFBi3eFotSM-unsplash.jpg);
    -ms-grid-row: 3;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-area: train;
  }
  .areas .more {
    background-image: url();
    -ms-grid-row: 3;
    -ms-grid-row-span: 2;
    -ms-grid-column: 8;
    grid-area: more;
  }
}

.contact .contact-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 2rem;
  padding-bottom: 5rem;
  margin-bottom: 5rem;
  border-radius: 8px;
}

.contact .contact-content .left {
  width: 70%;
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.contact .contact-content .left h2 {
  padding-bottom: 2rem;
}

.contact .contact-content .left .map-mobile {
  display: none;
}

.contact .contact-content .right {
  width: 30%;
}

.contact .contact-content .right .contact-icons {
  padding-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: transparent;
}

.contact .contact-content .right .contact-icons .contact-icon {
  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;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding-bottom: 2rem;
}

.contact .contact-content .right .contact-icons .contact-icon img {
  height: 70px;
  width: 70px;
}

.contact .contact-content .right .contact-icons .contact-icon h3 {
  padding-top: 1rem;
  font-size: 1.05rem;
  text-align: center;
  color: black;
}

.contact .contact-content .right .contact-icons .contact-icon h3 span {
  display: block;
}

@media (max-width: 480px) {
  .contact .contact-content {
    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;
    -ms-flex-line-pack: center;
        align-content: center;
    padding-top: 2rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
  }
  .contact .contact-content .left {
    width: 100%;
    padding-right: 0rem;
    background-color: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact .contact-content .left h2 {
    padding-bottom: 2rem;
  }
  .contact .contact-content .left .map-mobile {
    display: block;
  }
  .contact .contact-content .left .map-desktop {
    display: none;
  }
  .contact .contact-content .right {
    width: 100%;
  }
  .contact .contact-content .right .contact-icons {
    padding-top: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: transparent;
  }
  .contact .contact-content .right .contact-icons .contact-icon {
    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;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    padding-bottom: 2rem;
  }
  .contact .contact-content .right .contact-icons .contact-icon img {
    height: 70px;
    width: 70px;
  }
  .contact .contact-content .right .contact-icons .contact-icon h3 {
    padding-top: 1rem;
    font-size: 1.05rem;
    text-align: center;
    color: black;
  }
  .contact .contact-content .right .contact-icons .contact-icon h3 span {
    display: block;
  }
}

footer {
  text-align: left;
  background-color: black;
  color: white;
  font-weight: 500;
}

footer .footer-links {
  padding-left: 3rem;
  padding-right: 3rem;
  padding-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

footer .footer-links h3 {
  font-size: 1.2rem;
  font-weight: 400;
  padding-bottom: 1rem;
  font-family: "Josefin Sans", sans-serif;
}

footer .footer-links h4 {
  font-size: 1.1rem;
  font-weight: 700;
}

footer .footer-links p {
  font-weight: 500;
}

footer .footer-links a:hover {
  color: rgba(255, 255, 255, 0.678);
}

footer .footer-links .vip h3 {
  font-size: 2rem;
}

footer .footer-links .vip .space {
  padding-bottom: 0.5rem;
}

footer .footer-links .vip .sec {
  padding-bottom: 1rem;
}

footer .footer-links .vip .sec span {
  display: block;
}

footer .footer-links .products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

footer .footer-links .serv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

footer .rights {
  padding-top: 3rem;
  text-align: center;
}

@media (max-width: 480px) {
  footer {
    height: auto;
    width: 100%;
    text-align: center;
    background-color: black;
    color: white;
    font-weight: 500;
  }
  footer .footer-links {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 2rem;
    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: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  footer .footer-links h3 {
    font-size: 1.2rem;
    font-weight: 800;
    padding-bottom: 2rem;
  }
  footer .footer-links h4 {
    font-size: 1.2rem;
    padding-bottom: 1rem;
    font-weight: 900;
  }
  footer .footer-links p {
    font-weight: 500;
  }
  footer .footer-links .vip .space {
    padding-bottom: 2rem;
  }
  footer .footer-links .vip .sec {
    padding-bottom: 1rem;
  }
  footer .footer-links .vip .sec span {
    display: block;
  }
  footer .rights {
    padding-top: 3rem;
    font-size: 0.8rem;
    text-align: center;
  }
}

.product {
  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;
  padding-bottom: 3rem;
}

.product .products-text {
  padding-bottom: 2rem;
}

.product .products-text p {
  padding-top: 1rem;
  font-size: 1.3rem;
  width: 100%;
}

.product .product-content-container1 {
  padding-bottom: 3rem;
  padding-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.product .product-content-container1 h3 {
  font-size: 2rem;
}

.product .product-content-container1 .content-left-image {
  width: 50%;
}

.product .product-content-container1 .content-left-image img {
  width: 100%;
}

.product .product-content-container1 .content-left-text {
  width: 40%;
  margin-left: 1rem;
}

.product .product-content-container1 .content-left-text p {
  padding-top: 2rem;
  width: 70%;
}

.product .product-content-container1 .content-left-text a {
  color: black;
  font-weight: 500;
}

.product .product-content-container1 .content-right-image {
  width: 50%;
}

.product .product-content-container1 .content-right-image img {
  width: 100%;
}

.product .product-content-container1 .content-right-text {
  width: 40%;
  padding-left: 3rem;
}

.product .product-content-container1 .content-right-text p {
  padding-top: 2rem;
  padding-bottom: 2rem;
  width: 70%;
}

.product .product-content-container1 .content-right-text p span {
  display: block;
}

.product .product-content-container1 .content-right-text a {
  color: black;
  font-weight: 700;
}

.product .product-content-container1 .content-right-text a:hover {
  color: #a7a7a7;
}

.product .product-content-container2 {
  padding-bottom: 3rem;
  padding-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.product .product-content-container2 h3 {
  font-size: 2rem;
}

.product .product-content-container2 .content-left-image {
  width: 50%;
}

.product .product-content-container2 .content-left-image img {
  width: 100%;
}

.product .product-content-container2 .content-left-text {
  width: 40%;
  margin-left: 1rem;
}

.product .product-content-container2 .content-left-text p {
  padding-top: 2rem;
  padding-bottom: 2rem;
  width: 70%;
}

.product .product-content-container2 .content-left-text a {
  color: black;
  font-weight: 700;
}

.product .product-content-container2 .content-left-text a:hover {
  color: #a7a7a7;
}

.product .product-content-container2 .content-right-image {
  width: 50%;
}

.product .product-content-container2 .content-right-image img {
  width: 100%;
}

.product .product-content-container2 .content-right-text {
  width: 40%;
  padding-left: 3rem;
}

.product .product-content-container2 .content-right-text p {
  padding-top: 2rem;
  padding-bottom: 2rem;
  width: 70%;
}

.product .product-content-container2 .content-right-text a {
  color: black;
  font-weight: 500;
}

@media (max-width: 900px) {
  .product {
    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;
  }
  .product .product-content-container1 {
    padding-bottom: 3rem;
    padding-top: 3rem;
    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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .product .product-content-container1 h3 {
    font-size: 2rem;
  }
  .product .product-content-container1 .content-left-image {
    width: 100%;
  }
  .product .product-content-container1 .content-left-image img {
    padding-top: 2rem;
    width: 100%;
  }
  .product .product-content-container1 .content-left-text {
    width: 100%;
    margin-left: 0rem;
  }
  .product .product-content-container1 .content-left-text p {
    padding-top: 2rem;
    padding-bottom: 2rem;
    width: 100%;
  }
  .product .product-content-container1 .content-left-text a {
    color: black;
    font-weight: 500;
  }
  .product .product-content-container1 .content-right-image {
    width: 100%;
  }
  .product .product-content-container1 .content-right-image img {
    padding-top: 2rem;
    width: 100%;
  }
  .product .product-content-container1 .content-right-text {
    width: 100%;
    padding-left: 1rem;
  }
  .product .product-content-container1 .content-right-text p {
    padding-top: 2rem;
    padding-bottom: 2rem;
    width: 100%;
  }
  .product .product-content-container1 .content-right-text a {
    color: black;
    font-weight: 500;
  }
  .product .product-content-container2 {
    padding-bottom: 3rem;
    padding-top: 3rem;
    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;
  }
  .product .product-content-container2 h3 {
    font-size: 2rem;
  }
  .product .product-content-container2 .content-left-image {
    width: 100%;
  }
  .product .product-content-container2 .content-left-image img {
    padding-top: 2rem;
    width: 100%;
  }
  .product .product-content-container2 .content-left-text {
    width: 100%;
    margin-left: 1rem;
  }
  .product .product-content-container2 .content-left-text p {
    padding-top: 2rem;
    padding-bottom: 2rem;
    width: 100%;
  }
  .product .product-content-container2 .content-left-text a {
    color: black;
    font-weight: 500;
  }
  .product .product-content-container2 .content-right-image {
    width: 100%;
  }
  .product .product-content-container2 .content-right-image img {
    padding-top: 2rem;
    width: 100%;
  }
  .product .product-content-container2 .content-right-text {
    width: 100%;
    padding-left: 3rem;
  }
  .product .product-content-container2 .content-right-text p {
    padding-top: 2rem;
    padding-bottom: 2rem;
    width: 100%;
  }
  .product .product-content-container2 .content-right-text a {
    color: black;
    font-weight: 500;
  }
}

@media (max-width: 480px) {
  .product {
    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;
  }
  .product .product-content-container1 {
    padding-bottom: 3rem;
    padding-top: 3rem;
    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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .product .product-content-container1 h3 {
    font-size: 2rem;
  }
  .product .product-content-container1 .content-left-image {
    width: 100%;
  }
  .product .product-content-container1 .content-left-image img {
    padding-top: 2rem;
    width: 100%;
  }
  .product .product-content-container1 .content-left-text {
    width: 100%;
    margin-left: 0rem;
  }
  .product .product-content-container1 .content-left-text p {
    padding-top: 2rem;
    padding-bottom: 2rem;
    width: 100%;
  }
  .product .product-content-container1 .content-left-text a {
    color: black;
    font-weight: 500;
  }
  .product .product-content-container1 .content-right-image {
    width: 100%;
  }
  .product .product-content-container1 .content-right-image img {
    padding-top: 2rem;
    width: 100%;
  }
  .product .product-content-container1 .content-right-text {
    width: 100%;
    padding-left: 1rem;
  }
  .product .product-content-container1 .content-right-text p {
    padding-top: 2rem;
    padding-bottom: 2rem;
    width: 100%;
  }
  .product .product-content-container1 .content-right-text a {
    color: black;
    font-weight: 500;
  }
  .product .product-content-container2 {
    padding-bottom: 3rem;
    padding-top: 3rem;
    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;
  }
  .product .product-content-container2 h3 {
    font-size: 2rem;
  }
  .product .product-content-container2 .content-left-image {
    width: 100%;
  }
  .product .product-content-container2 .content-left-image img {
    padding-top: 2rem;
    width: 100%;
  }
  .product .product-content-container2 .content-left-text {
    width: 100%;
    margin-left: 1rem;
  }
  .product .product-content-container2 .content-left-text p {
    padding-top: 2rem;
    padding-bottom: 2rem;
    width: 100%;
  }
  .product .product-content-container2 .content-left-text a {
    color: black;
    font-weight: 500;
  }
  .product .product-content-container2 .content-right-image {
    width: 100%;
  }
  .product .product-content-container2 .content-right-image img {
    padding-top: 2rem;
    width: 100%;
  }
  .product .product-content-container2 .content-right-text {
    width: 100%;
    padding-left: 3rem;
  }
  .product .product-content-container2 .content-right-text p {
    padding-top: 2rem;
    padding-bottom: 2rem;
    width: 100%;
  }
  .product .product-content-container2 .content-right-text a {
    color: black;
    font-weight: 500;
  }
}

.products-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.products-items .products-item {
  padding-bottom: 3rem;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: left;
      -ms-flex-align: left;
          align-items: left;
  max-width: 525px;
}

.products-items .products-item h3 {
  font-size: 1.2rem;
  padding-bottom: 1rem;
}

.products-items .products-item .products-image img {
  height: 40%;
  max-width: 525px;
}

.products-items .products-item .products-text {
  text-align: left;
}

.products-items .products-item .products-text span {
  font-weight: 600;
}

@media (max-width: 480px) {
  .products-items {
    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: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 400px;
  }
  .products-items .products-item {
    padding-bottom: 3rem;
    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;
    max-width: auto;
  }
  .products-items .products-item h3 {
    font-size: 1.2rem;
    padding-bottom: 1rem;
  }
  .products-items .products-item .products-image img {
    height: 100%;
    max-width: 400px;
  }
  .products-items .products-item .products-text {
    text-align: center;
  }
}
/*# sourceMappingURL=style.css.map */