
/* ---------------------------------------------
Table of contents
------------------------------------------------
01. font & reset css
02. preloader
03. global styles
04. buttons
05. header
06. welcome area
07. home
08. blog
09. our work
10. aside
11. contact
12. footer
--------------------------------------------- */
/* 
---------------------------------------------
font & reset css
--------------------------------------------- 
*/

@font-face {
    font-family: 'merriweatherregular';
    src: url('../fonts/merriweather-regular-webfont.eot');
    src: url('../fonts/merriweather-regular-webfont.eot#iefix') format('embedded-opentype'),
         url('../fonts/merriweather-regular-webfont.woff') format('woff'),
         url('../fonts/merriweather-regular-webfont.ttf') format('truetype'),
         url('../fonts/merriweather-regular-webfont.svg#merriweatherregular') format('svg');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'ProximaNovaRegular';
    src: url('../fonts/proximanova-regular-webfont.eot');
    src: url('../fonts/proximanova-regular-webfont.eot#iefix') format('embedded-opentype'),
         url('../fonts/proximanova-regular-webfont.woff') format('woff'),
         url('../fonts/proximanova-regular-webfont.ttf') format('truetype'),
         url('../fonts/proximanova-regular-webfont.svg#ProximaNovaRegular') format('svg');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'ProximaNovaBold';
    src: url('../fonts/proximanova-bold-webfont.eot');
    src: url('../fonts/proximanova-bold-webfont.eot#iefix') format('embedded-opentype'),
         url('../fonts/proximanova-bold-webfont.woff') format('woff'),
         url('../fonts/proximanova-bold-webfont.ttf') format('truetype'),
         url('../fonts/proximanova-bold-webfont.svg#ProximaNovaBold') format('svg');
    font-weight: normal;
    font-style: normal;

}
@import url("https://fonts.googleapis.com/css?family=Nunito:300,400,400i,600,700&amp;subset=latin-ext");
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 20px;
 color: #3B566E;
}

h1 {
  font-weight: 400;
  font-size: 36px;
}

h2 {
    color: #040707;
    font-size: 37px;
    line-height: 55px;
    font-family: ProximaNovaBold;
    margin: 0;
    padding: 0 0 10px;
    font-weight: 400;
}
.left-border{
  background: url("../../assets/images/border-left.jpg") 0 6px no-repeat;
    width: 440px;
   padding: 0 0 0 20px;
}
h3 {
    font-weight: 400;
    font-size: 28px;
    color: #040707;
    font-size: 27px;
    font-family: ProximaNovaBold;
    line-height: 38px;
    margin: 0;
    padding: 0 0 12px;
}

h4 {
  font-weight: 400;
  font-size: 24px;
}

h5 {
  font-weight: 400;
  font-size: 20px;
}

h6 {
  font-weight: 400;
 color: #515151;
font-size: 22px;
line-height: 30px;
font-family: ProximaNovaRegular;
text-align: center;
margin: 0;
padding: 0 0 81px;

}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, div
pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q,
s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
figure, header, nav, section, article, aside, footer, figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clearfix {
  display: inline-block;
}

html[xmlns] .clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}

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

header, nav, section, article, aside, footer, hgroup {
  display: block;
}

* {
  box-sizing: border-box;
}

html, body {
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  background-color: #fff;
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none !important;
}

h1, h2, h3, h4, h5 {
  margin-top: 0px;
  margin-bottom: 0px;
  font-weight: 400;
}

ul {
  margin-bottom: 0px;
}

/* 
---------------------------------------------
preloader
--------------------------------------------- 
*/
.loader-wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 99999;
  margin: 0;
  background-image: linear-gradient(127deg, #384DFF 0%, #24CDFF 91%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-wrapper .center {
  width: 90px;
  height: 90px;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.loader-wrapper .center .dot {
  width: 8px;
  animation: dot 1200ms cubic-bezier(0.91, 1.42, 0.87, 0.99);
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  height: 8px;
  border-radius: 50%;
  background-color: #fff;
  margin: 1px;
}

.loader-wrapper .center .dot.dot-two {
  animation-delay: 150ms;
}

.loader-wrapper .center .dot.dot-three {
  animation-delay: 300ms;
}

.loader-wrapper .center .dot.dot-four {
  animation-delay: 450ms;
}

.loader-wrapper .center .dot.dot-five {
  animation-delay: 600ms;
}

@keyframes dot {
  0% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

/* 
---------------------------------------------
global styles
--------------------------------------------- 
*/
::selection {
  background: #4886FF;
  color: #fff;
}

::-moz-selection {
  background: #4886FF;
  color: #fff;
}

.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}

.align-self-bottom {
  -ms-flex-item-align: flex-end !important;
  align-self: flex-end !important;
}

.section {
  padding-top: 66px;
  padding-bottom: 100px;
  position: relative;
}

.section.services-section {
  margin-top: -200px;
  position: relative;
  z-index: 10;
}

.section.background {
  background: #9e9e9e14 url(../images/bg-top.svg) center top no-repeat;
  background-size: contain;
}

.page .cover {
  min-height: 280px;
  position: relative;
}

/*.page .cover:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  background-image: linear-gradient(127deg, #24CDFF 0%, #000 91%);
  z-index: 2;
  opacity: 0.85;
}*/
.page .cover .cover-next:before {
background-image: url(../images/service-first.jpg);
background-color: #eee;
    bottom: 30px;
    content: "";
    height: 268px;
    left: 0;
    position: absolute;
    -webkit-transform: skewY(3deg);
    -ms-transform: skewY(3deg);
    transform: skewY(3deg);
    width: 50%;
    z-index: 0;
    background-position: left;

}
.page .cover .cover-next:after {
background-image: url(../images/service-first.jpg);
  bottom: 30px;
    content: "";
    height: 268px;
    position: absolute;
    right: 0;
    -webkit-transform: skewY(-3deg);
    -ms-transform: skewY(-3deg);
    transform: skewY(-3deg);
    width: 50%;
    z-index: -1;
    background-position: left;
}


.page .cover .page-top {
  position: absolute;
  width: 100%;
  bottom: 50px;
  z-index: 3;
}

.page .cover .page-top h1 {
  font-weight: 400;
  font-size: 36px;
  line-height: 46px;
  letter-spacing: 1.4px;
  color: #fff;
  text-align: center;
}

.page .cover .page-top .breadcrumb {
  float: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  background: none;
  padding: 0px;
  margin-top: 8px;
  margin-bottom: 0px;
  display: block;
  text-align: center;
}

.page .cover .page-top .breadcrumb li {
  font-weight: 400;
  font-size: 14px;
  color: #F7F8FF;
  line-height: 30px;
  margin-left: 10px;
  display: inline-block;
}

.page .cover .page-top .breadcrumb li:after {
  font-family: FontAwesome;
  content: "\f105";
  margin-left: 10px;
  color: #F7F8FF;
}

.page .cover .page-top .breadcrumb li:first-child {
  margin-left: 0px;
}

.page .cover .page-top .breadcrumb li:last-child:after {
  content: '';
  margin-left: 0px;
}

.page .cover .page-top .breadcrumb li a {
  font-weight: 400;
  font-size: 14px;
  color: #fff;
}

.page .page-bottom {
  padding-top: 100px;
  padding-bottom: 100px;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.88px;
  line-height: 28px;
  color: #6F8BA4;
}

.page .page-bottom p {
  margin-bottom: 28px;
}

.page .page-bottom .home-services-item {
  margin-top: 0px;
  margin-bottom: 30px;
}

.page-gallery {
  height: 400px;
  display: block;
  overflow: hidden;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  margin-bottom: 30px;
}

.page-gallery.small {
  height: 185px;
}

.mtop-70 {
  margin-top: 70px !important;
}

.mbottom-20 {
  margin-bottom: 20px !important;
}

.mbottom-30 {
  margin-bottom: 30px !important;
}

.mbottom-60 {
  margin-bottom: 60px !important;
}

.mbottom-0 {
  margin-bottom: 0px !important;
}

.pbottom-70 {
  padding-bottom: 70px !important;
}

blockquote {
  margin-bottom: 28px;
  padding: 30px;
  padding-top: 40px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background: #F4F8FB;
  overflow: hidden;
}

blockquote .text {
  position: relative;
  text-align: center;
}

blockquote .text p {
  position: relative;
  width: 100%;
  z-index: 2;
  margin-bottom: 10px !important;
}

blockquote .text:before {
  font-family: FontAwesome;
  content: "\f10d";
  position: absolute;
  left: 0px;
  top: 0px;
  color: #3B566E;
  z-index: 1;
  font-size: 40px;
  color: #e1ecf4;
}

blockquote .text:after {
  font-family: FontAwesome;
  content: "\f10e";
  position: absolute;
  right: 0px;
  bottom: 0px;
  color: #3B566E;
  z-index: 1;
  font-size: 40px;
  color: #e1ecf4;
}

blockquote .author {
  color: #3B566E;
  text-align: center;
}

.left-heading .section-title {
  font-weight: 400;
  font-size: 28px;
  color: #3B566E;
  letter-spacing: 1.75px;
  line-height: 42px;
  margin-bottom: 20px !important;
}

.center-heading {
  text-align: center;
}

.center-heading .section-title {
  font-weight: 400;
  font-size: 30px;
  color: #3B566E;
  letter-spacing: 1.30px;
  line-height: 40px;
  margin-bottom: 20px !important;
}

.left-text {
  font-weight: 400;
  font-size: 16px;
  color: #6F8BA4;
  line-height:30px;
  margin-bottom: 50px;
  letter-spacing: 0.7px;
}



.center-text {
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  color: #6F8BA4;
  line-height: 28px;
  letter-spacing: 1px;
  margin-bottom: 50px;
}

.center-text p {
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .graph {
    bottom: 0 !important; 
}
  .vissible-xs{
  display: unset !important;
}
.hidden-xs{
  display: none !important;
}
h1 {
    font-size: 30px !important;
    line-height: 40px !important;
}
h3 {
    font-size: 26px !important;
    line-height: 30px !important;
}
h2{
  font-size: 27px !important;
    line-height: 35px !important;
}
.main-text {
    padding-bottom: 30px;
    font-size: 23px;
}
  .page .cover {
    margin-top: 80px;
  }
  .service-section  {
    width: auto !important;
    margin: 0 auto !important;
    padding: 50px 15px 50px !important;
  }
  .page .cover h1 {
    font-size: 26px !important;
    line-height: 36px !important;
  }
  .page .cover .page-top {
    text-align: center;
  }
  .page .cover .page-top .breadcrumb {
    float: none;
    text-align: center;
    display: block;
  }
  .page .cover .page-top .breadcrumb li {
    display: inline;
  }
  .page-gallery {
    height: 185px;
  }
  .content-img{
    max-width: 100% !important;
    margin: 6px auto 25px auto !important;
    display: block;
    float: none;
  }

}
.content-block ul li{
  font-size: 18px;
    position: relative;
    line-height: 28px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    font-family: ProximaNovaRegular;
    color: #515151;
}
/*.content-block ul li:before{
  font-family: FontAwesome;
  content: "\f105";
  color: #4886FF;
  margin-right: 10px;
}*/
.graph-img{
  position: relative;
   bottom: 60px;
}
.graph{
  position: relative;
    bottom: 100px;
}


/* 
---------------------------------------------
buttons
--------------------------------------------- 
*/
.btn-white-line {
  display: block;
  width: 225px;
  height: 45px;
  line-height: 45px;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.81px;
  border: 1px solid #fff;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  background: none;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  text-align: center;
  cursor: pointer;
}

.btn-white-line:hover {
  border:1px solid #ed6b00;
  color: #ed6b00;
}

.btn-primary-line {
  display: block;
  width: 225px;
  height: 45px;
  line-height: 45px;
  color: #ed6b00;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.81px;
  border: 1px solid #ed6b00;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  background: none;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  text-align: center;
  cursor: pointer;
  font-family: 'merriweatherregular';
  font-size: 19px;
}

.btn-primary-line:hover {
  background: #ed6b00;
  color: #fff;
}

/* 
---------------------------------------------
header
--------------------------------------------- 
*/
.header-area {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 100;
  height: 100px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header-area .main-nav .logo {
  float: left;
  margin-top: 30px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header-area .main-nav .logo img {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header-area .main-nav .dark-logo {
  display: none;
}

.header-area .main-nav .nav {
  float: right;
  margin-top: 30px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header-area .main-nav .nav li {
  margin-left: 35px;
}

.header-area .main-nav .nav li a {
  display: block;
  font-weight: 400;
  font-size: 17px;
  color: #FFFFFF;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  height: 36px;
  line-height: 36px;
  border: transparent;
}
a:hover{
	color: #ed6c00;
}
.header-area .main-nav .nav li a:hover {
  color: #F7F8FF;
}

.header-area .main-nav .nav li a.btn-nav-line {
  border: 1px solid #fff;
  width: 140px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  -webkit-border-radius:100px;
  -moz-border-radius: 100px;
  border-radius:100px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header-area .main-nav .nav li a.btn-nav-line:hover {
  color:#ed6b00;
  border:1px solid #ed6b00;
}

.header-area .main-nav .menu-trigger {
  cursor: pointer;
  display: block;
  position: absolute;
  top: 23px;
  width: 32px;
  height: 40px;
  text-indent: -9999em;
  z-index: 99;
  right: 40px;
  display: none;
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #3B566E;
  display: block;
  position: absolute;
  width: 26px;
  height: 2px;
  left: 0;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #3B566E;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
}

.header-area .main-nav .menu-trigger span:after {
  width: 22px;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  content: "";
}

.header-area .main-nav .menu-trigger span {
  top: 16px;
}

.header-area .main-nav .menu-trigger span:before {
  -moz-transform-origin: 33% 100%;
  -ms-transform-origin: 33% 100%;
  -webkit-transform-origin: 33% 100%;
  transform-origin: 33% 100%;
  top: -10px;
  z-index: 10;
}

.header-area .main-nav .menu-trigger span:after {
  -moz-transform-origin: 33% 0;
  -ms-transform-origin: 33% 0;
  -webkit-transform-origin: 33% 0;
  transform-origin: 33% 0;
  top: 10px;
}

.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
  background-color: transparent;
  width: 100%;
}

.header-area .main-nav .menu-trigger.active span:before {
  -moz-transform: translateY(6px) translateX(1px) rotate(45deg);
  -ms-transform: translateY(6px) translateX(1px) rotate(45deg);
  -webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
  transform: translateY(6px) translateX(1px) rotate(45deg);
  background-color: #3B566E;
}

.header-area .main-nav .menu-trigger.active span:after {
  -moz-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  transform: translateY(-6px) translateX(1px) rotate(-45deg);
  background-color: #3B566E;
}

.header-area.header-sticky {
  background: #fff;
  height: 80px;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
}

.header-area.header-sticky .logo {
  margin-top: 22px;
}

.header-area.header-sticky .light-logo {
  display: none;
}

.header-area.header-sticky .nav {
  margin-top: 20px !important;
}

.header-area.header-sticky .nav li a {
  color: #515151;
}

.header-area.header-sticky .nav li a:hover {
  color: #515151;
}

.header-area.header-sticky .nav li a.btn-nav-line {
  border: 1px solid #ed6b00;
  color: #ed6b00;
}

@media (max-width: 1200px) {
  .header-area .main-nav .nav li {
    margin-left: 15px !important;
  }
}

@media (max-width: 991px) {
  .header-area {
    background: #fff;
    height: 80px;
    box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
  }
  .header-area .container {
    padding: 0px;
  }
  .header-area .logo {
    margin-left: 10px;
  }
  .header-area .light-logo {
    display: none !important;
  }
  .header-area .dark-logo {
    display: block !important;
  }
  .header-area .menu-trigger {
    display: block !important;
  }
  .header-area .main-nav {
    overflow: hidden;
  }
  .header-area .main-nav .nav {
    float: none;
    width: 100%;
    margin-top: 80px !important;
    display: none;
    -webkit-transition: all 0s ease 0s;
    -moz-transition: all 0s ease 0s;
    -o-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
  }
  .header-area .main-nav .nav li {
    width: 100%;
    margin-left: 15px !important;
    background: #fff;
    margin: 0px !important;
    border-bottom: 1px solid #f5f5f5;
  }
  .header-area .main-nav .nav li a {
    height: 50px !important;
    line-height: 50px !important;
    padding: 0px !important;
    padding-left: 30px !important;
    border: none !important;
    background: #fff !important;
    color: #3B566E !important;
  }
  .header-area .main-nav .nav li a:hover {
    background: #f5f5f5 !important;
  }
  .header-area .main-nav .nav li a.btn-nav-line {
    border: none !important;
    width: 100%;
    height: 50px;
    line-height: 50px;
    text-align: left;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
  }
}

@media (min-width: 992px) {
  .header-area .main-nav .nav {
    display: flex !important;
  }
}

/* 
---------------------------------------------
welcome area
--------------------------------------------- 
*/
.welcome-area {
  min-height: 637px;
  height: auto;
  position: relative;
}

.welcome-area .welcome-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.welcome-area .welcome-bg:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.85;
  background-image: linear-gradient(127deg, #333 0%, #000 91%);
  z-index: 3;
}

.welcome-area .welcome-bg:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 50%;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background: none;
  z-index: 6;
}

.welcome-area .welcome-bg img {
  position: absolute;
  width: 100%;
  height: auto;
  bottom: -1px;
  left: 0px;
  right: 0px;
  z-index: 5;
}

.welcome-area .welcome-content {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  z-index: 11;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.welcome-area .welcome-content h1 {
  font-weight: 400;
  font-size: 36px;
  line-height: 46px;
  letter-spacing: 1.4px;
  color: #fff;
  margin-bottom: 30px !important;
}

.welcome-area .welcome-content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  left: 0.53px;
  color: #fff;
  margin-bottom: 30px;
}

.welcome-area .welcome-content .apps {
  padding-top: 30px;
}

.welcome-area .welcome-content .apps .app-item {
  display: block;
  float: right;
  margin-bottom: 30px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.welcome-area .welcome-content .apps .app-item:hover {
  margin-top: -10px;
  padding-bottom: 10px;
}

.welcome-area .welcome-content .apps .app-item .icon {
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.06);
}

@media (max-width: 991px) {
  .welcome-area .welcome-content {
    position: relative;
    -webkit-transform: translateY(0%) !important;
    transform: translateY(0%) !important;
    padding-top: 100px;
  }
  .welcome-area .welcome-content h1 {
    font-size: 26px !important;
    line-height: 36px !important;
  }
  .welcome-area .welcome-content .apps {
    margin-top: 30px;
  }
  .welcome-area .welcome-content .apps .app-item {
    float: left;
  }
}

/* 
---------------------------------------------
home
--------------------------------------------- 
*/
.home-services-item {
  display: block;
  background-image: linear-gradient(127deg, #fff 0%, #fff 91%);
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.06);
  font-weight: 400;
  font-size: 14px;
  color: #6F8BA4;
  line-height: 26px;
  letter-spacing: 0.88px;
  padding: 30px;
  border-radius: 40px;
  border-bottom-right-radius: 4px;
  margin-top: 30px;
  position: relative;
}

.home-services-item.box {
  border-radius: 4px !important;
}

.home-services-item.box:before {
  border-radius: 4px !important;
}

.home-services-item:before {
  content: '';
  border-radius: 40px;
  border-bottom-right-radius: 4px;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #ccc;
  top: 0px;
  left: 0px;
  z-index: 1;
 background:#ed6b00 ;
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}



.home-services-item:hover:before, .home-services-item.active:before {
  opacity: 1;
}

.home-services-item:hover .services-title, .home-services-item.active .services-title {
  color: #fff;
}

.home-services-item:hover i, .home-services-item.active i {
  background-image: linear-gradient(127deg, #fff 0%, #fff 91%);
}

.home-services-item .services-title {
  font-weight: 400;
  font-size: 17px;
  line-height: 30px;
  color: #515151;
  margin-bottom: 23px !important;
  
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 2;
  font-family:ProximaNovaRegular; 
}

.home-services-item i {
  font-size: 26px;
  margin-bottom: 23px;
 background-image: linear-gradient(127deg, #000 0%, #f26c00 67%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 2;
}

.home-services-item p {
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  margin-bottom: 0px !important;
  font-size: 16px;
}

.home-services-item .btn-white-line {
  position: relative;
  z-index: 2;
  width: 100%;
}

.features {
  padding-top: 68px;
}

.features li {
  overflow: hidden;
  margin-bottom: 30px;
}

.features li:hover .count span {
  background: #f36800;
  color: #fff;
}

.features li .count {
  float: left;
  width: 68px;
  min-height: 138px;
  background: url(../images/features-bg2.png) center bottom no-repeat;
}

.features li .count span {
  display: block;
  width: 37px;
  height: 37px;
  line-height: 37px;
  text-align: center;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  margin: auto;
  border: 1px solid #f36800;
  font-weight: 600;
  font-size: 16px;
  color: #f36800;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.features li .text {
  float: left;
  width: calc(100% - 68px);
  width: -webkit-calc(100% - 68px);
  padding-left: 20px;
}

.features li .text .title {
  font-weight: 400;
  font-size: 17px;
  line-height: 30px;
  letter-spacing: 0.7px;
  color: #515151;
  margin-top: 5px;
  margin-bottom: 24px !important;
  font-family: ProximaNovaRegular;
}

.features li .text p {
  font-weight: 400;
  font-size: 16px;
  color: #61717f;
  letter-spacing: 1px;
  line-height: 28px;
}

.team-item {
  background-image: linear-gradient(127deg, #fff 0%, #fff 91%);
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.06);
  padding: 20px;
  border-radius: 40px;
  border-bottom-right-radius: 4px;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.team-item:before {
  content: '';
  border-radius: 40px;
  border-bottom-right-radius: 4px;
  position: absolute;
  width: 100%;
  height: 100%;
  background: red;
  top: 0px;
  left: 0px;
  z-index: 1;
  background-image: linear-gradient(127deg, #384DFF 0%, #24CDFF 91%);
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.team-item:hover:before {
  opacity: 1;
}

.team-item:hover .header .info strong {
  color: #fff;
}

.team-item:hover .header .info span {
  color: #F7F8FF;
}

.team-item:hover .body {
  color: #F7F8FF;
}

.team-item:hover .social {
  right: 0px;
}

.team-item .header {
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.team-item .header .img {
  float: left;
  width: 76px;
  margin-right: 10px;
  overflow: hidden;
  border-radius: 2px;
  border-top-left-radius: 40px;
}

.team-item .header .info strong {
  display: block;
  font-weight: 400;
  font-size: 14px;
  color: #3B566E;
  letter-spacing: 0.6px;
  margin-top: 3px;
  margin-bottom: 3px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.team-item .header .info span {
  display: block;
  font-weight: 400;
  font-size: 12px;
  color: #6F8BA4;
  letter-spacing: 0.52px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.team-item .body {
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  color: #6F8BA4;
  letter-spacing: 0.6px;
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.team-item .social {
  position: absolute;
  right: -150px;
  top: 77px;
  overflow: hidden;
  width: 150px;
  height: 28px;
  background: #fff;
  text-align: center;
  border-radius: 3px 0px 0px 3px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  z-index: 2;
}

.team-item .social li {
  display: inline-block;
  height: 28px;
  line-height: 28px;
  margin-left: 5px;
  margin-right: 5px;
}

.parallax {
  min-height: 280px;
  position: relative;
}

.parallax:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: .78;
  background-image: linear-gradient(127deg, #384DFF 0%, #24CDFF 91%);
  z-index: 2;
}

.parallax .parallax-content {
  position: relative;
  z-index: 3;
}

.parallax .parallax-content .count-item {
  height: 280px;
  position: relative;
  overflow: hidden;
}

.parallax .parallax-content .count-item:hover strong {
  margin-top: 60px;
}

.parallax .parallax-content .count-item:before {
  content: '';
  position: absolute;
  width: 1px;
  height: 40px;
  background: #fff;
  left: 0px;
  right: 0px;
  margin: auto;
  top: 0px;
}

.parallax .parallax-content .count-item:after {
  content: '';
  position: absolute;
  width: 1px;
  height: 40px;
  background: #fff;
  left: 0px;
  right: 0px;
  margin: auto;
  bottom: 0px;
}

.parallax .parallax-content .count-item strong {
  display: block;
  text-align: center;
  font-weight: 400;
  font-size: 40px;
  letter-spacing: 1.72px;
  margin-bottom: 10px;
  color: #fff;
  margin-top: 70px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.parallax .parallax-content .count-item span {
  display: block;
  text-align: center;
  color: #fff;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.86px;
}

.parallax .parallax-content .info {
  text-align: center;
  font-weight: 400;
  font-size: 22px;
  color: #fff;
}

.parallax .parallax-content .info p {
  letter-spacing: 1px;
  margin-top: 80px;
  margin-bottom: 60px;
}

.parallax .parallax-content .info p span {
  text-decoration: underline;
}

.parallax .parallax-content .info .btn-white-line {
  margin: auto;
}

@media (max-width: 991px) {
  .home-services-item.mtop-70 {
    margin-top: 30px !important;
  }
  .services-section {
    margin-top: 0px !important;
  }
  .team-item {
    cursor: pointer;
  }
  .parallax .parallax-content .count-item {
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .parallax .parallax-content .count-item:hover strong {
    margin-top: 0px;
  }
  .parallax .parallax-content .count-item:before {
    display: none;
  }
  .parallax .parallax-content .count-item:after {
    width: 40px;
    height: 1px;
  }
  .parallax .parallax-content .count-item strong {
    margin-top: 0px;
  }
  .parallax .parallax-content .info .btn-white-line {
    margin-bottom: 80px;
  }
}

/* 
---------------------------------------------
blog
--------------------------------------------- 
*/
.blog-post-thumb {
  text-align: center;
  margin-bottom: 30px;
}

.blog-post-thumb.big .img {
  height: 400px;
}

.blog-post-thumb .img {
  overflow: hidden;
  border-radius: 40px;
  border-bottom-right-radius: 4px;
  margin-bottom: 25px;
  position: relative;
  height: 200px;
}

.blog-post-thumb .img .date {
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 60px;
  background-image: linear-gradient(127deg, #384DFF 0%, #24CDFF 91%);
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  border-bottom-left-radius: 0px;
  border-top-right-radius: 0px;
}

.blog-post-thumb .img .date strong {
  display: block;
  color: #fff;
  height: 20px;
  line-height: 20px;
}

.blog-post-thumb .img .date span {
  display: block;
  color: #fff;
  height: 20px;
  line-height: 20px;
}

.blog-post-thumb h3 {
  margin-bottom: 10px !important;
}

.blog-post-thumb h3 a {
  font-weight: 400;
  font-size: 16px;
  color: #3B566E;
  letter-spacing: 1px;
  line-height: 26px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.blog-post-thumb h3 a:hover {
  color: #4886FF;
}

.blog-post-thumb .post-meta {
  overflow: hidden;
}

.blog-post-thumb .post-meta li {
  float: left;
  margin-right: 30px;
  height: 30px;
  line-height: 30px;
  color: #4886FF;
  font-size: 14px;
}

.blog-post-thumb .post-meta li span {
  display: inline-block;
  margin-right: 5px;
}

.blog-post-thumb .text {
  font-weight: 400;
  font-size: 14px;
  color: #6F8BA4;
  letter-spacing: 0.88px;
  line-height: 26px;
  margin-bottom: 15px;
}

.blog-post-thumb .text.post-detail {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  text-align: left;
}

.blog-post-thumb .post-footer {
  overflow: hidden;
  border-bottom: 1px solid #ECF7FF;
  border-top: 1px solid #ECF7FF;
  padding-top: 10px;
  padding-bottom: 10px;
}

.blog-post-thumb .post-footer span {
  float: left;
  height: 30px;
  line-height: 30px;
  font-weight: 300;
  font-size: 14px;
  color: #6F8BA4;
}

.blog-post-thumb .post-footer ul.share {
  float: right;
}

.blog-post-thumb .post-footer ul.share li {
  float: left;
  margin-left: 15px;
}

.blog-post-thumb .post-footer ul.share li a {
  display: block;
  height: 30px;
  line-height: 30px;
  color: #4886FF;
}

.blog-post-thumb .btn-primary-line {
  margin: auto;
}

.blog-list .blog-post-thumb {
  margin-bottom: 60px;
  text-align: left;
  overflow: hidden;
}

.blog-list .blog-post-thumb .btn-primary-line {
  float: left;
}

.section-comments {
  margin-bottom: 60px;
}

.section-comments ul {
  overflow: hidden;
  margin: 0px;
  padding: 0px;
}

.section-comments ul li {
  overflow: hidden;
}

.section-comments ul li .avatar {
  width: 70px;
  height: 70px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  overflow: hidden;
  float: left;
  margin-right: 20px;
}

.section-comments ul li .comment-content {
  font-weight: 400;
  font-size: 14px;
  color: #6F8BA4;
  float: left;
  width: calc(100% - 90px);
  width: -webkit-calc(100% - 90px);
}

.section-comments ul li .comment-content .comment-by {
  margin-bottom: 10px;
  position: relative;
}

.section-comments ul li .comment-content .comment-by strong {
  display: block;
  color: #3B566E;
}

.section-comments ul li .comment-content .comment-by span {
  font-size: 12px;
}

.section-comments ul li .comment-content .comment-by .btn-reply {
  position: absolute;
  right: 0px;
  top: 15px;
  background: #F4F8FB;
  color: #6F8BA4;
  height: 25px;
  line-height: 25px;
  padding-left: 10px;
  padding-right: 10px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.section-comments ul li .comment-content .comment-by .btn-reply i {
  font-size: 12px;
}

.section-comments ul li .comment-content .comment-by .btn-reply:hover {
  background: #4886FF;
  color: #fff;
}

.section-comments ul li ul {
  padding-left: 90px;
}

.post-comment {
  background: #F4F8FB;
  padding: 40px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  margin-bottom: 30px;
}

.post-comment .comment-form .form-item {
  margin-bottom: 20px;
}

.post-comment .comment-form .form-item label {
  display: block;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 0px;
}

.post-comment .comment-form .form-item input, .post-comment .comment-form .form-item textarea {
  border: 1px solid #eee;
  width: 100%;
  height: 50px;
  outline: none;
  padding-left: 20px;
  padding-right: 20px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.post-comment .comment-form .form-item input:focus, .post-comment .comment-form .form-item textarea:focus {
  border: 1px solid #ddd;
}

.post-comment .comment-form .form-item textarea {
  height: 150px;
  resize: none;
  padding: 20px;
}

.pagination {
  margin-bottom: 30px;
}

.pagination .page-item a {
  font-size: 14px;
  color: #4886FF;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.pagination .page-item a:hover {
  background: #F4F8FB;
}

@media (max-width: 991px) {
  .blog-post-thumb.big .img {
    height: 350px;
  }
}

@media (max-width: 420px) {
  .blog-post-thumb.big .img {
    height: 200px;
  }
}



/* 
---------------------------------------------
our work
--------------------------------------------- 
*/
.page-app {
  position: relative;
  float: left;
  width: 100%;
  margin-bottom: 30px;
}

.page-app:before {
  content: '';
  position: absolute;
  right: 0px;
  width: calc(100% - 27px);
  width: -webkit-calc(100% - 27px);
  z-index: 1;
  height: 100%;
  background: #fff;
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.06);
  border-radius: 4px;
}

.page-app .icon {
  float: left;
  position: relative;
  z-index: 2;
  margin-top: 20px;
}

.page-app .app-content {
  position: relative;
  z-index: 2;
  float: right;
  width: calc(100% - 77px);
  width: -webkit-calc(100% - 77px);
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 28px;
  padding-top: 30px;
}

.page-app .app-content .title {
  font-weight: 400;
  font-size: 16px;
  color: #3B566E;
  letter-spacing: 0.7px;
  margin-bottom: 10px !important;
}

.page-app .app-content .stars {
  overflow: hidden;
  margin-bottom: 10px;
}

.page-app .app-content .stars li {
  float: left;
  margin-right: 5px;
  font-size: 12px;
  color: #AEBCD6;
}

.page-app .app-content .stars li i.active {
  color: #F5A623;
}

.page-app .app-content .text {
  font-weight: 400;
  font-size: 14px;
  color: #6F8BA4;
  line-height: 26px;
  letter-spacing: 0.88px;
  margin-bottom: 15px;
}

.page-app .app-content .btn-primary-line {
  width: 100%;
}

.app-single {
  background: #fff;
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.06);
  border-radius: 4px;
}

.app-single .header {
  padding: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ECF7FF;
}

.app-single .header .title h2 {
  display: block;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 1px;
  margin-bottom: 10px !important;
}

.app-single .header .title .stars {
  overflow: hidden;
  margin-bottom: 10px;
}

.app-single .header .title .stars li {
  float: left;
  margin-right: 5px;
  font-size: 12px;
  color: #AEBCD6;
}

.app-single .header .title .stars li i.active {
  color: #F5A623;
}

.app-single .header .download-buttons {
  float: right;
  text-align: right;
  margin-top: 5px;
}

.app-single .header .download-buttons a {
  display: inline-block;
  margin-left: 10px;
  margin-bottom: 10px;
}

.app-single .item {
  padding: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ECF7FF;
  overflow: hidden;
}

.app-single .item .icon {
  float: left;
  width: 30px;
}

.app-single .item .icon i {
  font-size: 26px;
  background-image: linear-gradient(127deg, #384DFF 0%, #24CDFF 91%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.app-single .item .content {
  float: left;
  width: calc(100% - 30px);
  width: -webkit-calc(100% - 30px);
  padding-left: 30px;
}

.app-single .item .content .title {
  margin-top: 3px;
}

.app-single .item .content .text {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.88px;
  line-height: 28px;
  color: #6F8BA4;
}

.app-single .item .content .text p {
  margin-bottom: 16px;
}

.app-single .item .content .text .version {
  margin-bottom: 30px;
}

.app-single .item .content .text .version h6 {
  margin-bottom: 10px !important;
}

.app-single .item .content .text .version ul li {
  font-size: 14px;
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.app-single .item .content .text .version ul li:hover {
  padding-left: 5px;
}

.app-single .item .content .text .version ul li:before {
  font-family: FontAwesome;
  content: "\f105";
  color: #4886FF;
  margin-right: 10px;
}

.app-single .item .content .gallery .gallery-item {
  display: block;
  overflow: hidden;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.06);
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .app-single .header .icon {
    text-align: center;
    margin-bottom: 20px;
  }
  .app-single .header .title {
    text-align: center;
  }
  .app-single .header .title h2 {
    margin-bottom: 10px;
  }
  .app-single .header .title .stars {
    text-align: center;
    margin-bottom: 20px;
  }
  .app-single .header .title .stars li {
    float: none;
    display: inline;
  }
  .app-single .header .download-buttons {
    float: none;
    text-align: right;
  }
  .app-single .header .download-buttons a {
    margin-left: 0px;
    margin-left: 5px;
    margin-right: 5px;
  }
}

@media (max-width: 420px) {
  .app-single .header .download-buttons {
    text-align: center;
  }
}

/* 
---------------------------------------------
aside
--------------------------------------------- 
*/
aside.default-aside .sidebar .box {
  margin-bottom: 30px;
}

aside.default-aside .sidebar ul {
  border: 1px solid #ECF7FF;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 30px;
}

aside.default-aside .sidebar ul li.active a {
  background: #F4F8FB;
  color: #6F8BA4;
}

aside.default-aside .sidebar ul li.active a:after {
  color: #6F8BA4;
}

aside.default-aside .sidebar ul li.active a:hover {
  padding-left: 60px;
}

aside.default-aside .sidebar ul li:last-child a {
  border: none;
}

aside.default-aside .sidebar ul li a {
  display: block;
  border-bottom: 1px dashed #ECF7FF;
  height: 60px;
  line-height: 60px;
  padding-left: 60px;
  position: relative;
  font-weight: 400;
  font-size: 14px;
  color: #3B566E;
  letter-spacing: 0.88px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
}

aside.default-aside .sidebar ul li a:hover {
  padding-left: 70px;
}

aside.default-aside .sidebar ul li a:after {
  font-family: FontAwesome;
  content: "\f105";
  position: absolute;
  left: 30px;
  color: #3B566E;
}

aside.default-aside .sidebar ul li a span {
  float: right;
  margin-right: 30px;
  display: inline-block;
  background: #F4F8FB;
  height: 20px;
  line-height: 20px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 10px;
  color: #6F8BA4;
  margin-top: 18px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
}

aside.default-aside .sidebar .search-widget {
  display: block;
  margin-bottom: 30px;
  height: 50px;
  position: relative;
}

aside.default-aside .sidebar .search-widget input {
  border: 1px solid #ECF7FF;
  position: absolute;
  width: 100%;
  height: 100%;
  outline: none;
  padding-left: 20px;
  padding-right: 50px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

aside.default-aside .sidebar .search-widget input:focus {
  border: 1px solid #4886FF;
  padding-left: 30px;
}

aside.default-aside .sidebar .search-widget button {
  position: absolute;
  z-index: 2;
  right: 10px;
  top: 10px;
  height: 30px;
  width: 30px;
  border: none;
  background-image: linear-gradient(127deg, #384DFF 0%, #24CDFF 91%);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  text-align: center;
  padding: 0px;
}

aside.default-aside .sidebar .search-widget button i {
  color: #fff;
}

aside.default-aside .sidebar .widget-tags {
  border: 1px solid #F4F8FB;
  padding: 30px;
  padding-bottom: 20px;
  overflow: hidden;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

aside.default-aside .sidebar .widget-tags a {
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
  background: #F4F8FB;
  padding-left: 10px;
  padding-right: 10px;
  font-weight: 400;
  font-size: 14px;
  color: #6F8BA4;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

aside.default-aside .sidebar .widget-tags a:hover {
  background: #4886FF;
  color: #fff;
}

/* 
---------------------------------------------
contact
--------------------------------------------- 
*/
.map-wrapper {
  position: relative;
  width: 100%;
  height: 365px;
  
}

.map-wrapper .map-canvas {
  position: absolute;
  width: 100%;
  height: 100%;
}

.map-wrapper .contact-info {
  height: 365px;
 background-color: #fff;
 border: 15px solid #ccc;
  padding: 30px;
  padding-top: 55px;
  color: #333;
  margin-bottom: 20px;
}

.map-wrapper .contact-info .item {
  overflow: hidden;
  margin-bottom: 30px;
}

.map-wrapper .contact-info .item i {
  float: left;
  font-size: 16px;
  width: 20px;
  margin-right: 10px;
  margin-top: 5px;
}

.map-wrapper .contact-info .item span {
  float: left;
  width: calc(100% - 30px);
  width: -webkit-calc(100% - 30px);
  font-size: 18px;
  font-family: ProximaNovaRegular;
}

.map-wrapper .contact-info .item span a {
  color: #333;
}

.map-wrapper .contact-info .social {
  overflow: hidden;
  margin-top: 5px;
  margin-left: 23px;
}
.map-wrapper .contact-info .social li a:hover {
  color: #ed6b00;
}

.map-wrapper .contact-info .social li {
  display: inline;
  font-size: 22px;
  margin-right: 7px;
  margin-left: 7px;
}

.map-wrapper .contact-info .social li a {
  color: #333;
}

.contact-text {
  font-weight: 400;
  font-size: 14px;
  color: #6F8BA4;
  letter-spacing: 0.6px;
  line-height: 26px;
}

.contact-text p {
  margin-bottom: 28px;
}

.contact-form input, .contact-form textarea {
  border: 1px solid transparent;
  width: 100%;
  height: 50px;
  outline: none;
  padding-left: 20px;
  padding-right: 20px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #f4f4f4;
  font-size: 15px;
}
/*.home-second-p p{
  color: #fff;
}*/
.contact-form input:focus, .contact-form textarea:focus {
  border: 1px solid #4886FF;
  padding-left: 30px;
}

.contact-form textarea {
  height: 150px;
  resize: none;
  padding: 20px;
}

@media (max-width: 991px) {
  .map-wrapper {
    height: auto;
  }
  .map-wrapper .map-canvas {
    position: relative;
    height: 365px;
    margin-bottom: 30px;
  }
}

/* 
---------------------------------------------
footer
--------------------------------------------- 
*/
footer {
  background: #eee;
  padding-top: 70px;
}

footer img.logo {
  margin-bottom: 30px;
}

footer .text {
  font-weight: 400;
  font-size: 14px;
  color: #6F8BA4;
  line-height: 26px;
  letter-spacing: 0.88px;
}

footer h5 {
  font-weight: 400;
  font-size: 16px;
  color: #303030;
  letter-spacing: 0.69px;
  line-height: 30px;
  margin-bottom: 25px !important;
}

footer h5:after {
  content: " ";
  display: block;
  border-top: 1px solid #DFDFDF;
  width: 15%;
  margin-top: 5px;
}

footer .footer-nav li{
  clear: both;
}

footer .footer-nav li a {
  display: block;
  overflow: hidden;
}

footer .footer-nav li a:hover span {
  padding-left: 5px;
  font-weight: 400;
  font-family: ProximaNovaRegular;
}

footer .footer-nav li a i {
  float: left;
  height: 32px;
  line-height: 32px;
  margin-right: 12px;
  font-size: 15px;
  color: #3B566E;
}

footer .footer-nav li a span, footer .footer-nav li span {
  float: left;
  /*height: 32px;*/
  line-height: 32px;
  font-weight: 400;
  font-family: ProximaNovaRegular;
  font-size: 15px;
  color: #5f5f5f;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

footer .address {
  clear: both;
}
/*
footer .address p {
  display: block;
  overflow: hidden;
  font-weight: 400;
  font-size: 15px;
  color: #5f5f5f;
  line-height: 32px;
  letter-spacing: 0.88px;
  margin-bottom: 5px;
  padding: 0 0 5px 0;
}

footer .address p a {
  color: #5f5f5f;
  font-size: 15px;
}
footer .address p a:hover {
  color: #ed7200;
}
*/
footer .footer-nav li a.ph_email{
  display:inline;
  color:inherit;
  font-size:inherit;
}
footer .address .social {
  overflow: hidden;
}

footer .address .social li {
  float: left;
  font-size: 16px;
  margin-right: 15px;
}

footer .address .social li a {
  color: #515151;
  font-size: 20px;

}
footer .address .social li a:hover {
  color: #ed6b00;
  
  
}

footer .copyright {
  border-top: 1px solid #DDD;
  margin-top: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
}

footer .copyright p {
  font-size: 14px;
  font-weight: 400;
  color: #6F8BA4;
  letter-spacing: 0.88px;
  line-height: 1.6;
}

footer img.partner_badge {
  height: 40px;
}
footer img.partner_badge:first-child {
  margin-right: 15px;
}

@media (max-width: 991px) {
  footer .text {
    margin-bottom: 30px;
  }
  footer h5 {
    margin-bottom: 15px;
  }
  footer .footer-nav {
    margin-bottom: 30px;
  }
}
.fa-ul{
  margin-left: 1.143em !important;
}
.contact-social .social li {
    display: inline;
    font-size: 22px;
    margin-right: 7px;
    margin-left: 7px;
} 
.page .cover .info{
  text-align: center;
  font-weight: 400;
  font-size: 22px;
  color: #fff;
}
.page1 .cover .info{
  text-align: center;
  font-weight: 400;
  font-size: 22px;
  color: #fff;
}
.page .cover .info .btn-white-line {
    margin: auto;
}
.page1 .cover .info .btn-white-line {
    margin: auto;
}
.page{
    
    position: relative;
}
.page1{
    
    position: relative;
}
.page .cover{
  position: relative;
  z-index: 3;
}
.page1 .cover{
  position: relative;
  z-index: 3;
}
.page .cover .info p{
    letter-spacing: 1px;
    color: #fff;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 26px;
    line-height: 36px

}
.page .cover .info h2{
  color: #fff;
}
.page1 .cover .info p{
  letter-spacing: 1px;
    margin-top: 80px;
    margin-bottom: 60px;
}
/*.page .cover .info a {
    width: 200px;
    padding-left: 30px;
    background: #fff;
    margin: auto;
    margin-top: 60px;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 1px;
}*/
.btn-primary-linebtn{
  margin: auto;
  display: block;
    width: 225px;
    height: 45px;
    line-height: 45px;
    color: #fff;
    font-weight: 400;
    letter-spacing: 0.81px;
    border: 1px solid #fff;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    background: none;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    text-align: center;
    cursor: pointer;
    font-family: 'merriweatherregular';
    font-size: 19px;
}
.btn-primary-linebtn:hover{
  background:#fff;
  color: #ed6b00;
}
.btn-div{
  padding-top: 30px;
}
.page1 .cover .info a {
    width: 200px;
    padding-left: 30px;
    background: #fff;
    margin: auto;
    margin-top: 50px;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 1px;
}
.dark-btn:before {
    font-family: FontAwesome;
    content: "\f105";
    letter-spacing: 0px;
    position: absolute;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    left: 4px;
    top: 4px;
    background-image: linear-gradient(127deg, #000 0%, #24CDFF 100%);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    color: #fff;
    z-index: 2;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.dark-btn:after {
    content: '';
    position: absolute;
    width: 32px;
    height: 32px;
    left: 4px;
    top: 4px;
    background-image: linear-gradient(135deg, #1E8F95 0%, #82E182 100%);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    opacity: 0;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    z-index: 1;
}
.dark-btn {
    display: block;
    width: 170px;
    height: 40px;
    background: #EFF7F5;
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
    line-height: 40px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    padding-left: 66px;
    position: relative;
    font-weight: 400;
    font-size: 14px;
    color: #3B566E !important;
}
aside.default-aside .sidebar .box {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    text-align: center;
    height: 255px;
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}
aside.default-aside .sidebar .box:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(127deg, #384DFF 0%, #24CDFF 91%);
    z-index: 2;
    left: 0px;
    top: 0px;
    opacity: .85;
}
#imgfix_wrapper_layer_0_y .imgfix_src_img {
    left: -999999px;
    right: -999999px;
    top: -999999px;
    bottom: -999999px;
    z-index: 0;
    width: 351px;
    height: 255px;
    max-width: auto !important;
    min-width: auto !important;
    position: absolute;
    margin: auto;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
aside.default-aside .sidebar .box .hovered {
    position: absolute;
    z-index: 3;
    padding-left: 30px;
    padding-right: 30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.align-self-center {
    align-self: center !important;
}
aside.default-aside .sidebar .box .hovered p {
    color: rgb(255, 255, 255);
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 1.12px;
    margin-bottom: 30px;
}
aside .box .imgfix_wrapper_layer .hovered a {
    width: 170px;
    padding-left: 30px;
    background: #fff;
    margin: auto;
    margin-top: 30px;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 1px;
}



.demo{ background: #f8f8f8; }
.testimonial{
    margin: 0 20px 40px;
}
.testimonial .testimonial-content{
    padding: 40px 25px 40px 50px;
    margin-bottom: 35px;
    background: #fff;
    border: 1px solid #f0f0f0;
    position: relative;
}
.testimonial .testimonial-content:after{
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #fff;
    position: absolute;
    bottom: -10px;
    left: 22px;
    transform: rotate(45deg);
}
.testimonial-content .testimonial-icon{
    width: 50px;
    height: 45px;
    background-image: linear-gradient(127deg, #ed7000 0%, #333 91%);
    text-align: center;
    font-size: 22px;
    color: #fff;
    line-height: 42px;
    position: absolute;
    top: 37px;
    left: -19px;
}
.testimonial-content .testimonial-icon:before{
    content: "";
    border-bottom: 16px solid #222;
    border-left: 18px solid transparent;
    position: absolute;
    top: -16px;
    left: 1px;
}
.testimonial .description{
    font-size: 15px;
    font-style: italic;
    color: #8a8a8a;
    line-height: 23px;
    margin: 0;
}
.testimonial .title{
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #525252;
    text-transform: capitalize;
    letter-spacing: 1px;
    margin: 0 0 5px 0;
}
.testimonial .post{
    display: block;
    font-size: 14px;
    color: #f26c00;
}
.owl-theme .owl-controls{
    margin-top: 20px;
}
.owl-theme .owl-controls .owl-page span{
    background: #ccc;
    opacity: 1;
    transition: all 0.4s ease 0s;
}
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
    background: #000;
}
@media (min-width: 481px) and (max-width: 767px) {
 
}
.service-section {
  width:1000px;
  margin: 0 auto;
  padding: 61px 0 50px;
}
.service-section p{
    color: #515151;
    font-size: 18px;
    line-height: 30px;
    font-family: ProximaNovaRegular;
    margin: 0;
    padding: 0 0 27px;
}
.content-block ul li{
  font-family: ProximaNovaRegular;
}
.service-section h1 {
  text-align: center;
  font-size: 56px;
  line-height: 73px;
  margin: 0;
  padding: 0 0 37px;
  font-family: 'merriweatherregular';
  font-weight: 400;
  margin-bottom: 0px !important;
  color: #19202c;
}
.service-section h6{
  text-align: center;
  font-size: 20px;
  margin-bottom: 40px !important;
}
./*service-section a{
  width: 190px;
  padding-left: 60px;
 /* background: #fff;*/
  /*margin: auto;
  margin-top: 30px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 1px;
  font-size: 18px;
}*/
.content-block{
  padding: 30px 0;
}
.service-heading{
  padding: 0 0 60px 0;
}

.mid-heading{
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 25px !important;
}
.heading-saperator{
  padding-bottom: 30px;
  margin-top: 30px;
}
.content-block .sub-content .heading-saperator .border-small{
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-bottom-color: #f58220;
  width: 50px;
  float: left;
}
.btn-outline-maincolor1 {
    background-color:#f58220;
    color: #fff;
    border-radius: 50px;
    font-size: 12px;
    letter-spacing: 0.2em;
    padding: 14px 24px;
    text-transform: uppercase;
    -webkit-transition: all 0.2s linear 0s;
    transition: all 0.2s linear 0s;
    display: inline-block;
    font-weight: 400;
    text-align: center;

}
.btn-outline-maincolor:hover{
   background-color: transparent;
    color: #333 !important;
    border-color: #ff8f15;
}
.btn-outline-maincolor{
    border: 2px solid #ff8f15;
    background: #fe7800;
    color: #fff !important;
}
.btn-outline-maincolor a{
  color: #fff;
}


.btn {
    border-radius: 30px;
    padding: 10px 35px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
    margin-top: 10px;
    -webkit-box-shadow: none;
    box-shadow: none;
    display: inline-block;
    margin-bottom: 0;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    white-space: nowrap;
    line-height: 1.42857143;
    text-shadow: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.btn-outline-maincolor1:hover{ 
  border: 2px solid #f58220;
  color: #1f2732;
}
.page1 .cover .mid-info{
  text-align: center;
  position: relative;
 bottom: 80px;
}
.btn-outline-maincolor1 a{
  color: #fff;
}
.main-title {
     background: -webkit-linear-gradient(127deg, #333 0%, #000 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0px 0px 10px 4px;
    font-family: ProximaNovaRegular;
    font-size: 27px;
    line-height: 1.5;
}
.page1 .cover:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  overflow: visible;
  width: 100%;
  height: 400px;
  background:#f8f8f8;
  z-index: -1;
  -webkit-transform: skewY(-2deg);
  -moz-transform: skewY(-2deg);
  -ms-transform: skewY(-2deg);
  -o-transform: skewY(-2deg);
  transform: skewY(-2deg);
  -webkit-backface-visibility: hidden;
  backface-visibility: initial;
}

  ul.dropdown li a{
        color: #333;
    }
    
  .header-area .main-nav .nav ul.dropdown li a{
    color: #eee ;
  }
  .header-area .main-nav .nav ul.dropdown li  {
    margin-left: 10px;
  
  }
  .header-area .main-nav .nav ul.dropdown li a:hover {
   /* background: #f5f5f5 !important;
    padding-left: 8px !important;*/
    color: #f58220;

}
.header-area .main-nav .nav ul.dropdown li a{
	font-family: ProximaNovaRegular;
    font-weight: 400;
    font-size: 16px;
    
    
    padding-bottom: 40px;
}
.header-area .main-nav .nav ul.dropdown li:not(:last-child)>a {
    border-bottom: 1px solid #515151 !important;
}

ul li ul.dropdown{
        width: 260px; /* Set width of the dropdown */
        background: #323232e8;
        display: none;
        position: absolute;
        z-index: 999;
        border-radius: 5px;
           
}

@media (max-width: 991px){
.header-area .main-nav .nav ul.dropdown li {
   height: auto !important;
}
.header-area .main-nav .nav ul.dropdown li:not(:last-child)>a {
    border-bottom: none !important;
}
.header-area .main-nav .nav li.submenu ul li {
    padding: 7px 0 !important;
}
.header-area .main-nav .nav ul.dropdown li{
    /*position: relative;
    visibility: inherit;
    opacity: 1;
    z-index: 1;
    transform: translateY(0%);
    transition-delay: 0s, 0s, 0.3s;
    top: 0px;*/
    width: 100%;
    /*box-shadow: none;
    height: 0px*/;
}
}

 /*ul li ul.dropdown{
        background: #f2f2f2;
        display: none;
        position: absolute;
        z-index: 999;
        width: 200px;
        box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
        overflow: hidden;
        top: 90px;
        transform: translateY(-2em);
        z-index: -1;
        transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
        }*/
    ul li:hover ul.dropdown{
        display: block;
         }
    ul li ul.dropdown li{
        display: block;
    }
.main-text{
  padding-bottom: 30px;
  font-size: 25px;
}
.img-responsive{
  width: 100%;
}
.cta_in_h2 {
    display: inline-block;
}
h1, .cta_section h2, .cta_red_section h2 {
    font-size: 60px;
    line-height: 70px;
}
.cta {
    min-width: 270px;
    box-sizing: border-box;
    color: #fff;
    background:#d87623;
    display: inline-block;
    vertical-align: middle;
    border-radius: 30px;
    height: 57px;
    padding: 0px 30px;
    border: 2px solid #d87623;
    position: relative;
    text-align: left;
    font-family: 'merriweatherregular';
    font-size: 19px;
    line-height: 21px;
    font-weight: 400;
    letter-spacing: 0.5px;
}
.hv_effect {
    position: absolute;
    left: -3px;
    top: -3px;
    height: calc(100% + 6px);
    width: calc(100% + 6px);
    display: block;
    border-radius: 30px;
    overflow: hidden;
}

.in_cta {
    height: 100%;
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
}
.cta_text {
    padding-right: 21px;
    margin-left: auto;
}
.in_cta * {
    transition: all .3s ease-in-out;
}
.cta_arr {
    display: block;
    width: 23px;
    height: 9px;
    background: url(../images/arrows_sprite@2x.png) no-repeat 100% -65px;
    background-size: 23px;
    margin-right: auto;
    transition: none !important;
}
.cta:hover .cta_text {
    flex-grow: 1;
}
.h_white:hover .cta_text span, .banner .cta:hover .cta_text span {
    color: #22252e;
    font-family: 'merriweatherregular';
    font-size: 19px;
}
.h_white:hover .cta_arr, .banner .cta:hover .cta_arr {
    background-position: 100% -128px;
}
.h_white .hv_effect:hover, .banner .cta .hv_effect:before {
    background: #eee !important;
}
.cta:hover .hv_effect:before {
    width: 100%;
}
.hv_effect:before {
    content: '';
    position: absolute;
    background: #22252e;
    width: 0px;
    height: 100%;
    left: 0;
    top: 0;
    transition: all .3s ease-in-out;
}
.hv_effect1{
    position: absolute;
    left: -3px;
    top: -3px;
    height: calc(100% + 6px);
    width: calc(100% + 6px);
    display: block;
    border-radius: 30px;
    overflow: hidden;
}
.h_white .hv_effect1:hover, .banner .cta .hv_effect1:before {
    background: #fff !important;
}
.cta:hover .hv_effect1:before {
    width: 100%;
}
.hv_effect1:before {
    content: '';
    position: absolute;
    background: #22252e;
    width: 0px;
    height: 100%;
    left: 0;
    top: 0;
    transition: all .3s ease-in-out;
}
a.home-services-item:hover p, a.home-services-item.active p{
  color: #fff !important;
}
p {
    color: #515151;
    font-size: 18px;
    line-height: 30px;
    font-family: ProximaNovaRegular;
    margin: 0;
    padding: 0 0 27px;
}

.pt-50{
  padding-top: 50px
}
.pb-50{
  padding-bottom: 50px
}
.pt-60{
  padding-top: 60px
}
.pb-60{
  padding-bottom: 60px
}
.pb-100{
  padding-bottom: 100px
}

.end-section .mid-info{
    padding: 80px 0;
}
.end-section{
  background-color: #f8f8f8;
  text-align: center;
}
.web-app-heading{
  font-size: 54px ;
}
.list {
    margin: 0;
    padding: 0 0 17px;
}
.list li {
    background: url(../images/list-li-bg.jpg) no-repeat left 6px;
    color: #515151;
    font-size: 18px;
    font-family: ProximaNovaRegular;
    line-height: 30px;
    margin: 0;
    padding: 0 0 7px 27px;
}
.vissible-xs{
  display: none ;
}
hr.line.line-sm {
    width: 8.6rem;
}
.contact-area .line-sm {
    border-width: 2px;
}
.contact-info .list-unstyled li {
    line-height:36px;
    font-size: 1.3rem;
    font-family: ProximaNovaRegular;
}
hr.line {
    margin: 0;
    border-color: #1c223a;
    }
    .contact-info .line.max-w {
    border-color: #d6d6d6;
    width: 24.5rem;
}
.mb-20 {
    margin-bottom: 2rem !important;
}
hr.line {
    margin: 0;

    border-width: 1px;
}
.list-unstyled {
    padding-left: 0;
    list-style: none;
    margin-bottom: 1rem;
}
.contact-area .contact-info .list-unstyled {
    padding-top: 1.6rem;
    padding-bottom: .5rem;
}
a {
    text-decoration: none !important;
    color: #515151;
    font-size: 18px;
}
.icon-button {
  background-color: white;
  border-radius: 3.6rem;
  cursor: pointer;
  display: inline-block;
  font-size: 2.0rem;
  height: 3.0rem;
  line-height: 3.6rem;
  margin: 0 5px;
  position: relative;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 3.0rem;
  box-shadow: 0 0 10px;
}

/* Circle */
.icon-button span {
  border-radius: 0;
  display: block;
  height: 0;
  left: 50%;
  margin: 0;
  position: absolute;
  top: 50%;
  -webkit-transition: all 0.3s;
     -moz-transition: all 0.3s;
       -o-transition: all 0.3s;
          transition: all 0.3s;
  width: 0;
}
.icon-button:hover span {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 3.6rem;
  margin: -1.8rem;
}
.twitter span {
  background-color: #4099ff;
}
.facebook span {
  background-color: #3B5998;
}
.google-plus span {
  background-color: #db5a3c;
}
.linkedin span {
  background-color: #db5a3c;
}

/* Icons */
.icon-button i {
  background: none;
  color: white;
  height: 3.0rem;
  left: 0;
  line-height: 3.0rem;
  position: absolute;
  top: 0;
  -webkit-transition: all 0.3s;
     -moz-transition: all 0.3s;
       -o-transition: all 0.3s;
          transition: all 0.3s;
  width: 3.0rem;
  z-index: 10;
  font-size: 29px;
}
.icon-button .fa-twitter-square {
  color: #4099ff;
}
.icon-button .fa-facebook-square {
  color: #3B5998;
}
.icon-button .fa-instagram {
  color: #db5a3c;
}
.icon-button .fa-linkedin-square {
  color: #db5a3c;
}
.icon-button:hover .fa-facebook-square,
.icon-button:hover .fa-instagram,
.icon-button:hover .fa-twitter-square,
.icon-button:hover .fa-linkedin-square {
  color: white;
}
.social-media{
  padding: 0 0 20px 0;
}
.icon-twitter:before {
    content: "\f099";
}
.icon-facebook:before {
    content: "\f09a";
}
.icon-google-plus:before {
    content: "\f0d5";
}
.header-area .main-nav .nav li.submenu ul li {
   margin-left: 0px;
    padding -: 5px;
    padding: 7px 25px;
}
.parallax:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: .78;
    background-image: linear-gradient(127deg, #333 0%, #000 91%);
    z-index: 2;
}
.parallax-info{
	text-align: center;
	padding: 80px 20px;
}
.parallax-heading{
	color: #fff;
}
.parallax-sub-text p{
	color: #fff;
	font-size: 23px;
}
.parallax-sub-text{
  padding: 20px 0;
}
.content-block h4 {
    font-weight: 700;
    font-family: ProximaNovaRegular;
}
.left-subheading{
    color: #515151;
    font-family: ProximaNovaRegular;
}
.left-heading{
  padding-bottom: 10px;
}
.right-heading {
  font-size: 46px !important;
  line-height:56px !important;
}
.grid-section {
  padding-left: 0px;
  padding-right: 0px;
}
.grid-content {
  margin-top: 150px;
}
body{
  overflow-x: hidden;
}
.text-bold p{
  font-family: 'merriweatherregular';
  text-transform: uppercase;
  font-size: 40px;
  line-height: 53px;
  font-weight: 600;
  letter-spacing: 2px;
}
.bold-text p{
  font-family: 'merriweatherregular';
  text-transform: uppercase;
  font-size: 28px;
  line-height:44px;
  font-weight: 600;
  padding: 0 62px;
  letter-spacing: 2px;
}
.bg-section{
  background-image: url(../../assets/images/bg-texture.png);
  background-repeat: repeat;
}
.content-block h4{
  color: #000000c4;
}
.sub-content h3{
  padding-bottom: 20px;
}
.margin-input{
  margin-bottom: 30px;
}
.text-danger {
    color: red!important;
    font-size: 15px;
}
.btn-submit{
  padding-top: 15px;
}
.casestudy-heading
{
  position: absolute;
  color: #fff;
  font-family: 'merriweatherregular';
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);  
}
.casestudy-subheading{
  position: absolute;
  color: #fff;
  font-family: 'ProximaNovaRegular';
  top: 50%;
  left: 50%;
  padding-top: 20px;
  transform: translate(-50%, -50%);
}
.casestudy-logoImage
{
  position: relative;
  overflow: hidden;
}
.casestudy-logoImage .case-logoImage{
  width: auto;
  border: 1px solid #e2e2e2;
}
.casestudy-logoImage .case-logoImage img{
  position: relative;
}
.main-caseStudyImage{
  bottom:9rem;
  left: 50%;
  max-height: 120px;
  position: absolute;
  transform: translate(-50%, 0);
  z-index: 1;
}
.sub-pheading{
   font-family: 'merriweatherregular';
   margin-top: 40px;
   text-align: center;
  line-height: 73px;
  font-weight: 400;
  color: #19202c;
}
.casestudy-pointtext{
  color: #fff;
}
.casestudy-point{
  color: #fff;
  font-size: 3rem;
}
.mid-imagecase{
  margin-top: 6rem;
}
.casestudy-parallax{
  background-image: url('../images/casestudy/casestudy1.jpg');
  height: 100%; 
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.case-smalltext{
  font-size: 14px;
  color: #000;
  padding-bottom: 5px !important;
   font-family: 'merriweatherregular';
}
.second-parallax{
  background-image: url('../images/casestudy/parallax2.jpg');
  position: relative;
  background-repeat: no-repeat;
  height: 100%; 
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.parallax-SecSub{
  color: #19202c;
  font-family: ProximaNovaRegular;
  letter-spacing: 1px; 
}
@media (min-width: 1025px) {

  
}
@media (max-width: 768px) {  
  .features li .count {
    float: left;
    width: 45px;
    min-height: 200px;
    background: url(../images/features-bg2.png) center bottom no-repeat;
  }
  .main-title{
    padding-bottom: 20px;
  }
}