@import url("https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;700&display=swap");
.container {
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
  margin-right: auto;
  margin-left: auto; }

@media (min-width: 576px) {
  .container {
    max-width: 540px; } }
@media (min-width: 768px) {
  .container {
    max-width: 720px; } }
@media (min-width: 992px) {
  .container {
    max-width: 960px; } }
body {
  font-size: 18px;
  font-family: "Heebo", sans-serif;
  font-weight: 400;
  color: #5e5e5e;
  margin: 0;
  overflow-x: hidden;
  transition-property: margin-left;
  transition: 0.5s;
  display: block;
  width: 100vw;
  position: relative; }
  body.shifting {
    transform: translateX(-300px); }

* {
  box-sizing: border-box; }

a {
  text-decoration: none;
  cursor: pointer; }

button {
  cursor: pointer; }

.container {
  width: 100%;
  padding-right: 40px;
  padding-left: 40px;
  margin-right: auto;
  margin-left: auto; }
  @media (min-width: 576px) {
    .container {
      max-width: 540px; } }
  @media (min-width: 768px) {
    .container {
      max-width: 720px; } }
  @media (min-width: 992px) {
    .container {
      max-width: 960px; } }
  @media (min-width: 1200px) {
    .container {
      max-width: 1140px; } }

/* NOTE NAV */
#nav {
  position: absolute;
  top: 30px;
  z-index: 10;
  width: 100%;
  z-index: 15;
  transition: right 0.5s; }
  @media (max-width: 991px) {
    #nav {
      top: 0;
      right: -300px;
      position: fixed;
      width: 300px;
      background-color: white;
      height: 100%;
      border-left: 1px solid lightgray; } }
  #nav.slide {
    right: 0px !important; }
  #nav .container {
    position: relative; }
    @media (max-width: 991px) {
      #nav .container {
        margin: 0;
        padding: 0; } }
  #nav nav {
    position: absolute;
    top: 0;
    right: 40px;
    display: flex;
    align-items: center;
    justify-content: end;
    height: 76px; }
    @media (max-width: 991px) {
      #nav nav {
        position: relative;
        display: block;
        height: 100%;
        right: 0px;
        margin-top: 50px; } }
    #nav nav a {
      padding: 10px 20px;
      color: white;
      font-size: 13px;
      position: relative;
      font-weight: 700;
      transition: 0.2s; }
      @media (max-width: 991px) {
        #nav nav a {
          display: block;
          color: #2d2d2d;
          border-top: 1px solid lightgray;
          padding: 15px 35px; }
          #nav nav a:nth-last-child(1) {
            border-bottom: 1px solid lightgray; } }
      #nav nav a:hover, #nav nav a.active {
        color: #007ebe; }

/* NOTE WRAPPER */
#wrapper {
  position: relative;
  left: 0;
  transition: left 0.5s; }
  #wrapper.slide {
    left: -300px; }

/* NOTE NAVBAR */
#navbar {
  position: absolute;
  z-index: 10;
  width: 100%;
  top: 30px; }
  #navbar .container {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: start; }
    @media (max-width: 991px) {
      #navbar .container {
        justify-content: space-between; } }
    #navbar .container .logo {
      height: 50px; }
    #navbar .container .open.navbar {
      display: none;
      border: none;
      padding: none;
      position: relative;
      width: 20px;
      height: 20px;
      background: none;
      outline: none; }
      #navbar .container .open.navbar span {
        position: absolute;
        width: 20px;
        height: 2px;
        background-color: white;
        transition: 0.4s;
        border-radius: 1px;
        left: 0;
        transition: 0.5s; }
        #navbar .container .open.navbar span:nth-child(1) {
          top: 3px; }
        #navbar .container .open.navbar span:nth-child(2) {
          top: 9px; }
        #navbar .container .open.navbar span:nth-child(3) {
          bottom: 3px; }
      #navbar .container .open.navbar.active span:nth-child(1) {
        top: 9px;
        transform: rotate(45deg); }
      #navbar .container .open.navbar.active span:nth-child(2) {
        opacity: 0;
        visibility: hidden;
        width: 0;
        left: -20px; }
      #navbar .container .open.navbar.active span:nth-child(3) {
        bottom: 9px;
        transform: rotate(-45deg); }
      @media (max-width: 991px) {
        #navbar .container .open.navbar {
          display: block; } }

/** NOTE HOME -  Banner */
#banner .row.item.slider {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-position: center;
  background-size: cover;
  height: 791px;
  position: relative; }
  #banner .row.item.slider .bg.filter {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #323232;
    transition: 1s;
    position: absolute;
    top: 0;
    left: 0; }
  #banner .row.item.slider .content {
    padding-top: 80px;
    flex: 0 0 50%;
    width: 50%;
    order: 1; }
    @media (max-width: 1199px) {
      #banner .row.item.slider .content {
        width: 60%; } }
    @media (max-width: 991px) {
      #banner .row.item.slider .content {
        width: 70%; } }
    @media (max-width: 767px) {
      #banner .row.item.slider .content {
        width: 80%; } }
    @media (max-width: 577px) {
      #banner .row.item.slider .content {
        width: 100%; } }
    #banner .row.item.slider .content .sub.title {
      font-size: 12px;
      color: white;
      transition: 0.5s;
      transition-delay: 0.25s;
      opacity: 0;
      display: block;
      font-weight: 700; }
    #banner .row.item.slider .content .header {
      position: relative;
      font-size: 48px;
      color: white;
      font-weight: 700;
      margin: 0;
      padding-top: 30px;
      transition: 0.5s;
      transition-delay: 0.50s;
      opacity: 0; }
      #banner .row.item.slider .content .header::before {
        content: "";
        position: absolute;
        top: 0;
        width: 80px;
        height: 3px;
        background-color: #007ebe; }
    #banner .row.item.slider .content .desc {
      display: block;
      margin-top: 15px;
      font-size: 18px;
      color: white;
      transition: 0.5s;
      transition-delay: 0.75s;
      opacity: 0; }

/** NOTE HOME -  About */
#about {
  margin-top: -40px;
  position: relative; }
  #about .sub.header {
    font-size: 16px;
    color: #2d2d2d;
    text-transform: uppercase;
    font-weight: 700;
    position: relative; }
    #about .sub.header::after {
      display: inline-block;
      content: "";
      width: 80px;
      height: 3px;
      transform: translate(15px, -4px);
      background-color: #007ebe; }
  #about .header {
    margin: -5px 14px 30px 0;
    font-size: 48px;
    color: #007ebe;
    font-weight: 700; }
  #about .row {
    margin-left: -40px;
    margin-right: -40px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between; }
    @media (max-width: 1199px) {
      #about .row {
        align-items: flex-start; } }
    @media (max-width: 991px) {
      #about .row {
        flex-wrap: wrap; } }
    #about .row .content {
      flex: 0 0 50%; }
      @media (max-width: 1199px) {
        #about .row .content {
          padding-top: 100px; } }
      @media (max-width: 991px) {
        #about .row .content {
          padding: 60px 40px 40px 40px;
          flex: 0 0 100%; } }
    #about .row .image {
      padding-left: 40px;
      flex: 0 0 35%;
      position: relative; }
      @media (max-width: 767px) {
        #about .row .image {
          flex: 0 0 50%; } }
      #about .row .image:before {
        content: "";
        position: absolute;
        z-index: 1;
        top: -60px;
        right: -60px;
        width: 80%;
        height: 100%;
        background: linear-gradient(180deg, #007EBE 0%, rgba(0, 126, 190, 0) 100%), #005C8B;
        box-shadow: 0px 28px 58px 14px rgba(0, 0, 0, 0.4); }
        @media (max-width: 767px) {
          #about .row .image:before {
            top: -40px;
            right: -40px; } }
      #about .row .image img {
        position: relative;
        z-index: 2;
        width: 100%;
        box-shadow: 1px 6px 47px 7px #00000037;
        box-shadow: 0px 28px 58px 14px rgba(0, 0, 0, 0.4); }

/** NOTE HOME -  Our Service */
#our-service {
  margin-top: 150px;
  padding: 100px 0;
  background-position: center;
  background-size: cover;
  position: relative; }
  #our-service .container {
    z-index: 5;
    position: relative; }
  #our-service::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(50, 50, 50, 0.67);
    position: absolute;
    top: 0;
    left: 0; }
  #our-service .sub.header {
    font-size: 16px;
    color: white;
    text-transform: uppercase;
    font-weight: 700;
    position: relative; }
    #our-service .sub.header::after {
      display: inline-block;
      content: "";
      width: 80px;
      height: 3px;
      transform: translate(15px, -4px);
      background-color: #007ebe; }
  #our-service .header {
    margin: 0px 0 50px 0;
    font-size: 48px;
    color: white;
    font-weight: 700; }
  #our-service .row {
    margin-left: -20px;
    margin-right: -20px;
    display: flex; }
    @media (max-width: 1199px) {
      #our-service .row {
        margin-left: -10px;
        margin-right: -10px;
        flex-wrap: wrap; } }
    #our-service .row .item {
      flex: 0 0 25%;
      padding: 20px;
      display: flex;
      flex-direction: column; }
      @media (max-width: 1199px) {
        #our-service .row .item {
          padding: 20px 10px; } }
      @media (max-width: 991px) {
        #our-service .row .item {
          flex: 0 0 50%;
          padding: 10px 10px; } }
      @media (max-width: 577px) {
        #our-service .row .item {
          flex: 0 0 100%;
          padding: 10px; } }
      #our-service .row .item .main.wrapper {
        background-color: #007ebe;
        height: 100%;
        /** Update without desc **/
        display: flex;
        align-items: center; }
      #our-service .row .item .image {
        width: 100%; }
      #our-service .row .item .sub.wrapper {
        padding: 40px 30px; }
      #our-service .row .item .header {
        font-size: 23px;
        margin-bottom: 10px;
        color: white;
        /** Update without desc **/
        text-align: center; }
      #our-service .row .item span {
        font-size: 16px;
        color: #ffffff9e; }
  #our-service .btn.wrapper {
    text-align: center;
    margin-top: 70px; }
  #our-service .btn.action {
    padding: 15px 40px;
    border: 2px solid white;
    color: white;
    margin: auto;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: 0.2s;
    z-index: 2;
    font-size: 14px;
    font-weight: 700; }
    #our-service .btn.action span {
      position: relative;
      display: block;
      z-index: 2; }
    #our-service .btn.action::before {
      content: '';
      position: absolute;
      top: -100%;
      left: 0;
      background-color: white;
      width: 100%;
      height: 100%;
      transition: 0.2s;
      z-index: 1; }
    #our-service .btn.action:hover {
      color: #007ebe; }
      #our-service .btn.action:hover::before {
        top: 0; }

/** NOTE HOME -  Why Us */
#why-us {
  padding: 150px 0; }
  #why-us .sub.header {
    font-size: 16px;
    color: #2d2d2d;
    text-transform: uppercase;
    font-weight: 700;
    position: relative; }
    #why-us .sub.header::after {
      display: inline-block;
      content: "";
      width: 80px;
      height: 3px;
      transform: translate(15px, -4px);
      background-color: #007ebe; }
  #why-us .header {
    max-width: 550px;
    margin: -5px 14px 30px 0;
    font-size: 48px;
    color: #007ebe;
    font-weight: 700; }
  #why-us .row {
    margin-top: 40px;
    margin-left: -30px;
    margin-right: -30px;
    display: flex; }
    @media (max-width: 1199px) {
      #why-us .row {
        margin-left: -15px;
        margin-right: -15px; } }
    @media (max-width: 991px) {
      #why-us .row {
        margin-left: -10px;
        margin-right: -10px;
        flex-wrap: wrap; } }
    #why-us .row .item {
      display: flex;
      flex: 0 0 33.34%;
      padding: 30px; }
      @media (max-width: 1199px) {
        #why-us .row .item {
          padding: 15px; } }
      @media (max-width: 991px) {
        #why-us .row .item {
          flex: 100%; } }
      #why-us .row .item .main.wrapper {
        padding: 30px;
        box-shadow: 1px 6px 47px 7px #0000000f;
        position: relative;
        z-index: 8;
        background-color: white;
        height: 100%;
        text-align: center; }
        @media (max-width: 991px) {
          #why-us .row .item .main.wrapper {
            display: flex;
            align-items: flex-start;
            text-align: left; } }
        @media (max-width: 577px) {
          #why-us .row .item .main.wrapper {
            display: block;
            text-align: center; } }
        #why-us .row .item .main.wrapper .image {
          margin-bottom: 30px; }
          @media (max-width: 991px) {
            #why-us .row .item .main.wrapper .image {
              flex: 0 0 100px; } }
          #why-us .row .item .main.wrapper .image svg {
            width: 60px;
            height: 60px;
            transform: translateY(4px); }
            #why-us .row .item .main.wrapper .image svg path {
              fill: #007ebe; }
        #why-us .row .item .main.wrapper .content {
          font-size: 16px; }
          #why-us .row .item .main.wrapper .content .header {
            font-size: 20px;
            margin: 0 0 10px 0;
            color: #2d2d2d;
            font-weight: 700; }

/** NOTE HOME -  Video */
#video {
  background-position: center;
  background-size: cover;
  height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center; }
  #video::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.146);
    transition: 1s;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1; }
  #video button {
    position: relative;
    z-index: 2;
    background-color: #007ebe;
    border: none;
    outline: none;
    border-radius: 100px;
    width: 70px;
    height: 70px;
    padding-left: 12px;
    border-radius: 100px;
    transition: 0.2s; }
    #video button svg {
      z-index: 2;
      position: relative;
      width: 30px;
      height: 30px; }
      #video button svg path {
        fill: white;
        transition: 0.2s; }
    #video button:hover {
      background-color: white;
      transform: scale(1.1); }
      #video button:hover path {
        fill: #007ebe; }

/** NOTE HOME -  CTA */
#cta {
  padding: 50px 0;
  background: linear-gradient(to bottom right, #007BBA, #00547E); }
  #cta .container {
    display: flex;
    align-items: center;
    justify-content: space-between; }
    @media (max-width: 991px) {
      #cta .container {
        display: block; } }
  #cta .header {
    max-width: 550px;
    margin: 0;
    font-size: 48px;
    color: white;
    font-weight: 700; }
  #cta .btn.action {
    padding: 15px 40px;
    border: 2px solid white;
    color: white;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: 0.2s;
    z-index: 2;
    font-size: 14px;
    font-weight: 700; }
    @media (max-width: 991px) {
      #cta .btn.action {
        margin-top: 30px; } }
    #cta .btn.action span {
      position: relative;
      display: block;
      z-index: 2; }
    #cta .btn.action::before {
      content: '';
      position: absolute;
      top: -100%;
      left: 0;
      background-color: white;
      width: 100%;
      height: 100%;
      transition: 0.2s;
      z-index: 1; }
    #cta .btn.action:hover {
      color: #007ebe; }
      #cta .btn.action:hover::before {
        top: 0; }

/** NOTE HOME -  Our Client */
#our-client {
  margin: 150px 0; }
  #our-client .sub.header {
    font-size: 16px;
    color: #2d2d2d;
    text-transform: uppercase;
    font-weight: 700;
    position: relative; }
    #our-client .sub.header::after {
      display: inline-block;
      content: "";
      width: 80px;
      height: 3px;
      transform: translate(15px, -4px);
      background-color: #007ebe; }
  #our-client .header {
    max-width: 550px;
    margin: 0;
    margin-bottom: 120px;
    font-size: 48px;
    color: #007ebe;
    font-weight: 700; }
  #our-client .item img {
    height: 100px;
    width: auto;
    margin: auto; }
  #our-client .owl-nav {
    display: none; }

/** NOTE HOME -  Footer */
#footer {
  padding-top: 100px;
  background: linear-gradient(to bottom right, #F6F6F6, #cecece); }
  #footer .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; }
    @media (max-width: 1199px) {
      #footer .container .logo.wrapper {
        flex: 0 0 100%;
        margin-bottom: 40px; } }
    #footer .container .logo.wrapper .logo {
      height: 70px; }
    #footer .container .blog.contact.group.wrapper {
      display: flex; }
      @media (max-width: 767px) {
        #footer .container .blog.contact.group.wrapper {
          display: block; } }
      #footer .container .blog.contact.group.wrapper .header {
        margin: 0 0 28px 0;
        font-size: 16px;
        color: #2d2d2d;
        font-weight: 700;
        text-transform: uppercase; }
      #footer .container .blog.contact.group.wrapper .social.media {
        max-width: 200px;
        width: 100%;
        display: block; }
        @media (max-width: 767px) {
          #footer .container .blog.contact.group.wrapper .social.media {
            flex: 0 0 100%;
            margin-top: 70px; } }
        #footer .container .blog.contact.group.wrapper .social.media > div {
          display: inline-block;
          margin-right: 5px; }
          #footer .container .blog.contact.group.wrapper .social.media > div a {
            display: flex;
            font-size: 16px;
            color: #007ebe;
            width: 40px;
            height: 40px;
            align-items: center;
            justify-content: center;
            background-color: white;
            position: relative;
            transition: 0.2s;
            overflow: hidden;
            box-shadow: 1px 6px 47px 7px #0000000f; }
            #footer .container .blog.contact.group.wrapper .social.media > div a::before {
              content: '';
              position: absolute;
              top: -100%;
              left: -100%;
              background-color: #007ebe;
              width: 100%;
              height: 100%;
              transition: 0.2s;
              z-index: 1; }
            #footer .container .blog.contact.group.wrapper .social.media > div a svg {
              z-index: 2;
              position: relative;
              width: 17px;
              height: 17px; }
              #footer .container .blog.contact.group.wrapper .social.media > div a svg path {
                fill: #007ebe; }
            #footer .container .blog.contact.group.wrapper .social.media > div a:hover {
              background-color: #007ebe; }
              #footer .container .blog.contact.group.wrapper .social.media > div a:hover path {
                fill: white; }
              #footer .container .blog.contact.group.wrapper .social.media > div a:hover::before {
                top: 0;
                left: 0; }
      #footer .container .blog.contact.group.wrapper .blog {
        padding: 0 50px 0 0px;
        max-width: 250px;
        width: 100%; }
        @media (max-width: 767px) {
          #footer .container .blog.contact.group.wrapper .blog {
            display: block;
            max-width: 100%; } }
        #footer .container .blog.contact.group.wrapper .blog a {
          display: block;
          margin: 20px 0;
          font-size: 16px;
          color: #2d2d2d;
          transition: 0.2s; }
          #footer .container .blog.contact.group.wrapper .blog a:hover {
            color: #007ebe; }
      #footer .container .blog.contact.group.wrapper .contact {
        padding: 0 50px 0 0px;
        max-width: 400px;
        width: 500px; }
        @media (max-width: 767px) {
          #footer .container .blog.contact.group.wrapper .contact {
            display: block;
            margin-top: 70px;
            max-width: 100%;
            width: 100%; } }
        #footer .container .blog.contact.group.wrapper .contact .item {
          display: flex;
          margin: 20px 0; }
          #footer .container .blog.contact.group.wrapper .contact .item .icon {
            flex: 0 0 30px; }
            #footer .container .blog.contact.group.wrapper .contact .item .icon svg {
              width: 17px;
              height: 17px;
              transform: translateY(4px); }
              #footer .container .blog.contact.group.wrapper .contact .item .icon svg path {
                fill: #007ebe; }
          #footer .container .blog.contact.group.wrapper .contact .item .content {
            font-size: 16px;
            color: #2d2d2d; }
        #footer .container .blog.contact.group.wrapper .contact .find.us {
          margin-top: 30px; }
          #footer .container .blog.contact.group.wrapper .contact .find.us a {
            margin-right: 10px;
            display: inline-block; }
            #footer .container .blog.contact.group.wrapper .contact .find.us a img {
              width: 40px; }
  #footer .copyright {
    margin-top: 40px;
    border-top: 1px solid #c9c9c9;
    padding: 20px 0;
    font-size: 16px;
    color: black; }

/** NOTE Popup */
.fullscreen.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background-color: black;
  visibility: hidden; }
  .fullscreen.popup.open {
    visibility: visible; }
  .fullscreen.popup .close.btn {
    position: absolute;
    top: 30px;
    right: 30px;
    padding: 10px;
    background-color: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 25px; }

.fullscreen.popup.video {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center; }
  .fullscreen.popup.video iframe {
    width: 70vw;
    height: 70vh; }
    @media (max-width: 767px) {
      .fullscreen.popup.video iframe {
        width: 100%; } }

/* NOTE Header Page */
#header {
  background-size: cover;
  background-position: center;
  padding-top: 200px;
  position: relative;
  padding-bottom: 50px;
  margin-bottom: 100px; }
  #header::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(50, 50, 50, 0.67);
    position: absolute;
    top: 0;
    left: 0; }
  #header .header {
    position: relative;
    z-index: 2;
    font-size: 48px;
    color: white;
    font-weight: 700;
    margin: 0;
    padding-top: 10px; }
    #header .header::before {
      content: "";
      position: absolute;
      top: 0;
      width: 80px;
      height: 3px;
      background-color: #007ebe; }
  #header .breadcrumb {
    list-style: none;
    margin: 0 -10px;
    padding: 0;
    position: relative;
    z-index: 2; }
    #header .breadcrumb li {
      font-size: 16px;
      display: inline-block; }
      #header .breadcrumb li a {
        padding: 10px;
        padding-right: 13px;
        color: white; }
        #header .breadcrumb li a.active {
          font-weight: 700; }
      #header .breadcrumb li::after {
        content: '/';
        color: #cdcdcd; }
      #header .breadcrumb li:last-child::after {
        content: ''; }

/** NOTE About Page */
.about.page {
  margin: 100px 0; }
  .about.page .header {
    color: #007ebe; }
  .about.page .row {
    text-align: justify;
    display: flex;
    margin: 0 -30px;
    align-items: center; }
    @media (max-width: 991px) {
      .about.page .row {
        flex-wrap: wrap; }
        .about.page .row .content, .about.page .row .image {
          flex: 0 0 100% !important; }
        .about.page .row .image {
          order: 1 !important; }
        .about.page .row .content {
          order: 2 !important; } }
    .about.page .row .content {
      flex: 0 0 50%;
      padding: 30px; }
    .about.page .row .image {
      flex: 0 0 40%;
      padding: 30px; }
      .about.page .row .image img {
        width: 100%;
        box-shadow: 1px 6px 47px 7px #0000000f; }
    .about.page .row.second .content {
      order: 1; }
    .about.page .row.second .image {
      order: 2; }

/** NOTE Service Page */
.service.page {
  margin: 100px 0; }
  .service.page .row {
    display: flex;
    margin: 0 -15px;
    flex-wrap: wrap; }
    .service.page .row .item {
      flex: 0 0 50%;
      padding: 15px; }
      @media (max-width: 767px) {
        .service.page .row .item {
          flex: 0 0 90%;
          margin: auto; } }
      @media (max-width: 577px) {
        .service.page .row .item {
          flex: 0 0 100%;
          margin: auto; } }
      .service.page .row .item .main.wrapper {
        background-color: white;
        box-shadow: 1px 6px 47px 7px #0000000f;
        position: relative;
        z-index: 8;
        height: 100%; }
        .service.page .row .item .main.wrapper img {
          width: 100%; }
        .service.page .row .item .main.wrapper .sub.wrapper {
          padding: 30px; }
          .service.page .row .item .main.wrapper .sub.wrapper .header {
            margin-top: 0;
            color: #007ebe; }

/** NOTE Client Page */
.client.page {
  margin: 100px 0; }
  .client.page .row {
    display: flex;
    margin: 0 -30px;
    flex-wrap: wrap; }
    .client.page .row .item {
      padding: 30px;
      flex: 0 0 33.334%;
      display: flex;
      text-align: center;
      flex-direction: column;
      justify-content: space-between; }
      @media (max-width: 991px) {
        .client.page .row .item {
          flex: 0 0 50%; } }
      @media (max-width: 500px) {
        .client.page .row .item {
          flex: 0 0 100%; } }
      .client.page .row .item .image {
        height: 100%;
        display: flex;
        align-items: center; }
        .client.page .row .item .image img {
          width: 60%;
          margin: auto; }
      .client.page .row .item .wrapper h3 {
        margin-bottom: 0;
        color: #2d2d2d; }

/** NOTE Contact Page */
.contact.page {
  margin: 100px 0; }
  .contact.page .row {
    display: flex;
    margin: 0 -30px;
    align-items: center; }
    @media (max-width: 991px) {
      .contact.page .row {
        flex-wrap: wrap; } }
    .contact.page .row .maps {
      padding: 30px;
      flex: 0 0 60%;
      order: 1; }
      @media (max-width: 991px) {
        .contact.page .row .maps {
          flex: 0 0 100%;
          order: 2; } }
      .contact.page .row .maps iframe {
        width: 100%;
        height: 340px; }
    .contact.page .row .contact {
      padding: 30px;
      flex: 0 0 40%;
      order: 2; }
      @media (max-width: 991px) {
        .contact.page .row .contact {
          flex: 0 0 100%;
          order: 1; } }
      .contact.page .row .contact .header {
        color: #007ebe;
        margin-bottom: 30px; }
      .contact.page .row .contact .item {
        display: flex;
        margin: 20px 0; }
        .contact.page .row .contact .item .icon {
          flex: 0 0 30px; }
          .contact.page .row .contact .item .icon svg {
            width: 17px;
            height: 17px;
            transform: translateY(4px); }
            .contact.page .row .contact .item .icon svg path {
              fill: #007ebe; }
        .contact.page .row .contact .item .content {
          font-size: 16px;
          color: #2d2d2d; }
          .contact.page .row .contact .item .content small {
            display: block;
            color: #5e5e5e; }

/*# sourceMappingURL=style.css.map */
