/*
Author: Iconic-Graphics
Author URL: http://iconicgraphics.com
*/
/*------------------------------------------------------------------
[Table of content CSS]


1. Page Loader / #loader_wrapper
2. Header / .v1-header
3. One Page Nav / #primary
4. Agency Menu / .cd-nav-trigger
5. Button Style / .button-arrow
6. Theme Image Border / .template-border
7. Classic Banner / .homebanner-styling
8. Agency Banner / .v2-banner
9. Feature Page Banner / .feature-banner
10. About Banner / .about-banner
11. Home Testimonial / .testimonials
12. Testimonials Page / .testimonials-1
13. Portfolio Filter / #filters
14. Portfolio / #portfolio
15. Team Home / #team
16. Blog Home Page / #blog
17. Blog Page / #blog-page-header-section
18. Blog Page 2 /  #blog-page-v2
19. Blog Page 3 / .custom-columns-3
20. Tab Section Agency / #tab-section
21. Testimonial Agency / #testimonials-v2
22. Number Stats Agency / #number-stats
23. About Page / #discover
24. Blog SIngle Page / .blog-single-banner
25. Pricing 1  / #pricing
26. Pricing 2 / #pricing.v2-table
27. Included / #included
28. Number Stats Agency / #number-stats
29. About Page / #discover
30. Blog SIngle Page / .blog-single-banner
31. Pricing 1  / #pricing
32. Pricing 2 / #pricing.v2-table
33. Included / #included
34. Faq 1 / .faq-banner
35. Faq 2 / #faq .panel-group .panel
36. Error Page / .errorpage-box
37. Coming Soon / .coming-soon-banner
38. Contact Page / .contact-banner
39. Home Dark Version / #dark-version
-------------------------------------------------------------------*/
/* line 53, ../sass/style.scss */
body {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
}

/* line 57, ../sass/style.scss */
p {
  font-family: "Lato", sans-serif;
  color: #424242;
  font-size: 17px;
  font-weight: normal;
  line-height: 30px;
}

/* line 64, ../sass/style.scss */
h2 {
  font-size: 42px;
  font-weight: bolder;
  color: #21201e;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
}

/* line 72, ../sass/style.scss */
.rs-background-video-layer[data-ytid] iframe {
  visibility: visible !important;
}

/* line 75, ../sass/style.scss */
section h2:after {
  content: "";
  background-color: #1c92df;
  height: 2px;
  position: absolute;
  width: 56px;
  left: 0;
  right: 0;
  margin: 0 auto;
  margin-top: 70px;
}

/* line 86, ../sass/style.scss */
h3 {
  color: #21201e;
  font-size: 18px;
  margin: 30px 0;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* line 94, ../sass/style.scss */
h4 {
  font-size: 18px;
  font-weight: normal;
  text-align: center;
  color: #1c92df;
  letter-spacing: 2px;
  margin-bottom: 0;
  text-transform: uppercase;
}

/* line 103, ../sass/style.scss */
h5 {
  text-align: center;
  margin: 50px auto;
  width: 56%;
  color: #21201e;
  font-size: 16px;
  line-height: 30px;
  font-family: 'Montserrat', sans-serif;
}

/* line 112, ../sass/style.scss */
a {
  text-decoration: none !important;
}

/* line 115, ../sass/style.scss */
a:hover {
  transition: all 0.25s cubic-bezier(0.955, 0.03, 0.515, 0.955) 0s;
  color: #1c92df;
}

/* line 119, ../sass/style.scss */
a:focus {
  outline: none;
  color: #FFF;
  background-color: transparent;
}

/* line 124, ../sass/style.scss */
section {
  padding: 120px 0;
}

/*--- Page Loader ---*/
/* line 129, ../sass/style.scss */
#loader_wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFF;
  z-index: 9999;
}

/* line 138, ../sass/style.scss */
#loader_wrapper .circleone,
#loader_wrapper .circletwo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 75px;
  height: 75px;
  opacity: 0;
  border: 4px solid #1c92df;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}

/* line 156, ../sass/style.scss */
.circleone {
  -webkit-animation: popout 1500ms cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  -moz-animation: popout 1500ms cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  -o-animation: popout 1500ms cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  animation: popout 1500ms cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

/* line 162, ../sass/style.scss */
.circletwo {
  -webkit-animation: popout 1500ms 750ms cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  -moz-animation: popout 1500ms 750ms cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  -o-animation: popout 1500ms 750ms cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  animation: popout 1500ms 750ms cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@-webkit-keyframes popout {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  70% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-moz-keyframes popout {
  0% {
    -moz-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  70% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
  100% {
    -moz-transform: scale(1);
    transform: scale(1);
  }
}
@-o-keyframes popout {
  0% {
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  70% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
  100% {
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes popout {
  0% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  70% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
/*----------Menu Home V1-------------*/
/* line 242, ../sass/style.scss */
.v1-header h1 {
  margin: 0px;
  -webkit-transition: padding 0.3s linear;
  -o-transition: padding 0.3s linear;
  transition: padding 0.3s linear;
}

/* line 248, ../sass/style.scss */
.v1-header .navbar {
  margin-bottom: 0;
  border: none;
  -webkit-transition: background .3s ease-in-out, padding .3s ease-in-out;
  -moz-transition: background .3s ease-in-out, padding .3s ease-in-out;
  transition: background .3s ease-in-out, padding .3s ease-in-out;
  transition: background-color 0.3s linear 0s;
}

/* line 256, ../sass/style.scss */
.v1-header .top-nav-collapse .dropdown-menu {
  margin-top: 0;
}

/* line 259, ../sass/style.scss */
.v1-header .navbar-default {
  background-color: transparent;
}

/* line 263, ../sass/style.scss */
.mega-menu {
  margin-left: 0 !important;
  right: 0 !important;
  width: auto !important;
  max-width: none !important;
}

/* line 269, ../sass/style.scss */
.mega-menu ul {
  position: static;
  display: block;
  margin: 0.83em 0;
  border: 0;
  padding: 0;
  width: auto;
  background: transparent;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* line 281, ../sass/style.scss */
.mega-menu ul li {
  display: list-item;
  list-style-type: none;
  border: 0;
}

/* line 286, ../sass/style.scss */
.mega-menu li a {
  padding: 10px 40px 10px 40px;
  display: block;
}

/* line 290, ../sass/style.scss */
.mega-menu .column-1-2 {
  float: left;
  width: 50%;
}

/* line 294, ../sass/style.scss */
.mega-menu .column-1-3:last-child {
  margin-top: -20px;
}

/* line 297, ../sass/style.scss */
.dropdown-large {
  position: static !important;
}

/* line 300, ../sass/style.scss */
.dropdown-menu-large > li > ul {
  padding: 0;
  margin: 0;
}

/* line 304, ../sass/style.scss */
.dropdown-menu-large > li > ul > li {
  list-style: none;
}

/* line 307, ../sass/style.scss */
.dropdown-menu-large > li > ul > li > a {
  display: block;
  white-space: pre;
}

/* line 311, ../sass/style.scss */
.v1-header .top-nav-collapse {
  background-color: rgba(27, 118, 188, 0.8);
}

/* line 314, ../sass/style.scss */
.v1-header .navbar-right {
  margin-top: 50px;
  margin-right: 0;
}

/* line 318, ../sass/style.scss */
.v1-header .navbar-default .navbar-nav > li > a {
  color: #FFF;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  padding: 0 26px 55px 0;
  margin: 5px 25px 0 0;
  line-height: 10px;
  background-color: transparent !important;
  background-image: url(../img/arrow-normal.png);
  background-repeat: no-repeat;
  background-position: top right;
}

/* line 332, ../sass/style.scss */
.v1-header .navbar-default .navbar-nav > li > a:hover {
  background-image: url(../img/arrow-hover-drop.png);
  background-repeat: no-repeat;
  background-position: top right;
  color: #8fe02f;
  border-bottom: none;
}

/* line 339, ../sass/style.scss */
.v1-header .navbar-default .navbar-nav > li > a:last-child {
  background-image: none;
}

/* line 342, ../sass/style.scss */
.v1-header .navbar-default .navbar-nav > li > a:last-child:hover {
  background-image: none;
}

/* line 345, ../sass/style.scss */
.v1-header .navbar-default .navbar-nav > li > a:last-child {
  padding-right: 0;
}

/* line 348, ../sass/style.scss */
.v1-header .navbar-default .navbar-nav > li > a:before {
  height: 0 !important;
}

/* line 351, ../sass/style.scss */
.v1-header .navbar-default .navbar-nav > li > #search-open {
  padding-bottom: 0;
  margin: 0;
  margin-right: 40px;
  margin-left: 10px;
}

/* line 357, ../sass/style.scss */
.v1-header .navbar-default .navbar-nav > li > #search-open:before {
  border: none;
  content: normal;
}

/* line 361, ../sass/style.scss */
.v1-header .navbar-right.nav-icons {
  float: right !important;
}

/* line 364, ../sass/style.scss */
.v1-header .navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
  color: #1c92df;
}

/* line 369, ../sass/style.scss */
.v1-header .navbar-brand {
  height: auto;
  padding: 0 !important;
  margin: 10px 0 10px 0px !important;
}

/* line 374, ../sass/style.scss */
.v1-header .dropdown-menu {
  min-width: 240px;
  background-color: #1b75bc;
  border-top: solid 3px #1c92df;
  margin-top: -1px;
  font-family: lato;
  font-weight: 400;
  font-size: 16px;
}

/* line 383, ../sass/style.scss */
.v1-header .dropdown-menu {
  padding: 15px 0;
}

/* line 386, ../sass/style.scss */
.v1-header .navbar-nav li a {
  padding: 10px 40px 10px 30px;
  color: #FFF;
}

/* line 390, ../sass/style.scss */
.v1-header .dropdown-menu li a:hover {
  background-color: #1c92df;
  color: #21201e;
}

/* line 394, ../sass/style.scss */
.v1-header .dropdown .dropdown-menu .dropdown:hover {
  background-image: url(../img/arrow-hover.png);
  background-repeat: no-repeat;
  background-position: 200px center;
}

/* line 399, ../sass/style.scss */
.v1-header .navbar-default .navbar-nav > li > a:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  right: 50%;
  bottom: 0;
  background: #1c92df;
  height: 1px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

/* line 415, ../sass/style.scss */
.v1-header .navbar-default .navbar-nav > li > a:hover:before,
.v1-header .navbar-default .navbar-nav > li > a:focus:before,
.v1-header .navbar-default .navbar-nav > li > a:active:before {
  left: 0;
  right: 0;
}

/* line 421, ../sass/style.scss */
.v1-header .navbar-toggle {
  margin-top: 40px;
  margin-bottom: 40px;
}

/* line 425, ../sass/style.scss */
.relative-nav-container.open-search {
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  opacity: 0;
}

/* line 433, ../sass/style.scss */
.navbar-search {
  background-color: #1c92df;
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 122px;
  padding: 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

/* line 448, ../sass/style.scss */
.navbar-search .input-group {
  width: 100%;
}

/* line 451, ../sass/style.scss */
.navbar-search .form-control {
  box-shadow: none;
  background-color: transparent;
  letter-spacing: 2px;
  font-family: "Lato", sans-serif;
  color: white;
  font-size: 20px;
  height: 120px;
  border: none;
  line-height: 1;
  padding-left: 0;
  padding-right: 10px;
}

/* line 464, ../sass/style.scss */
.navbar-search .form-control::-moz-placeholder {
  color: #ffffff;
  opacity: 1;
}

/* line 468, ../sass/style.scss */
.navbar-search .form-control:-ms-input-placeholder {
  color: #ffffff;
}

/* line 471, ../sass/style.scss */
.navbar-search .form-control::-webkit-input-placeholder {
  color: #ffffff;
}

/* line 474, ../sass/style.scss */
.navbar-alt .navbar-search .form-control {
  color: #7f858f;
}

/* line 477, ../sass/style.scss */
.navbar-alt .navbar-search .form-control::-moz-placeholder {
  color: #7f858f;
  opacity: 1;
}

/* line 481, ../sass/style.scss */
.navbar-alt .navbar-search .form-control:-ms-input-placeholder {
  color: #7f858f;
}

/* line 484, ../sass/style.scss */
.navbar-alt .navbar-search .form-control::-webkit-input-placeholder {
  color: #7f858f;
}

/* line 487, ../sass/style.scss */
.navbar-search .search-close {
  padding: 0;
  background-color: transparent;
  color: white;
  font-size: 17px;
}

/* line 493, ../sass/style.scss */
.navbar-alt .navbar-search .search-close {
  color: #7f858f;
}

/* line 496, ../sass/style.scss */
.navbar-search.open {
  visibility: visible;
  opacity: 1;
}

/* line 500, ../sass/style.scss */
.navbar-alt.navbar-default .navbar-search {
  background: rgba(255, 255, 255, 0.9);
}

/* line 503, ../sass/style.scss */
.navbar-alt .navbar-search {
  height: 79px;
}

/* line 506, ../sass/style.scss */
.navbar-alt .navbar-search .form-control {
  height: 80px;
}

/* line 509, ../sass/style.scss */
.v1-header .navbar-default .navbar-nav > li > #search-open .fa-search {
  font-size: 17px;
}

/*------ One Page Menu --------*/
/*************************************************
Main Nav Style
*************************************************/
/* line 517, ../sass/style.scss */
#primary {
  position: fixed;
  top: 50%;
  right: 30px;
  z-index: 100000;
  transform: translateY(-50%);
}

/* line 524, ../sass/style.scss */
#primary ul {
  margin-right: -55px;
}

/* line 527, ../sass/style.scss */
#primary li {
  display: list-item;
  height: 20px;
  list-style: none outside none;
  margin-top: 15px;
  position: relative;
  text-align: right;
}

/* line 535, ../sass/style.scss */
#primary a {
  display: block;
  text-align: right;
  font-size: 13px;
  color: #000;
  padding-right: 185px;
  letter-spacing: 1px;
}

/* line 543, ../sass/style.scss */
.logo {
  position: absolute;
  top: 25px;
  left: 25px;
  z-index: 99;
}

/* line 549, ../sass/style.scss */
#primary li:before {
  background-color: #666;
  content: "";
  display: block;
  height: 2px;
  margin-left: 124px;
  width: 15px;
}

/* line 557, ../sass/style.scss */
#primary li a span {
  margin-top: -9px;
  position: absolute;
  -webkit-transition-property: width;
  /* Safari */
  -webkit-transition-duration: 5s;
  /* Safari */
  transition-property: width;
  transition-duration: 5s;
  color: #666;
  text-transform: uppercase;
}

/* line 571, ../sass/style.scss */
#primary li.active a span {
  display: block;
  color: #1c92df;
}

/* line 575, ../sass/style.scss */
#primary li:hover a span {
  display: block;
  color: #1c92df;
}

/* line 579, ../sass/style.scss */
#primary li:hover:before,
#primary li.active:before {
  color: #fff;
  content: "";
  display: block;
  height: 2px;
  width: 50px;
  background-color: #1c92df;
  cursor: pointer;
}

/* line 589, ../sass/style.scss */
.navbar-inverse {
  border: 0 none;
  background: transparent;
}

/* line 593, ../sass/style.scss */
.metis.tparrows {
  display: none;
}

@media (max-width: 767px) {
  /*~~~~~~~~~~~~~~
 Carosul
~~~~~~~~~~~~~~~*/
  /* line 601, ../sass/style.scss */
  #primary {
    width: 100%;
  }

  /* line 604, ../sass/style.scss */
  .navbar-inverse .navbar-toggle {
    background: none repeat scroll 0 0 #000;
    border: medium none;
    margin: 0;
    border-radius: 0;
  }

  /* line 610, ../sass/style.scss */
  #primary ul {
    padding-left: 0;
    padding-right: 0;
  }

  /* line 614, ../sass/style.scss */
  #primary .onepage-nav {
    padding-left: 0;
    padding-right: 0;
    border-top: 0;
  }

  /* line 619, ../sass/style.scss */
  #primary {
    top: 0;
    right: 0;
    width: 90%;
    padding: 2% 5%;
    height: 35px;
    margin: 60px 0;
    position: fixed;
    background: transparent;
  }

  /* line 629, ../sass/style.scss */
  #primary li:before {
    display: none;
  }

  /* line 632, ../sass/style.scss */
  #primary a:before {
    display: none;
  }

  /* line 635, ../sass/style.scss */
  #primary ul {
    position: relative;
    overflow: hidden;
  }

  /* line 639, ../sass/style.scss */
  #primary li {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    text-align: left;
  }

  /* line 646, ../sass/style.scss */
  #primary li a {
    min-width: 200px;
    text-align: left;
    padding: 25px;
    font-size: 16px;
    line-height: 20px;
    color: #fff;
    font-family: lato;
  }

  /* line 655, ../sass/style.scss */
  #primary li.active a,
  #primary li a.active,
  #primary li a:hover {
    background: #f9f9f9;
    color: #34495E;
  }

  /* line 661, ../sass/style.scss */
  #primary li:before {
    display: none;
  }

  /* line 664, ../sass/style.scss */
  #primary li a span {
    display: block;
  }

  /* line 667, ../sass/style.scss */
  #primary li.active a span {
    display: block;
    color: #1c92df;
  }

  /* line 671, ../sass/style.scss */
  #primary li:hover a span {
    display: block;
    color: #1c92df;
  }

  /* line 675, ../sass/style.scss */
  #primary li:hover:before,
  #primary li.active:before {
    display: none;
  }

  /* line 679, ../sass/style.scss */
  #primary ul {
    background-color: #1b75bc;
    border: none;
  }

  /* line 683, ../sass/style.scss */
  .onepage-nav,
  .onepage-nav.collapse {
    height: auto;
    overflow: hidden;
    width: 100%;
  }
}
@media (min-width: 980px) {
  /* line 691, ../sass/style.scss */
  .onepage-nav.collapse {
    height: auto;
    overflow: visible;
  }
}
/* line 696, ../sass/style.scss */
.tilter {
  display: block;
  position: relative;
  width: 300px;
  height: 415px;
  margin: 1.5em 2.5em;
  color: #fff;
  flex: none;
  perspective: 1000px;
}

/* line 706, ../sass/style.scss */
.tilter__figure,
.tilter__image {
  margin: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* line 713, ../sass/style.scss */
.tilter__deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* line 721, ../sass/style.scss */
.tilter__deco--lines {
  fill: none;
  stroke: #fff;
  stroke-width: 15px;
}

/* Example 5 (line animating) */
/* line 728, ../sass/style.scss */
.tilter--5 .tilter__deco--lines path {
  stroke-dasharray: 1270;
  stroke-dashoffset: 1270;
  transition: stroke-dashoffset 0.7s;
}

/* line 733, ../sass/style.scss */
.tilter--5:hover .tilter__deco--lines path {
  stroke-dashoffset: 0;
}

/* line 736, ../sass/style.scss */
.tilter--5 .tilter__figure::before {
  box-shadow: none;
}

/*----------Menu Home V2-------------*/
/* line 741, ../sass/style.scss */
.v2-header {
  position: absolute;
  width: 100%;
}

/* line 745, ../sass/style.scss */
.v2-header h1 {
  position: relative;
  z-index: 99;
  margin: 0;
}

/* line 750, ../sass/style.scss */
.v2-header .navbar-brand {
  height: auto;
  padding: 0 !important;
  margin: 10px 0 10px 40px !important;
}

/* line 755, ../sass/style.scss */
svg {
  max-width: 100%;
}

/*----------Menu Home V2-------------*/
/* -------------------------------- 

Main Components 

-------------------------------- */
/* line 765, ../sass/style.scss */
.cd-nav-trigger {
  /* hamburger icon */
  position: absolute;
  z-index: 3;
  top: 38px;
  right: 0;
  margin-right: 40px;
  height: 44px;
  width: 44px;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  -webkit-transition: -webkit-transform 0.2s;
  -moz-transition: -moz-transform 0.2s;
  transition: transform 0.2s;
}

/* line 784, ../sass/style.scss */
.cd-nav-trigger span {
  /* icon created in CSS */
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 32px;
  height: 1px;
  background-color: #FFF;
}

/* line 801, ../sass/style.scss */
.cd-nav-trigger:nth-child(2) {
  width: 20px;
}

/* line 804, ../sass/style.scss */
.cd-nav-trigger:nth-child(3) {
  width: 10px;
}

/* line 807, ../sass/style.scss */
.cd-nav-trigger span::before,
.cd-nav-trigger span:after {
  /* upper and lower lines of the menu icon */
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: inherit;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.2s, width 0.2s;
  -moz-transition: -moz-transform 0.2s, width 0.2s;
  transition: transform 0.2s, width 0.2s;
}

/* line 831, ../sass/style.scss */
.cd-nav-trigger span::before {
  -webkit-transform-origin: right top;
  -moz-transform-origin: right top;
  -ms-transform-origin: right top;
  -o-transform-origin: right top;
  transform-origin: right top;
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
  transform: translateY(-10px);
}

/* line 843, ../sass/style.scss */
.cd-nav-trigger span::after {
  -webkit-transform-origin: right bottom;
  -moz-transform-origin: right bottom;
  -ms-transform-origin: right bottom;
  -o-transform-origin: right bottom;
  transform-origin: right bottom;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  transform: translateY(10px);
}

/* line 855, ../sass/style.scss */
.no-touch .cd-nav-trigger:hover {
  /* rotate trigger on hover */
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

/* line 864, ../sass/style.scss */
.no-touch .cd-nav-trigger:hover span::after,
.no-touch .cd-nav-trigger:hover span::before {
  /* animate arrow --> from hamburger to arrow */
  width: 50%;
}

/* line 870, ../sass/style.scss */
.no-touch .cd-nav-trigger:hover span::before {
  -webkit-transform: translateX(1px) translateY(1px) rotate(45deg);
  -moz-transform: translateX(1px) translateY(1px) rotate(45deg);
  -ms-transform: translateX(1px) translateY(1px) rotate(45deg);
  -o-transform: translateX(1px) translateY(1px) rotate(45deg);
  transform: translateX(1px) translateY(1px) rotate(45deg);
}

/* line 877, ../sass/style.scss */
.no-touch .cd-nav-trigger:hover span::after {
  -webkit-transform: translateX(1px) translateY(-1px) rotate(-45deg);
  -moz-transform: translateX(1px) translateY(-1px) rotate(-45deg);
  -ms-transform: translateX(1px) translateY(-1px) rotate(-45deg);
  -o-transform: translateX(1px) translateY(-1px) rotate(-45deg);
  transform: translateX(1px) translateY(-1px) rotate(-45deg);
}

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

xnavigation 

-------------------------------- */
/* line 890, ../sass/style.scss */
.cd-nav-container {
  position: fixed;
  z-index: 4;
  top: 0;
  right: 0;
  width: 80%;
  height: 100%;
  overflow-y: auto;
  background-color: #ffffff;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.4s 0s, box-shadow 0s 0.4s;
  -moz-transition: -moz-transform 0.4s 0s, box-shadow 0s 0.4s;
  transition: transform 0.4s 0s, box-shadow 0s 0.4s;
  z-index: 99;
}

/* line 918, ../sass/style.scss */
.cd-nav-container.is-visible {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  -webkit-overflow-scrolling: touch;
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.2);
  -webkit-transition: -webkit-transform 0.4s 0s, box-shadow 0s 0s;
  -moz-transition: -moz-transform 0.4s 0s, box-shadow 0s 0s;
  transition: transform 0.4s 0s, box-shadow 0s 0s;
}

/* line 930, ../sass/style.scss */
.cd-nav-container figure {
  padding: 1em;
  height: 100px;
  position: relative;
  background-color: #1b75bc;
}

/* line 936, ../sass/style.scss */
.cd-nav-container h3 {
  font-size: 1.6rem;
  font-weight: bold;
  margin: 28px 30px;
  text-transform: uppercase;
  color: #FFF;
}

@media only screen and (min-width: 700px) {
  /* line 944, ../sass/style.scss */
  .cd-nav-container {
    width: 70%;
  }

  /* line 947, ../sass/style.scss */
  .cd-nav-container main {
    height: 116px;
    padding-top: 3em;
  }
}
/* line 952, ../sass/style.scss */
.cd-close-nav {
  /* 'X' close icon */
  position: absolute;
  height: 44px;
  width: 44px;
  /* set the right position value so that it overlaps the .cd-nav-trigger*/
  right: 6.25%;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

/* line 977, ../sass/style.scss */
.cd-close-nav::after,
.cd-close-nav::before {
  /* lines of 'X' icon */
  content: '';
  position: absolute;
  height: 3px;
  width: 32px;
  left: 50%;
  top: 50%;
  background-color: #FFF;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* line 991, ../sass/style.scss */
.cd-close-nav::after {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

/* line 998, ../sass/style.scss */
.cd-close-nav::before {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

/* line 1005, ../sass/style.scss */
.no-touch .cd-close-nav:hover {
  opacity: .8;
}

@media only screen and (min-width: 700px) {
  /* line 1009, ../sass/style.scss */
  .cd-close-nav {
    right: 7.14%;
  }
}
/* line 1013, ../sass/style.scss */
.cd-nav {
  background-color: #1b75bc;
  padding: 0;
  margin-bottom: 0;
}

/* line 1018, ../sass/style.scss */
.cd-nav::after {
  clear: both;
  content: "";
  display: table;
}

/* line 1023, ../sass/style.scss */
.cd-nav li {
  width: 50%;
  float: left;
  list-style: none;
  /* 68px is the navigation header height  and the menu items will be allocated in 3 rows */
  height: calc((100vh - 68px)/3);
  min-height: 120px;
  border: 1px solid #2e2e2e;
  border-top: none;
  border-left: none;
}

/* line 1035, ../sass/style.scss */
.cd-nav li:nth-of-type(2n) {
  border-right-width: 0;
}

/* line 1038, ../sass/style.scss */
.cd-nav a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  -webkit-transition: background-color 0.2s;
  -moz-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

/* line 1048, ../sass/style.scss */
.no-touch .cd-nav a:hover svg {
  -webkit-animation: cd-shock 0.3s;
  -moz-animation: cd-shock 0.3s;
  animation: cd-shock 0.3s;
}

/* line 1053, ../sass/style.scss */
.no-touch .cd-nav li a:hover span *,
.cd-nav li.cd-selected a span * {
  /* on hover or if selected - change text and icon color*/
  stroke: #21201e;
}

/* line 1059, ../sass/style.scss */
.no-touch .cd-nav li a:hover em,
.cd-nav li.cd-selected a em {
  /* on hover or if selected - change text and icon color*/
  color: #21201e;
}

/* line 1065, ../sass/style.scss */
.no-touch .cd-nav li a:hover,
.cd-nav li.cd-selected a {
  background-color: #1c92df;
}

/*.no-touch .cd-nav li:nth-of-type(2) a:hover,
.cd-nav li.cd-selected:nth-of-type(2) a {
background-color: #5c4b51;
}
.no-touch .cd-nav li:nth-of-type(3) a:hover,
.cd-nav li.cd-selected:nth-of-type(3) a {
background-color: #e0cf75;
}
.no-touch .cd-nav li:nth-of-type(4) a:hover,
.cd-nav li.cd-selected:nth-of-type(4) a {
background-color: #f5b65a;
}
.no-touch .cd-nav li:nth-of-type(5) a:hover,
.cd-nav li.cd-selected:nth-of-type(5) a {
background-color: #f25f5c;
}
.no-touch .cd-nav li:nth-of-type(6) a:hover,
.cd-nav li.cd-selected:nth-of-type(6) a {
background-color: #8abeb2;
}*/
/* line 1090, ../sass/style.scss */
.cd-nav span,
.cd-nav em {
  position: absolute;
}

/* line 1094, ../sass/style.scss */
.cd-nav span {
  top: calc(50% - 48px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 48px;
  width: 48px;
}

/* line 1105, ../sass/style.scss */
.cd-nav span * {
  -webkit-transition: stroke 0.2s;
  -moz-transition: stroke 0.2s;
  transition: stroke 0.2s;
  stroke: #FFF;
}

/* line 1111, ../sass/style.scss */
.cd-nav em {
  width: 100%;
  left: 0;
  top: calc(50% + 15px);
  color: #FFF;
  font-style: normal;
  -webkit-transition: color 0.2s;
  -moz-transition: color 0.2s;
  transition: color 0.2s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 2rem !important;
}

@media only screen and (min-width: 700px) {
  /* line 1127, ../sass/style.scss */
  .cd-nav li {
    /* 116px is the navigation header height and the menu items will be allocated in 3 rows */
    height: calc((100vh - 116px)/3);
    min-height: 200px;
  }

  /* line 1133, ../sass/style.scss */
  .cd-nav span {
    height: 64px;
    width: 64px;
    top: calc(50% - 56px);
  }

  /* line 1138, ../sass/style.scss */
  .cd-nav em {
    font-size: 2.2rem;
    font-weight: 300;
    top: calc(50% + 21px);
  }
}
@media only screen and (min-width: 1024px) {
  /* line 1145, ../sass/style.scss */
  .cd-nav li {
    width: 33.33%;
    float: left;
    /* 116px is the navigation header height  and the menu items will be allocated in 2 rows */
    height: calc((100vh - 116px)/2);
    min-height: 250px;
  }

  /* line 1153, ../sass/style.scss */
  .cd-nav li:nth-of-type(2n) {
    border-right-width: 1px;
  }

  /* line 1156, ../sass/style.scss */
  .cd-nav li:nth-of-type(3n) {
    border-right-width: 0;
  }

  /* line 1159, ../sass/style.scss */
  .cd-nav em {
    font-size: 2.5rem;
  }
}
@-webkit-keyframes cd-shock {
  0% {
    -webkit-transform: rotate(0);
  }
  30% {
    -webkit-transform: rotate(10deg);
  }
  60% {
    -webkit-transform: rotate(-10deg);
  }
  100% {
    -webkit-transform: rotate(0);
  }
}
@-moz-keyframes cd-shock {
  0% {
    -moz-transform: rotate(0);
  }
  30% {
    -moz-transform: rotate(10deg);
  }
  60% {
    -moz-transform: rotate(-10deg);
  }
  100% {
    -moz-transform: rotate(0);
  }
}
@keyframes cd-shock {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  30% {
    -webkit-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    -o-transform: rotate(10deg);
    transform: rotate(10deg);
  }
  60% {
    -webkit-transform: rotate(-10deg);
    -moz-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    -o-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  100% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
}
/*---------Button Style-----------*/
/* line 1224, ../sass/style.scss */
.button-arrow {
  background-color: transparent;
  border: 2px solid #1c92df;
  border-radius: 50px;
  color: #21201e;
  display: inline-block;
  margin-top: 40px;
  padding: 1em 0.5em 1em 2.5em;
  text-decoration: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  letter-spacing: 1.5px;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 20px;
}

/* line 1241, ../sass/style.scss */
.button-arrow:hover {
  text-decoration: none;
  color: #FFF;
  background-color: #1c92df;
}

/* line 1246, ../sass/style.scss */
.button-arrow:focus {
  color: #21201e;
}

/* line 1249, ../sass/style.scss */
.button-arrow img {
  font-size: 24px;
  transition: all !important;
  transition-duration: 0.4s !important;
  margin-left: 10px !important;
  margin-right: -30px !important;
}

/* line 1256, ../sass/style.scss */
.button-arrow:hover img {
  -webkit-transform: translateX(10px);
  transform: translateX(10px);
}

/*----------Border Offset Style------------*/
/* line 1262, ../sass/style.scss */
.template-border.bd-left .banner-image:after {
  bottom: -27px;
  left: -25px;
}

/* line 1266, ../sass/style.scss */
.template-border.bd-left .banner-image:after {
  content: "";
  z-index: -1;
  width: 100%;
  height: 100%;
  outline-offset: 15px;
  position: absolute;
  border: 10px solid #1c92df;
}

/* line 1275, ../sass/style.scss */
.template-border {
  position: relative;
  margin-bottom: 100px;
  margin-left: 24px;
  display: inline-block;
  max-width: 100%;
  z-index: 99;
}

/* line 1283, ../sass/style.scss */
#discover .template-border {
  width: 100%;
  margin-top: 80px;
}

/* line 1287, ../sass/style.scss */
.template-border .banner-image {
  position: relative;
  display: block;
}

@media (max-width: 1199px) {
  /* line 1292, ../sass/style.scss */
  .template-border {
    max-width: 90%;
    margin-left: 25px;
  }
}
/* line 1297, ../sass/style.scss */
.template-border figure {
  overflow: hidden;
  position: relative;
}

/* line 1301, ../sass/style.scss */
.template-border figure img {
  width: 100%;
}

/*----------Banner V1------------*/
/* line 1306, ../sass/style.scss */
.homebanner-styling .carousel-caption-custom {
  text-shadow: none;
  text-align: center;
}

/* line 1310, ../sass/style.scss */
.homebanner-styling .carousel-caption-custom .fa.fa-times {
  font-size: 23px;
}

/* line 1313, ../sass/style.scss */
.homebanner-styling .hephaistos .tp-bullet {
  width: 43px;
  height: 2px;
  background-color: #FFF;
  box-shadow: none;
  border: none;
  border-radius: 0;
}

/* line 1321, ../sass/style.scss */
.homebanner-styling .tp-bullet {
  position: relative !important;
  margin-top: 30px !important;
  counter-reset: my-badass-counter;
}

/* line 1326, ../sass/style.scss */
.homebanner-styling .tp-bullet.selected {
  width: 73px;
  background-color: #1c92df !important;
}

/* line 1330, ../sass/style.scss */
.homebanner-styling .tp-bullet:nth-child(1):before {
  content: "1";
  position: absolute;
  color: #1c92df;
  display: inline-block;
  width: 1em;
  margin-left: -2em;
  margin-right: 0.5em;
  text-align: right;
  direction: rtl;
  margin-top: -8px;
}

/* line 1342, ../sass/style.scss */
.homebanner-styling .tp-bullet:nth-child(2):before {
  content: "2";
  position: absolute;
  color: #1c92df;
  display: inline-block;
  width: 1em;
  margin-left: -2em;
  margin-right: 0.5em;
  text-align: right;
  direction: rtl;
  margin-top: -8px;
}

/* line 1354, ../sass/style.scss */
.homebanner-styling .tp-bullet:nth-child(3):before {
  content: "3";
  position: absolute;
  color: #1c92df;
  display: inline-block;
  width: 1em;
  margin-left: -2em;
  margin-right: 0.5em;
  text-align: right;
  direction: rtl;
  margin-top: -8px;
}

/* line 1366, ../sass/style.scss */
.homebanner-styling .tp-bullet:nth-child(4):before {
  content: "4";
  position: absolute;
  color: #1c92df;
  display: inline-block;
  width: 1em;
  margin-left: -2em;
  margin-right: 0.5em;
  text-align: right;
  direction: rtl;
  margin-top: -8px;
}

/* line 1378, ../sass/style.scss */
.homebanner-styling .tp-bullet:nth-child(5):before {
  content: "5";
  position: absolute;
  color: #1c92df;
  display: inline-block;
  width: 1em;
  margin-left: -2em;
  margin-right: 0.5em;
  text-align: right;
  direction: rtl;
  margin-top: -8px;
}

/* line 1390, ../sass/style.scss */
.homebanner-styling .tp-bullet:nth-child(6):before {
  content: "6";
  position: absolute;
  color: #1c92df;
  display: inline-block;
  width: 1em;
  margin-left: -2em;
  margin-right: 0.5em;
  text-align: right;
  direction: rtl;
  margin-top: -8px;
}

/* line 1403, ../sass/style.scss */
.homebanner-styling .tp-bullet:nth-child(7):before {
  content: "7";
  position: absolute;
  color: #1c92df;
  display: inline-block;
  width: 1em;
  margin-left: -2em;
  margin-right: 0.5em;
  text-align: right;
  direction: rtl;
  margin-top: -8px;
}

/* line 1415, ../sass/style.scss */
.homebanner-styling .carousel-caption-custom .button-arrow {
  margin: 0;
}

/* line 1418, ../sass/style.scss */
.carousel-caption-custom h2 {
  color: #FFF;
  font-size: 1em;
  margin: 0.5em 0;
  line-height: 0.9em;
  font-weight: normal;
  letter-spacing: 5px;
}

/* line 1426, ../sass/style.scss */
#banner-form {
  margin: 0 auto;
  width: 100%;
}

/* line 1430, ../sass/style.scss */
#banner-form::-webkit-input-placeholder {
  color: #000;
  letter-spacing: 2px;
  opacity: 0.8;
}

/* line 1435, ../sass/style.scss */
#banner-form:-moz-placeholder {
  /* Firefox 18- */
  color: #000;
  letter-spacing: 2px;
  opacity: 0.8;
}

/* line 1442, ../sass/style.scss */
#banner-form::-moz-placeholder {
  /* Firefox 19+ */
  color: #000;
  letter-spacing: 2px;
  opacity: 0.8;
}

/* line 1449, ../sass/style.scss */
#banner-form:-ms-input-placeholder {
  color: #000;
  letter-spacing: 0px;
  opacity: 1;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold !important;
}

/* line 1456, ../sass/style.scss */
#banner-form input {
  border: medium none;
  border-radius: 50px;
  color: #000;
  letter-spacing: 2px;
  font-size: 16px;
  font-weight: lighter;
  height: 60px;
  padding: 0 12.5em 0 1.5em;
  width: 100%;
  font-family: "Lato", sans-serif;
  margin: 0 auto;
  float: left;
}

/* line 1470, ../sass/style.scss */
#banner-form #subscribe {
  background-color: #1c92df;
  border: medium none;
  border-radius: 60px;
  color: #FFF;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 1.32em 3.160em;
  margin-left: -190px;
  text-transform: uppercase;
}

/* line 1481, ../sass/style.scss */
#banner-form .responsive-button {
  display: none;
}

/* line 1485, ../sass/style.scss */
.rev-burger {
  display: none !important;
}

/* line 1488, ../sass/style.scss */
.onepage .tparrows {
  display: none;
}

/* line 1491, ../sass/style.scss */
.homebanner-styling .carousel-caption-custom p {
  font-size: 1.3em;
  line-height: 1.5em;
  font-family: 'Montserrat', sans-serif;
  color: #FFF;
  letter-spacing: 1px;
  margin-top: 0.6em;
  margin-bottom: 0.1em;
  white-space: normal;
}

/* line 1501, ../sass/style.scss */
.homebanner-styling .carousel-caption-custom p.text-left {
  margin-left: 0;
  margin-right: 0;
}

/* line 1505, ../sass/style.scss */
.homebanner-styling .carousel-caption-custom .button-arrow {
  color: #FFF;
}

/* line 1508, ../sass/style.scss */
.homebanner-styling .carousel-indicators {
  margin-left: 0;
  left: auto;
  right: 0px;
  top: 40%;
  width: 110px;
  position: absolute;
}

/* line 1516, ../sass/style.scss */
.homebanner-styling .carousel-indicators li {
  color: #fff;
  display: block;
  margin: 35px 0;
  border: none;
  width: 0;
  height: 0;
  text-indent: 0;
  transition-duration: 0.4s;
}

/* line 1526, ../sass/style.scss */
.homebanner-styling .carousel-indicators .active {
  border: none;
}

/* line 1529, ../sass/style.scss */
.homebanner-styling .carousel-indicators li:after {
  background-color: #fff;
  content: "";
  display: block;
  height: 2px;
  margin-left: 30px;
  width: 15px;
}

/* line 1537, ../sass/style.scss */
.homebanner-styling .carousel-indicators li.active:after {
  color: #fff;
  content: "";
  display: block;
  height: 2px;
  margin-left: 30px;
  width: 80px;
  background-color: #1c92df;
}

/* line 1546, ../sass/style.scss */
.homebanner-styling .carousel-indicators li span {
  margin-top: -9px;
  position: absolute;
  display: none;
}

/* line 1551, ../sass/style.scss */
.homebanner-styling .carousel-indicators li.active span {
  display: block;
  color: #1c92df;
}

/*----------Banner V2------------*/
/* line 1557, ../sass/style.scss */
.v2-banner .banner-img-1 {
  background-image: url(../img/placeholder/home-v2-banner.jpg);
}

/* line 1560, ../sass/style.scss */
.v2-banner .button-arrow {
  border-radius: 0;
}

/*--------Features-----------*/
/* line 1565, ../sass/style.scss */
.feature-banner {
  background-image: url(../img/placeholder/features-banner.jpg);
  height: 540px;
  background-repeat: no-repeat;
  width: 100%;
  background-position: center center;
  background-size: cover;
  display: table;
}

/* line 1574, ../sass/style.scss */
.noslider h2 {
  color: #FFF;
  font-size: 60px;
  background-image: none;
  letter-spacing: 6px;
  font-weight: normal;
  margin: 60px 0 0 0;
}

/* line 1582, ../sass/style.scss */
.noslider .valign-middle {
  display: table-cell;
  vertical-align: middle;
}

/* line 1586, ../sass/style.scss */
.noslider .h4-template-breadcrumb {
  background-color: transparent;
  text-align: center;
  padding: 0;
  margin: 25px 0 0 0;
  text-transform: uppercase;
}

/* line 1593, ../sass/style.scss */
.noslider .h4-template-breadcrumb li a {
  color: #FFF;
  font-size: 14px;
  letter-spacing: 2px;
  text-decoration: none;
}

/* line 1599, ../sass/style.scss */
.noslider .h4-template-breadcrumb > .active {
  color: #1c92df;
  letter-spacing: 2px;
}

/* line 1603, ../sass/style.scss */
.noslider .h4-template-breadcrumb > li + li::before {
  content: url(../img/dash.png);
  display: inline-flex;
  padding: 0 25px;
  vertical-align: middle;
}

/* line 1609, ../sass/style.scss */
#features {
  text-align: center;
}

/* line 1612, ../sass/style.scss */
#features .text-left svg {
  float: left;
  margin-right: 10px;
  width: 64px;
  height: 64px;
}

/* line 1618, ../sass/style.scss */
#features .text-left h3 {
  margin: 50px 0 0 0;
}

/* line 1621, ../sass/style.scss */
#features .text-left p {
  display: inline-block;
  margin-left: 75px;
}

/*--------About Us-----------*/
/* line 1627, ../sass/style.scss */
.about-banner {
  background-image: url(../img/pagebanner.png);
  height: 540px;
  background-repeat: no-repeat;
  width: 100%;
  background-position: center center;
  background-size: cover;
  display: table;
}

/* line 1636, ../sass/style.scss */
#about-us {
  background-color: #f4f4f4;
}

/* line 1639, ../sass/style.scss */
#about-us h2 {
  margin-bottom: 40px;
}

/* line 1642, ../sass/style.scss */
#custom-top {
  margin-top: -180px;
}

/* line 1645, ../sass/style.scss */
#aboutslider {
  background-color: #FFF;
  margin-top: 90px;
  clear: both;
  padding-top: 123px;
}

/* line 1651, ../sass/style.scss */
#about-us #aboutslider .template-border {
  margin-left: 0;
}

/* line 1654, ../sass/style.scss */
#about-us #aboutslider .box-1 {
  padding: 100px 70px 70px;
}

/* line 1657, ../sass/style.scss */
#about-us #aboutslider p span {
  font-weight: bold;
  color: #898680;
}

/* line 1661, ../sass/style.scss */
#about-us #aboutslider p {
  margin-top: 20px;
}

/* line 1664, ../sass/style.scss */
#about-us #aboutslider .border-offset {
  padding: 70px 0;
}

/* line 1667, ../sass/style.scss */
#about-us #aboutslider .border-offset:before {
  content: "";
  display: block;
  height: 75%;
  margin-left: -16px;
  margin-top: 35px;
  outline: 10px solid #1c92df;
  position: absolute;
  width: 390px;
}

/* line 1677, ../sass/style.scss */
#about-us #aboutslider .border-offset img {
  position: relative;
}

/* line 1680, ../sass/style.scss */
#about-us #aboutslider .carousel-indicators .active {
  background-color: #1c92df;
}

/* line 1683, ../sass/style.scss */
#about-us #aboutslider .carousel-indicators {
  left: 97.5%;
  top: 43%;
  margin-left: 0;
  width: 0;
}

/* line 1689, ../sass/style.scss */
#about-us #aboutslider .carousel-indicators li {
  border: 2px solid #1c92df;
  border-radius: 10px;
  cursor: pointer;
  display: block;
  height: 12px;
  margin: 10px 0;
  text-indent: -999px;
  width: 12px;
}

/*--------Our Work-----------*/
/* line 1701, ../sass/style.scss */
#our-work h5 {
  margin-bottom: 80px;
}

/* line 1704, ../sass/style.scss */
.pr-box-left {
  text-align: right;
  padding: 0px;
}

/* line 1708, ../sass/style.scss */
.pr-box-left:nth-child(2) {
  margin-top: 120px;
  margin-bottom: 120px;
}

/* line 1712, ../sass/style.scss */
.service-work .pr-box-left:nth-child(1) {
  margin-top: 115px;
}

/* line 1715, ../sass/style.scss */
.service-work .pr-box-left:nth-child(2) {
  margin-top: 24px;
  margin-bottom: 0;
}

/* line 1719, ../sass/style.scss */
.service-work .pr-box-left {
  margin-top: 24px;
}

/* line 1722, ../sass/style.scss */
.service-work .pr-box-right:nth-child(1) {
  margin-top: 115px;
}

/* line 1725, ../sass/style.scss */
.service-work .pr-box-right:nth-child(2) {
  margin-top: 24px;
  margin-bottom: 0;
}

/* line 1729, ../sass/style.scss */
.service-work .pr-box-right {
  margin-top: 24px;
}

/* line 1732, ../sass/style.scss */
.pr-box-left h3 span {
  color: #1c92df;
  letter-spacing: 0;
}

/* line 1736, ../sass/style.scss */
.pr-box-left h3 {
  letter-spacing: 0;
  margin: 10px 0;
  text-transform: none;
}

/* line 1741, ../sass/style.scss */
.pr-box-right {
  text-align: left;
  padding: 0px;
}

/* line 1745, ../sass/style.scss */
.pr-box-right:nth-child(2) {
  margin-top: 120px;
  margin-bottom: 120px;
}

/* line 1749, ../sass/style.scss */
.pr-box-right h3 {
  letter-spacing: 0;
  margin: 10px 0;
  text-transform: none;
}

/* line 1754, ../sass/style.scss */
.pr-box-right h3 span {
  font-size: 18px;
  color: #1c92df;
  letter-spacing: 0;
}

/*--------Testimonials-----------*/
/* line 1761, ../sass/style.scss */
.testimonials {
  background-image: url(../img/placeholder/clients-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  padding-bottom: 0;
}

/* line 1770, ../sass/style.scss */
.testimonials h2 {
  color: #FFF;
}

/* line 1773, ../sass/style.scss */
.testimonials .fa-quote-left {
  color: #1c92df;
  font-size: 60px;
  margin-bottom: 15px;
}

/* line 1778, ../sass/style.scss */
.testimonials p {
  color: #efeff0;
  font-size: 21px;
  font-weight: lighter;
  font-family: "Lato", sans-serif;
  line-height: 40px;
}

/* line 1785, ../sass/style.scss */
#quote-carousel {
  margin-top: 60px;
}

/* line 1788, ../sass/style.scss */
#quote-carousel .carousel-control {
  background: none;
  color: #CACACA;
  font-size: 2.3em;
  text-shadow: none;
  margin-top: 30px;
}

/* line 1795, ../sass/style.scss */
#quote-carousel .carousel-indicators {
  position: relative;
  top: auto;
  bottom: -70px;
  right: 0%;
  left: 0;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  margin-top: -20px;
}

/* line 1806, ../sass/style.scss */
#quote-carousel .carousel-indicators li {
  width: 115px;
  min-height: 115px;
  cursor: pointer;
  transition: all .4s ease-in;
  vertical-align: middle;
  text-indent: inherit;
  border: 0px;
  background-color: transparent;
  margin: 1px 5px;
}

/* line 1817, ../sass/style.scss */
#quote-carousel .carousel-indicators li .testimonials_avtar {
  border: 4px solid #ffffff;
  border-radius: 50%;
  background-color: #efeff0;
  width: auto;
  height: 100%;
  overflow: hidden;
}

/* line 1825, ../sass/style.scss */
#quote-carousel .carousel-indicators li img {
  opacity: 0.30;
  display: block;
  width: 100%;
  height: auto;
}

/* line 1831, ../sass/style.scss */
#quote-carousel .carousel-indicators li h4 {
  cursor: pointer;
  text-align: center;
  width: 100%;
  text-transform: uppercase;
  font-size: 14px;
  display: none;
}

/* line 1839, ../sass/style.scss */
#quote-carousel .carousel-indicators li h5 {
  font-size: 13px;
  text-transform: uppercase;
  line-height: inherit;
  margin: 0px;
  width: 100%;
  display: none;
}

/* line 1847, ../sass/style.scss */
#quote-carousel .carousel-indicators li.active img {
  opacity: 1;
}

/* line 1850, ../sass/style.scss */
#quote-carousel .carousel-indicators .active {
  opacity: 1;
  transition: all .2s;
  transform: scale(1.1);
}

/* line 1855, ../sass/style.scss */
#quote-carousel .carousel-indicators .active h4 {
  color: #1c92df;
  display: block;
}

/* line 1859, ../sass/style.scss */
#quote-carousel .carousel-indicators .active h5 {
  color: #21201e;
  display: block;
}

/* line 1863, ../sass/style.scss */
.item blockquote {
  border-left: none;
  margin: 0;
}

/*--------Testimonials Page-----------*/
/* line 1869, ../sass/style.scss */
.testimonials.testimonials-1 {
  background-image: none !important;
  text-align: center;
  padding-bottom: 120px;
}

/* line 1874, ../sass/style.scss */
.testimonials.testimonials-1 h5 {
  margin: 0;
  margin-left: auto;
  margin-right: auto;
}

/* line 1879, ../sass/style.scss */
.testimonials.testimonials-1 h4 {
  font-size: 14px;
}

/* line 1882, ../sass/style.scss */
.testimonials.testimonials-1 h2 {
  color: #21201e;
  margin-bottom: 70px;
}

/* line 1886, ../sass/style.scss */
.testimonials.testimonials-1 .image-avatar {
  margin-top: 50px;
}

/* line 1889, ../sass/style.scss */
.testimonials.testimonials-1 p {
  color: #898680;
  font-size: 24px;
  font-weight: lighter;
  font-family: "Lato", sans-serif;
  line-height: 40px;
}

/* line 1896, ../sass/style.scss */
.testimonials-1 .carousel-control {
  width: auto;
  text-shadow: none;
  opacity: 1;
  color: #FFF;
}

/* line 1902, ../sass/style.scss */
.testimonials-1 .carousel-control .icon-next {
  margin-right: 13px;
}

/* line 1905, ../sass/style.scss */
.testimonials-1 .carousel-control .icon-next img {
  margin-right: 13px;
}

/* line 1908, ../sass/style.scss */
.testimonials-1 .carousel-control .icon-prev::before {
  display: none;
}

/* line 1911, ../sass/style.scss */
.testimonials-1 .carousel-control .icon-next::before {
  display: none;
}

/* line 1914, ../sass/style.scss */
.testimonials.testimonials-3 .testimonial-block {
  border: solid 1px #F3F0EA;
  padding: 30px 30px 70px 30px;
  border-radius: 5px;
  margin-top: 70px;
}

/* line 1920, ../sass/style.scss */
.testimonials.testimonials-3 {
  background-image: none !important;
  margin: 120px 0;
}

/* line 1924, ../sass/style.scss */
.testimonials.testimonials-3 h2 {
  color: #21201e;
  margin-bottom: 70px;
}

/* line 1928, ../sass/style.scss */
.testimonials.testimonials-3 p {
  font-size: 21px;
  color: #898680;
  line-height: 32px;
}

/* line 1933, ../sass/style.scss */
.testimonials.testimonials-3 h5 {
  margin: 0;
  margin-left: auto;
  margin-right: auto;
}

/* line 1938, ../sass/style.scss */
.testimonials.testimonials-3 h4 {
  font-size: 14px;
}

/* line 1941, ../sass/style.scss */
.testimonials-3 .carousel-control {
  width: auto;
  text-shadow: none;
  opacity: 1;
  color: #FFF;
}

/* line 1947, ../sass/style.scss */
.testimonials-3 .carousel-control .icon-next {
  margin-right: -40px;
}

/* line 1950, ../sass/style.scss */
.testimonials-3 .carousel-control .icon-next img {
  margin-right: -40px;
}

/* line 1953, ../sass/style.scss */
.testimonials-3 .carousel-control .icon-prev {
  margin-left: -40px;
}

/* line 1956, ../sass/style.scss */
.testimonials-3 .carousel-control .icon-prev img {
  margin-left: -40px;
}

/* line 1959, ../sass/style.scss */
.testimonials-3 .carousel-control .icon-prev::before {
  display: none;
}

/* line 1962, ../sass/style.scss */
.testimonials-3 .carousel-control .icon-next::before {
  display: none;
}

/* line 1965, ../sass/style.scss */
.testimonials-3 .image-avatar img {
  border-radius: 100%;
  margin-top: -55px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  display: block;
}

/* line 1974, ../sass/style.scss */
.testimonials.testimonials-3 h6 {
  color: #21201e;
  font-size: 18px;
  text-align: center;
}

/* line 1979, ../sass/style.scss */
.testimonials.testimonials-3 h6 b {
  color: #1c92df;
}

/*--------Clients-----------*/
/* line 1984, ../sass/style.scss */
#clients {
  padding-top: 200px;
}

/* line 1987, ../sass/style.scss */
#clients ul {
  padding-left: 0;
  overflow: hidden;
}

/* line 1991, ../sass/style.scss */
#clients ul li {
  list-style: none;
  padding: 40px 20px;
  text-align: center;
}

/* line 1996, ../sass/style.scss */
#clients ul li:before {
  border-bottom: 2px solid #eeeeee;
  border-left: 2px solid #eeeeee;
  bottom: -2px;
  content: "";
  height: 100%;
  left: -2px;
  position: absolute;
  top: auto;
  width: 100%;
}

/* line 2007, ../sass/style.scss */
#clients ul li:after {
  content: "";
  position: absolute;
  border: 5px solid #1c92df;
  outline: 10px solid #FFF;
  border-radius: 25px;
  top: auto;
  left: -5px;
  bottom: -5px;
  z-index: 1;
}

/* line 2018, ../sass/style.scss */
#clients ul li img {
  margin: 0 auto;
  -webkit-filter: grayscale(100%);
}

/* line 2023, ../sass/style.scss */
#clients ul li:nth-child(1):after,
#clients ul li:nth-child(5):after,
#clients ul li:nth-child(6):after,
#clients ul li:nth-child(7):after,
#clients ul li:nth-child(8):after {
  display: none;
}

/*--------------Portfolio----------------*/
/* line 2032, ../sass/style.scss */
#filters ul li a h5 {
  color: #21201e;
  display: inline-block;
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 5px;
  padding: 10px 0px 10px 20px;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out 0s;
}

/* line 2044, ../sass/style.scss */
#filters ul li a.active {
  position: relative;
  border-bottom: solid 2px #1c92df;
}

/* line 2048, ../sass/style.scss */
#filters ul li a.active::after,
#filters ul li a.active::before {
  border: medium solid transparent;
  bottom: 100%;
  content: " ";
  height: 0;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 100%;
  width: 0;
}

/* line 2060, ../sass/style.scss */
#filters ul li a.active::after {
  border-bottom-color: #f4f4f4;
  border-width: 4.5px;
  margin-left: -5px;
  top: 100%;
  transform: rotate(180deg);
}

/* line 2067, ../sass/style.scss */
#filters ul li a sup {
  opacity: 0;
  top: -1.5em;
  transition: all 0.3s ease-in-out 0s;
}

/* line 2072, ../sass/style.scss */
#filters ul li a.active sup {
  opacity: 1;
  transition: all 0.2s ease-in-out 0s;
  color: #1c92df;
}

/* line 2077, ../sass/style.scss */
#filters ul li a.active::before {
  border-color: rgba(194, 225, 245, 0) rgba(194, 225, 245, 0) #1c92df;
  border-width: 7px;
  margin-left: -8px;
  transform: rotate(180deg);
}

/* line 2083, ../sass/style.scss */
#filters .button {
  display: inline-block;
  padding: 0 0px 20px 18px;
  border: none;
  background-color: transparent;
  color: #222;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  cursor: pointer;
  margin-bottom: -1px;
}

/* line 2097, ../sass/style.scss */
#filters .button:hover {
  color: #1c92df;
}

/* line 2100, ../sass/style.scss */
.is-checked #filters .button:after {
  content: "";
  background: url(../img/down-arrow.png);
}

/* line 2104, ../sass/style.scss */
#filters .button:active,
#filters .button.is-checked {
  background-color: transparent;
}

/* line 2108, ../sass/style.scss */
#filters .button.is-checked {
  border-bottom: 2px solid #1c92df;
  border-radius: 0;
  color: #1c92df;
  padding-bottom: 20px;
}

/* line 2114, ../sass/style.scss */
#filters .button sup {
  opacity: 0;
  color: #1c92df;
  top: -18px;
  display: none;
}

/* line 2120, ../sass/style.scss */
#filters .button.is-checked sup {
  opacity: 1;
}

/* line 2123, ../sass/style.scss */
#filters .button:active {
  background-color: transparent;
}

/* ---- button-group ---- */
/* line 2128, ../sass/style.scss */
.button-group {
  margin: 60px 0;
  text-align: center;
  border-bottom: solid 1px #dedede;
}

/* line 2133, ../sass/style.scss */
#filters .button-group:after {
  content: '';
  display: block;
  clear: both;
}

/* line 2138, ../sass/style.scss */
#filters .button-group .button {
  float: left;
  border-radius: 0;
  margin-left: 0;
  margin-right: 1px;
}

/* line 2144, ../sass/style.scss */
#filters .button-group #filters .button:first-child {
  border-radius: 0.5em 0 0 0.5em;
}

/* line 2147, ../sass/style.scss */
#filters .button-group #filters .button:last-child {
  border-radius: 0 0.5em 0.5em 0;
}

/* ---- isotope ---- */
/* line 2152, ../sass/style.scss */
#portfolio {
  background-color: #f4f4f4;
}

/* line 2155, ../sass/style.scss */
figcaption .share-link {
  border-radius: 50%;
  border: solid 3px #1c92df;
  width: 60px;
  height: 60px;
}

/* line 2161, ../sass/style.scss */
figcaption .share-link .fa-circle {
  font-size: 6px;
  text-align: center;
  vertical-align: middle;
  margin-top: 25px;
}

/* line 2167, ../sass/style.scss */
.bg-none {
  background-color: transparent !important;
}

/* line 2170, ../sass/style.scss */
#portfolio .portfolio-grid {
  width: 100%;
}

/* clear fix */
/* line 2175, ../sass/style.scss */
.portfolio-grid:after {
  content: '';
  display: block;
  clear: both;
}

/* ---- .element-item ---- */
/* line 2182, ../sass/style.scss */
.grid-sizer,
.portfolio-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  float: left;
  width: 20%;
}

/* line 2190, ../sass/style.scss */
.element-item img {
  height: auto !important;
  width: 100% !important;
}

/* line 2194, ../sass/style.scss */
.element-item > * {
  margin: 0px;
  padding: 0;
}

/* line 2198, ../sass/style.scss */
.portfolio-grid figure.element-item--width2 {
  width: 40%;
}

/* line 2201, ../sass/style.scss */
#portfolio-full .grid-sizer,
#portfolio-full.portfolio-grid figure {
  position: relative;
  margin: 0 !important;
  overflow: hidden;
  float: left;
  width: 25%;
}

/* line 2209, ../sass/style.scss */
#portfolio-full .element-item img {
  height: auto !important;
  width: 100% !important;
}

/* line 2213, ../sass/style.scss */
#portfolio-full .element-item > * {
  margin: 0;
  padding: 0;
}

/* line 2217, ../sass/style.scss */
#portfolio-full figure.element-item--width2 {
  width: 50%;
}

/*----Portfolio Grid---*/
/* line 2222, ../sass/style.scss */
#portfolio-grid-page figure {
  position: relative;
  overflow: hidden;
  float: left;
  width: 33.333%;
}

/* line 2228, ../sass/style.scss */
#portfolio-grid-page .element-item {
  height: auto;
}

/* line 2231, ../sass/style.scss */
#portfolio-grid-page .element-item img {
  height: 100% !important;
  width: 100% !important;
}

/* line 2235, ../sass/style.scss */
#portfolio-grid-page .element-item > * {
  margin: 0;
  padding: 0;
}

/* line 2239, ../sass/style.scss */
#portfolio-grid-page figure.element-item--width2 {
  width: 66.666%;
}

/* line 2242, ../sass/style.scss */
.portfolio-grid .element-item figcaption {
  background-color: rgba(38, 38, 43, 0.9);
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  text-align: center;
  top: 0;
  transition: opacity 0.3s ease-in-out 0s;
  width: 100%;
  z-index: 2;
}

/* line 2254, ../sass/style.scss */
.portfolio-grid .element-item:hover figcaption {
  opacity: 1;
  cursor: pointer;
}

/* line 2258, ../sass/style.scss */
.portfolio-grid .element-item figcaption a {
  color: white;
  float: right;
  font-size: 18px;
  position: relative;
  top: 50px;
  margin-right: 20px;
  transform: translate(0px, -50%);
}

/* line 2267, ../sass/style.scss */
.portfolio-grid .element-item figcaption h5 {
  bottom: 75px;
  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 2px;
  margin: 0;
  padding-left: 20px;
  position: absolute;
  text-align: left;
  text-transform: uppercase;
  width: 100%;
}

/* line 2281, ../sass/style.scss */
.portfolio-grid .element-item figcaption h5:after {
  background: #1c92df none repeat scroll 0 0;
  bottom: -10px;
  content: "";
  height: 2px;
  left: 20px;
  position: absolute;
  width: 50px;
}

/* line 2290, ../sass/style.scss */
.portfolio-grid .element-item figcaption p {
  text-align: left;
  padding-left: 20px;
  position: absolute;
  margin-top: 30px;
  bottom: 15px;
  font-size: 16px;
  color: #cccccc;
}

/*Portfolio Wide Same Image*/
/* line 2301, ../sass/style.scss */
.portfoliowide-img-same .element-item {
  width: 25%;
}

/* line 2304, ../sass/style.scss */
.portfoliowide-img-same2 .element-item {
  width: 32.1%;
  margin-bottom: 20px;
}

/* line 2308, ../sass/style.scss */
.portfoliowide-img-same3 .element-item {
  width: 50%;
}

/* ---- element-item-Grid 2 Columns  ---- */
/* line 2313, ../sass/style.scss */
#Portfolio-ColumnTwo .columnTwo {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0px !important;
}

/* line 2318, ../sass/style.scss */
#Portfolio-ColumnTwo .columnTwoItem,
#Portfolio-ColumnTwo .grid-sizer {
  width: 49%;
  margin-bottom: 20px;
}

/* line 2323, ../sass/style.scss */
#Portfolio-ColumnTwo .columnTwoItem {
  float: left;
  margin-bottom: 20px;
}

/* line 2327, ../sass/style.scss */
#Portfolio-ColumnTwo .columnTwoItem img {
  width: 100%;
  height: auto;
  display: block;
}

/* line 2332, ../sass/style.scss */
#Portfolio-ColumnTwo .gutter-sizer {
  width: 2%;
}

@media only screen and (max-width: 640px) {
  /* line 2336, ../sass/style.scss */
  #Portfolio-ColumnTwo .columnTwoItem,
  #Portfolio-ColumnTwo .grid-sizer {
    width: 49%;
  }
}
@media only screen and (max-width: 480px) {
  /* line 2342, ../sass/style.scss */
  #Portfolio-ColumnTwo .columnTwoItem,
  #Portfolio-ColumnTwo .grid-sizer {
    width: 100%;
  }
}
/* ----  Isptope Prtfolio Column Three ---- */
/* line 2349, ../sass/style.scss */
#Portfolio-ColumnThree .columnThree {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0px !important;
}

/* line 2354, ../sass/style.scss */
#Portfolio-ColumnThree .columnThreeItem,
#Portfolio-ColumnThree .grid-sizer {
  width: 32%;
  margin-bottom: 20px;
}

/* line 2359, ../sass/style.scss */
#Portfolio-ColumnThree .columnThreeItem {
  float: left;
  margin-bottom: 20px;
}

/* line 2363, ../sass/style.scss */
#Portfolio-ColumnThree .columnThreeItem img {
  width: 100%;
  height: auto;
  display: block;
}

/* line 2368, ../sass/style.scss */
#Portfolio-ColumnThree .gutter-sizer {
  width: 2%;
}

@media only screen and (max-width: 640px) {
  /* line 2372, ../sass/style.scss */
  #Portfolio-ColumnThree .columnThreeItem,
  #Portfolio-ColumnThree .grid-sizer {
    width: 49%;
  }
}
@media only screen and (max-width: 480px) {
  /* line 2378, ../sass/style.scss */
  #Portfolio-ColumnThree .columnThreeItem,
  #Portfolio-ColumnThree .grid-sizer {
    width: 100%;
  }
}
/* ----  Isptope Prtfolio Column Four ---- */
/* line 2385, ../sass/style.scss */
#Portfolio-ColumnFour .columnFour {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0px !important;
}

/* line 2390, ../sass/style.scss */
#Portfolio-ColumnFour .columnFourItem,
#Portfolio-ColumnFour .grid-sizer {
  width: 23.5%;
  margin-bottom: 1.5% px;
}

/* line 2395, ../sass/style.scss */
#Portfolio-ColumnFour .columnFourItem {
  float: left;
  margin-bottom: 1.5%;
}

/* line 2399, ../sass/style.scss */
#Portfolio-ColumnFour .columnFourItem img {
  width: 100%;
  height: auto;
  display: block;
}

/* line 2404, ../sass/style.scss */
#Portfolio-ColumnFour .gutter-sizer {
  width: 2%;
}

@media only screen and (max-width: 640px) {
  /* line 2408, ../sass/style.scss */
  #Portfolio-ColumnFour .columnFourItem,
  #Portfolio-ColumnFour .grid-sizer {
    width: 49%;
  }
}
@media only screen and (max-width: 480px) {
  /* line 2414, ../sass/style.scss */
  #Portfolio-ColumnFour .columnFourItem,
  #Portfolio-ColumnFour .grid-sizer {
    width: 100%;
  }
}
/*Portfolio Masonry Image*/
/* line 2421, ../sass/style.scss */
#columns-2 .element-item {
  width: 50%;
}

/* line 2424, ../sass/style.scss */
#columns-2 .element-item--width2 {
  width: 50%;
}

@media only screen and (max-width: 992px) {
  /* line 2428, ../sass/style.scss */
  .grid-sizer,
  .portfolio-grid figure {
    width: 20%;
  }

  /* line 2432, ../sass/style.scss */
  .portfolio-grid figure.element-item--width2 {
    width: 40%;
  }

  /* line 2435, ../sass/style.scss */
  #portfolio-full .grid-sizer,
  #portfolio-full.portfolio-grid figure {
    width: 25%;
  }

  /* line 2439, ../sass/style.scss */
  #portfolio-full figure.element-item--width2 {
    width: 50%;
  }

    /*	#portfolio-grid-page figure {
	  width: 50%;
  }
  #portfolio-grid-page figure.element-item--width2 { width: 50%; }*/
}
@media (max-width: 768px) {
  /* line 2448, ../sass/style.scss */
  .grid-sizer,
  .portfolio-grid figure {
    width: 50%;
  }

  /* line 2452, ../sass/style.scss */
  .portfolio-grid figure.element-item--width2 {
    width: 50%;
  }

  /* line 2455, ../sass/style.scss */
  #portfolio-full .grid-sizer,
  #portfolio-full.portfolio-grid figure {
    width: 50%;
  }

  /* line 2459, ../sass/style.scss */
  #portfolio-full figure.element-item--width2 {
    width: 50%;
  }

    /*	#portfolio-grid-page figure.element-item {
	  width: 50%;
  }
  #portfolio-grid-page figure.element-item--width2 { width: 50%; }*/
}
/*--------Team-----------*/
/* line 2469, ../sass/style.scss */
#team {
  text-align: center;
}

/* line 2472, ../sass/style.scss */
#team h3 {
  margin: 0;
}

/* line 2475, ../sass/style.scss */
#team h6 {
  color: #b9b9b9;
  margin-top: 20px;
  font-size: 18px;
  margin-bottom: 43px;
  font-weight: bold;
  text-transform: uppercase;
}

/* line 2483, ../sass/style.scss */
#team h6:after {
  content: "";
  background-color: #1c92df;
  height: 2px;
  position: absolute;
  width: 56px;
  left: 0;
  right: 0;
  margin: 0 auto;
  margin-top: 43px;
}

/* line 2494, ../sass/style.scss */
#team .template-border {
  margin-bottom: 51px;
  margin-top: 20px;
}

/* line 2498, ../sass/style.scss */
#team .margin-top {
  margin-top: 50px;
}

/* line 2501, ../sass/style.scss */
#team .secondary-paragraph {
  width: 80%;
  margin: 0 auto;
}

/* line 2505, ../sass/style.scss */
.grid {
  position: relative;
  clear: both;
  margin: 0 auto;
  padding: 1em 0 4em;
  max-width: 1000px;
  list-style: none;
  text-align: center;
}

/* Common style */
/* line 2516, ../sass/style.scss */
.grid figure {
  position: relative;
  overflow: hidden;
  margin: 10px 1% 50px 1%;
  min-width: 296px;
  max-width: 480px;
  max-height: 360px;
  width: 48%;
  height: auto;
  background: #3085a3;
  text-align: center;
  cursor: pointer;
}

/* line 2529, ../sass/style.scss */
.grid figure img {
  position: relative;
  display: block;
  min-height: 100%;
  max-width: 100%;
}

/* line 2535, ../sass/style.scss */
#team .border-offset:before {
  content: "";
  display: block;
  height: 50%;
  margin-left: 16px;
  margin-top: 62px;
  outline: 10px solid #1c92df;
  position: absolute;
  width: 276px;
}

/* line 2545, ../sass/style.scss */
.grid figure figcaption {
  padding: 2em;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.25em;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* line 2553, ../sass/style.scss */
.grid figure figcaption::before,
.grid figure figcaption::after {
  pointer-events: none;
}

/* line 2557, ../sass/style.scss */
.grid figure figcaption,
.grid figure figcaption > a {
  position: absolute;
  top: 60%;
  left: 0;
  width: 100%;
}

/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
/* line 2567, ../sass/style.scss */
.grid figure figcaption > a {
  z-index: 1000;
  text-indent: 200%;
  white-space: nowrap;
  font-size: 0;
  opacity: 0;
}

/* line 2574, ../sass/style.scss */
.grid figure h2,
.grid figure p {
  margin: 0;
}

/* line 2578, ../sass/style.scss */
.grid figure p {
  letter-spacing: 1px;
  font-size: 68.5%;
}

/* Individual effects */
/*---------------*/
/***** Julia *****/
/*---------------*/
/* line 2587, ../sass/style.scss */
figure.team-member {
  background: #19191c;
  margin: 0 auto;
}

/* line 2591, ../sass/style.scss */
figure.team-member img {
  max-width: none;
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* line 2598, ../sass/style.scss */
figure.team-member figcaption {
  text-align: center;
  bottom: 20px;
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  width: 100%;
}

/* line 2607, ../sass/style.scss */
figure.team-member p {
  display: inline-block;
  margin: 0 0 0 8px;
  color: #2f3238;
  text-transform: none;
  font-weight: 500;
  font-size: 75%;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(-360px, 0, 0);
  transform: translate3d(-360px, 0, 0);
}

/* line 2619, ../sass/style.scss */
figure.team-member p:first-child {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}

/* line 2623, ../sass/style.scss */
figure.team-member p:nth-of-type(2) {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

/* line 2627, ../sass/style.scss */
figure.team-member p:nth-of-type(3) {
  -webkit-transition-delay: 0.05s;
  transition-delay: 0.05s;
}

/* line 2631, ../sass/style.scss */
figure.team-member:hover p:first-child {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

/* line 2635, ../sass/style.scss */
figure.team-member:hover p:nth-of-type(2) {
  -webkit-transition-delay: 0.05s;
  transition-delay: 0.05s;
}

/* line 2639, ../sass/style.scss */
figure.team-member:hover p:nth-of-type(3) {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

/* line 2643, ../sass/style.scss */
figure.team-member:hover img {
  opacity: 0.2;
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}

/* line 2648, ../sass/style.scss */
figure.team-member:hover p {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* line 2653, ../sass/style.scss */
figure.team-member p .fa:hover {
  transition: all 0.25s cubic-bezier(0.955, 0.03, 0.515, 0.955) 0s;
}

/* line 2656, ../sass/style.scss */
figure.team-member p .fa-facebook {
  border: 2px solid #ffffff;
  border-radius: 60px;
  color: #fff;
  display: table-cell;
  font-size: 17px;
  height: 60px;
  text-align: center;
  vertical-align: middle;
  width: 60px;
}

/* line 2667, ../sass/style.scss */
figure.team-member p .fa-facebook:hover {
  color: #1c92df;
  background-color: #FFF;
}

/* line 2671, ../sass/style.scss */
figure.team-member p .fa-twitter {
  border: 2px solid #ffffff;
  border-radius: 60px;
  color: #fff;
  display: table-cell;
  font-size: 17px;
  height: 60px;
  text-align: center;
  vertical-align: middle;
  width: 60px;
}

/* line 2682, ../sass/style.scss */
figure.team-member p .fa-twitter:hover {
  color: #1c92df;
  background-color: #FFF;
}

/* line 2686, ../sass/style.scss */
figure.team-member p .fa-envelope {
  border: 2px solid #ffffff;
  border-radius: 60px;
  color: #fff;
  display: table-cell;
  font-size: 17px;
  height: 60px;
  text-align: center;
  vertical-align: middle;
  width: 60px;
}

/* line 2697, ../sass/style.scss */
figure.team-member p .fa-envelope:hover {
  color: #1c92df;
  background-color: #FFF;
}

/*--------Counter Stats---------*/
/* line 2703, ../sass/style.scss */
.counter {
  font-size: 48px;
  color: #FFF;
  font-weight: bold;
  margin: 25px 0;
}

/* line 2709, ../sass/style.scss */
#number-stats {
  text-align: center;
}

/* line 2712, ../sass/style.scss */
#number-stats h3 {
  color: #FFF;
}

/* line 2715, ../sass/style.scss */
#number-stats {
  background-image: url(../img/placeholder/bg-img.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  text-align: center;
  background-position: center center;
}

/*--------Blog-----------*/
/* line 2726, ../sass/style.scss */
#blog .template-border {
  margin-bottom: 0;
}

/* line 2729, ../sass/style.scss */
#blog .blog-post-box-container {
  margin-bottom: 0;
}

/* line 2732, ../sass/style.scss */
.blog-box-img:before {
  content: "";
  height: 91%;
  margin-left: -8px;
  margin-top: 37px;
  outline: 10px solid #1c92df;
  outline-offset: 3px;
  position: absolute;
  width: 222px;
  z-index: -1;
}

/* line 2743, ../sass/style.scss */
.button-arrow.arrow-left img {
  font-size: 24px;
  transition-duration: 0.4s;
  margin-right: 15px !important;
}

/* line 2748, ../sass/style.scss */
.arrow-left:hover img {
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
}

/* line 2752, ../sass/style.scss */
#blog .blog-post-box-container h3 {
  margin-top: 0;
  line-height: 27px;
  letter-spacing: 0;
}

/* line 2757, ../sass/style.scss */
.blog-post-box-container .button-arrow {
  margin-top: 20px;
}

/* line 2760, ../sass/style.scss */
.padding-bottom-remove {
  padding-bottom: 0;
}

/* line 2763, ../sass/style.scss */
#blog .blog-post-box-container h6 b {
  font-size: 18px;
}

/* line 2766, ../sass/style.scss */
#blog .blog-post-box-container h6 {
  font-size: 14px;
  background-image: url(../img/border.jpg);
  background-repeat: no-repeat;
  background-position: bottom left;
  padding-bottom: 20px;
  line-height: 27px;
  color: #b9b9b9;
  font-weight: bold;
  text-transform: uppercase;
}

/* line 2777, ../sass/style.scss */
#blog .blog-post-box-container p {
  text-align: left;
  padding-right: 31px;
  margin-top: 30px;
}

/* line 2782, ../sass/style.scss */
.padding-remove {
  padding: 0;
}

/*--------Blog Columns 2-----------*/
/* line 2787, ../sass/style.scss */
#blog-page-v2.custom-columns-2 .row:last-child .template-border {
  margin-bottom: 70px;
}

/* line 2790, ../sass/style.scss */
#blog-page-v2.custom-columns-2 .blog-post-box-container {
  padding: 0 15px;
}

/*--------Blog Columns 3-----------*/
/* line 2795, ../sass/style.scss */
#blog-page-v2.custom-columns-3 .row:last-child .template-border {
  margin-bottom: 70px;
}

/* line 2798, ../sass/style.scss */
#blog-page-v2.custom-columns-3 .blog-post-box-container {
  padding: 0 15px;
}

/* line 2801, ../sass/style.scss */
.margin-bottom-remove {
  margin-bottom: 0 !important;
}

/*--------Footer-----------*/
/* line 2806, ../sass/style.scss */
footer {
  background-color: #1b75bc;
  text-align: center;
  padding-bottom: 0;
  padding: 120px 0 0 0;
  margin-top: -1px;
}

/* line 2813, ../sass/style.scss */
footer #footer .fa-map-marker {
  border: solid 3px #1c92df;
  height: 109px;
  width: 109px;
  font-size: 46px;
  color: white;
  line-height: 105px;
  text-align: center;
}

/* line 2822, ../sass/style.scss */
footer #footer .fa-mobile {
  border: solid 3px #1c92df;
  height: 109px;
  width: 109px;
  font-size: 46px;
  color: white;
  line-height: 105px;
  text-align: center;
}

/* line 2831, ../sass/style.scss */
footer #footer .fa-envelope {
  border: solid 3px #1c92df;
  height: 109px;
  width: 109px;
  font-size: 40px;
  color: white;
  line-height: 105px;
  text-align: center;
}

/* line 2840, ../sass/style.scss */
footer #footer h3 {
  margin: 35px 0;
  color: #FFF;
}

/* line 2844, ../sass/style.scss */
footer #footer p {
  color: #898680;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  margin: 0 auto 40px;
  width: 63%;
}

/* line 2851, ../sass/style.scss */
footer #footer p a {
  font-size: 18px;
  color: #898680;
  text-decoration: none;
  font-family: "Lato", sans-serif;
}
@media (max-width: 440px) {
  /* line 2851, ../sass/style.scss */
  footer #footer p a {
    font-size: 1rem;
  }
}

/* line 2860, ../sass/style.scss */
footer #footer p a:hover {
  color: #1c92df;
}

/* line 2863, ../sass/style.scss */
#footer .subcribe {
  background-color: transparent;
  display: inline-block;
  width: 50%;
}

/* line 2868, ../sass/style.scss */
#footer input:nth-child(1) {
  background-color: transparent;
  border: medium none;
  color: #727272;
  margin-top: 30px;
  padding-bottom: 10px;
  padding-right: 15px;
  text-align: left;
  width: 85%;
  border-bottom: solid 1px #282725;
}

/* line 2879, ../sass/style.scss */
#footer .subscribe_btn {
  background-color: transparent;
  background-image: url("../img/field-arrow.png");
  background-position: right center;
  background-repeat: no-repeat;
  border: medium none;
  width: 42px;
  margin-left: -5px;
  border-bottom: solid 1px #282725;
  padding-bottom: 10px;
}

/* line 2890, ../sass/style.scss */
footer #footer ul {
  padding-left: 0;
  margin-top: 80px;
}

/* line 2894, ../sass/style.scss */
footer #footer ul li {
  display: inline-block;
  margin: 0 25px;
}

/* line 2898, ../sass/style.scss */
footer #footer ul li a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  color: #555450;
  padding-bottom: 15px;
  font-weight: bold;
  z-index: 99;
  position: relative;
}

/* line 2908, ../sass/style.scss */
footer #footer ul li a:hover {
  color: #FFF;
}

/* line 2911, ../sass/style.scss */
footer #footer ul li a:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  right: 50%;
  bottom: 0;
  background: #1c92df;
  height: 1px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

/* line 2927, ../sass/style.scss */
footer #footer ul li a:hover:before,
footer #footer ul li a:focus:before,
footer #footer ul li a:active:before {
  left: 0;
  right: 0;
}

/* line 2933, ../sass/style.scss */
.footer-bottom {
  border-top: solid 1px #282725;
  margin-top: 60px;
}

/* line 2937, ../sass/style.scss */
#footer .footer-bottom p {
  color: #454441;
  font-size: 16px;
  font-family: "Lato", sans-serif;
  padding: 40px 0;
  margin: 0 auto;
  width: 100%;
}

/*------------------Home Version 2-----------------------*/
/*--------Tab Section-----------*/
/* line 2948, ../sass/style.scss */
#tab-section {
  padding-top: 0;
}

/* line 2951, ../sass/style.scss */
#tab-section i {
  display: block;
  font-size: 40px;
  margin-bottom: 10px;
}

/* line 2956, ../sass/style.scss */
#tab-section nav {
  background-color: #1c92df;
  margin-top: -1px;
  position: relative;
}

/* line 2961, ../sass/style.scss */
#tab-section ul {
  border-bottom: none;
}

/* line 2964, ../sass/style.scss */
#tab-section ul li {
  margin-bottom: 0;
}

/* line 2967, ../sass/style.scss */
#tab-section ul li a {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #21201e;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-right: 0;
  border-radius: 0;
  width: 190px;
  padding: 55px 0;
  border: none;
  border-right: solid 1px rgba(255, 255, 255, 0.4);
}

/* line 2981, ../sass/style.scss */
#tab-section ul li a.last {
  border-right: none;
}

/* line 2984, ../sass/style.scss */
#tab-section ul li a:hover {
  background-color: #1b75bc;
  color: #FFF;
}

/* line 2988, ../sass/style.scss */
#tab-section ul li.active a {
  background-color: #1b75bc;
  color: #FFF;
}

/* line 2992, ../sass/style.scss */
#tab-section ul li.active a::after {
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #fff;
  content: "";
  height: 0;
  left: 50%;
  margin-left: -15px;
  position: absolute;
  top: 92%;
  transform: rotate(180deg);
  width: 0;
}

/* line 3005, ../sass/style.scss */
#development {
  background-image: url(../img/tab-bg-img-1.png);
  background-repeat: no-repeat;
  background-position: left top;
  padding-top: 120px;
  padding-bottom: 120px;
}

/* line 3012, ../sass/style.scss */
#branding {
  background-image: url(../img/tab-bg-img-2.png);
  background-repeat: no-repeat;
  background-position: left top;
  padding-top: 120px;
  padding-bottom: 120px;
}

/* line 3019, ../sass/style.scss */
#mobileapps {
  background-image: url(../img/tab-bg-img-3.png);
  background-repeat: no-repeat;
  background-position: left top;
  padding-top: 120px;
  padding-bottom: 120px;
}

/* line 3026, ../sass/style.scss */
#SEO {
  background-image: url(../img/tab-bg-img-4.png);
  background-repeat: no-repeat;
  background-position: left top;
  padding-top: 120px;
  padding-bottom: 120px;
}

/* line 3033, ../sass/style.scss */
#wordpress {
  background-image: url(../img/tab-bg-img-5.png);
  background-repeat: no-repeat;
  background-position: left top;
  padding-top: 120px;
  padding-bottom: 120px;
}

/* line 3040, ../sass/style.scss */
#writing {
  background-image: url(../img/tab-bg-img-6.png);
  background-repeat: no-repeat;
  background-position: left top;
  padding-top: 120px;
  padding-bottom: 120px;
}

/* line 3047, ../sass/style.scss */
#development p {
  font-size: 16px;
  text-align: left;
  color: #898680;
  line-height: 30px;
  font-weight: normal;
}

/* line 3054, ../sass/style.scss */
#branding p {
  font-size: 16px;
  text-align: left;
  color: #898680;
  line-height: 30px;
  font-weight: normal;
}

/* line 3061, ../sass/style.scss */
#mobileapps p {
  font-size: 16px;
  text-align: left;
  color: #898680;
  line-height: 30px;
  font-weight: normal;
}

/* line 3068, ../sass/style.scss */
#SEO p {
  font-size: 16px;
  text-align: left;
  color: #898680;
  line-height: 30px;
  font-weight: normal;
}

/* line 3075, ../sass/style.scss */
#wordpress p {
  font-size: 16px;
  text-align: left;
  color: #898680;
  line-height: 30px;
  font-weight: normal;
}

/* line 3082, ../sass/style.scss */
#writing p {
  font-size: 16px;
  text-align: left;
  color: #898680;
  line-height: 30px;
  font-weight: normal;
}

/* line 3089, ../sass/style.scss */
.left-content-container {
  text-align: right;
}

/* line 3092, ../sass/style.scss */
.left-content-container p {
  text-align: right !important;
}

/* line 3095, ../sass/style.scss */
.left-content-container h4 {
  text-transform: uppercase;
  color: #21201e;
  text-align: right;
  font-size: 42px;
  font-weight: bold;
  margin-left: 45px;
}

/* line 3103, ../sass/style.scss */
.left-content-container .counter {
  color: #1c92df;
  font-family: "Lato", sans-serif;
  font-size: 60px;
  margin: 25px 0 0;
  font-weight: lighter;
}

/* line 3110, ../sass/style.scss */
.left-content-container h5 {
  margin: 0;
  text-align: right;
  width: 100%;
  text-transform: uppercase;
}

/* line 3116, ../sass/style.scss */
.left-content-container .box-counter {
  float: left;
  margin: 0 0 0 60px;
}

/*--------------flickity-------------*/
/* line 3122, ../sass/style.scss */
#home-v2-slider {
  background-color: #f4f4f4;
  background-image: url(../img/setting-icon.png);
  background-position: center top;
  background-repeat: no-repeat;
  padding-top: 190px;
}

/* line 3129, ../sass/style.scss */
.flickity-enabled {
  padding: 0px 0 50px;
}

/*.flickity-enabled.is-draggable .flickity-viewport {
  padding: 60px 0px;
}*/
/* line 3136, ../sass/style.scss */
.carousel-cell {
  width: 50%;
  height: auto;
  margin-right: 130px;
  text-align: center;
  opacity: 0.5;
}

/* line 3143, ../sass/style.scss */
.carousel-cell.is-selected {
  opacity: 1;
}

/* line 3146, ../sass/style.scss */
.carousel-cell img {
  text-align: center;
  display: inline-block;
  width: 100%;
}

/* line 3151, ../sass/style.scss */
.carousel-cell .share-link {
  border: solid 3px #21201e;
}

/* line 3154, ../sass/style.scss */
.flickity-prev-next-button,
.flickity-prev-next-button {
  background-color: transparent;
}

/* line 3158, ../sass/style.scss */
.carousel-cell figcaption {
  background-color: rgba(253, 181, 17, 0.9);
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  text-align: center;
  top: 0;
  transition: opacity 0.3s ease-in-out 0s;
  width: 100%;
  z-index: 2;
}

/* line 3170, ../sass/style.scss */
.carousel-cell:hover figcaption {
  opacity: 1;
}

/* line 3173, ../sass/style.scss */
.carousel-cell figcaption a {
  color: white;
  float: right;
  font-size: 18px;
  position: relative;
  top: 85%;
  margin-right: 40px;
  transform: translate(0px, -50%);
}

/* line 3182, ../sass/style.scss */
.carousel-cell figcaption h5 {
  top: 40px;
  color: #21201e;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 2px;
  margin: 0;
  padding-left: 40px;
  position: absolute;
  text-align: left;
  text-transform: uppercase;
  width: 100%;
}

/* line 3196, ../sass/style.scss */
.carousel-cell figcaption h5:after {
  background: #21201e none repeat scroll 0 0;
  top: 40px;
  content: "";
  height: 2px;
  left: 40px;
  position: absolute;
  width: 50px;
}

/* line 3205, ../sass/style.scss */
.carousel-cell figcaption p {
  text-align: left;
  padding-left: 40px;
  position: absolute;
  margin-top: 30px;
  top: 70px;
  font-size: 16px;
  color: #21201e;
}

/*--------------Testimonials V2-------------*/
/* line 3216, ../sass/style.scss */
#testimonials-v2 {
  background-image: url(../img/testimonials-bg-icon.png);
  background-repeat: no-repeat;
  padding-top: 190px;
  background-position: center top;
}

/* line 3222, ../sass/style.scss */
#testimonials-v2 .border-offset:before {
  content: "";
  display: block;
  height: 60%;
  margin-left: -10px;
  margin-top: 22px;
  outline: 6px solid #1c92df;
  position: absolute;
  width: 60%;
}

/* line 3232, ../sass/style.scss */
#testimonials-v2 .template-border {
  margin-left: auto;
  margin-right: auto;
  display: table;
  margin-bottom: 65px;
}

/* line 3238, ../sass/style.scss */
#testimonials-v2 span {
  font-size: 18px;
  font-weight: bold;
  color: #1c92df;
  display: table;
  clear: both;
  margin: 0 auto;
  text-transform: uppercase;
}

/* line 3247, ../sass/style.scss */
#testimonials-v2 h6 {
  font-size: 18px;
  font-weight: bold;
  color: #21201e;
  text-transform: uppercase;
  text-align: center;
}

/* line 3254, ../sass/style.scss */
#testimonials-v2 .border-offset img {
  position: relative;
}

/* line 3257, ../sass/style.scss */
#testimonials-v2 p {
  font-size: 24px;
  margin-left: 40px;
  letter-spacing: 2px;
  line-height: 40px;
  font-weight: lighter;
  margin-top: 10px;
}

/* line 3265, ../sass/style.scss */
#testimonials-v2 .item {
  margin-left: 50px;
}

/* line 3268, ../sass/style.scss */
#testimonials-v2 .fa-quote-left {
  color: #1c92df;
  font-size: 30px;
}

/* line 3272, ../sass/style.scss */
#testimonials-v2 .carousel-indicators li {
  border: solid 2px #cacaca;
  background-color: transparent;
  width: 12px;
  height: 12px;
  margin: 4px;
}

/* line 3279, ../sass/style.scss */
#testimonials-v2 .carousel-indicators .active {
  background-color: #1c92df;
  border: solid 2px #1c92df;
  margin: 4px;
  width: 12px;
  height: 12px;
}

/* line 3286, ../sass/style.scss */
#testimonials-v2 .carousel-indicators {
  margin-left: 0;
  left: 80px;
}

/* line 3290, ../sass/style.scss */
#number-stats2 {
  text-align: center;
}

/* line 3293, ../sass/style.scss */
#number-stats2 h2 {
  color: #FFF;
  margin-bottom: 80px;
}

/* line 3297, ../sass/style.scss */
#number-stats2 h6 {
  color: #FFF;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 1px;
}

/* line 3303, ../sass/style.scss */
#number-stats2 {
  background-image: url(../img/placeholder/number-stats2-bg.jpg);
  background-repeat: no-repeat;
  padding-top: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  text-align: center;
}

/* line 3313, ../sass/style.scss */
.bg-icon-number {
  background-image: url(../img/facts-bg-icon.png);
  background-repeat: no-repeat;
  padding-top: 190px;
  background-position: center top;
}

/* line 3319, ../sass/style.scss */
.bg-icon-team {
  background-image: url(../img/team-bg-icon.png);
  background-repeat: no-repeat;
  padding-top: 190px;
  background-position: center top;
}

/* line 3325, ../sass/style.scss */
.padding-top-remove {
  padding-top: 0;
}

/* line 3328, ../sass/style.scss */
#readytostart h2 {
  text-transform: uppercase;
  font-size: 42px;
  color: #21201e;
  margin: 0;
  font-weight: bold;
}
@media (max-width: 440px) {
  /* line 3328, ../sass/style.scss */
  #readytostart h2 {
    font-size: 3.2rem;
  }
}

/* line 3338, ../sass/style.scss */
#readytostart {
  background-color: #1c92df;
  text-align: center;
}

/* line 3343, ../sass/style.scss */
#readytostart .button-arrow {
  border: 2px solid #FFF;
}

/* line 3346, ../sass/style.scss */
#readytostart p {
  color: #21201e;
  margin-top: 25px;
}

/* line 3350, ../sass/style.scss */
.border-radius {
  border-radius: 0;
}

/*--------------About Page CSS------------------*/
/* line 3355, ../sass/style.scss */
#discover {
  text-align: left;
}

/* line 3358, ../sass/style.scss */
#discover .right-paragraph {
  font-size: 24px;
  line-height: 42px;
  font-weight: lighter;
  margin-top: 142px;
}

/* line 3364, ../sass/style.scss */
#discover h2 {
  text-align: left;
  margin-bottom: 50px;
}

/* line 3368, ../sass/style.scss */
#discover h2:after {
  left: 15px;
  margin-left: 0;
  margin-right: 0;
}

/* line 3373, ../sass/style.scss */
#discover h4 {
  text-align: left !important;
}

/* line 3376, ../sass/style.scss */
#philosophy {
  background-color: #f4f4f4;
  position: relative;
}

/* line 3380, ../sass/style.scss */
#philosophy h2 {
  margin-bottom: 50px;
}

/* line 3383, ../sass/style.scss */
#philosophy h2:after {
  left: 15px;
  margin-left: 0;
  margin-right: 0;
}

/* line 3388, ../sass/style.scss */
#philosophy .philosophy-content-box h2 {
  text-align: left;
}

/* line 3391, ../sass/style.scss */
#philosophy:after {
  background-attachment: scroll;
  background-clip: border-box;
  background-image: url(../img/placeholder/about-page-img.jpg);
  background-origin: padding-box;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover !important;
  content: "";
  height: 100%;
  right: 0;
  position: absolute;
  top: 0;
  width: 50%;
}

/* line 3406, ../sass/style.scss */
#philosophy .philosophy-content-box h4 {
  text-align: left;
}

/* line 3409, ../sass/style.scss */
#philosophy {
  padding: 0;
}

/* line 3412, ../sass/style.scss */
.philosophy-content-box {
  padding-top: 100px;
  padding-bottom: 100px;
}

/* line 3416, ../sass/style.scss */
.philosophy-img img {
  height: 715px;
  width: 100%;
}

/* line 3420, ../sass/style.scss */
.philosophy-content-box p {
  margin-right: 60px;
}

/* line 3423, ../sass/style.scss */
.border-offset-video iframe {
  z-index: 99;
  margin-bottom: -270px;
  position: relative;
}

/* line 3428, ../sass/style.scss */
iframe {
  width: 100%;
  border: none;
}

/* line 3432, ../sass/style.scss */
.border-offset-video:before {
  content: "";
  display: block;
  height: 47.5%;
  margin-left: -15px;
  margin-top: 40px;
  outline: 10px solid #1c92df;
  position: absolute;
  width: 69%;
  z-index: 99;
}

/* line 3443, ../sass/style.scss */
#choose-section {
  background-color: #f4f4f4;
}

/* line 3446, ../sass/style.scss */
#choose-section ul {
  padding-left: 0;
}

/* line 3449, ../sass/style.scss */
#choose-section ul li {
  list-style: none;
  margin: 0 0 15px;
}

/* line 3453, ../sass/style.scss */
#choose-section ul li a {
  text-decoration: none;
  color: #b9b9b9;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2px;
}

/* line 3461, ../sass/style.scss */
#choose-section ul li.active a {
  background-image: url(../img/tab-arrow.png);
  background-position: right center;
  display: block;
  color: #21201e;
  background-repeat: no-repeat;
}

/* line 3468, ../sass/style.scss */
#choose-section h2 {
  margin-bottom: 80px;
}

/* line 3471, ../sass/style.scss */
#choose-section p {
  width: 85%;
}

/* line 3474, ../sass/style.scss */
#choose-section.bg-color {
  background-color: transparent;
}

/* line 3477, ../sass/style.scss */
.padding-top {
  padding-top: 270px;
  margin-top: -355px;
}

/* line 3481, ../sass/style.scss */
#identity {
  background-color: #f4f4f4;
  position: relative;
}

/* line 3485, ../sass/style.scss */
.identity-fullimg img {
  width: 100%;
  height: 100%;
}

/* line 3489, ../sass/style.scss */
.identity-fullimg {
  width: 50%;
  float: left;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

/* line 3497, ../sass/style.scss */
#identity h2::after {
  left: 85px;
  margin-left: 0;
  margin-right: 0;
}

/* line 3502, ../sass/style.scss */
#identity .text-left {
  background-position: left bottom;
  text-align: left;
}

/* line 3506, ../sass/style.scss */
#identity h2 {
  margin-bottom: 50px;
}

/* line 3509, ../sass/style.scss */
#identity {
  position: relative;
  padding: 0;
}

/* line 3513, ../sass/style.scss */
#identity .identity-content-box {
  padding: 100px 70px;
}

/* line 3516, ../sass/style.scss */
.identity-content-box .button-arrow {
  margin-top: 20px;
}

/* line 3519, ../sass/style.scss */
#identity .rate-box {
  background-color: #FFF;
  border: solid 10px #1c92df;
  width: 181px;
  position: absolute;
  left: -130px;
  height: 210px;
  padding: 48px 0;
}

/* line 3528, ../sass/style.scss */
#identity .rate-box span {
  font-size: 15px;
  color: #898680;
  margin-left: 18px;
  text-align: center;
}

/* line 3534, ../sass/style.scss */
#identity .rate-box h6 {
  font-size: 60px;
  text-align: center;
  color: #21201e;
  letter-spacing: 2px;
  font-weight: lighter;
  font-family: "Lato", sans-serif;
}

/* line 3542, ../sass/style.scss */
#identity .rate-box h6 sup {
  font-size: 35px;
}

/* line 3545, ../sass/style.scss */
#identity h3 {
  margin-top: 40px;
}

/* line 3548, ../sass/style.scss */
.identity-img {
  width: 100%;
  height: 905px;
}

/* line 3552, ../sass/style.scss */
#featuresslider .carousel-indicators .active {
  background-color: #1c92df;
  width: 12px;
  height: 12px;
}

/* line 3557, ../sass/style.scss */
#featuresslider .carousel-indicators li {
  border: solid 2px #1c92df;
  display: list-item;
  margin: 12px 0;
  width: 12px;
  height: 12px;
}

/* line 3564, ../sass/style.scss */
#featuresslider .carousel-indicators {
  width: 5%;
  right: 0;
  top: 50%;
  margin-left: 0;
  left: auto;
}

/* line 3571, ../sass/style.scss */
#identity ul {
  padding-left: 0;
  margin-top: 40px;
}

/* line 3575, ../sass/style.scss */
#identity ul li:nth-child(6) {
  border-bottom: none;
}

/* line 3578, ../sass/style.scss */
#identity ul li {
  border-bottom: 1px solid #e0dfdd;
  color: #21201e;
  font-size: 16px;
  list-style: none;
  width: 70%;
  font-family: "Lato", sans-serif;
  padding: 18px 0 18px 30px;
  background-image: url(../img/circle.png);
  background-repeat: no-repeat;
  background-position: left center;
}

/* line 3590, ../sass/style.scss */
.portfolio-banner {
  background-image: url(../img/placeholder/portfolio-detail-banner.jpg);
  height: 540px;
  background-repeat: no-repeat;
  width: 100%;
  background-position: center center;
  background-size: cover;
  display: table;
}

/* line 3599, ../sass/style.scss */
#project-detail-slider {
  padding-top: 0;
}

/* line 3602, ../sass/style.scss */
#project-detail ul {
  padding-left: 0px;
}

/* line 3605, ../sass/style.scss */
#project-detail li {
  font-size: 16px;
  font-family: "Lato", sans-serif;
  color: #898680;
  margin: 15px 0;
  background-image: url(../img/circle.png);
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 30px;
  display: block;
}

/* line 3616, ../sass/style.scss */
#projectdetailslider .template-border {
  display: block;
}

/* line 3619, ../sass/style.scss */
#project-detail h2 {
  text-align: left;
}

/* line 3622, ../sass/style.scss */
#project-detail h2:after {
  left: 15px;
  margin-left: 0;
  margin-right: 0;
}

/* line 3627, ../sass/style.scss */
#project-detail span {
  color: #21201e;
  font-size: 18px;
  display: block;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 25px;
}

/* line 3636, ../sass/style.scss */
#project-detail h4 {
  text-align: left;
}

/* line 3639, ../sass/style.scss */
#project-detail .button-arrow {
  margin-top: 0;
}

/* line 3642, ../sass/style.scss */
#project-detail p {
  text-align: left;
  margin: 50px 0;
}

/* line 3646, ../sass/style.scss */
#project-detail-slider figure {
  margin: 0 auto;
}

/* line 3649, ../sass/style.scss */
#project-detail-slider .carousel-indicators .active {
  background-color: #1c92df;
  width: 12px;
  height: 12px;
  border: none;
}

/* line 3655, ../sass/style.scss */
#project-detail-slider .carousel-indicators li {
  border: solid 2px #21201e;
  margin: 12px 8px;
  width: 12px;
  height: 12px;
}

/* line 3661, ../sass/style.scss */
#project-detail-slider .carousel-indicators {
  bottom: -25px;
}

/* line 3664, ../sass/style.scss */
#project-detail-slider .carousel-control.left {
  background: none;
  left: 7%;
}

/* line 3668, ../sass/style.scss */
#project-detail-slider .carousel-control.right {
  background: none;
  right: 7%;
}

/* line 3672, ../sass/style.scss */
#project-detail-slider .carousel-control {
  top: 45%;
  z-index: 99;
  opacity: 1;
}

/* line 3677, ../sass/style.scss */
#project-colors {
  background-color: #f4f4f4;
  margin-top: -350px;
  padding-top: 350px;
}

/* line 3682, ../sass/style.scss */
#project-colors .color-box-1 {
  background-color: #FFF;
  border: 6px solid #f4f4f4;
  border-radius: 50%;
  box-shadow: 0 0 0 3px #FFF;
  height: 133px;
  margin: 70px auto 0;
  text-align: center;
  width: 133px;
}

/* line 3692, ../sass/style.scss */
#project-colors .color-box-2 {
  width: 133px;
  height: 133px;
  border-radius: 50%;
  background-color: #898680;
  text-align: center;
  margin: 70px auto 0;
  background-color: #898680;
  border: 6px solid #fff;
  box-shadow: 0 0 0 3px #898680;
}

/* line 3703, ../sass/style.scss */
#project-colors .color-box-3 {
  width: 133px;
  height: 133px;
  border-radius: 50%;
  background-color: #1c92df;
  text-align: center;
  margin: 70px auto 0;
  background-color: #1c92df;
  border: 6px solid #fff;
  box-shadow: 0 0 0 3px #1c92df;
}

/* line 3714, ../sass/style.scss */
#project-colors .color-box-4 {
  width: 133px;
  height: 133px;
  border-radius: 50%;
  background-color: #1b75bc;
  text-align: center;
  margin: 70px auto 0;
  background-color: #1b75bc;
  border: 6px solid #fff;
  box-shadow: 0 0 0 3px #21201e;
}

/* line 3725, ../sass/style.scss */
#project-colors h3 {
  background-color: #fff;
  border: 3px solid #1c92df;
  display: table;
  font-weight: bolder;
  margin: 20px auto 0;
  padding: 12px 35px;
  text-align: center;
}

/* line 3734, ../sass/style.scss */
#pre-next button {
  width: 100%;
  color: #21201e;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 18px;
  border: solid 1px #e5e5e5;
  letter-spacing: 1.5px;
  padding: 25px;
  background-color: transparent;
}

/* line 3745, ../sass/style.scss */
#pre-next button:hover {
  background-color: #1c92df;
  border: solid 1px #1c92df;
}

/* line 3749, ../sass/style.scss */
#pre-next .pre-button:hover {
  border-right: none;
}

/* line 3752, ../sass/style.scss */
#pre-next button:hover span {
  color: #FFF;
}

/* line 3755, ../sass/style.scss */
#pre-next .pre-button {
  text-align: right;
  border-right: none;
}

/* line 3759, ../sass/style.scss */
#pre-next .next-button {
  text-align: left;
}

/* line 3762, ../sass/style.scss */
#pre-next button span {
  color: #1c92df;
  text-transform: uppercase;
  font-weight: normal;
  font-size: 14px;
}

/* line 3768, ../sass/style.scss */
.blog-banner {
  background-image: url(../img/placeholder/blog-v1-banner.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 540px;
  width: 100%;
  display: table;
}

/* line 3777, ../sass/style.scss */
.blog-page-img-border img {
  position: relative;
  z-index: 99;
  margin-left: 20px;
}

/* line 3782, ../sass/style.scss */
#blog-page .blog-page-img-border:after {
  content: "";
  display: block;
  height: 91%;
  margin-left: 9px;
  outline: 10px solid #1c92df;
  outline-offset: 7px;
  position: absolute;
  top: 50px;
  width: 83%;
}

/* line 3793, ../sass/style.scss */
#blog h5 {
  margin-bottom: 80px;
}

/* line 3796, ../sass/style.scss */
#blog-page h3 {
  text-transform: uppercase;
  color: #21201e;
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 30px;
}

/* line 3805, ../sass/style.scss */
#blog-page .right-content-blog h6:after {
  content: "";
  background-color: #1c92df;
  height: 2px;
  position: absolute;
  width: 56px;
  right: 15px;
  margin-top: 40px;
}

/* line 3814, ../sass/style.scss */
#blog-page .left-content-blog h6:after {
  content: "";
  background-color: #1c92df;
  height: 2px;
  position: absolute;
  width: 56px;
  left: 15px;
  margin-top: 40px;
}

/* line 3823, ../sass/style.scss */
#blog-page p {
  margin-top: 40px;
}

/* line 3826, ../sass/style.scss */
#blog-page .left-content-blog h6 {
  color: #b9b9b9;
  font-size: 14px;
  font-weight: bold;
}

/* line 3831, ../sass/style.scss */
#blog-page .right-content-blog h6 {
  color: #b9b9b9;
  font-size: 14px;
  font-weight: bold;
}

/* line 3836, ../sass/style.scss */
#blog-page .right-content-blog .button-arrow img:nth-child(2) {
  display: none;
}

/* line 3839, ../sass/style.scss */
#blog-page h6 b {
  font-size: 18px;
}

/* line 3842, ../sass/style.scss */
.blog-img-push-right {
  bottom: 0;
  float: right;
  right: 55px;
  top: 0;
}

/* line 3848, ../sass/style.scss */
#blog-page .left-content-blog {
  padding-top: 30px;
  padding-bottom: 30px;
}

/* line 3852, ../sass/style.scss */
#blog-page .right-content-blog {
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: right;
}

/* line 3857, ../sass/style.scss */
.margin-top {
  margin-top: 90px;
}

/* line 3860, ../sass/style.scss */
.border-none {
  border: none !important;
}

/* line 3863, ../sass/style.scss */
.border-none:hover {
  background-color: unset;
  color: #21201e;
}

/* line 3867, ../sass/style.scss */
#blog-page .right-content-blog .button-arrow {
  text-align: right;
}

/* line 3870, ../sass/style.scss */
#blog-page-v2 .blog-page-img-border:after {
  content: "";
  display: block;
  height: 87%;
  margin-left: 15px;
  outline: 10px solid #1c92df;
  outline-offset: 7px;
  position: absolute;
  top: 50px;
  width: 74%;
}

/* line 3881, ../sass/style.scss */
#blog-page-v2 .button-arrow {
  margin-top: 20px;
}

/* line 3884, ../sass/style.scss */
#blog-page-v2 h6:after {
  content: "";
  background-color: #1c92df;
  height: 2px;
  position: absolute;
  width: 56px;
  left: 15px;
  margin-top: 40px;
}

/* line 3893, ../sass/style.scss */
.blog-post-box-container {
  padding: 0px;
  margin-bottom: 75px;
}

/* line 3897, ../sass/style.scss */
#blog-page-v2 .row:last-child .template-border {
  margin-bottom: 0px;
}

/* line 3900, ../sass/style.scss */
#blog-page-v2 .row:last-child .blog-post-box-container {
  margin-bottom: 0px;
}

/* line 3903, ../sass/style.scss */
#blog-page-v2 .row:last-child .blog-post-box-container:last-child {
  margin-bottom: 0px;
}

/* line 3906, ../sass/style.scss */
#blog-page-v2 h6 b {
  font-size: 18px;
}

/* line 3909, ../sass/style.scss */
#blog-page-v2 h6 {
  color: #b9b9b9;
  font-size: 14px;
  font-weight: bold;
}

/* line 3914, ../sass/style.scss */
.margin-remove {
  margin-bottom: 0 !important;
}

/* line 3917, ../sass/style.scss */
#blog-page-v2 h3 {
  letter-spacing: 0;
  line-height: 30px;
  margin: 0;
}

/* line 3922, ../sass/style.scss */
#blog-page-v2 span {
  color: #b9b9b9;
  font-weight: bold;
  font-size: 14px;
  margin: 10px 0 20px;
  display: block;
}

/* line 3929, ../sass/style.scss */
#blog-page-v2 span:after {
  content: "";
  background-color: #1c92df;
  height: 2px;
  position: absolute;
  width: 56px;
  left: 15px;
  margin-top: 40px;
}

/* line 3938, ../sass/style.scss */
#blog-page-v2 span b {
  font-size: 18px;
}

/* line 3941, ../sass/style.scss */
#blog-page-v2 p {
  margin-top: 50px;
}

/* line 3944, ../sass/style.scss */
#contact-section h2 {
  text-align: left;
}

/* line 3947, ../sass/style.scss */
#contact-section h2:after {
  left: 15px;
  margin-left: 0;
  margin-right: 0;
}

/* line 3952, ../sass/style.scss */
#contact-section h3 {
  text-align: left;
}

/* line 3955, ../sass/style.scss */
#map {
  height: 700px;
  width: 100%;
}

/* line 3959, ../sass/style.scss */
.blog-single-banner {
  background-image: url(../img/placeholder/blog-single-banner.jpg);
  height: 540px;
  background-repeat: no-repeat;
  width: 100%;
  display: table;
  background-position: center center;
  background-size: cover;
}

/* line 3968, ../sass/style.scss */
#blog-single-page b {
  font-size: 86px;
  color: #21201e;
  line-height: 68px;
  margin-right: 17px;
  float: left;
  font-weight: bolder;
}

/* line 3976, ../sass/style.scss */
#blog-single-page .margin-top {
  margin-top: 50px;
}

/* line 3979, ../sass/style.scss */
#blog-single-page .large-size-paragraph {
  font-size: 24px;
  color: #898680;
  font-weight: 100;
  line-height: 40px;
  margin-bottom: 40px;
}

/* line 3986, ../sass/style.scss */
#blog-single-page .blog-single-page-h3 {
  margin: 50px 0;
  font-size: 36px;
  color: #21201e;
  font-weight: lighter;
  font-family: "Lato", sans-serif;
  text-transform: none;
}

/* line 3994, ../sass/style.scss */
#blog-single-page ul {
  padding-left: 0;
  margin: 60px 0 15px;
}

/* line 3998, ../sass/style.scss */
#blog-single-page .social-media:nth-child(2) {
  float: right;
}

/* line 4001, ../sass/style.scss */
#blog-single-page ul li {
  background-image: url("../img/circle.png");
  background-position: left center;
  background-repeat: no-repeat;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  list-style: outside none none;
  margin: 30px 0;
  padding-left: 30px;
  color: #21201e;
}

/* line 4012, ../sass/style.scss */
#blog-single-page ul li:last-child {
  margin-bottom: 0;
}

/* line 4015, ../sass/style.scss */
#blog-single-page blockquote {
  padding: 50px 50px 50px 100px;
  border: 15px solid #f1f1f0;
  margin: 50px 0;
}

/* line 4020, ../sass/style.scss */
#blog-single-page blockquote p {
  font-size: 30px;
  color: #21201e;
  font-weight: lighter;
  line-height: 42px;
  font-style: italic;
  font-family: "Lato", sans-serif;
  letter-spacing: 2px;
  background-image: url(../img/qoute-icon.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  padding-right: 90px;
}

/* line 4033, ../sass/style.scss */
.float-right {
  float: right;
}

/* line 4036, ../sass/style.scss */
.float-left {
  float: left;
}

/* line 4039, ../sass/style.scss */
#blog-single-page .social-media {
  padding-left: 0;
}

/* line 4042, ../sass/style.scss */
#blog-single-page .social-media span {
  list-style: none;
  display: inline;
  background-image: none;
  padding-left: 0;
}

/* line 4048, ../sass/style.scss */
#blog-single-page .social-media span a {
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  color: #898680;
  font-size: 14px;
  margin-right: 30px;
  letter-spacing: 1px;
  font-weight: bolder;
  text-decoration: none;
}

/* line 4058, ../sass/style.scss */
#blog-single-page .social-media span a:hover {
  color: #1c92df;
}

/* line 4061, ../sass/style.scss */
#blog-single-page .post-section {
  border: solid 1px #e0dfdd;
  border-left: none;
  padding: 50px 0;
  border-right: none;
  margin-bottom: 50px;
}

/* line 4068, ../sass/style.scss */
#blog-single-page .post-img {
  border: solid 3px #1c92df;
  padding: 9px;
  margin-bottom: 20px;
}

/* line 4073, ../sass/style.scss */
#blog-single-page .fa {
  font-size: 22px;
  color: #b9b9b9;
  margin: 20px 20px 20px 0;
}

/* line 4078, ../sass/style.scss */
#blog-single-page hr {
  margin-top: 40px;
  margin-bottom: 40px;
}

/* line 4082, ../sass/style.scss */
#blog-single-page .people-comments-box {
  margin: 65px 0;
}

/* line 4085, ../sass/style.scss */
#blog-single-page .people-comments-box h6 {
  text-transform: uppercase;
  color: #555450;
  font-weight: bold;
  font-size: 14px;
}

/* line 4091, ../sass/style.scss */
#blog-single-page .people-comments-box span {
  text-transform: uppercase;
  color: #b9b9b9;
  font-weight: bold;
  font-size: 14px;
}

/* line 4097, ../sass/style.scss */
#blog-single-page .people-comments-box a {
  text-transform: uppercase;
  color: #1c92df;
  float: right;
  font-weight: bold;
  font-size: 14px;
}

/* line 4104, ../sass/style.scss */
#blog-single-page .people-comments-box a:hover {
  text-decoration: none;
  color: #555450;
}

/* line 4108, ../sass/style.scss */
#blog-single-page .people-comments-box .secondary-paragraph {
  margin-top: 20px;
}

/* line 4111, ../sass/style.scss */
#blog-single-page .people-comments-box:nth-child(odd) {
  margin-left: 195px;
  margin-top: 60px;
  margin-bottom: 0px;
  display: inline-block;
}

/* line 4117, ../sass/style.scss */
#h4-form-blog input {
  width: 100%;
  position: relative;
  z-index: 99;
  border: none;
  padding: 7px 10px;
  border-bottom: solid 1px #e0dfdd;
  margin-bottom: 50px;
}

/* line 4126, ../sass/style.scss */
#h4-form-blog label {
  color: #898680;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  padding-left: 10px;
  opacity: 0.8;
}

/* line 4133, ../sass/style.scss */
#h4-form-blog textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 50px;
  height: 235px;
  border: solid 1px #e0dfdd;
}

/* line 4140, ../sass/style.scss */
#h4-form-blog:-moz-placeholder {
  color: #898680;
  font-family: "Lato", sans-serif;
  font-size: 16px;
}

/* line 4145, ../sass/style.scss */
#h4-form-blog button {
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-top: 0;
}

/* line 4151, ../sass/style.scss */
.next-pre-post h3 {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  color: #FFF;
}

/* line 4157, ../sass/style.scss */
.next-pre-post span {
  font-size: 36px;
  font-weight: lighter;
  color: #FFF;
  display: block;
  font-family: "Lato", sans-serif;
}

/* line 4164, ../sass/style.scss */
.next-pre-post .button-arrow {
  color: #1c92df;
}

/* line 4167, ../sass/style.scss */
.pre-post {
  background-image: url(../img/placeholder/pre-post-img.jpg);
  text-align: center;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  background-size: cover;
  padding: 85px 20px;
}

/* line 4176, ../sass/style.scss */
.pre-post:hover {
  background-image: url(../img/placeholder/pre-post-img-hover.jpg);
}

/* line 4179, ../sass/style.scss */
.pre-post:hover .button-arrow {
  color: #FFF;
}

/* line 4182, ../sass/style.scss */
.next-post:hover {
  background-image: url(../img/placeholder/next-post-img-hover.jpg);
}

/* line 4185, ../sass/style.scss */
.next-post:hover .button-arrow {
  color: #FFF;
}

/* line 4188, ../sass/style.scss */
.next-post {
  background-image: url(../img/placeholder/next-post-img.jpg);
  text-align: center;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  background-size: cover;
  padding: 85px 20px;
}

/*---Pricing---*/
/*Pricing 1*/
/* line 4200, ../sass/style.scss */
#pricing {
  text-align: center;
}

/* line 4203, ../sass/style.scss */
.pricing-banner {
  background-image: url(../img/placeholder/pricing-banner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  display: table;
  height: 540px;
}

/* line 4212, ../sass/style.scss */
#pricing p {
  margin: 50px 0;
}

/* line 4215, ../sass/style.scss */
#pricing .tab-pane .table-content {
  border: solid 10px #f4f4f4;
  padding-top: 25px;
  padding-bottom: 25px;
  transition: all .2s ease-in-out;
  background-color: #FFF;
  margin-top: 50px;
}

/* line 4223, ../sass/style.scss */
#pricing .nav-tabs {
  display: inline-block;
  margin: 50px 17px 130px 0;
}

/* line 4227, ../sass/style.scss */
#pricing .nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  background-color: #1c92df;
}

/* line 4232, ../sass/style.scss */
#pricing .nav-tabs > li > a {
  margin-right: 0;
  border: solid 2px #1c92df;
  font-size: 18px;
  text-transform: uppercase;
  color: #21201e;
  padding: 15px 46px;
  border-radius: 0;
  letter-spacing: 2px;
}

/* line 4242, ../sass/style.scss */
#pricing .nav-tabs > li > a:hover {
  background-color: transparent;
}

/* line 4245, ../sass/style.scss */
#pricing .tab-pane .table-content .table-header {
  width: 181px;
  margin: 0 auto;
  padding: 20px 0;
  background-color: #FFF;
}

/* line 4251, ../sass/style.scss */
#pricing .tab-pane .table-active {
  margin: -27px -10px;
  z-index: 99;
}

/* line 4255, ../sass/style.scss */
#pricing .tab-pane .table-active .table-content .table-header {
  border: solid 10px #1c92df;
  margin-top: -100px;
  height: 200px;
  padding: 50px 0;
}

/* line 4261, ../sass/style.scss */
#pricing .tab-pane .table-active .table-content {
  border: solid 10px #21201e;
  -webkit-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.19);
  -moz-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.19);
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.19);
}

/* line 4267, ../sass/style.scss */
#pricing .tab-pane .table-active .table-content ul {
  margin-top: 45px;
}

/* line 4270, ../sass/style.scss */
#pricing .tab-pane .table-content .button-arrow {
  margin-bottom: 15px;
}

/* line 4273, ../sass/style.scss */
#pricing .tab-pane h6 {
  font-size: 18px;
  color: #21201e;
  text-transform: uppercase;
  letter-spacing: 0px;
  margin: 0;
}

/* line 4280, ../sass/style.scss */
#pricing .tab-pane span {
  font-size: 60px;
  letter-spacing: 2px;
  color: #1c92df;
  font-weight: 300;
  font-family: "Lato", sans-serif;
}

/* line 4287, ../sass/style.scss */
#pricing .tab-pane span sup {
  font-size: 38px;
}

/* line 4290, ../sass/style.scss */
#pricing .tab-pane ul {
  padding-left: 0;
}

/* line 4293, ../sass/style.scss */
#pricing .tab-pane li {
  list-style-type: circle;
  color: #1c92df;
  padding: 15px 10px;
  width: 80%;
  margin: 0 auto;
  border-bottom: solid 1px #e0dfdd;
  font-size: 16px;
}

/* line 4302, ../sass/style.scss */
#pricing .tab-pane li span {
  color: #21201e;
  font-weight: 400;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
}

/* line 4309, ../sass/style.scss */
#pricing .tab-pane li:last-child {
  border-bottom: none;
}

/*Pricing 2*/
/* line 4314, ../sass/style.scss */
#pricing.v2-table .tab-pane .table-content .table-header {
  border: solid 10px #1c92df;
  margin-top: -100px;
  height: 200px;
  padding: 50px 0;
}

/* line 4320, ../sass/style.scss */
#pricing.v2-table .tab-pane .table-active .table-content .table-header {
  border: solid 10px #21201e;
  background-color: #1c92df;
}

/* line 4324, ../sass/style.scss */
#pricing.v2-table .tab-pane ul {
  margin-top: 15px;
}

/* line 4327, ../sass/style.scss */
#pricing.v2-table .tab-pane .table-content {
  margin-top: 100px;
  margin-left: 15px;
  margin-right: 15px;
}

/* line 4332, ../sass/style.scss */
#pricing.v2-table .tab-pane .table-active {
  margin: 0;
}

/* line 4335, ../sass/style.scss */
#pricing.v2-table .tab-pane .table-active .table-content {
  background-color: #1b75bc;
  border: solid 10px #1c92df;
  box-shadow: none;
}

/* line 4340, ../sass/style.scss */
#pricing.v2-table .tab-pane .table-active li {
  border-bottom: solid 1px rgba(224, 223, 221, 0.1) !important;
}

/* line 4343, ../sass/style.scss */
#pricing.v2-table .tab-pane .table-active .table-content ul {
  margin-top: 15px;
}

/* line 4346, ../sass/style.scss */
#pricing.v2-table .tab-pane .table-active .button-arrow {
  color: #FFF;
}

/* line 4349, ../sass/style.scss */
#pricing.v2-table .tab-pane li:last-child {
  border-bottom: none;
}

/* line 4352, ../sass/style.scss */
#pricing.v2-table .tab-pane span {
  color: #21201e;
}

/* line 4355, ../sass/style.scss */
#pricing.v2-table .tab-pane .table-active li {
  list-style-type: circle;
  color: #1c92df;
  padding: 15px 10px;
  width: 80%;
  margin: 0 auto;
  border-bottom: solid 1px #e0dfdd;
}

/* line 4363, ../sass/style.scss */
#pricing.v2-table .tab-pane .table-active li span {
  color: #FFF;
  font-weight: 400;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
}

/* line 4370, ../sass/style.scss */
#pricing.v2-table .tab-pane .table-active li:last-child {
  border-bottom: none !important;
}

/*-- Included --*/
/* line 4375, ../sass/style.scss */
#included {
  background-color: #f4f4f4;
}

/* line 4378, ../sass/style.scss */
#included p {
  margin-top: 50px;
  margin-bottom: 50px;
}

/* line 4382, ../sass/style.scss */
.included-box {
  border: solid 3px #1c92df;
  background-color: #FFF;
  text-align: center;
  padding: 25px;
  margin-top: 25px;
}

/* line 4389, ../sass/style.scss */
.included-box span {
  text-transform: uppercase;
  font-size: 17px;
  font-weight: bold;
  letter-spacing: 1px;
  background-image: url(../img/check-icon.png);
  background-position: left center;
  padding-left: 30px;
  background-repeat: no-repeat;
}

/*-- FAQ --*/
/* line 4401, ../sass/style.scss */
.faq-banner {
  background-image: url(../img/placeholder/pricing-banner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  display: table;
  height: 540px;
}

/* line 4410, ../sass/style.scss */
#integration-list {
  width: 100%;
  margin: 0 auto;
  display: table;
}

/* line 4415, ../sass/style.scss */
#integration-list ul {
  padding: 0;
  margin-top: 50px;
  color: #555;
  border: solid 3px #f4f4f4;
}

/* line 4421, ../sass/style.scss */
#integration-list ul > li {
  list-style: none;
  border-top: solid 3px #f4f4f4;
  display: block;
  padding: 0 30px;
  overflow: hidden;
}

/* line 4428, ../sass/style.scss */
#integration-list ul > li:first-child {
  border-top: none;
}

/* line 4431, ../sass/style.scss */
.expand {
  display: block;
  text-decoration: none;
  color: #555;
  cursor: pointer;
}

/* line 4437, ../sass/style.scss */
.expand span:hover {
  color: #1c92df;
}

/* line 4440, ../sass/style.scss */
.expand .right-arrow:hover {
  color: #1c92df;
}

/* line 4443, ../sass/style.scss */
.expand span {
  display: block;
  padding: 24px 0;
  font-weight: bold;
  font-size: 16px;
  font-family: "Lato", sans-serif;
  color: #21201e;
}

/* line 4451, ../sass/style.scss */
.content-dispaly {
  display: table;
}

/* line 4454, ../sass/style.scss */
#sup {
  display: table-cell;
  vertical-align: middle;
  width: 80%;
}

/* line 4459, ../sass/style.scss */
.detail a {
  text-decoration: none;
  color: #C0392B;
  border: 1px solid #C0392B;
  padding: 6px 10px 5px;
  font-size: 14px;
}

/* line 4466, ../sass/style.scss */
.detail {
  margin: 10px 0 10px 0px;
  display: none;
  line-height: 22px;
}

/* line 4471, ../sass/style.scss */
.detail span {
  margin: 0;
}

/* line 4474, ../sass/style.scss */
.right-arrow {
  width: 28px;
  height: 100%;
  float: right;
  font-size: 50px;
  color: #ececec;
  font-family: none;
}

/*-- FAQ 2--*/
/* line 4484, ../sass/style.scss */
#faq .panel-group .panel {
  border-radius: 0;
  box-shadow: none;
  background-color: transparent;
  border: none;
}

/* line 4490, ../sass/style.scss */
#faq .panel-default > .panel-heading {
  padding: 0 0 20px 79px;
  border-radius: 0;
  border: 0px;
  color: #212121;
  background-color: transparent;
}

/* line 4497, ../sass/style.scss */
#accordion-one h5 {
  text-align: left;
  width: 100%;
}

/* line 4501, ../sass/style.scss */
#faq .panel-title {
  font-size: 20px;
  font-weight: bold;
  font-family: "Lato", sans-serif;
  position: relative;
}

/* line 4507, ../sass/style.scss */
#faq .panel-title > a {
  display: block;
  text-decoration: none;
  margin-top: 40px;
  color: #21201e !important;
}

/* line 4513, ../sass/style.scss */
#faq .panel-body {
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 85px;
}

/* line 4518, ../sass/style.scss */
#faq .panel-body p {
  margin-top: 0;
}

/* line 4521, ../sass/style.scss */
#faq .more-less {
  color: #1c92df;
  border: solid 2px #1c92df;
  font-weight: 200;
  padding: 0px 9px;
  text-align: center;
  font-size: 40px;
  vertical-align: middle;
  font-family: none;
  background-color: #FFF;
  z-index: 99;
}

/* line 4533, ../sass/style.scss */
#faq .collapsed .more-less {
  color: #eeeeee;
  border: solid 2px #eeeeee;
  font-weight: 200;
  padding: 0px 9px;
  text-align: center;
  font-size: 40px;
  vertical-align: middle;
  font-family: none;
  background-color: #FFF;
  z-index: 99;
}

/* line 4545, ../sass/style.scss */
#faq .panel-group .panel:after {
  content: "";
  position: absolute;
  top: 35px;
  bottom: 60px;
  left: 37px;
  width: 2px;
  background: #eeeeee;
}

/* line 4554, ../sass/style.scss */
.accordion-icon {
  position: absolute;
  top: -18px;
  left: -82px;
  background: transparent;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  line-height: 50px;
  padding: 3px;
  z-index: 3;
}

/* line 4566, ../sass/style.scss */
#faq .panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top: none;
}

/*-- Error Page--*/
/* line 4571, ../sass/style.scss */
.errorpage-box {
  border: solid 10px #1c92df;
  padding: 80px 0 0px 80px;
}

/* line 4575, ../sass/style.scss */
.errorpage-box span {
  font-size: 80px;
  color: #1c92df;
  font-weight: bold;
  font-family: "Lato", sans-serif;
  line-height: 50px;
}

/* line 4582, ../sass/style.scss */
.errorpage-box h2 {
  text-align: left;
  margin-bottom: 50px;
}

/* line 4586, ../sass/style.scss */
.errorpage-box h2:after {
  margin-left: 0;
  margin-right: 0;
  left: 20px;
}

/* line 4591, ../sass/style.scss */
.errorpage-box .robot {
  margin-top: 47px;
  margin-bottom: -25px;
}

/* line 4595, ../sass/style.scss */
.errorpage-box .button-arrow {
  margin-top: 20px;
  margin-bottom: 60px;
}

/*-- Coming Soon--*/
/* line 4601, ../sass/style.scss */
.coming-soon-banner {
  background-image: url(../img/placeholder/coming-soon.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  display: table;
  height: 100vh;
  text-align: center;
}

/* line 4611, ../sass/style.scss */
.coming-soon-banner #banner-form {
  width: 50%;
}

/* line 4614, ../sass/style.scss */
.coming-soon-banner #banner-form input {
  width: 98%;
}

/* line 4617, ../sass/style.scss */
.coming-soon-banner p {
  color: #FFF;
}

/* line 4620, ../sass/style.scss */
.coming-soon-banner hr {
  width: 300px;
}

/* line 4623, ../sass/style.scss */
#countbox1 {
  color: #FFF;
  font-size: 70px;
  font-family: "Lato", sans-serif;
  font-weight: bold;
  line-height: 70px;
  margin: 30px 0;
}

/* line 4631, ../sass/style.scss */
#countbox1 #xyz {
  display: block;
}

/* line 4634, ../sass/style.scss */
.v1-header.comingsoon-header {
  position: absolute;
  width: 100%;
}

/* line 4638, ../sass/style.scss */
.comingsoon-header .navbar-brand {
  float: none;
}

/* line 4641, ../sass/style.scss */
.comingsoon-header .navbar-brand img {
  margin: 0 auto;
}

/* line 4644, ../sass/style.scss */
.coming-soon-banner ul {
  margin-top: 40px;
  padding-left: 0;
}

/* line 4648, ../sass/style.scss */
.coming-soon-banner ul li a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  color: #b2b2b3;
  padding-bottom: 15px;
  font-weight: bold;
  z-index: 99;
  position: relative;
}

/* line 4658, ../sass/style.scss */
.coming-soon-banner ul li {
  display: inline-block;
  margin: 0 25px;
}

/* line 4662, ../sass/style.scss */
.coming-soon-banner ul li a:hover {
  color: #FFF;
}

/* line 4665, ../sass/style.scss */
.coming-soon-banner ul li a:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  right: 50%;
  bottom: 0;
  background: #1c92df;
  height: 1px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

/* line 4681, ../sass/style.scss */
.coming-soon-banner ul li a:hover:before,
.coming-soon-banner ul li a:focus:before,
.coming-soon-banner ul li a:active:before {
  left: 0;
  right: 0;
}

/*-- Contact --*/
/* line 4689, ../sass/style.scss */
.contact-banner {
  background-image: url(../img/placeholder/contact-banner.jpg);
  height: 540px;
  background-repeat: no-repeat;
  width: 100%;
  background-position: center center;
  background-size: cover;
  display: table;
}

/* line 4698, ../sass/style.scss */
#contact-form .field-label {
  border-bottom: 1px solid #b9b9b9;
  margin-top: 20px;
  width: 35%;
  padding: 10px 0;
  color: #21201e;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 2px;
  float: left;
}

/* line 4710, ../sass/style.scss */
#contact-form input {
  width: 65%;
  border: none;
  color: #898680;
  font-size: 16px;
  font-family: "Lato", sans-serif;
  border-bottom: solid 1px #b9b9b9;
  margin: 20px 0;
  padding: 10px;
  float: left;
}

/* line 4721, ../sass/style.scss */
#contact-form .select-style {
  width: 100%;
  background-image: url(../img/down-arro.png);
  background-repeat: no-repeat;
  background-position: right center;
  border: none;
  border-image: none;
  border: none;
  color: #21201e;
  font-size: 16px;
  border-bottom: solid 1px #b9b9b9;
  margin: 40px 0;
  padding: 10px 0;
  border-radius: 0;
  border-style: none none solid;
  border-width: 0 0 1px;
  opacity: 1;
}

/* line 4739, ../sass/style.scss */
#contact-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* line 4744, ../sass/style.scss */
#contact-form option {
  padding: 10px;
  border: none;
}

/* line 4748, ../sass/style.scss */
#contact-form select,
option {
  /* Firefox 19+ */
  color: #21201e;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 2px;
}

/* line 4757, ../sass/style.scss */
#contact-form input.css-checkbox[type="checkbox"] {
  display: none;
}

/* line 4760, ../sass/style.scss */
#contact-form input.css-checkbox[type="checkbox"] + label.custom-checkbox {
  background-position: 0 0;
  background-repeat: no-repeat;
  cursor: pointer;
  display: inline-block;
  font-family: Calibri;
  font-size: 18px;
  font-weight: normal;
  height: 45px;
  line-height: 24px;
  margin: 10px 0 0;
  padding-left: 50px;
  padding-top: 4px;
  vertical-align: middle !important;
  z-index: 99;
  position: relative;
  font-family: 'Montserrat', sans-serif;
}

/* line 4778, ../sass/style.scss */
#contact-form input.css-checkbox[type="checkbox"]:checked + label.custom-checkbox {
  background-image: url(../img/checkbox-select.png);
}

/* line 4781, ../sass/style.scss */
#contact-form label.custom-checkbox {
  -moz-user-select: none;
  background-image: url(../img/checkbox-normal.png);
}

/* line 4785, ../sass/style.scss */
#contact-form .intrest-section label {
  font-size: 16px;
  font-family: "Lato", sans-serif;
  color: #898680;
  font-weight: 500;
  font-weight: light;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

/* line 4795, ../sass/style.scss */
#contact-form .intrest-section label {
  font-size: 16px;
  font-family: "Lato", sans-serif;
  color: #898680;
  font-weight: 500;
  font-weight: light;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

/* line 4805, ../sass/style.scss */
#contact-form .button-arrow {
  background-color: transparent;
  border: 2px solid #1c92df;
  border-radius: 50px;
  color: #21201e;
  display: table;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  padding: 16px 35px;
  text-decoration: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  letter-spacing: 1.5px;
  font-size: 14px;
  text-transform: uppercase;
  width: auto;
  float: none;
}

/* line 4825, ../sass/style.scss */
#contact-form .button-arrow:hover {
  background-color: #1c92df;
  color: #21201e;
}

/* line 4829, ../sass/style.scss */
#response {
  margin-top: 50px;
}

/* line 4832, ../sass/style.scss */
#response div {
  color: #dd4b39;
}

/* line 4835, ../sass/style.scss */
#response .success {
  color: #28ad62;
}

/* line 4838, ../sass/style.scss */
#contact-form h5 {
  text-align: left;
  display: inline-block;
  letter-spacing: 2px;
  margin-top: 30px;
}

/* line 4844, ../sass/style.scss */
.padding-right-remove {
  padding-right: 0;
}

/* line 4847, ../sass/style.scss */
.padding-left-remove {
  padding-left: 0;
}

/* line 4850, ../sass/style.scss */
#contact-form input::-moz-placeholder {
  /* Firefox 19+ */
}

/* line 4853, ../sass/style.scss */
#contact-form input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #21201e;
}

/* line 4858, ../sass/style.scss */
#contact-form textarea {
  width: 100%;
  border: solid 1px #b9b9b9;
  padding: 15px;
  height: 237px;
}

/*----Dark Version-----*/
/* line 4866, ../sass/style.scss */
.slider-heading {
  color: #FFF;
  text-transform: inherit;
  letter-spacing: -2px !important;
}

/* line 4871, ../sass/style.scss */
#dark-version h2 {
  color: #FFF;
}

/* line 4874, ../sass/style.scss */
#dark-version h2 span {
  font-weight: bold;
}

/* line 4877, ../sass/style.scss */
#dark-version h3 {
  color: #FFF;
}

/* line 4880, ../sass/style.scss */
#dark-version h5 {
  color: #666666;
}

/* line 4883, ../sass/style.scss */
#dark-version .button-arrow {
  color: #FFF;
}

/* line 4886, ../sass/style.scss */
#dark-version #features {
  background-color: #1b75bc;
}

/* line 4889, ../sass/style.scss */
#dark-version #features .ftr-1:hover .fa-lightbulb-o {
  color: #FFF;
}

/* line 4892, ../sass/style.scss */
#dark-version #features .ftr-2:hover .fa-code {
  color: #FFF;
}

/* line 4895, ../sass/style.scss */
#dark-version #features .ftr-3:hover .fa-mobile {
  color: #FFF;
}

/* line 4898, ../sass/style.scss */
#dark-version #about-us {
  background-color: #1b1a19;
}

/* line 4901, ../sass/style.scss */
#dark-version #aboutslider {
  background-color: #1b75bc;
}

/* line 4904, ../sass/style.scss */
#dark-version .template-border figure img {
  -webkit-filter: grayscale(100%);
}

/* line 4908, ../sass/style.scss */
#dark-version #our-work {
  background-color: #1b75bc;
}

/* line 4911, ../sass/style.scss */
#dark-version .testimonials {
  background-image: url(../img/placeholder/dark-version-testimonials-bg.jpg);
}

/* line 4914, ../sass/style.scss */
#dark-version #quote-carousel .carousel-indicators .active h5 {
  color: #898680;
}

/* line 4917, ../sass/style.scss */
#dark-version #clients {
  background-color: #1b75bc;
}

/* line 4920, ../sass/style.scss */
#dark-version #clients ul li::before {
  border-bottom: 2px solid #2b2b2b;
  border-left: 2px solid #2b2b2b;
}

/* line 4924, ../sass/style.scss */
#dark-version #clients ul li::after {
  content: "";
  position: absolute;
  border: 5px solid #1c92df;
  outline: 10px solid #21201e;
  border-radius: 25px;
  top: auto;
  left: -5px;
  bottom: -5px;
  z-index: 1;
}

/* line 4935, ../sass/style.scss */
#dark-version #portfolio {
  background-color: #1b1a19;
}

/* line 4938, ../sass/style.scss */
#dark-version .element-item img {
  -webkit-filter: grayscale(100%);
}

/* line 4942, ../sass/style.scss */
#dark-version #filters .button {
  color: #FFF;
}

/* line 4945, ../sass/style.scss */
#dark-version .button-group {
  border-bottom: none;
}

/* line 4948, ../sass/style.scss */
#dark-version .portfolio-grid .element-item figcaption h5 {
  color: #FFF;
}

/* line 4951, ../sass/style.scss */
#dark-version #team {
  background-color: #1b75bc;
}

/* line 4954, ../sass/style.scss */
#dark-version #team figure.team-member img {
  -webkit-filter: grayscale(100%);
}

/* line 4958, ../sass/style.scss */
#dark-version #number-stats {
  background-image: url(../img/placeholder/dark-version-numberstats-bg.jpg);
}

/* line 4961, ../sass/style.scss */
#dark-version #blog {
  background-color: #1b1a19;
}

@media only screen and (max-width: 1200px) {
  /* line 4965, ../sass/style.scss */
  .contact-form .col-md-6 {
    position: inherit;
  }

  /* line 4968, ../sass/style.scss */
  #contact-form .field-label {
    border-bottom: none;
    float: none;
    z-index: 99;
    position: relative;
  }

  /* line 4974, ../sass/style.scss */
  #contact-form input {
    margin: 0;
    width: 100%;
    float: none;
    position: relative;
    z-index: 99;
  }

  /* line 4981, ../sass/style.scss */
  #contact-form .padding-left-remove {
    padding-left: 15px;
  }

  /* line 4984, ../sass/style.scss */
  #testimonials-v2 .carousel-indicators {
    left: 90px;
  }
}
@media only screen and (max-width: 992px) {
  /* line 4989, ../sass/style.scss */
  h2 {
    font-size: 30px;
  }

  /* line 4992, ../sass/style.scss */
  .navbar-search {
    height: 101px;
  }

  /* line 4995, ../sass/style.scss */
  .navbar-search .form-control {
    height: 101px;
  }

  /* line 4998, ../sass/style.scss */
  .v1-header .dropdown-menu > li > a {
    margin: 0px 40px !important;
    color: #FFF !important;
    line-height: 40px;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  /* line 5006, ../sass/style.scss */
  .flickity-prev-next-button {
    display: none;
  }

  /* line 5009, ../sass/style.scss */
  .v1-header .navbar-nav .mega-menu a {
    padding-right: 15px;
    padding-left: 40px;
  }

  /* line 5013, ../sass/style.scss */
  .v1-header .mega-menu ul {
    margin-top: 0;
  }

  /* line 5016, ../sass/style.scss */
  .v1-header .dropdown .mega-menu {
    width: 100% !important;
  }

  /* line 5019, ../sass/style.scss */
  .v1-header .dropdown-menu > li > a:hover {
    color: #1c92df !important;
    background-color: transparent;
  }

  /* line 5023, ../sass/style.scss */
  .v1-header .dropdown .dropdown-menu .dropdown li {
    padding-left: 20px;
  }

  /* line 5026, ../sass/style.scss */
  .v1-header .dropdown .dropdown-menu .dropdown .dropdown-menu li {
    padding-left: 40px;
  }

  /* line 5029, ../sass/style.scss */
  .v1-header .dropdown .dropdown-menu .dropdown .dropdown-menu li a {
    background-image: none;
  }

  /* line 5032, ../sass/style.scss */
  .v1-header .dropdown .dropdown-menu .dropdown .dropdown-menu li:first-child a {
    margin-top: 0px !important;
  }

  /* line 5035, ../sass/style.scss */
  .v1-header .dropdown .dropdown-menu .dropdown .dropdown-menu li a:hover {
    background-image: none !important;
  }

  /* line 5038, ../sass/style.scss */
  .v1-header .dropdown .dropdown-menu li:last-child a:hover {
    background-image: none !important;
  }

  /* line 5041, ../sass/style.scss */
  .v1-header .dropdown .dropdown-menu .dropdown a {
    background-color: transparent !important;
  }

  /* line 5044, ../sass/style.scss */
  .v1-header .navbar-nav .open .dropdown-menu .dropdown .dropdown-menu > li > a:hover,
  .navbar-nav .open .dropdown-menu .dropdown-menu .dropdown .dropdown-menu > li > a:focus {
    background-image: url(../img/arrow-hover-drop.png);
  }

  /* line 5048, ../sass/style.scss */
  .dropdown-menu-large > li > ul > li > a:hover {
    color: #1c92df;
    background-color: transparent;
  }

  /* line 5052, ../sass/style.scss */
  .v1-header .dropdown-menu > li:first-child > a {
    margin-top: -15px !important;
  }

  /* line 5055, ../sass/style.scss */
  .v1-header .dropdown .dropdown-menu .dropdown a {
    background-position: right center;
  }

  /* line 5058, ../sass/style.scss */
  .relative-nav-container {
    position: static;
  }

  /* line 5061, ../sass/style.scss */
  #about-us #aboutslider .carousel-indicators {
    left: 50%;
    top: 97%;
    transform: rotate(90deg);
  }

  /* line 5066, ../sass/style.scss */
  .navbar-search {
    background-color: #1c92df;
    color: white;
    top: 0;
    border: none;
  }

  /* line 5072, ../sass/style.scss */
  #project-colors {
    padding-top: 120px;
    margin-top: 0;
  }

  /* line 5076, ../sass/style.scss */
  .navbar-search .search-close {
    color: #FFF;
  }

  /* line 5079, ../sass/style.scss */
  .nav-icons {
    float: right;
    margin-top: 0 !important;
  }

  /* line 5083, ../sass/style.scss */
  .navbar-search .search-close:hover {
    color: white;
  }

  /* line 5086, ../sass/style.scss */
  .v1-header .navbar-toggle {
    float: right;
    border: none;
    padding: 0;
    margin: 40px 40px 40px 0;
  }
}
@media only screen and (max-width: 992px) and (max-width: 440px) {
  /* line 5093, ../sass/style.scss */
  .v1-header .navbar-toggle {
    margin: 40px 10px 40px 0;
  }
}
@media only screen and (max-width: 992px) {
  /* line 5097, ../sass/style.scss */
  .v1-header .navbar-brand img {
    display: block;
    float: none;
    height: 80px;
    left: 0;
    position: absolute;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2px;
    margin-bottom: 0;
  }

  /* line 5109, ../sass/style.scss */
  .v1-header {
    background-color: #1b75bc;
  }

  /* line 5112, ../sass/style.scss */
  .v1-header .navbar-toggle .fa-bars {
    color: white;
    font-size: 20px;
  }

  /* line 5116, ../sass/style.scss */
  .v1-header .navbar-toggle .fa-bars:hover {
    background-color: transparent;
  }

  /* line 5119, ../sass/style.scss */
  .v1-header .navbar-default .navbar-toggle:hover,
  .navbar-default .navbar-toggle:focus {
    background-color: transparent;
  }

  /* line 5123, ../sass/style.scss */
  .v1-header .navbar-right {
    background-color: #1b75bc;
    margin-bottom: 0;
    float: none;
  }

  /* line 5128, ../sass/style.scss */
  .v1-header .navbar-default .navbar-nav > li {
    float: none;
    clear: both;
  }

  /* line 5132, ../sass/style.scss */
  .v1-header .dropdown-menu li a:hover {
    background-color: transparent;
    color: #1c92df;
  }

  /* line 5136, ../sass/style.scss */
  .v1-header .navbar-fixed-top .navbar-collapse {
    max-height: auto !important;
    overflow-x: auto !important;
  }

  /* line 5140, ../sass/style.scss */
  .v1-header .dropdown .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding-top: 0;
  }

  /* line 5151, ../sass/style.scss */
  .v1-header .navbar-right {
    margin-top: 30px;
  }

  /* line 5154, ../sass/style.scss */
  .v1-header .relative-nav-container .navbar-right {
    background-color: transparent;
  }

  /* line 5157, ../sass/style.scss */
  .v1-header {
    border-bottom: none;
  }

  /* line 5160, ../sass/style.scss */
  .v1-header .navbar-default .navbar-nav > li > a {
    padding-bottom: 30px;
  }

  /* line 5163, ../sass/style.scss */
  .v1-header .navbar-default .navbar-collapse,
  .navbar-default .navbar-form {
    border-top: 1px solid #3b4049;
  }

  /* line 5167, ../sass/style.scss */
  .v1-header .navbar-default .navbar-nav > li > #search-open {
    margin: 40px 40px 40px 0 !important;
  }

  /* line 5170, ../sass/style.scss */
  .v1-header .navbar-default .navbar-nav > li > a {
    margin: 0 40px !important;
  }

  /* line 5173, ../sass/style.scss */
  .v1-header #bs-example-navbar-collapse-1 {
    background-color: #1b75bc;
  }

  /* line 5176, ../sass/style.scss */
  .v1-header .navbar-header {
    float: none;
  }

  /* line 5179, ../sass/style.scss */
  .v1-header .navbar-toggle {
    display: block;
  }

  /* line 5182, ../sass/style.scss */
  .v1-header .navbar-collapse.collapse {
    display: none !important;
  }

  /* line 5185, ../sass/style.scss */
  .v1-header .collapse.in {
    display: block !important;
  }

  /* line 5188, ../sass/style.scss */
  .left-content-container h5 {
    margin-bottom: 30px;
  }

  /* line 5191, ../sass/style.scss */
  .left-content-container .float-right {
    display: table;
    margin: 0 auto;
  }

  /* line 5195, ../sass/style.scss */
  .left-content-container .box-counter:first-child {
    margin-left: 0;
  }

  /* line 5198, ../sass/style.scss */
  #pricing .nav-tabs {
    display: block;
    margin: 50px 0;
    border-bottom: none;
  }

  /* line 5203, ../sass/style.scss */
  #blog-page-v2 .row:last-child .blog-post-box-container {
    margin-bottom: 75px;
  }

  /* line 5206, ../sass/style.scss */
  #blog .blog-post-box-container {
    margin-bottom: 75px;
  }

  /* line 5209, ../sass/style.scss */
  #blog .blog-post-box-container:last-child {
    margin-bottom: 0;
  }

  /* line 5212, ../sass/style.scss */
  #blog .template-border {
    margin-bottom: 70px;
  }

  /* line 5215, ../sass/style.scss */
  .coming-soon-banner {
    padding-top: 100px;
  }

  /* line 5218, ../sass/style.scss */
  .errorpage-box .robot {
    margin-left: auto;
    margin-right: auto;
  }

  /* line 5222, ../sass/style.scss */
  #blog-page .right-content-blog .button-arrow img:nth-child(1) {
    display: none;
  }

  /* line 5225, ../sass/style.scss */
  #blog-page .right-content-blog .button-arrow img:nth-child(2) {
    display: inline-block;
    margin-left: 10px;
    margin-right: -30px;
  }

  /* line 5230, ../sass/style.scss */
  #blog-page .right-content-blog .button-arrow:hover img:nth-child(2) {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  /* line 5234, ../sass/style.scss */
  #blog-page-v2 .row:last-child .template-border {
    margin-bottom: 70px;
  }

  /* line 5237, ../sass/style.scss */
  #blog-single-page blockquote {
    padding: 50px;
  }

  /* line 5240, ../sass/style.scss */
  #identity ul li {
    width: 100%;
  }

  /* line 5243, ../sass/style.scss */
  #blog-page h3 {
    margin-top: 0;
  }

  /* line 5246, ../sass/style.scss */
  #blog-page .left-content-blog {
    padding-top: 0;
  }

  /* line 5249, ../sass/style.scss */
  #blog-page .right-content-blog {
    padding-top: 0;
  }

  /* line 5252, ../sass/style.scss */
  .philosophy-content-box p {
    margin-right: 0;
  }

  /* line 5255, ../sass/style.scss */
  #choose-section p {
    width: 100%;
  }

  /* line 5258, ../sass/style.scss */
  #choose-section ul {
    margin-top: 50px;
  }

  /* line 5261, ../sass/style.scss */
  #choose-section canvas {
    margin-top: 50px;
  }

  /* line 5264, ../sass/style.scss */
  #banner-form .responsive-button {
    background-color: #1c92df;
    border: medium none;
    border-radius: 60px;
    display: inline-block;
    letter-spacing: 1px;
    margin-left: 96px;
    padding: 13px 16px;
    margin-left: -65px;
    margin-top: 2px;
  }

  /* line 5275, ../sass/style.scss */
  #banner-form input {
    padding: 0 30px;
  }

  /* line 5278, ../sass/style.scss */
  #banner-form .responsive-button .fa-pencil {
    font-size: 25px;
    color: #FFF;
  }

  /* line 5282, ../sass/style.scss */
  #banner-form #subscribe {
    display: none;
  }

  /* line 5285, ../sass/style.scss */
  figure.team-member p .fa-facebook {
    width: 45px;
    height: 45px;
  }

  /* line 5289, ../sass/style.scss */
  #testimonials-v2 .carousel-indicators {
    bottom: -14px;
  }

  /* line 5292, ../sass/style.scss */
  #identity .rate-box {
    position: relative;
    left: 0;
    margin-bottom: 50px;
  }

  /* line 5297, ../sass/style.scss */
  figure.team-member p .fa-twitter {
    width: 45px;
    height: 45px;
  }

  /* line 5301, ../sass/style.scss */
  figure.team-member p .fa-envelope {
    width: 45px;
    height: 45px;
  }

  /* line 5305, ../sass/style.scss */
  h5 {
    width: 100%;
  }

  /* line 5308, ../sass/style.scss */
  #footer .subcribe {
    width: 100%;
    display: block;
  }

  /* line 5312, ../sass/style.scss */
  #blog-single-page .people-comments-box:nth-child(2n+1) {
    display: block;
    margin-left: 0;
  }

  /* line 5316, ../sass/style.scss */
  .float-right {
    float: none;
  }

  /* line 5319, ../sass/style.scss */
  #blog-page .blog-img-push-right {
    position: relative;
    right: 0;
  }

  /* line 5323, ../sass/style.scss */
  #blog-page .right-content-blog h6::after {
    left: 15px;
  }

  /* line 5326, ../sass/style.scss */
  #blog-page .right-content-blog {
    text-align: left;
  }

  /* line 5329, ../sass/style.scss */
  #clients ul li:nth-child(1):after,
  #clients ul li:nth-child(3):after,
  #clients ul li:nth-child(5):after,
  #clients ul li:nth-child(7):after {
    display: none;
  }

  /* line 5335, ../sass/style.scss */
  #clients ul li:nth-child(6):after {
    display: block;
  }

  /* line 5338, ../sass/style.scss */
  .v1-header .navbar-default .navbar-nav > li > a {
    margin: 0 10px;
  }

  /* line 5341, ../sass/style.scss */
  .v1-header .navbar-default .navbar-nav > li > #search-open {
    margin-left: 0;
  }

  /* line 5344, ../sass/style.scss */
  #filters .button {
    padding-left: 0;
    display: block;
    padding-bottom: 5px;
    margin-bottom: 15px;
    text-align: left;
  }

  /* line 5351, ../sass/style.scss */
  .container-fluid .button-group {
    margin: 60px 40px;
  }

  /* line 5354, ../sass/style.scss */
  .button-group {
    border-bottom: 0px;
    margin: 0 15px;
  }

  /* line 5358, ../sass/style.scss */
  #filters .button.is-checked {
    padding-bottom: 5px;
    width: 100%;
  }

  /* line 5362, ../sass/style.scss */
  #blog-page .right-content-blog span {
    background-position: left bottom;
  }

  /* line 5365, ../sass/style.scss */
  #philosophy:after {
    display: block;
    height: 400px;
    position: relative;
    width: 100%;
  }

  /* line 5371, ../sass/style.scss */
  .identity-fullimg {
    width: 100%;
    position: relative;
    height: 400px;
  }

  /* line 5376, ../sass/style.scss */
  #identity .identity-content-box {
    padding-top: 100px;
    padding-bottom: 55px;
    padding-left: 0;
    padding-right: 0;
  }

  /* line 5382, ../sass/style.scss */
  #project-detail ul {
    padding-left: 0;
  }

  /* line 5385, ../sass/style.scss */
  #testimonials-v2 p {
    margin-bottom: 50px;
  }

  /* line 5388, ../sass/style.scss */
  #testimonials-v2 .carousel-indicators {
    left: 20%;
  }

  /* line 5391, ../sass/style.scss */
  #testimonials-v2 .item {
    margin-left: 0;
  }

  /* line 5394, ../sass/style.scss */
  #pricing .tab-pane .table-active .table-content .table-header {
    margin-top: 0;
  }

  /* line 5397, ../sass/style.scss */
  #pricing .tab-pane .table-active {
    margin: 0;
  }

  /* line 5400, ../sass/style.scss */
  #pricing.v2-table .tab-pane .table-content .table-header {
    margin-top: -100px;
  }

  /* line 5403, ../sass/style.scss */
  .testimonials-1 .carousel-control .icon-prev img {
    margin-left: 0;
  }

  /* line 5406, ../sass/style.scss */
  .testimonials-1 .carousel-control .icon-next img {
    margin-right: 0;
  }

  /* line 5409, ../sass/style.scss */
  .testimonials-3 .carousel-control .icon-prev img {
    margin-left: 0;
  }

  /* line 5412, ../sass/style.scss */
  .testimonials-3 .carousel-control .icon-next img {
    margin-right: 0;
  }

  /* line 5415, ../sass/style.scss */
  .errorpage-box {
    padding: 50px;
  }

  /* line 5418, ../sass/style.scss */
  .errorpage-box .robot {
    margin-bottom: 0px;
    margin-top: 30px;
  }

  /* line 5422, ../sass/style.scss */
  .testimonials-1 .carousel-control {
    display: none;
  }

  /* line 5425, ../sass/style.scss */
  .testimonials-3 .carousel-control {
    display: none;
  }

  /* line 5428, ../sass/style.scss */
  .carousel-cell {
    margin-right: 50px;
  }

  /* line 5431, ../sass/style.scss */
  .flickity-prev-next-button.previous {
    left: 170px;
  }

  /* line 5434, ../sass/style.scss */
  .flickity-prev-next-button.next {
    right: 170px;
  }

  /* line 5437, ../sass/style.scss */
  .tp-banner-container:hover {
    cursor: grab !important;
  }

  /* line 5440, ../sass/style.scss */
  .tp-bullets {
    display: none;
  }
}
@media only screen and (max-width: 850px) {
  /* line 5445, ../sass/style.scss */
  .carousel-caption-custom .button-arrow {
    padding: 12px 25px;
  }

  /* line 5448, ../sass/style.scss */
  .rev_slider_wrapper .button-arrow img {
    margin-left: 20px !important;
    margin-right: -50px !important;
  }

  /* line 5452, ../sass/style.scss */
  .noslider h2 {
    font-size: 35px;
  }

  /* line 5455, ../sass/style.scss */
  .homebanner-styling .carousel-indicators {
    width: 60px;
  }

  /* line 5458, ../sass/style.scss */
  .homebanner-styling .carousel-caption-custom .text-left h2 {
    margin-left: 100px;
    background-position: 20px bottom;
  }

  /* line 5462, ../sass/style.scss */
  .homebanner-styling .carousel-caption-custom .text-left p {
    margin-left: 120px;
  }
}
@media only screen and (max-width: 768px) {
  /* line 5467, ../sass/style.scss */
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }

  /* line 5471, ../sass/style.scss */
  #rev_slider_20_1_wrapper {
    margin-top: 60px !important;
  }

  /* line 5474, ../sass/style.scss */
  .logo {
    width: 101px;
    height: 101px;
    padding: 15px;
    top: 10px;
  }

  /* line 5480, ../sass/style.scss */
  #development {
    background-position: 40px top;
  }

  /* line 5483, ../sass/style.scss */
  #branding {
    background-position: 40px top;
  }

  /* line 5486, ../sass/style.scss */
  #mobileapps {
    background-position: 40px top;
  }

  /* line 5489, ../sass/style.scss */
  #SEO {
    background-position: 40px top;
  }

  /* line 5492, ../sass/style.scss */
  #wordpress {
    background-position: 40px top;
  }

  /* line 5495, ../sass/style.scss */
  #writing {
    background-position: 40px top;
  }

  /* line 5498, ../sass/style.scss */
  .left-content-container h4 {
    font-size: 30px;
    text-align: left;
    margin-top: 100px;
    margin-left: 0;
    margin-bottom: 20px;
  }

  /* line 5505, ../sass/style.scss */
  .v1-header .dropdown-menu > li > a {
    margin: 0px 40px !important;
    color: #FFF;
    line-height: 40px !important;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  /* line 5513, ../sass/style.scss */
  .v1-header .dropdown-menu > li > a:hover {
    color: #1c92df !important;
    background-color: transparent;
  }

  /* line 5517, ../sass/style.scss */
  .left-content-container p {
    text-align: left !important;
  }

  /* line 5520, ../sass/style.scss */
  #primary {
    width: 55%;
  }

  /* line 5523, ../sass/style.scss */
  #map {
    height: 400px;
    margin-top: 50px;
  }

  /* line 5527, ../sass/style.scss */
  .carousel-cell {
    margin-right: 10px;
  }

  /* line 5530, ../sass/style.scss */
  #project-detail-slider .carousel-control {
    top: 40%;
  }

  /* line 5533, ../sass/style.scss */
  .flickity-prev-next-button.previous {
    left: 10px;
  }

  /* line 5536, ../sass/style.scss */
  .flickity-prev-next-button.next {
    right: 10px;
  }

  /* line 5539, ../sass/style.scss */
  #identity h2::after {
    left: 15px;
  }

  /* line 5542, ../sass/style.scss */
  .navbar-inverse .navbar-toggle {
    background: transparent;
    border: solid 2px #1c92df;
    margin: 0;
    border-radius: 0;
    padding: 10px 8px !important;
  }

  /* line 5549, ../sass/style.scss */
  .navbar-inverse .navbar-toggle:hover {
    background: transparent;
  }

  /* line 5552, ../sass/style.scss */
  .navbar-inverse .navbar-toggle:focus {
    background: transparent;
  }

  /* line 5555, ../sass/style.scss */
  .navbar-inverse .navbar-toggle .icon-bar {
    background-color: #1c92df !important;
  }

  /* line 5558, ../sass/style.scss */
  #primary li a span {
    color: #FFF;
  }

  /* line 5561, ../sass/style.scss */
  #primary li.active a span {
    color: #FFF;
  }

  /* line 5564, ../sass/style.scss */
  #primary li.active a,
  #primary li a.active,
  #primary li a:hover {
    background: #1c92df;
  }

  /* line 5569, ../sass/style.scss */
  #primary li.active a span,
  #primary li a.active span,
  #primary li a:hover span {
    color: #FFF !important;
  }

  /* line 5574, ../sass/style.scss */
  #team .margin-top {
    margin-top: 0;
  }

  /* line 5577, ../sass/style.scss */
  .pr-box-left {
    text-align: left !important;
    margin: 30px 0 0 !important;
  }

  /* line 5581, ../sass/style.scss */
  .pr-box-right {
    margin: 0 0 30px 0 !important;
  }

  /* line 5584, ../sass/style.scss */
  #our-work .work-big-img {
    display: none;
  }

  /* line 5587, ../sass/style.scss */
  #blog-single-page blockquote p {
    background-image: none;
    padding-right: 0;
    font-size: 18px;
    line-height: 25px;
  }

  /* line 5593, ../sass/style.scss */
  #features .ftr-1,
  .ftr-2 {
    margin-bottom: 50px;
  }

  /* line 5597, ../sass/style.scss */
  #blog .template-border {
    margin-bottom: 50px;
  }

  /* line 5600, ../sass/style.scss */
  .homebanner-styling .carousel-indicators {
    display: none;
  }

  /* line 5603, ../sass/style.scss */
  #contact-form .field-label {
    border-bottom: none;
  }

  /* line 5606, ../sass/style.scss */
  #contact-form input {
    margin: 0;
    width: 100%;
    float: none;
  }

  /* line 5611, ../sass/style.scss */
  #contact-form .padding-left-remove {
    padding-left: 15px;
  }

  /* line 5614, ../sass/style.scss */
  #pre-next .pre-button {
    text-align: center;
    border-right: solid 1px #e5e5e5;
    border-bottom: none;
  }

  /* line 5619, ../sass/style.scss */
  #pre-next .next-button {
    text-align: center;
  }

  /* line 5622, ../sass/style.scss */
  #team .template-border {
    margin-top: 70px;
  }

  /* line 5625, ../sass/style.scss */
  #team .team-member-spacing-top {
    margin-top: 20px;
  }

  /* line 5628, ../sass/style.scss */
  #discover .right-paragraph {
    margin-top: 50px;
  }

  /* line 5631, ../sass/style.scss */
  #contact-form input {
    padding: 10px 0;
  }

  /* line 5634, ../sass/style.scss */
  .coming-soon-banner #banner-form input {
    width: 100%;
  }

  /* line 5637, ../sass/style.scss */
  .coming-soon-banner #banner-form {
    width: 75%;
  }
}
@media only screen and (max-width: 640px) {
  /* line 5642, ../sass/style.scss */
  .homebanner-styling .carousel-caption-custom p {
    width: 100%;
  }

  /* line 5645, ../sass/style.scss */
  .right-arrow {
    margin-right: -20px;
  }

  /* line 5648, ../sass/style.scss */
  .coming-soon-banner #banner-form {
    width: 100%;
  }

  /* line 5651, ../sass/style.scss */
  .homebanner-styling .carousel-caption-custom h2 {
    letter-spacing: 2px;
  }

  /* line 5654, ../sass/style.scss */
  .homebanner-styling .carousel-caption-custom .text-left h2 {
    margin-left: 1em;
  }

  /* line 5657, ../sass/style.scss */
  .homebanner-styling .carousel-caption-custom p.text-left {
    width: 60%;
    margin-left: 3em;
  }

  /* line 5661, ../sass/style.scss */
  .left-content-container h4 {
    font-size: 25px;
  }

  /* line 5664, ../sass/style.scss */
  #project-detail-slider .carousel-control {
    top: 35%;
  }

  /* line 5667, ../sass/style.scss */
  .testimonials-1 .carousel-control {
    display: none;
  }

  /* line 5670, ../sass/style.scss */
  .testimonials-3 .carousel-control {
    display: none;
  }

  /* line 5673, ../sass/style.scss */
  footer #footer ul li {
    list-style: outside none none;
    margin: 10px 5px;
  }

  /* line 5677, ../sass/style.scss */
  .coming-soon-banner ul li {
    list-style: outside none none;
    margin: 10px 5px;
  }

  /* line 5681, ../sass/style.scss */
  .portfolio-grid .element-item figcaption h5 {
    display: none;
  }

  /* line 5684, ../sass/style.scss */
  .portfolio-grid .element-item figcaption p {
    display: none;
  }

  /* line 5687, ../sass/style.scss */
  .portfolio-grid figure {
    position: relative;
  }

  /* line 5690, ../sass/style.scss */
  .portfolio-grid .element-item figcaption {
    text-align: center;
  }

  /* line 5693, ../sass/style.scss */
  .portfolio-grid .element-item figcaption a {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin: 0px;
    margin-left: -25px;
    float: none;
  }

  /* line 5701, ../sass/style.scss */
  .carousel-cell figcaption a {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin: 0px;
  }

  /* line 5707, ../sass/style.scss */
  .carousel-cell figcaption {
    text-align: center;
  }

  /* line 5710, ../sass/style.scss */
  figcaption .share-link {
    width: 50px;
    height: 50px;
  }

  /* line 5714, ../sass/style.scss */
  figcaption .share-link .fa-circle {
    margin-top: 18px;
  }

  /* line 5717, ../sass/style.scss */
  .carousel-cell figcaption h5 {
    display: none;
  }

  /* line 5720, ../sass/style.scss */
  .carousel-cell figcaption p {
    display: none;
  }

  /* line 5723, ../sass/style.scss */
  .left-content-container .box-counter {
    float: none;
    margin-left: 0;
    text-align: center;
  }

  /* line 5728, ../sass/style.scss */
  .left-content-container h5 {
    text-align: center;
  }

  /* line 5731, ../sass/style.scss */
  #pricing .nav-tabs > li {
    float: none;
  }

  /* line 5734, ../sass/style.scss */
  #pricing .nav-tabs {
    margin-bottom: 70px;
  }

  /* line 5737, ../sass/style.scss */
  #quote-carousel .carousel-indicators li {
    width: 50px;
    min-height: 85px;
    margin-left: 0;
    margin-right: 0;
  }

  /* line 5743, ../sass/style.scss */
  #quote-carousel .carousel-indicators li .testimonials_avtar {
    width: 50px;
    height: 50px;
  }

  /* line 5747, ../sass/style.scss */
  .errorpage-box {
    padding: 30px;
  }

  /* line 5750, ../sass/style.scss */
  #quote-carousel .carousel-indicators li h4 {
    font-size: 12px;
  }

  /* line 5753, ../sass/style.scss */
  #quote-carousel .carousel-indicators li h5 {
    font-size: 11px;
  }
}
@media only screen and (max-width: 480px) {
  /* line 5758, ../sass/style.scss */
  #countbox1 {
    font-size: 50px;
    margin-bottom: 30px;
  }

  /* line 5762, ../sass/style.scss */
  #blog-single-page blockquote {
    padding: 50px 25px;
  }

  /* line 5765, ../sass/style.scss */
  #countbox1 span {
    font-size: 16px;
  }

  /* line 5768, ../sass/style.scss */
  #about-us #aboutslider .box-1 {
    padding: 100px 40px 70px;
  }

  /* line 5771, ../sass/style.scss */
  #project-detail-slider .carousel-control {
    top: 30%;
  }

  /* line 5774, ../sass/style.scss */
  #contact-form .field-label {
    width: 100%;
  }

  /* line 5777, ../sass/style.scss */
  .coming-soon-banner hr {
    width: 250px;
  }

  /* line 5780, ../sass/style.scss */
  .v1-header .dropdown-menu li a {
    background-position: 95% center;
  }

  /* line 5783, ../sass/style.scss */
  #banner-form input {
    width: 98%;
  }

  /* line 5786, ../sass/style.scss */
  .flickity-prev-next-button {
    top: 35% !important;
  }

  /* line 5789, ../sass/style.scss */
  #footer input:nth-child(1) {
    width: 80%;
  }

  /* line 5792, ../sass/style.scss */
  #pricing.v2-table .tab-pane .button-arrow img {
    display: none;
  }

  /* line 5795, ../sass/style.scss */
  #pricing.v2-table .tab-pane .button-arrow {
    padding: 16px;
  }

  /* line 5798, ../sass/style.scss */
  #pricing.v2-table .tab-pane .table-content {
    margin-left: 0;
    margin-right: 0;
  }

  /* line 5802, ../sass/style.scss */
  #pricing .tab-pane li span {
    font-size: 14px;
  }

  /* line 5805, ../sass/style.scss */
  .button-arrow {
    padding: 16px 35px 16px 35px;
  }

  /* line 5808, ../sass/style.scss */
  .button-arrow.border-none {
    padding: 0;
  }

  /* line 5811, ../sass/style.scss */
  .button-arrow img {
    display: none;
  }

  /* line 5814, ../sass/style.scss */
  .button-arrow.border-none img {
    display: inline-block;
  }

  /* line 5817, ../sass/style.scss */
  .included-box span {
    font-size: 14px;
  }

  /* line 5820, ../sass/style.scss */
  .included-box {
    padding: 25px 0;
  }

  /* line 5823, ../sass/style.scss */
  #readytostart .button-arrow {
    padding: 16px 20px;
  }

  /* line 5826, ../sass/style.scss */
  #pricing.v2-table li .tab-pane span {
    font-size: 14px;
  }

  /* line 5829, ../sass/style.scss */
  #pricing.v2-table .tab-pane .table-active li span {
    font-size: 14px;
  }

  /* line 5832, ../sass/style.scss */
  #quote-carousel .carousel-indicators li {
    width: 50px;
    min-height: 85px;
    margin-left: 0;
    margin-right: 0;
  }

  /* line 5838, ../sass/style.scss */
  #quote-carousel .carousel-indicators li .testimonials_avtar {
    width: 50px;
    height: 50px;
  }
}
/* line 5843, ../sass/style.scss */
#features svg {
  width: 80px;
  height: 80px;
  margin-top: 30px;
}

/* line 5848, ../sass/style.scss */
#features svg path {
  stroke: #1c92df;
  fill: transparent;
  stroke-width: 1px;
}

/* line 5853, ../sass/style.scss */
.border-svgicon {
  width: 109px;
  height: 109px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  vertical-align: middle;
  padding: 30px 0;
  border: solid 3px #1c92df;
}

/* line 5863, ../sass/style.scss */
.border-svgicon svg {
  margin-top: 0;
  width: 46px;
  height: 46px;
  stroke-width: 2.931px;
}

/* line 5869, ../sass/style.scss */
.branding_0 {
  stroke-dasharray: 37 39;
  stroke-dashoffset: 38;
  animation: EEYxXvJX_draw 1333ms linear 0ms forwards;
}

/* line 5874, ../sass/style.scss */
.branding_1 {
  stroke-dasharray: 17 19;
  stroke-dashoffset: 18;
  animation: EEYxXvJX_draw 1333ms linear 166ms forwards;
}

/* line 5879, ../sass/style.scss */
.branding_2 {
  stroke-dasharray: 17 19;
  stroke-dashoffset: 18;
  animation: EEYxXvJX_draw 1333ms linear 333ms forwards;
}

/* line 5884, ../sass/style.scss */
.branding_3 {
  stroke-dasharray: 9 11;
  stroke-dashoffset: 10;
  animation: EEYxXvJX_draw 1333ms linear 500ms forwards;
}

/* line 5889, ../sass/style.scss */
.branding_4 {
  stroke-dasharray: 117 119;
  stroke-dashoffset: 118;
  animation: EEYxXvJX_draw 1333ms linear 666ms forwards;
}

@keyframes EEYxXvJX_draw {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes EEYxXvJX_fade {
  0% {
    stroke-opacity: 1;
  }
  93.54838709677419% {
    stroke-opacity: 1;
  }
  100% {
    stroke-opacity: 0;
  }
}
/* line 5910, ../sass/style.scss */
.webdevelopment_0 {
  stroke-dasharray: 1659 1661;
  stroke-dashoffset: 1660;
  animation: EFDlxdpS_draw 1200ms linear 0ms forwards;
}

/* line 5915, ../sass/style.scss */
.webdevelopment_1 {
  stroke-dasharray: 1828 1830;
  stroke-dashoffset: 1829;
  animation: EFDlxdpS_draw 1200ms linear 600ms forwards;
}

@keyframes EFDlxdpS_draw {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes EFDlxdpS_fade {
  0% {
    stroke-opacity: 1;
  }
  93.33333333333333% {
    stroke-opacity: 1;
  }
  100% {
    stroke-opacity: 0;
  }
}
/* line 5936, ../sass/style.scss */
.qXuTYcMA_0 {
  stroke-dasharray: 203 205;
  stroke-dashoffset: 204;
  animation: qXuTYcMA_draw 1333ms linear 0ms forwards;
}

/* line 5941, ../sass/style.scss */
.qXuTYcMA_1 {
  stroke-dasharray: 224 226;
  stroke-dashoffset: 225;
  animation: qXuTYcMA_draw 1333ms linear 666ms forwards;
}

@keyframes qXuTYcMA_draw {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes qXuTYcMA_fade {
  0% {
    stroke-opacity: 1;
  }
  93.54838709677419% {
    stroke-opacity: 1;
  }
  100% {
    stroke-opacity: 0;
  }
}
/* line 5962, ../sass/style.scss */
.mobile_0 {
  stroke-dasharray: 239 241;
  stroke-dashoffset: 240;
  animation: dJuZBlIT_draw 1200ms linear 0ms forwards;
}

/* line 5967, ../sass/style.scss */
.mobile_1 {
  stroke-dasharray: 176 178;
  stroke-dashoffset: 177;
  animation: dJuZBlIT_draw 1200ms linear 200ms forwards;
}

/* line 5972, ../sass/style.scss */
.mobile_2 {
  stroke-dasharray: 19 21;
  stroke-dashoffset: 20;
  animation: dJuZBlIT_draw 1200ms linear 400ms forwards;
}

/* line 5977, ../sass/style.scss */
.mobile_3 {
  stroke-dasharray: 11 13;
  stroke-dashoffset: 12;
  animation: dJuZBlIT_draw 1200ms linear 600ms forwards;
}

@keyframes dJuZBlIT_draw {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes dJuZBlIT_fade {
  0% {
    stroke-opacity: 1;
  }
  93.33333333333333% {
    stroke-opacity: 1;
  }
  100% {
    stroke-opacity: 0;
  }
}
/* line 5998, ../sass/style.scss */
.aDgygLUS_0 {
  stroke-dasharray: 11 13;
  stroke-dashoffset: 12;
  animation: aDgygLUS_draw 1200ms linear 0ms forwards;
}

/* line 6003, ../sass/style.scss */
.aDgygLUS_1 {
  stroke-dasharray: 11 13;
  stroke-dashoffset: 12;
  animation: aDgygLUS_draw 1200ms linear 150ms forwards;
}

/* line 6008, ../sass/style.scss */
.aDgygLUS_2 {
  stroke-dasharray: 127 129;
  stroke-dashoffset: 128;
  animation: aDgygLUS_draw 1200ms linear 300ms forwards;
}

/* line 6013, ../sass/style.scss */
.aDgygLUS_3 {
  stroke-dasharray: 4 6;
  stroke-dashoffset: 5;
  animation: aDgygLUS_draw 1200ms linear 450ms forwards;
}

/* line 6018, ../sass/style.scss */
.aDgygLUS_4 {
  stroke-dasharray: 30 32;
  stroke-dashoffset: 31;
  animation: aDgygLUS_draw 1200ms linear 600ms forwards;
}

@keyframes aDgygLUS_draw {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes aDgygLUS_fade {
  0% {
    stroke-opacity: 1;
  }
  93.33333333333333% {
    stroke-opacity: 1;
  }
  100% {
    stroke-opacity: 0;
  }
}
/* line 6039, ../sass/style.scss */
.TySfYLha_0 {
  stroke-dasharray: 113 115;
  stroke-dashoffset: 114;
  animation: TySfYLha_draw 1333ms linear 0ms forwards;
}

/* line 6044, ../sass/style.scss */
.TySfYLha_1 {
  stroke-dasharray: 75 77;
  stroke-dashoffset: 76;
  animation: TySfYLha_draw 1333ms linear 83ms forwards;
}

/* line 6049, ../sass/style.scss */
.TySfYLha_2 {
  stroke-dasharray: 124 126;
  stroke-dashoffset: 125;
  animation: TySfYLha_draw 1333ms linear 166ms forwards;
}

/* line 6054, ../sass/style.scss */
.TySfYLha_3 {
  stroke-dasharray: 20 22;
  stroke-dashoffset: 21;
  animation: TySfYLha_draw 1333ms linear 250ms forwards;
}

/* line 6059, ../sass/style.scss */
.TySfYLha_4 {
  stroke-dasharray: 20 22;
  stroke-dashoffset: 21;
  animation: TySfYLha_draw 1333ms linear 333ms forwards;
}

/* line 6064, ../sass/style.scss */
.TySfYLha_5 {
  stroke-dasharray: 101 103;
  stroke-dashoffset: 102;
  animation: TySfYLha_draw 1333ms linear 416ms forwards;
}

/* line 6069, ../sass/style.scss */
.TySfYLha_6 {
  stroke-dasharray: 101 103;
  stroke-dashoffset: 102;
  animation: TySfYLha_draw 1333ms linear 500ms forwards;
}

/* line 6074, ../sass/style.scss */
.TySfYLha_7 {
  stroke-dasharray: 74 76;
  stroke-dashoffset: 75;
  animation: TySfYLha_draw 1333ms linear 583ms forwards;
}

/* line 6079, ../sass/style.scss */
.TySfYLha_8 {
  stroke-dasharray: 46 48;
  stroke-dashoffset: 47;
  animation: TySfYLha_draw 1333ms linear 666ms forwards;
}

@keyframes TySfYLha_draw {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes TySfYLha_fade {
  0% {
    stroke-opacity: 1;
  }
  93.54838709677419% {
    stroke-opacity: 1;
  }
  100% {
    stroke-opacity: 0;
  }
}
/* line 6100, ../sass/style.scss */
.wp_development_0 {
  stroke-dasharray: 159 161;
  stroke-dashoffset: 160;
  animation: FwrFWqOh_draw 1200ms linear 0ms forwards;
}

/* line 6105, ../sass/style.scss */
.wp_development_1 {
  stroke-dasharray: 44 46;
  stroke-dashoffset: 45;
  animation: FwrFWqOh_draw 1200ms linear 66ms forwards;
}

/* line 6110, ../sass/style.scss */
.wp_development_2 {
  stroke-dasharray: 0 2;
  stroke-dashoffset: 1;
  animation: FwrFWqOh_draw 1200ms linear 133ms forwards;
}

/* line 6115, ../sass/style.scss */
.wp_development_3 {
  stroke-dasharray: 0 2;
  stroke-dashoffset: 1;
  animation: FwrFWqOh_draw 1200ms linear 200ms forwards;
}

/* line 6120, ../sass/style.scss */
.wp_development_4 {
  stroke-dasharray: 0 2;
  stroke-dashoffset: 1;
  animation: FwrFWqOh_draw 1200ms linear 266ms forwards;
}

/* line 6125, ../sass/style.scss */
.wp_development_5 {
  stroke-dasharray: 11 13;
  stroke-dashoffset: 12;
  animation: FwrFWqOh_draw 1200ms linear 333ms forwards;
}

/* line 6130, ../sass/style.scss */
.wp_development_6 {
  stroke-dasharray: 10 12;
  stroke-dashoffset: 11;
  animation: FwrFWqOh_draw 1200ms linear 400ms forwards;
}

/* line 6135, ../sass/style.scss */
.wp_development_7 {
  stroke-dasharray: 11 13;
  stroke-dashoffset: 12;
  animation: FwrFWqOh_draw 1200ms linear 466ms forwards;
}

/* line 6140, ../sass/style.scss */
.wp_development_8 {
  stroke-dasharray: 10 12;
  stroke-dashoffset: 11;
  animation: FwrFWqOh_draw 1200ms linear 533ms forwards;
}

/* line 6145, ../sass/style.scss */
.wp_development_9 {
  stroke-dasharray: 16 18;
  stroke-dashoffset: 17;
  animation: FwrFWqOh_draw 1200ms linear 600ms forwards;
}

@keyframes FwrFWqOh_draw {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes FwrFWqOh_fade {
  0% {
    stroke-opacity: 1;
  }
  93.33333333333333% {
    stroke-opacity: 1;
  }
  100% {
    stroke-opacity: 0;
  }
}
/* line 6166, ../sass/style.scss */
.writing_0 {
  stroke-dasharray: 11 13;
  stroke-dashoffset: 12;
  animation: aDgygLUS_draw 1200ms linear 0ms forwards;
}

/* line 6171, ../sass/style.scss */
.writing_1 {
  stroke-dasharray: 11 13;
  stroke-dashoffset: 12;
  animation: aDgygLUS_draw 1200ms linear 150ms forwards;
}

/* line 6176, ../sass/style.scss */
.writing_2 {
  stroke-dasharray: 127 129;
  stroke-dashoffset: 128;
  animation: aDgygLUS_draw 1200ms linear 300ms forwards;
}

/* line 6181, ../sass/style.scss */
.writing_3 {
  stroke-dasharray: 4 6;
  stroke-dashoffset: 5;
  animation: aDgygLUS_draw 1200ms linear 450ms forwards;
}

/* line 6186, ../sass/style.scss */
.writing_4 {
  stroke-dasharray: 30 32;
  stroke-dashoffset: 31;
  animation: aDgygLUS_draw 1200ms linear 600ms forwards;
}

@keyframes aDgygLUS_draw {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes aDgygLUS_fade {
  0% {
    stroke-opacity: 1;
  }
  93.33333333333333% {
    stroke-opacity: 1;
  }
  100% {
    stroke-opacity: 0;
  }
}
/* line 6207, ../sass/style.scss */
.zTkSOSDF_0 {
  stroke-dasharray: 186 188;
  stroke-dashoffset: 187;
  animation: zTkSOSDF_draw 1602ms linear 0ms forwards;
}

/* line 6212, ../sass/style.scss */
.zTkSOSDF_1 {
  stroke-dasharray: 137 139;
  stroke-dashoffset: 138;
  animation: zTkSOSDF_draw 1182ms linear 1602ms forwards;
}

/* line 6217, ../sass/style.scss */
.zTkSOSDF_2 {
  stroke-dasharray: 15 17;
  stroke-dashoffset: 16;
  animation: zTkSOSDF_draw 137ms linear 2785ms forwards;
}

/* line 6222, ../sass/style.scss */
.zTkSOSDF_3 {
  stroke-dasharray: 8 10;
  stroke-dashoffset: 9;
  animation: zTkSOSDF_draw 77ms linear 2922ms forwards;
}

@keyframes zTkSOSDF_draw {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes zTkSOSDF_fade {
  0% {
    stroke-opacity: 1;
  }
  94.44444444444444% {
    stroke-opacity: 1;
  }
  100% {
    stroke-opacity: 0;
  }
}
/* line 6243, ../sass/style.scss */
.lYXWmwMr_0 {
  stroke-dasharray: 64 66;
  stroke-dashoffset: 65;
  animation: lYXWmwMr_draw 547ms linear 0ms forwards;
}

/* line 6248, ../sass/style.scss */
.lYXWmwMr_1 {
  stroke-dasharray: 64 66;
  stroke-dashoffset: 65;
  animation: lYXWmwMr_draw 547ms linear 547ms forwards;
}

/* line 6253, ../sass/style.scss */
.lYXWmwMr_2 {
  stroke-dasharray: 31 33;
  stroke-dashoffset: 32;
  animation: lYXWmwMr_draw 269ms linear 1095ms forwards;
}

/* line 6258, ../sass/style.scss */
.lYXWmwMr_3 {
  stroke-dasharray: 19 21;
  stroke-dashoffset: 20;
  animation: lYXWmwMr_draw 168ms linear 1365ms forwards;
}

/* line 6263, ../sass/style.scss */
.lYXWmwMr_4 {
  stroke-dasharray: 19 21;
  stroke-dashoffset: 20;
  animation: lYXWmwMr_draw 168ms linear 1533ms forwards;
}

/* line 6268, ../sass/style.scss */
.lYXWmwMr_5 {
  stroke-dasharray: 35 37;
  stroke-dashoffset: 36;
  animation: lYXWmwMr_draw 303ms linear 1702ms forwards;
}

/* line 6273, ../sass/style.scss */
.lYXWmwMr_6 {
  stroke-dasharray: 42 44;
  stroke-dashoffset: 43;
  animation: lYXWmwMr_draw 362ms linear 2005ms forwards;
}

/* line 6278, ../sass/style.scss */
.lYXWmwMr_7 {
  stroke-dasharray: 24 26;
  stroke-dashoffset: 25;
  animation: lYXWmwMr_draw 210ms linear 2367ms forwards;
}

/* line 6283, ../sass/style.scss */
.lYXWmwMr_8 {
  stroke-dasharray: 24 26;
  stroke-dashoffset: 25;
  animation: lYXWmwMr_draw 210ms linear 2578ms forwards;
}

/* line 6288, ../sass/style.scss */
.lYXWmwMr_9 {
  stroke-dasharray: 24 26;
  stroke-dashoffset: 25;
  animation: lYXWmwMr_draw 210ms linear 2789ms forwards;
}

@keyframes lYXWmwMr_draw {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes lYXWmwMr_fade {
  0% {
    stroke-opacity: 1;
  }
  94.44444444444444% {
    stroke-opacity: 1;
  }
  100% {
    stroke-opacity: 0;
  }
}
/* line 6309, ../sass/style.scss */
.HRGcuSPy_0 {
  stroke-dasharray: 117 119;
  stroke-dashoffset: 118;
  animation: HRGcuSPy_draw 1824ms linear 0ms forwards;
}

/* line 6314, ../sass/style.scss */
.HRGcuSPy_1 {
  stroke-dasharray: 53 55;
  stroke-dashoffset: 54;
  animation: HRGcuSPy_draw 835ms linear 1824ms forwards;
}

/* line 6319, ../sass/style.scss */
.HRGcuSPy_2 {
  stroke-dasharray: 21 23;
  stroke-dashoffset: 22;
  animation: HRGcuSPy_draw 340ms linear 2659ms forwards;
}

@keyframes HRGcuSPy_draw {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes HRGcuSPy_fade {
  0% {
    stroke-opacity: 1;
  }
  94.44444444444444% {
    stroke-opacity: 1;
  }
  100% {
    stroke-opacity: 0;
  }
}
/* line 6340, ../sass/style.scss */
.HEhvqAuf_0 {
  stroke-dasharray: 135 137;
  stroke-dashoffset: 136;
  animation: HEhvqAuf_draw 800ms linear 0ms forwards;
}

/* line 6345, ../sass/style.scss */
.HEhvqAuf_1 {
  stroke-dasharray: 38 40;
  stroke-dashoffset: 39;
  animation: HEhvqAuf_draw 229ms linear 800ms forwards;
}

/* line 6350, ../sass/style.scss */
.HEhvqAuf_2 {
  stroke-dasharray: 7 9;
  stroke-dashoffset: 8;
  animation: HEhvqAuf_draw 47ms linear 1029ms forwards;
}

/* line 6355, ../sass/style.scss */
.HEhvqAuf_3 {
  stroke-dasharray: 102 104;
  stroke-dashoffset: 103;
  animation: HEhvqAuf_draw 605ms linear 1076ms forwards;
}

/* line 6360, ../sass/style.scss */
.HEhvqAuf_4 {
  stroke-dasharray: 120 122;
  stroke-dashoffset: 121;
  animation: HEhvqAuf_draw 711ms linear 1682ms forwards;
}

/* line 6365, ../sass/style.scss */
.HEhvqAuf_5 {
  stroke-dasharray: 102 104;
  stroke-dashoffset: 103;
  animation: HEhvqAuf_draw 605ms linear 2394ms forwards;
}

@keyframes HEhvqAuf_draw {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes HEhvqAuf_fade {
  0% {
    stroke-opacity: 1;
  }
  94.44444444444444% {
    stroke-opacity: 1;
  }
  100% {
    stroke-opacity: 0;
  }
}
/* line 6386, ../sass/style.scss */
.HmURDRiW_0 {
  stroke-dasharray: 211 213;
  stroke-dashoffset: 212;
  animation: HmURDRiW_draw 1503ms linear 0ms forwards;
}

/* line 6391, ../sass/style.scss */
.HmURDRiW_1 {
  stroke-dasharray: 59 61;
  stroke-dashoffset: 60;
  animation: HmURDRiW_draw 425ms linear 1503ms forwards;
}

/* line 6396, ../sass/style.scss */
.HmURDRiW_2 {
  stroke-dasharray: 58 60;
  stroke-dashoffset: 59;
  animation: HmURDRiW_draw 418ms linear 1929ms forwards;
}

/* line 6401, ../sass/style.scss */
.HmURDRiW_3 {
  stroke-dasharray: 58 60;
  stroke-dashoffset: 59;
  animation: HmURDRiW_draw 418ms linear 2347ms forwards;
}

/* line 6406, ../sass/style.scss */
.HmURDRiW_4 {
  stroke-dasharray: 10 12;
  stroke-dashoffset: 11;
  animation: HmURDRiW_draw 78ms linear 2765ms forwards;
}

/* line 6411, ../sass/style.scss */
.HmURDRiW_5 {
  stroke-dasharray: 10 12;
  stroke-dashoffset: 11;
  animation: HmURDRiW_draw 78ms linear 2843ms forwards;
}

/* line 6416, ../sass/style.scss */
.HmURDRiW_6 {
  stroke-dasharray: 10 12;
  stroke-dashoffset: 11;
  animation: HmURDRiW_draw 78ms linear 2921ms forwards;
}

@keyframes HmURDRiW_draw {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes HmURDRiW_fade {
  0% {
    stroke-opacity: 1;
  }
  94.44444444444444% {
    stroke-opacity: 1;
  }
  100% {
    stroke-opacity: 0;
  }
}
/* line 6437, ../sass/style.scss */
.mLfQFYDM_0 {
  stroke-dasharray: 193 195;
  stroke-dashoffset: 194;
  animation: mLfQFYDM_draw 2196ms linear 0ms forwards;
}

/* line 6442, ../sass/style.scss */
.mLfQFYDM_1 {
  stroke-dasharray: 70 72;
  stroke-dashoffset: 71;
  animation: mLfQFYDM_draw 803ms linear 2196ms forwards;
}

@keyframes mLfQFYDM_draw {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes mLfQFYDM_fade {
  0% {
    stroke-opacity: 1;
  }
  94.44444444444444% {
    stroke-opacity: 1;
  }
  100% {
    stroke-opacity: 0;
  }
}
/* line 6463, ../sass/style.scss */
.LOvgHDhB_0 {
  stroke-dasharray: 62 64;
  stroke-dashoffset: 63;
  animation: LOvgHDhB_draw 843ms linear 0ms forwards;
}

/* line 6468, ../sass/style.scss */
.LOvgHDhB_1 {
  stroke-dasharray: 160 162;
  stroke-dashoffset: 161;
  animation: LOvgHDhB_draw 2156ms linear 843ms forwards;
}

@keyframes LOvgHDhB_draw {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes LOvgHDhB_fade {
  0% {
    stroke-opacity: 1;
  }
  94.44444444444444% {
    stroke-opacity: 1;
  }
  100% {
    stroke-opacity: 0;
  }
}
/* line 6489, ../sass/style.scss */
.pRYzWCvV_0 {
  stroke-dasharray: 190 192;
  stroke-dashoffset: 191;
  animation: pRYzWCvV_draw 2282ms linear 0ms forwards;
}

/* line 6494, ../sass/style.scss */
.pRYzWCvV_1 {
  stroke-dasharray: 28 30;
  stroke-dashoffset: 29;
  animation: pRYzWCvV_draw 346ms linear 2282ms forwards;
}

/* line 6499, ../sass/style.scss */
.pRYzWCvV_2 {
  stroke-dasharray: 30 32;
  stroke-dashoffset: 31;
  animation: pRYzWCvV_draw 370ms linear 2629ms forwards;
}

@keyframes pRYzWCvV_draw {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes pRYzWCvV_fade {
  0% {
    stroke-opacity: 1;
  }
  94.44444444444444% {
    stroke-opacity: 1;
  }
  100% {
    stroke-opacity: 0;
  }
}
