/* Scroll to effect */
.animate {
  opacity: 0; }

.animate.start {
  opacity: 1; }

/* Scroll to effect */
.animate {
  animation-play-state: paused;
  -webkit-animation-play-state: paused; }

.animate.start {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -ms-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  animation-play-state: running;
  -webkit-animation-play-state: running; }

#cloud-animation {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
  position: absolute;
  opacity: 0.1;
  overflow: hidden; }

#cloud-animation img {
  width: 100%;
  left: 0;
  top: 0;
  position: absolute; }

@-webkit-keyframes animCloud {
  from {
    -webkit-transform: translateX(-70%); }
  to {
    -webkit-transform: translateX(100%); } }
@-moz-keyframes animCloud {
  from {
    -moz-transform: translateX(-70%); }
  to {
    -moz-transform: translateX(100%); } }
@keyframes animCloud {
  from {
    -webkit-transform: translateX(-70%);
    -moz-transform: translateX(-70%);
    -ms-transform: translateX(-70%);
    -o-transform: translateX(-70%);
    transform: translateX(-70%); }
  to {
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%); } }
#cloud1 {
  -webkit-animation: animCloud 35s infinite linear;
  -moz-animation: animCloud 35s infinite linear;
  animation: animCloud 35s infinite linear; }

#cloud2 {
  -webkit-animation: animCloud 45s infinite linear;
  -moz-animation: animCloud 45s infinite linear;
  animation: animCloud 45s infinite linear; }

#cloud3 {
  -webkit-animation: animCloud 55s infinite linear;
  -moz-animation: animCloud 55s infinite linear;
  animation: animCloud 55s infinite linear; }

#cloud4 {
  -webkit-animation: animCloud 65s infinite linear;
  -moz-animation: animCloud 65s infinite linear;
  animation: animCloud 65s infinite linear; }

.loader_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 999999; }

.loader {
  display: inline-block;
  width: 3em;
  height: 3em;
  color: inherit;
  vertical-align: middle;
  pointer-events: none; }

.loader {
  position: absolute;
  top: calc(50% - 1.5em);
  left: calc(50% - 1.5em); }
  .loader:before, .loader:after {
    content: '';
    display: block;
    position: absolute;
    background-color: #0061FF;
    left: 50%;
    right: 0;
    top: 0;
    bottom: 50%;
    box-shadow: -1.5em 0 0 #0061FF;
    animation: loader 1s linear infinite; }
  .loader:after {
    top: 50%;
    bottom: 0;
    animation-delay: .25s; }

@keyframes loader {
  0%,
  100% {
    box-shadow: -1.5em 0 0 transparent;
    background-color: #0061FF; }
  50% {
    box-shadow: -1.5em 0 0 #0061FF;
    background-color: transparent; } }
/*

1. Common Styles & Initials

*/
html, body {
  overflow-x: hidden; }

::-webkit-scrollbar {
  display: none; }

*:focus {
  outline: none !important;
  box-shadow: none !important; }

body {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  line-height: 1.5;
  color: #435065;
  font-weight: 500;
  letter-spacing: 0.5px; }

.serif {
  font-family: 'Playfair Display', serif; }

ul {
  list-style: none;
  margin: 0;
  padding-left: 0; }

.list-group-item {
  padding: 10px 15px 10px 0;
  background: none;
  border: none; }

a, a:hover, a:focus {
  color: inherit;
  text-decoration: none; }

.color_white {
  color: #fff; }

.color_black {
  color: #505454; }

.color_blue {
  color: #0061FF; }

.color_red {
  color: #E52C4B; }

.color_pink {
  color: #FF0058; }

.color_green {
  color: #1ecc8b; }

.color_grey {
  color: #616d6d; }

.color_grey2 {
  color: #616d6d; }

.color_grey4 {
  color: #505454; }

.color_lightgrey {
  color: #a2acac; }

.color_blue2 {
  background-image: linear-gradient(to right top, #4952e2 40%, #0061FF) !important;
  color: transparent !important;
  -webkit-background-clip: text; }

.background_white {
  background: #fff; }

.background_black {
  background: #435065 !important; }

.background_dark {
  background: #435065 !important; }

.background_blue {
  background: #0061FF !important; }

.background_grey {
  background: #616d6d; }

.background_pink {
  background: #FF0058 !important; }

.background_green {
  background: #1ecc8b !important; }

.background_black2 {
  background: linear-gradient(to top right, rgba(0, 0, 0, 0.75), transparent) !important; }

.background_blue2 {
  background: linear-gradient(to top right, #4952e2, #0061FF) !important; }

.background_red2 {
  background: linear-gradient(to right, #E52C4B, #D02744) !important; }

.background_purple {
  background: linear-gradient(to right, #4d2aaa, #3f228a) !important; }

.bg_no {
  background: none !important; }

.bg_img {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid; }
  .bg_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; }

.bg_video {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; }
  .bg_video video {
    min-width: 100vw;
    min-height: 100vh; }

.background_youtube {
  z-index: -11;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; }
  .background_youtube img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; }

#particles, #particles-js {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; }

body .vegas-container {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100vh !important; }

.opacity_25 {
  opacity: 0.25; }

.opacity_5 {
  opacity: 0.5; }

.opacity_75 {
  opacity: 0.75; }

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  line-height: 1.4;
  margin: 0; }

h2 {
  text-align: center;
  font-weight: bold;
  font-size: 4vmax;
  font-family: 'Playfair Display', serif; }

h1, .h1 {
  font-size: 48px; }

.letter-spacing_2 {
  letter-spacing: 2px; }

.letter-spacing_1 {
  letter-spacing: 1px; }

.letter-spacing_05 {
  letter-spacing: 0.5px; }

.relative {
  position: relative; }

.text_shadow {
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.5); }

.overlay_black_25 {
  z-index: 0;
  background: #000415;
  opacity: 0.25;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.overlay_black_5 {
  z-index: 0;
  background: #000415;
  opacity: .5;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.overlay_black_7 {
  z-index: 0;
  background: #000415;
  opacity: .7;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.overlay_black_75 {
  z-index: 0;
  background: #000415;
  opacity: .75;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.overlay_gradient {
  z-index: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5), transparent);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.space_2 {
  height: 2vh;
  width: 100%;
  display: table; }

.space_5 {
  height: 5vh;
  width: 100%;
  display: table; }

.space_10 {
  height: 10vh;
  width: 100%;
  display: table; }

.space_15 {
  height: 15vh;
  width: 100%;
  display: table; }

.space_20 {
  height: 20vh;
  width: 100%;
  display: table; }

.space_30 {
  height: 30vh;
  width: 100%;
  display: table; }

.font_bold {
  font-weight: 800; }

.no_padding {
  padding: 0; }

.text-italic {
  font-style: italic;
  position: relative; }

.right-arrow {
  position: relative;
  width: 25px;
  height: 10px;
  background: url(../img/right-arrow.png) no-repeat;
  background-size: cover;
  background-position: left center;
  display: inline-block; }

.left-arrow {
  position: relative;
  width: 25px;
  height: 10px;
  background: url(../img/right-arrow.png) no-repeat;
  background-size: cover;
  background-position: left center;
  display: inline-block;
  transform: rotate(180deg); }

.btn {
  background: #fff;
  border: none;
  border-radius: 0;
  line-height: 45px;
  height: 45px;
  padding: 0 15px;
  color: #0061FF;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  margin: 25px 0 0;
  box-shadow: 0 2px 20px -7px #435065;
  transition: 0.3s background, 0.3s box-shadow; }
  .btn:hover, .btn:focus {
    color: #fff;
    background: #0061FF;
    box-shadow: 0 5px 25px 0 #435065; }
  .btn i {
    margin-right: 5px;
    margin-left: 0; }

.d_table {
  display: table;
  width: 100%;
  height: 100vh; }

.d_table_v {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1; }

.d_table_b {
  display: table-cell;
  vertical-align: bottom;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  padding: 100px 0 35px; }

.img_shadow {
  box-shadow: 0 25px 70px 0 rgba(0, 0, 0, 0.25); }

.img-rounded {
  border-radius: 10px; }

.nav > li > a:focus, .nav > li > a:hover {
  background-color: transparent; }

header .navbar {
  margin: 0;
  background: #fff;
  border: none; }
  header .navbar .navbar-brand {
    width: 75px;
    height: 75px;
    background: #0061FF; }
  header .navbar .nav {
    height: 75px;
    padding: 27.5px 75px 27.5px 0; }
    header .navbar .nav li {
      margin: 0 15px; }
      header .navbar .nav li a {
        position: relative;
        line-height: 20px;
        padding: 0;
        text-transform: uppercase;
        font-size: 12px;
        letter-spacing: 1px;
        color: #616d6d; }
        header .navbar .nav li a::before {
          content: '';
          position: absolute;
          left: -10px;
          bottom: 8px;
          width: 6px;
          height: 6px;
          border-radius: 10px;
          background: #616d6d;
          opacity: 0.3; }
        header .navbar .nav li a.active::before {
          background: #0061FF;
          opacity: 1; }
        header .navbar .nav li a:hover::before {
          background: #0061FF;
          opacity: 1; }

#top {
  width: calc(100vw - 0px);
  height: calc(100vh - 0px);
  position: relative;
  z-index: 0;
  margin: 0px;
  box-shadow: inset 0 0 50px -10px #000;
  display: table; }
  #top .content {
    position: relative;
    z-index: 1;
    display: table-cell;
    vertical-align: middle;
    height: 100%;
    padding: 0 0%; }
    #top .content h1 {
      font-size: 7vmax; }
    #top .content h4 {
      letter-spacing: 1px; }

.subscribe {
  width: 300px;
  margin: 0 auto;
  position: relative; }
  .subscribe .form-control {
    width: 100%;
    height: 45px;
    line-height: 45px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 0;
    margin: 0 auto;
    box-shadow: 0 5px 50px -10px #000;
    font-weight: lighter;
    font-size: 12px;
    padding-right: 45px; }
    .subscribe .form-control:hover, .subscribe .form-control:focus {
      border: 1px solid #0061FF;
      box-shadow: 0 5px 50px -10px #000 !important;
      background: rgba(0, 0, 0, 0.5); }
  .subscribe .submit {
    background: none;
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    height: 45px;
    line-height: 50px;
    border: none;
    padding-right: 12px; }
  .subscribe ::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: #fff; }
  .subscribe :-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #fff;
    opacity: 1; }
  .subscribe ::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #fff;
    opacity: 1; }
  .subscribe :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #fff; }

.btn_contact {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 75px;
  background: #fff;
  color: #0061FF;
  line-height: 75px;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 1px;
  cursor: pointer; }
  .btn_contact i {
    margin-left: 10px; }

.scroll_down {
  position: absolute;
  z-index: 2;
  bottom: 22px;
  right: -112px;
  width: 150px;
  height: 75px;
  color: #435065;
  line-height: 75px;
  text-align: center;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 1px;
  cursor: pointer;
  transform: rotate(90deg); }
  .scroll_down i {
    margin-left: 10px; }

.countdown {
  width: 100%;
  margin: 25px auto;
  display: inline-block; }
  .countdown ul#countdown {
    padding: 0;
    position: relative;
    display: inline-block; }
    .countdown ul#countdown li {
      position: relative;
      display: block;
      margin: 0 10px;
      width: 115px;
      padding: 15px 0 0 0;
      font-size: 45px;
      font-weight: bold;
      text-align: center;
      border: 1px solid rgba(255, 255, 255, 0.5);
      float: left;
      box-shadow: 0 5px 50px -10px #000; }
      .countdown ul#countdown li span {
        font-size: 13px;
        line-height: 1.6;
        padding-top: 2px;
        background: rgba(255, 255, 255, 0.25);
        color: rgba(0, 0, 0, 0.5);
        display: block;
        width: 100%;
        margin-top: 5px; }

#clients {
  background: #eaf1f7;
  width: calc(100vw - 150px);
  height: 120px;
  position: relative;
  z-index: 0;
  margin: 75px; }
  #clients img {
    width: 100%;
    height: 50px;
    object-fit: contain;
    object-position: center;
    margin: 35px auto; }
  #clients::before {
    content: 'CLIENTS';
    position: absolute;
    z-index: 2;
    bottom: 25px;
    left: -98px;
    width: 120px;
    height: 75px;
    color: #435065;
    line-height: 75px;
    text-align: right;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    transform: rotate(-90deg);
    padding-right: 10px; }
  #clients::after {
    content: '';
    position: absolute;
    z-index: 2;
    width: 1px;
    height: 40px;
    bottom: 0;
    left: -39px;
    background: #435065; }

#services {
  display: inline-block;
  padding-top: 5vh; }
  #services .services {
    margin-top: 15vh;
    padding: 0 10%; }
    #services .services .service {
      position: relative;
      padding: 5%;
      overflow: hidden;
      transition: color .3s ease; }
      #services .services .service:before {
        background: #0061FF;
        content: '';
        height: 100%;
        left: 0;
        opacity: 0;
        position: absolute;
        top: 300px;
        transition: .5s ease;
        visibility: hidden;
        width: 100%;
        z-index: -1; }
      #services .services .service:hover {
        color: #fff; }
        #services .services .service:hover:before {
          opacity: 1;
          top: 0;
          visibility: visible; }
        #services .services .service:hover p {
          color: #fff; }
        #services .services .service:hover .icon {
          box-shadow: 0 5px 40px -9px #000; }
      #services .services .service:nth-child(1) {
        border-bottom: 1px solid #eaf1f7;
        padding-top: 15px; }
      #services .services .service:nth-child(2) {
        border-bottom: 1px solid #eaf1f7;
        border-left: 1px solid #eaf1f7;
        border-right: 1px solid #eaf1f7;
        padding-top: 15px; }
      #services .services .service:nth-child(3) {
        border-bottom: 1px solid #eaf1f7;
        padding-top: 15px; }
      #services .services .service:nth-child(4) {
        padding-bottom: 15px; }
      #services .services .service:nth-child(5) {
        border-left: 1px solid #eaf1f7;
        border-right: 1px solid #eaf1f7;
        padding-bottom: 15px; }
      #services .services .service:nth-child(6) {
        padding-bottom: 15px; }
      #services .services .service h4 {
        margin-bottom: 15px; }
      #services .services .service p {
        color: #616d6d;
        font-weight: lighter;
        letter-spacing: 0.5px;
        transition: .2s ease; }
      #services .services .service .icon {
        margin-bottom: 30px;
        border-radius: 50px;
        box-shadow: 0 5px 30px -9px #ccc;
        height: 66px;
        padding: 15px;
        width: 66px;
        background: #fff;
        transition: .3s ease;
        transition-delay: .3s;
        border: 1px solid #f9f9f9; }
        #services .services .service .icon img {
          height: 25px;
          width: 25px;
          display: table;
          margin: 0 auto; }

#works {
  width: calc(100vw - 150px);
  height: 300px;
  position: relative;
  z-index: 0;
  margin: 75px; }
  #works::before {
    content: 'SELECTED WORKS';
    position: absolute;
    z-index: 2;
    bottom: 162px;
    left: -138px;
    width: 200px;
    height: 75px;
    color: #435065;
    line-height: 75px;
    text-align: right;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    transform: rotate(-90deg);
    padding-right: 10px; }
  #works::after {
    content: '';
    position: absolute;
    z-index: 2;
    width: 1px;
    height: 150px;
    bottom: 0;
    left: -39px;
    background: #435065; }
  #works .owl-carousel .overlay_gradient {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3), transparent, transparent); }
  #works .owl-carousel .item {
    width: calc(100% - 10px);
    margin-right: 10px;
    position: relative; }
    #works .owl-carousel .item:hover .overlay_gradient {
      background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)); }
    #works .owl-carousel .item a:hover {
      cursor: url("../img/drag_b.png"), url("../img/drag_b.png"), auto !important; }
    #works .owl-carousel .item img {
      height: 300px;
      object-fit: cover;
      object-position: center;
      filter: saturate(1.5); }
    #works .owl-carousel .item .info {
      position: absolute;
      z-index: 2;
      width: 100%;
      padding: 5% 10%;
      bottom: 0;
      left: 0;
      color: #fff; }
      #works .owl-carousel .item .info h4 {
        margin: 10px 0 0;
        text-shadow: 0 1px 5px rgba(0, 0, 0, 0.41);
        font-weight: 100;
        letter-spacing: 1px;
        font-size: 15px; }

.owl-nav {
  font-size: 15px;
  width: 50px;
  float: right;
  margin: 5px 10px 0 0;
  color: #616d6d; }

.owl-prev {
  float: left;
  cursor: pointer; }

.owl-next {
  float: right;
  cursor: pointer; }

#testimonial {
  width: 100%;
  height: 400px;
  position: relative;
  z-index: 0;
  margin-top: 5vh;
  display: inline-block; }
  #testimonial img {
    height: 400px;
    width: 100%;
    object-position: center;
    object-fit: cover; }
  #testimonial .background_blue {
    height: 400px; }
  #testimonial .message {
    padding: 15% 15% 0;
    font-style: italic;
    font-weight: lighter;
    font-size: 14px; }
  #testimonial .author {
    padding: 5% 15%; }
    #testimonial .author span {
      color: #fff;
      opacity: .5; }
  #testimonial .owl-dots {
    counter-reset: slides-num;
    /* Initialize counter. */
    position: absolute;
    bottom: 0;
    left: calc(50% + 60px);
    line-height: 50px;
    width: 30px;
    text-align: center; }
    #testimonial .owl-dots:after {
      content: counter(slides-num);
      /* get total number of items - more info on http://www.sitepoint.com/a-little-known-way-to-replace-some-scripts-with-css-counters/ */
      display: inline-block;
      font-size: 12px;
      padding-left: 5px;
      font-style: italic;
      color: #616d6d; }
  #testimonial .owl-dot {
    display: inline-block;
    counter-increment: slides-num;
    /* Increment counter */
    margin-right: 5px; }
    #testimonial .owl-dot span {
      display: none; }
    #testimonial .owl-dot.active:before {
      content: counter(slides-num) " /";
      /* Use the same counter to get current item. */
      display: inline-block;
      vertical-align: middle;
      font-size: 12px;
      position: absolute;
      left: 0;
      top: 0;
      font-style: italic;
      color: #616d6d; }
  #testimonial .owl-carousel .item:hover {
    cursor: url("../img/drag_b.png"), url("../img/drag_b.png"), auto !important; }

#testimonial .owl-nav {
  position: absolute;
  left: 50%;
  bottom: 0;
  background: #fff;
  width: 150px;
  height: 50px;
  padding: 0 15px; }
  #testimonial .owl-nav .owl-prev, #testimonial .owl-nav .owl-next {
    line-height: 50px;
    color: #616d6d; }

#contact {
  background: linear-gradient(to left top, #003288, #005eff);
  color: #fff; }
  #contact h2 {
    text-align: left; }

.contact {
  position: relative;
  padding: 0 10%; }
  .contact .contact_info > div {
    display: inline-block;
    margin-right: 15%; }
    .contact .contact_info > div:nth-child(3) {
      margin-right: 0; }
  .contact #contact-form {
    text-align: left; }
    .contact #contact-form .form-group .form-control {
      line-height: 45px;
      height: 45px;
      width: 100%;
      background: #fff;
      background: transparent;
      display: block;
      margin: 2px 0 0;
      padding: 0 10px;
      border-radius: 0;
      transition: .3s ease;
      border: 1px solid #eaf1f7;
      color: #eaf1f7;
      font-size: 12px;
      font-weight: lighter;
      letter-spacing: 0.5px; }
      .contact #contact-form .form-group .form-control:hover, .contact #contact-form .form-group .form-control:focus {
        background: #0061FF; }
    .contact #contact-form .form-group textarea {
      min-height: 150px !important;
      resize: none; }
  .contact .btn-send {
    background: none;
    border: none;
    color: #435065; }
    .contact .btn-send:hover {
      color: white; }
  .contact .btn i {
    color: #435065; }
  .contact .btn:hover i {
    color: #fff; }
  .contact ::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: #eaf1f7; }
  .contact :-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #eaf1f7;
    opacity: 1; }
  .contact ::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #eaf1f7;
    opacity: 1; }
  .contact :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #eaf1f7; }

.copyright {
  position: absolute;
  bottom: 5px;
  left: 10%;
  color: #c7c7c7;
  font-size: 10px; }

#google-container {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #F0F2F7; }

#cd-google-map {
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100vh; }

#cd-zoom-in, #cd-zoom-out {
  display: none;
  height: 32px;
  width: 32px;
  cursor: pointer;
  margin-left: 10px;
  background-color: #0061FF;
  background-repeat: no-repeat;
  background-size: 32px 64px;
  background-image: url("../icons/cd-icon-controller.svg"); }

#team {
  margin: 15vh auto;
  padding: 0 10%;
  display: inline-block;
  width: 100%;
  text-align: center; }
  #team .item {
    width: 23%;
    margin: 1%;
    float: left; }
    #team .item:hover img {
      border-radius: 150px 0; }
    #team .item img {
      margin: 0 auto;
      height: 300px;
      object-fit: cover;
      object-position: center;
      transition: .3s ease;
      box-shadow: 0 15px 40px -15px #949494;
      border-radius: 25px; }
    #team .item .social {
      margin-top: 15px; }
      #team .item .social li:nth-child(1) {
        color: #3a68d9; }
      #team .item .social li:nth-child(2) {
        color: #3ed8f9; }
      #team .item .social li:nth-child(3) {
        color: #49b0d9; }
      #team .item .social li:nth-child(4) {
        color: #ff43a0; }
    #team .item span {
      color: #616d6d; }

@media all and (min-width: 1900px) {
  body, #testimonial .message, .btn {
    font-size: 16px; }

  .h3, h3 {
    font-size: 28px; }

  .h4, h4 {
    font-size: 22px; }

  .h5, h5 {
    font-size: 18px; }

  .countdown ul#countdown li {
    width: 155px;
    font-size: 65px; }
    .countdown ul#countdown li span {
      font-size: 15px; }

  .subscribe .form-control {
    font-size: 14px;
    height: 50px;
    line-height: 50px; }

  .subscribe {
    width: 420px; }

  .right-arrow {
    width: 30px; }

  #services .services .service {
    padding: 4% 5%; }

  #services .services .service .icon {
    height: 65px;
    padding: 20px;
    width: 65px; }

  .contact #contact-form .form-group .form-control {
    line-height: 50px;
    height: 50px;
    font-size: 14px; }

  #team .item img {
    height: 400px; } }
@media all and (max-width: 992px) {
  #top .content {
    padding: 0 5%; }

  #cd-google-map, #google-container {
    height: 400px; }

  #team .item img {
    height: 200px; }

  .space_15 {
    height: 10vh; }

  #services .services .service {
    height: 236px; }

  #services .services .service:nth-child(odd) {
    border-left: none !important;
    border-right: 1px solid #eaf1f7 !important; }

  #services .services .service:nth-child(even) {
    border-left: none !important;
    border-right: none !important; }

  #clients {
    display: table; } }
@media all and (max-width: 767px) {
  header .navbar .navbar-brand {
    width: 50px;
    height: 50px; }

  #top {
    width: 100%;
    height: 100%;
    margin: 0; }

  #top .content h1 {
    margin-top: 100px;
    font-size: 60px;
    line-height: 1; }

  .countdown ul#countdown {
    padding: 0 5%; }

  .countdown ul#countdown li {
    margin: 0 5% 25px; }

  .countdown {
    margin-bottom: 0; }

  .btn_contact {
    display: none; }

  #clients::after, #works::after {
    left: -15px; }

  #clients::before {
    bottom: 45px;
    left: -75px;
    height: 30px;
    line-height: 30px; }

  #clients {
    width: calc(100vw - 45px);
    margin: 30px; }

  #clients {
    display: inline-table; }

  #services .services {
    margin-top: 5vh; }

  #services .services .service {
    border: none !important;
    border-bottom: 1px solid #eaf1f7 !important;
    padding-top: 25px; }

  #works {
    width: calc(100vw - 45px);
    margin: 30px; }

  #works::before {
    bottom: 185px;
    left: -115px;
    height: 30px;
    line-height: 30px; }

  #team .item {
    width: 48%; }
    #team .item:nth-child(1), #team .item:nth-child(2) {
      margin-bottom: 25px; }

  #team .item img {
    width: 90%;
    height: 150px; }

  #contact .d_table {
    height: 110vh; }

  #cd-google-map, #google-container {
    height: 300px; }

  .navbar-toggle .icon-bar {
    background: #0061FF; }

  header .navbar .nav {
    height: 150px;
    padding: 27.5px 75px 27.5px 27.5px; } }

/*# sourceMappingURL=style.css.map */
