@import url(../fonts/stylesheet.css);
body {
  background: #f8f9fa;
  color: #343a40 !important;
  font-family: 'aileronregular'; }

html {
  scroll-behavior: snooth; }

.bold {
  font-family: 'aileronbold'; }

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: white;
  z-index: 1500;
  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; }
  #loader h4 {
    font-weight: bold;
    margin-left: 180px;
    font-size: 3em; }
  #loader #box_one,
  #loader #box_two {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
            transform: translateX(-50%) translateY(-50%) rotate(45deg);
    border-radius: 50px;
    -webkit-transition: all .4s linear;
    transition: all .4s linear; }
  #loader #box_one {
    border-left: 7px solid #ed1a37;
    border-top: 7px solid #ed1a37;
    border-bottom: 7px solid rgba(255, 255, 255, 0);
    border-right: 7px solid rgba(255, 255, 255, 0); }
    #loader #box_one.active {
      margin-left: -20px; }
  #loader #box_two {
    border-right: 7px solid #0074b0;
    border-bottom: 7px solid #0074b0;
    border-top: 7px solid rgba(255, 255, 255, 0);
    border-left: 7px solid rgba(255, 255, 255, 0); }

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
            transform: translateX(-50%) translateY(-50%) rotate(45deg); }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(405deg);
            transform: translateX(-50%) translateY(-50%) rotate(405deg); } }

@keyframes rotate {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
            transform: translateX(-50%) translateY(-50%) rotate(45deg); }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(405deg);
            transform: translateX(-50%) translateY(-50%) rotate(405deg); } }
nav {
  height: 60px;
  background: white;
  -webkit-box-shadow: 2px 8px 25px #dedede;
          box-shadow: 2px 8px 25px #dedede;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 80px;
  padding-right: 80px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  nav img {
    max-height: 50px; }
  nav #nav_items {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    nav #nav_items a {
      display: block;
      padding: 5px 25px;
      text-decoration: none;
      color: #343a40;
      font-weight: 600;
      color: #0074b0;
      text-transform: uppercase;
      font-size: .9em; }
  nav .btn {
    width: 105px; }
  nav #mobile_nav_btn {
    display: none; }

#mobile_nav {
  display: none; }

#header {
  height: 65vh;
  background-image: url(../img/header/background.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 150px; }

#app {
  font-weight: 600;
  font-size: 2.5em;
  margin-bottom: 20px; }

.primary-text {
  color: #0074b0; }

#about {
  background: #f1f1f1;
  padding-top: 50px;
  padding-bottom: 50px; }

.card {
  border: none !important; }

#services #services_grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  grid-auto-rows: 200px;
  grid-gap: 16px;
  margin: 0 auto;
  margin-top: 25px; }
  #services #services_grid .card {
    border: none !important;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
    position: relative;
    overflow: hidden;
    cursor: pointer; }
    #services #services_grid .card h2,
    #services #services_grid .card h4 {
      color: #0074b0;
      font-weight: 600; }
    #services #services_grid .card .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: white;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -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-transition: all .4s linear;
      transition: all .4s linear; }
      #services #services_grid .card .overlay img {
        max-width: 60%;
        margin-bottom: 20px; }
        #services #services_grid .card .overlay img.sm {
          max-height: 125px; }
    #services #services_grid .card .card-body {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      text-align: center; }
    #services #services_grid .card:hover {
      -webkit-box-shadow: 2px 8px 29px #c3c3c3;
              box-shadow: 2px 8px 29px #c3c3c3; }
      #services #services_grid .card:hover .overlay {
        -webkit-transform: translateX(-10%);
                transform: translateX(-10%);
        opacity: 0;
        visibility: hidden; }
    #services #services_grid .card.tall {
      grid-row: span 2; }

#clients {
  padding-bottom: 50px;
  padding-top: 50px;
  background: #f1f1f1; }
  #clients .swiper-container {
    width: 100%;
    height: 100%; }
  #clients .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    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; }
  #clients .swiper-pagination {
    bottom: 0px !important;
    opacity: 0; }
  #clients .swiper-slide img {
    max-width: 100%; }

.btn-orderly {
  background: #0074b0;
  color: aliceblue;
  font-weight: 500;
  border-radius: 25px;
  -webkit-transition: all .5s linear;
  transition: all .5s linear; }
  .btn-orderly:hover {
    color: aliceblue;
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px); }

#contact {
  background-image: url(../img/contact_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center left;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-right: 0 !important; }
  #contact .right {
    padding-top: 50px;
    padding-bottom: 50px;
    background: white;
    padding-left: 20px;
    position: relative;
    overflow: hidden; }
    #contact .right #overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: white;
      z-index: 125;
      -webkit-transition: all .5s linear;
      transition: all .5s linear;
      -webkit-transform: translateY(25px);
              transform: translateY(25px);
      opacity: 0;
      visibility: hidden; }
      #contact .right #overlay .btn {
        width: 100px;
        margin-top: 15px; }
      #contact .right #overlay.active {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translate(0);
                transform: translate(0); }
      #contact .right #overlay .container,
      #contact .right #overlay .row {
        height: 100%; }
      #contact .right #overlay .row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; }
      #contact .right #overlay img {
        max-width: 100px; }
      #contact .right #overlay .thingy {
        width: 80px;
        border-top: 3px solid #0074b0;
        margin: 0 auto;
        margin-top: 10px;
        margin-bottom: 20px; }
  #contact form {
    margin-top: 50px; }
    #contact form .form-group {
      margin-bottom: 15px; }
    #contact form label {
      font-size: .8em;
      font-weight: 600;
      position: relative;
      left: 10px;
      color: #0074b0; }
    #contact form .form-control {
      border-radius: 0 !important;
      border-radius: 25px !important;
      border: none !important;
      font-size: .75em;
      padding: 10px;
      font-weight: 500; }
      #contact form .form-control:focus {
        -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
                box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; }
    #contact form .btn {
      border-radius: 25px; }

footer {
  background: #0074b0;
  text-align: center;
  padding: 10px 0px;
  color: aliceblue;
  font-weight: 500; }

@media only screen and (max-width: 768px) {
  #header {
    height: 65vh;
    background-image: url(../img/header/background.jpg);
    background-position: left;
    padding-left: 50px; }

  nav #nav_items,
  nav #auth {
    display: none; }
  nav #mobile_nav_btn {
    display: block; }

  #mobile_nav {
    position: fixed;
    display: block;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 280px;
    background: white;
    height: 100vh;
    z-index: 4000;
    padding: 16px;
    -webkit-transition: all .5s linear;
    transition: all .5s linear;
    -webkit-transform: translateX(100%);
            transform: translateX(100%); }
    #mobile_nav #mobile_nav_closer {
      text-align: center;
      margin-bottom: 45px; }
      #mobile_nav #mobile_nav_closer .material-icons {
        -webkit-transform: rotateY(180deg);
                transform: rotateY(180deg);
        color: #0074b0; }
    #mobile_nav.active {
      -webkit-transform: translateX(0);
              transform: translateX(0); }
    #mobile_nav ul {
      list-style-type: none; }
      #mobile_nav ul a {
        text-decoration: none;
        display: block;
        color: #0074b0;
        padding: 12px;
        padding-left: 0px;
        font-weight: bold !important;
        text-align: center; }

  #contact {
    background-image: url(../img/contact_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center left;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding-right: 0 !important; }
    #contact .left {
      display: none !important; }
    #contact .right {
      padding-top: 50px;
      padding-bottom: 50px;
      background: white;
      padding-left: 20px;
      position: relative;
      overflow: hidden;
      grid-column: span 2;
      margin-left: -20px; }
      #contact .right #overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: white;
        z-index: 125;
        -webkit-transition: all .5s linear;
        transition: all .5s linear;
        -webkit-transform: translateY(25px);
                transform: translateY(25px);
        opacity: 0;
        visibility: hidden; }
        #contact .right #overlay .btn {
          width: 100px;
          margin-top: 15px; }
        #contact .right #overlay.active {
          opacity: 1;
          visibility: visible;
          -webkit-transform: translate(0);
                  transform: translate(0); }
        #contact .right #overlay .container,
        #contact .right #overlay .row {
          height: 100%; }
        #contact .right #overlay .row {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column; }
        #contact .right #overlay img {
          max-width: 100px; }
        #contact .right #overlay .thingy {
          width: 80px;
          border-top: 3px solid #0074b0;
          margin: 0 auto;
          margin-top: 10px;
          margin-bottom: 20px; }
    #contact form {
      margin-top: 50px; }
      #contact form .form-group {
        margin-bottom: 15px; }
      #contact form label {
        font-size: .8em;
        font-weight: 600;
        position: relative;
        left: 10px;
        color: #0074b0; }
      #contact form .form-control {
        border-radius: 0 !important;
        border-radius: 25px !important;
        border: none !important;
        font-size: .75em;
        padding: 10px;
        font-weight: 500; }
        #contact form .form-control:focus {
          -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
                  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; }
      #contact form .btn {
        border-radius: 25px; } }
