/* -------------------------------- 

Primary style

-------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');
*, *::after, *::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
  height: 100%;
}

body {
  font-size: 1.6rem;
  font-family: 'Montserrat', sans-serif;
  color: #2c343b;
  background-color: #fff;
  height: 100%;
}

a {
  color: #d44457;
  text-decoration: none;
}

img, video {
  max-width: 100%;
}

/* -------------------------------- 

Hero Slider - by CodyHouse.co

-------------------------------- */
/* Main Header */
.cd-header {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: #21272c;
  opacity: 0;
}

@media only screen and (min-width: 768px) {
  .cd-header {
    height: 70px;
    background-color: transparent;
  }
}

.cd-header__logo {
  float: left;
  margin: 13px 0 0 5%;
}

.cd-header__logo img {
  display: block;
  width: 139px;
}

@media only screen and (min-width: 768px) {
  .cd-header__logo {
    margin: 23px 0 0 5%;
  }
}

.cd-header__nav {
  /* mobile first - navigation hidden by default, triggered by tap/click on navigation icon */
  float: right;
  margin-right: 5%;
  width: 44px;
  height: 100%;
  background: url("../assets/cd-icon-menu.svg") no-repeat center center;
}

.cd-header__nav ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}

.cd-header__nav ul.cd-is-visible {
  -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(50px);
      -ms-transform: translateY(50px);
          transform: translateY(50px);
}

.cd-header__nav a {
  display: block;
  height: 50px;
  line-height: 50px;
  padding-left: 5%;
  background: #21272c;
  border-top: 1px solid #333c44;
  color: #ffffff;
}

@media only screen and (min-width: 768px) {
  .cd-header__nav {
    /* reset navigation values */
    width: auto;
    height: auto;
    background: none;
    display: none;
  }
  .cd-header__nav ul {
    position: static;
    width: auto;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    line-height: 70px;
  }
  .cd-header__nav ul.cd-is-visible {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
  .cd-header__nav li {
    display: inline-block;
    margin-left: 1em;
  }
  .cd-header__nav a {
    display: inline-block;
    height: auto;
    line-height: normal;
    background: transparent;
    padding: .6em 1em;
    border-top: none;
  }
}

/* Slider */
.cd-hero {
  position: relative;
  height: 100%;

  opacity: 0;
}
.pageloader{
  position: absolute;
  top: 28%;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
}
.dim{
  position: absolute;
  top: 36%;
  left: 40%;
  width: 50%;
  height: 100%;
}
.colored{
  top: 36%;
  width: 0%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  left: 40%;

}
.colored img{max-width: none !important;}
.cd-hero__slider {
  position: relative;
  height: 360px;
  width: 100%;
  overflow-x: hidden;
}
.explore{
  position: absolute;
  background: #ed2c24;
  padding: 10px;
  display: inline-block;
  cursor: pointer;
  top: 11px;
  right: 13px;
  display: none;
}
.explore img{
width: 22px !important;
}
.team-box:hover .explore{
  display: block;
}
.cd-hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Force Hardware Acceleration */
  -webkit-transform: translateZ(0px);
          transform: translateZ(0px);
  will-change: transform;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.cd-hero__slide.cd-hero__slide--selected {
  /* this is the visible slide */
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.cd-hero__slide.cd-hero__slide--move-left {
  /* slide hidden on the left */
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
}

.cd-hero__slide.cd-hero__slide--is-moving,
.cd-hero__slide.cd-hero__slide--selected {
  /* the cd-hero__slide--is-moving class is assigned to the slide which is moving outside the viewport */
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

@media only screen and (min-width: 768px) {
  .cd-hero__slider {
    height: 500px;
  }
}

@media only screen and (min-width: 1170px) {
  .cd-hero__slider {
    /*height: 680px;*/
    height: 100%;
  }
}
.mm-tabs{

}
/* Slide style */
.cd-hero__slide {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.cd-hero__slide:first-of-type {
  background-color: #fff;
}

.cd-hero__slide:nth-of-type(2) {
  background-color: #fff;


}
.cd-hero__slide:nth-of-type(2) h2{
  color: #5a53a2;
}
.cd-hero__slide:nth-of-type(2) p{
  color: #717171;
}
.cd-hero__slide:nth-of-type(3) {
  background-color: #fff;

}
.cd-hero__slide:nth-of-type(3) h2{
  color: #5a53a2;
}
.cd-hero__slide:nth-of-type(3) p{
  color: #717171;
}
.services-container{
  position: relative;
  margin: 0 auto;
  width: 76%;
  background: #fff;
  margin-top: 19px;
/*  height: 100%;*/
}
.clients-container{
  position: relative;
  margin: 0 auto;
  width: 65%;
  margin-top: 30px;
}
.team-container{
  position: relative;
  margin: 0 auto;
  width:85%;

  margin-top: 30px;
}
.service-item{
  border-right: 1px solid #dcdcdccc;
     padding: 1.6% 0 2% 0;
  border-bottom: 1px solid #dcdcdccc;
}
.service-item:hover{
  background: #5b53a1;
}
.service-item:hover .service-icon::before{
  color: #fff;
}
.service-item:hover .service-title{
  color: #fff;
}
.services-section{
  padding-top: 5% !important;
}
.clients-section {
  padding-top: 6% !important;
}
.team-section {
  padding-top: 5% !important;
}
.col3{
  width: 23.8%;
  float: left;
  max-height: 52%;
  min-height: 25%;
  margin: 0.5%;
}
.service-icon{
  margin-bottom: 6px;
  display: inline-block;
}
.service-icon::before{
  margin: 0 !important;
  font-size: 3em !important;
  color: #292562;
}
.service-title{
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  padding: 0 38px;
  min-height: 30px;
}

.clearfix{
  clear: both;
}
.client-box{
  background: #5a53a2;
  text-align: center;
  margin-bottom: 10px;
}
.team-box{
  position: relative;

}
.team-name{
  font-size: 17px;
  margin: 10px 0;
  font-weight: 600;
  color: #5a53a2;
}
.team-position{
  font-size: 15px;
  font-weight: 500;
  color: #5a53a2;
}
.team-img{
position: relative;
  overflow: hidden;

}
.team-info{
  position: absolute;
  bottom: -100%;
  background: #000000ad;
  height: 100%;
  padding: 64px 19px;
  width: 100%;
  transition: all 0.4s;
}
.close-info {
  color: #ed2c24;
  font-weight: 900;
  background: #fff;
  padding: 7px 15px;
  position: absolute;
  top: 11px;
  right: 13px;
  font-size: 18px;
  cursor: pointer;
}
.cform{text-align: left;}
.cform #suc-message{
  text-align: center;
  padding: 27px 0;
}
em.error{
  text-align: left;
  color: #ff2d14;
  font-size: 12px;
}
.team-box:hover .team-info{ /*bottom: 0;*/}
.team-highlight{
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  line-height: 19px;
  text-align: left;
  padding-left: 14px;
}
.team-description{
  color: #fff !important;
  font-size: 0.7em !important;
  text-align: left;
}
.client-box img{
  width: 76% !important;
  display: inline-block !important;
  padding: 7px 0;
}
.contact-section{
  padding-top: 6.5% !important;
}
.form-control{
  display: block;
  width: 90%;
  border: 0;
  margin: 4px 0;
  font-family: arial;
  padding: 14px;
}
.cd-hero__slide:nth-of-type(4) {
  background-color: #fff;
}
.cd-hero__slide:nth-of-type(4) h2{
  color: #5a53a2;
}
.cd-hero__slide:nth-of-type(4) p{
  color: #717171;
}
.cd-hero__slide:nth-of-type(5) {
   background-color: #f9f9f9;
}
.cd-hero__slide:nth-of-type(5) h2{
  color: #5a53a2;
}
.cd-hero__slide:nth-of-type(5) p{
  color: #717171;
}
.cd-hero__slide:nth-of-type(6) {
   background-color: #f9f9f9;
}
.cd-hero__slide:nth-of-type(6) h2{
  color: #5a53a2;
}
.cd-hero__slide:nth-of-type(6) p{
  color: #717171;
}

.cd-hero__content.cd-hero__content--full-width,
.cd-hero__content.cd-hero__content--half-width {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  left: 0;
  top: 0;
  /* this padding is used to align the text */
  padding-top: 100px;
  text-align: center;
  /* Force Hardware Acceleration */
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  will-change: transform;
}

.cd-hero__content h2, .cd-hero__content p, .cd-hero__btn, .cd-hero__content--img img {
  /* Force Hardware Acceleration */
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  will-change: transform;
}

.cd-hero__content.cd-hero__content--img {
  /* hide image on mobile device */
  display: none;
}

.cd-hero__content--img img {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}

.cd-hero__content.cd-hero__content--bg-video {
  /* hide video on mobile device */
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.cd-hero__content--bg-video video {
  /* you won't see this element in the html, but it will be injected using javascript */
  display: block;
  min-height: 100%;
  min-width: 100%;
  max-width: none;
  height: auto;
  width: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}

.cd-hero__content h2, .cd-hero__content p {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  line-height: 1.2;
  margin: 0 auto 14px;
  color: #ffffff;
  width: 90%;
  max-width: 400px;
}

.cd-hero__content h2 {
  font-size: 2.4rem;
}

.cd-hero__content p {
  font-size: 1.4rem;
  line-height: 1.4;
}

.cd-hero__btn {
  display: inline-block;
  padding: 1.2em 1.4em;
  margin-top: .8em;
  background-color: rgb(237 44 36);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #ffffff;
  text-transform: uppercase;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

.cd-hero__btn.cd-hero__btn--secondary {
  background-color: rgba(22, 26, 30, 0.8);
}

.cd-hero__btn:nth-of-type(2) {
  margin-left: 1em;
}

.cd-hero__btn:hover {
  background-color: #d44457;
}

.cd-hero__btn.cd-hero__btn--secondary:hover {
  background-color: #161a1e;
}
.mm-title{
  margin-bottom: 35px !important;
}
.mm-title::before{
  content: '';
  width: 65px;
  height: 6px;
  background: red;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -14px;
}
@media only screen and (min-width: 768px) {
  .cd-hero__slide:nth-of-type(2),
  .cd-hero__slide:nth-of-type(3),
  .cd-hero__slide:nth-of-type(4) {
    background-image: none;
  }
  .cd-hero__slide:nth-of-type(2){
    background-image: url("../assets/bg.png");
    background-size: 90%;
  }
  .cd-hero__slide:nth-of-type(3){
    background-image: url("../assets/bg2.png");
    background-size: 90%;
  }
  .cd-hero__slide:nth-of-type(4){
    background-image: url("../assets/bg2.png");
    background-size: 90%;
  }
  .cd-hero__slide:nth-of-type(5){
    background-image: url("../assets/bg2.png");
    background-size: 90%;
  }
  .cd-hero__slide:nth-of-type(6){
    background-image: url("../assets/bg2.png");
    background-size: 90%;
  }
  .cd-hero__content.cd-hero__content--full-width,
  .cd-hero__content.cd-hero__content--half-width {
    padding-top: 150px;
  }
  .cd-hero__content.cd-hero__content--bg-video {
    display: block;
  }
  .cd-hero__content.cd-hero__content--half-width {
    width: 45%;
  }
  .cd-hero__content.cd-hero__content--half-width:first-of-type {
    left: 5%;
  }
  .cd-hero__content.cd-hero__content--half-width:nth-of-type(2) {
    right: 5%;
    left: auto;
  }
  .cd-hero__content.cd-hero__content--img {
    display: block;
  }
  .cd-hero__content h2, .cd-hero__content p {
    max-width: 520px;
  }
  .cd-hero__content h2 {
    font-size: 2.4em;
    font-weight: 300;
  }
  .cd-hero__btn {
    font-size: 1.4rem;
  }
}

@media only screen and (min-width: 1170px) {
  .cd-hero__content.cd-hero__content--full-width,
  .cd-hero__content.cd-hero__content--half-width {
    padding-top: 220px;
  }
  .cd-hero__content h2, .cd-hero__content p {
    margin-bottom: 20px;
  }
  .cd-hero__content h2 {

    font-size: 2.7em;
    font-weight: 600;
    letter-spacing: 2px;

  }
  .cd-hero__content p {
    font-size: 1.6rem;

  }
}

/* Single slide animation */
@media only screen and (min-width: 768px) {
  .cd-hero__content.cd-hero__content--half-width {
    opacity: 0;
    -webkit-transform: translateX(40px);
        -ms-transform: translateX(40px);
            transform: translateX(40px);
  }
  .cd-hero__slide--move-left .cd-hero__content.cd-hero__content--half-width {
    -webkit-transform: translateX(-40px);
        -ms-transform: translateX(-40px);
            transform: translateX(-40px);
  }
  .cd-hero__slide--selected .cd-hero__content.cd-hero__content--half-width {
    /* this is the visible slide */
    opacity: 1;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
  .cd-hero__slide--is-moving .cd-hero__content.cd-hero__content--half-width {
    /* this is the slide moving outside the viewport 
    wait for the end of the transition on the <li> parent before set opacity to 0 and translate to 40px/-40px */
    -webkit-transition: opacity 0s 0.5s, -webkit-transform 0s 0.5s;
    transition: opacity 0s 0.5s, -webkit-transform 0s 0.5s;
    transition: opacity 0s 0.5s, transform 0s 0.5s;
    transition: opacity 0s 0.5s, transform 0s 0.5s, -webkit-transform 0s 0.5s;
  }
  .cd-hero__slide--from-left.cd-hero__slide--selected .cd-hero__content.cd-hero__content--half-width:nth-of-type(2),
  .cd-hero__slide--from-right.cd-hero__slide--selected .cd-hero__content.cd-hero__content--half-width:first-of-type {
    /* this is the selected slide - different animation if it's entering from left or right */
    -webkit-transition: opacity 0.4s 0.2s, -webkit-transform 0.5s 0.2s;
    transition: opacity 0.4s 0.2s, -webkit-transform 0.5s 0.2s;
    transition: opacity 0.4s 0.2s, transform 0.5s 0.2s;
    transition: opacity 0.4s 0.2s, transform 0.5s 0.2s, -webkit-transform 0.5s 0.2s;
  }
  .cd-hero__slide--from-left.cd-hero__slide--selected .cd-hero__content.cd-hero__content--half-width:first-of-type,
  .cd-hero__slide--from-right.cd-hero__slide--selected .cd-hero__content.cd-hero__content--half-width:nth-of-type(2) {
    /* this is the selected slide - different animation if it's entering from left or right */
    -webkit-transition: opacity 0.4s 0.4s, -webkit-transform 0.5s 0.4s;
    transition: opacity 0.4s 0.4s, -webkit-transform 0.5s 0.4s;
    transition: opacity 0.4s 0.4s, transform 0.5s 0.4s;
    transition: opacity 0.4s 0.4s, transform 0.5s 0.4s, -webkit-transform 0.5s 0.4s;
  }
  .cd-hero__content--full-width h2,
  .cd-hero__content--full-width p,
  .cd-hero__content--full-width .cd-hero__btn {
    -webkit-transform: translateX(100px);
        -ms-transform: translateX(100px);
            transform: translateX(100px);
  }
  .cd-hero__slide--move-left .cd-hero__content--full-width h2,
  .cd-hero__slide--move-left .cd-hero__content--full-width p,
  .cd-hero__slide--move-left .cd-hero__content--full-width .cd-hero__btn {
    -webkit-transform: translateX(-100px);
        -ms-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  .cd-hero__slide--selected .cd-hero__content--full-width h2,
  .cd-hero__slide--selected .cd-hero__content--full-width p,
  .cd-hero__slide--selected .cd-hero__content--full-width .cd-hero__btn {
    /* this is the visible slide */
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
  .cd-hero__slide--is-moving .cd-hero__content--full-width h2,
  .cd-hero__slide--is-moving .cd-hero__content--full-width p,
  .cd-hero__slide--is-moving .cd-hero__content--full-width .cd-hero__btn {
    /* this is the slide moving outside the viewport 
    wait for the end of the transition on the li parent before set translate to 100px/-100px */
    -webkit-transition: -webkit-transform 0s 0.5s;
    transition: -webkit-transform 0s 0.5s;
    transition: transform 0s 0.5s;
    transition: transform 0s 0.5s, -webkit-transform 0s 0.5s;
  }
  .cd-hero__slide--selected h2 {
    -webkit-transition: -webkit-transform 0.5s 0.2s;
    transition: -webkit-transform 0.5s 0.2s;
    transition: transform 0.5s 0.2s;
    transition: transform 0.5s 0.2s, -webkit-transform 0.5s 0.2s;
  }
  .cd-hero__slide--selected p {
    -webkit-transition: -webkit-transform 0.5s 0.3s;
    transition: -webkit-transform 0.5s 0.3s;
    transition: transform 0.5s 0.3s;
    transition: transform 0.5s 0.3s, -webkit-transform 0.5s 0.3s;
  }
  .cd-hero__slide--selected .cd-hero__btn {
    -webkit-transition: background-color 0.2s 0s, -webkit-transform 0.5s 0.4s;
    transition: background-color 0.2s 0s, -webkit-transform 0.5s 0.4s;
    transition: transform 0.5s 0.4s, background-color 0.2s 0s;
    transition: transform 0.5s 0.4s, background-color 0.2s 0s, -webkit-transform 0.5s 0.4s;
  }
}

/* Slider navigation */
.cd-hero__nav {
  position: fixed;
  width: 100%;
  bottom: 0;
  z-index: 2;
  text-align: center;
  height: 55px;
  background-color: #fff;
}

.cd-hero__nav nav, .cd-hero__nav ul, .cd-hero__nav li, .cd-hero__nav a {
  height: 100%;
}

.cd-hero__nav nav {
  display: inline-block;
  position: relative;
  width: 100%;
}

.cd-hero__marker {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 100%;
  color: #d44457;
  background-color: #ffffff;
  -webkit-box-shadow: inset 0 2px 0 currentColor;
          box-shadow: inset 0 2px 0 currentColor;
  -webkit-transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s, -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
}

.cd-hero__marker.cd-hero__marker--item-2 {
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}

.cd-hero__marker.cd-hero__marker--item-3 {
  -webkit-transform: translateX(200%);
      -ms-transform: translateX(200%);
          transform: translateX(200%);
}

.cd-hero__marker.cd-hero__marker--item-4 {
  -webkit-transform: translateX(300%);
      -ms-transform: translateX(300%);
          transform: translateX(300%);
}

.cd-hero__marker.cd-hero__marker--item-5 {
  -webkit-transform: translateX(400%);
      -ms-transform: translateX(400%);
          transform: translateX(400%);
}

.cd-hero__nav ul::after {
  clear: both;
  content: "";
  display: table;
}

.cd-hero__nav li {
  display: inline-block;
  width: 60px;
  float: left;
}

.cd-hero__nav .cd-selected a {
  background-color: #292662;
  background-image: url(../assets/nav-bg.png);
  background-size: 114px;
  background-repeat: no-repeat;
  background-position: 41% 59%;
}

.cd-hero__nav .cd-selected a:hover {

}
.cd-hero__content--half-width img{
  max-width: none!important;
  width: 130%;
}
.cd-hero__nav a {
  display: block;
  position: relative;
  padding-top: 35px;
  font-size: 1rem;
  font-weight: 700;
  color: #a8b4be;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

.cd-hero__nav a::before {

  position: absolute;
  width: 24px;
  height: 24px;
  top: 8px;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../assets/cd-icon-navigation.svg) no-repeat 0 0;
}

.cd-hero__nav a:hover {
  background-color: #292662;
  background-image: url(../assets/nav-bg.png);
  background-size: 114px;
  background-repeat: no-repeat;
  background-position: 41% 59%;
}

.cd-hero__nav li:first-of-type a::before {
  background-position: 0 0;
}

.cd-hero__nav li.cd-selected:first-of-type a::before {
  background-position: 0 -24px;
}

.cd-hero__nav li:nth-of-type(2) a::before {
  background-position: -24px 0;
}

.cd-hero__nav li.cd-selected:nth-of-type(2) a::before {
  background-position: -24px -24px;
}

.cd-hero__nav li:nth-of-type(3) a::before {
  background-position: -48px 0;
}

.cd-hero__nav li.cd-selected:nth-of-type(3) a::before {
  background-position: -48px -24px;
}

.cd-hero__nav li:nth-of-type(4) a::before {
  background-position: -72px 0;
}

.cd-hero__nav li.cd-selected:nth-of-type(4) a::before {
  background-position: -72px -24px;
}

.cd-hero__nav li:nth-of-type(5) a::before {
  background-position: -96px 0;
}

.cd-hero__nav li.cd-selected:nth-of-type(5) a::before {
  background-position: -96px -24px;
}

@media only screen and (min-width: 768px) {
  .cd-hero__nav {
    height: 10%;
  }
  .cd-hero__marker,
  .cd-hero__nav li {
    width: 16.66%;
  }
  .cd-hero__nav a {
    padding-top: 14%;
    font-size: 0.9em;
    text-transform: uppercase;
    background: #5a53a2;
    color: #fff;

    border-left: 1px solid #6c65b5;
  }
  .cd-hero__nav a::before {
    top: 18px;
  }
}

/* Main Content */
.cd-main-content {
  width: 90%;
  max-width: 768px;
  margin: 0 auto;
  padding: 2em 0;
}

.cd-main-content p {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #999999;
  margin: 2em 0;
}

@media only screen and (min-width: 1170px) {
  .cd-main-content {
    padding: 3em 0;
  }
  .cd-main-content p {
    font-size: 1.6rem;
  }
}

/* Javascript disabled */
.no-js .cd-hero__slide {
  display: none;
}

.no-js .cd-hero__slide.cd-hero__slide--selected {
  display: block;
}

.no-js .cd-hero__nav {
  display: none;
}
.service-icon{
  width: 68px;
  height: 75px;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

.owl-theme .owl-nav [class*=owl-]{
  border-radius: 0px !important;
  position: absolute;
  margin: 0px !important;
}
.owl-theme .owl-nav  .owl-next{
  right: -62px;
  bottom: 55%;
}
.owl-theme .owl-nav  .owl-prev{
  left: -60px;
  bottom: 55%;
}
.owl-theme .owl-nav  .owl-next:focus,.owl-theme .owl-nav  .owl-prev:focus{outline: none;}
.owl-theme .owl-nav [class*=owl-] span{
  font-size: 3em;
  background: #5a53a2;
  padding: 0px 18px 7px 18px;
  height: auto;
  color: #fff;
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .cd-hero__slider {
    height: 100%;
  }

  .cd-header__logo {
    margin: 6px 0 0 5% !important;
  }

  .cd-header {
    height: 67px !important;
  }

  .cd-header__logo img {
    display: block;
    width: auto !important;
    height: 51px !important;
  }

  .dim {

    left: 0 !important;
    right: 0 !important;
    height: 100% !important;
    margin: auto !important;
  }

  .cd-hero__content.cd-hero__content--img {
    display: block;
  }

  .cd-hero__content--half-width img {
    max-width: none !important;
    width: 100%;
    top: auto;
    bottom: 6%;

  }

  .service-title {
    font-size: 18px !important;
    color: #fff;
    padding: 0 8px !important;
    font-weight: 500;
    width: 90%;
    margin: auto;
  }

  .col3 {
    width: 100% !important;
  }

  .cd-hero__content.cd-hero__content--full-width, .cd-hero__content.cd-hero__content--half-width {
    padding-top: 88px !important;
  }

  .cd-hero__nav {
    display: none;
  }

  .cd-hero__slider {

  }

  .home-slide {
    background: url("../assets/video/vid-mob.gif");
    background-size: cover;
  }

  .home-slide .cd-hero__content--full-width {
    padding-top: 170px !important;
  }

  .cd-hero__content h2 {

    font-weight: 600;
  }

  .contact-section {
    position: relative !important;
    width: 92% !important;
    margin: auto;
  }

  .form-control {
    width: 100% !important;
  }
  .cd-hero__slide {

    height: 100% !important;
    overflow-y: auto;
  }
  .services-container {

    margin-bottom: 30px;
  }
  .service-icon{
    width: 63px;
    height: 75px;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
  }
  .owl-carousel{
    display: block !important;
  }
  .team-box {
    margin-bottom: 20px;
  }
  .team-description {
    width: 100% !important;
    font-size: 12px !important;
  }
  .team-highlight{
    padding-left: 0 !important;
  }
  .explore{
    display: block !important;
  }
}