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

 Theme Name: Coco
 Theme URI: http://
 Description: The Multi-Purpose Onepage Template
 Author: ui-themez
 Author URI: http://themeforest.net/user/ui-themez
 Version: 1.0

 Main Color   : #1A237E , #2576FD
 main Font    : Rubik

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

 == Table Of Content

	01 Basics
	02 Buttons
	03 Navbar
	04 Header
	05 Hero
	06 Process
	07 Works
	08 why-us
	09 Team
	10 Testimonials
	11 Price
	12 Blog
	13 Call-action
	14 Contact
	15 Footer
	16 Responsive
 

---------------------------------------------------------------- */
/* ----------------------------------------------------------------
     [ 01 Start Basics ]
-----------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  list-style: none;
  word-wrap: break-word;
}

body {
  color: #000;
  line-height: 1.3;
  font-weight: 400;
  font-size: 14px;
  font-family: 'Rubik', sans-serif;
  overflow-x: hidden !important;
}

p {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #999;
  line-height: 1.8;
  margin: 0;
}

img {
  width: 100%;
  height: auto;
}

span, a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

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

.curve {
  position: absolute;
  z-index: 7;
}
.curve.curve-center:after {
  border-left: 50vw solid transparent;
}
.curve.curve-center:before {
  border-right: 50vw solid transparent;
}
.curve.curve-center.curve-top:after {
  border-left: 50vw solid transparent;
}
.curve.curve-center.curve-top:before {
  border-right: 50vw solid transparent;
}
.curve.curve-bottom {
  left: 0;
  bottom: -1px;
  width: 100%;
}
.curve.curve-bottom:after, .curve.curve-bottom:before {
  bottom: 0;
}
.curve.curve-top {
  left: 0;
  top: -1px;
  width: 100%;
}
.curve.curve-top:after, .curve.curve-top:before {
  top: 0;
  border-top: 50px solid #fff;
  border-bottom: 0;
}
.curve.curve-top:after {
  border-left: 70vw solid transparent;
}
.curve.curve-top:before {
  border-right: 30vw solid transparent;
}
.curve.curve-gray-b:after, .curve.curve-gray-b:before {
  border-bottom: 50px solid #f9f9f9;
}
.curve.curve-gray-t:after, .curve.curve-gray-t:before {
  border-top: 50px solid #f9f9f9;
}
.curve:after, .curve:before {
  content: '';
  width: 0;
  height: 0;
  border-bottom: 50px solid #fff;
  position: absolute;
}
.curve:after {
  right: 0;
  border-left: 30vw solid transparent;
}
.curve:before {
  left: 0;
  border-right: 70vw solid transparent;
}

.section-padding {
  padding: 50px 0;
}

.section-head {
  margin-bottom: 80px;
  text-align: center;
}
.section-head h4 {
  font-size: 34px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #000;
}
.section-head h4 span {
  font-weight: 300;
  color: #000;
}

[data-overlay-color] .section-head p {
  color: #ccc;
}
[data-overlay-color].process .icon {
  color: #fff !important;
}

.bg-gray {
  background: #f9f9f9;
}

.o-hidden {
  overflow: hidden;
}

.pos-re {
  position: relative;
}

.full-width {
  width: 100% !important;
}

.lg-line-height {
  line-height: 1.5;
}

.bg-img {
  background-size: cover;
  background-repeat: no-repeat;
}

.bg-fixed {
  background-attachment: fixed;
}

.valign {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.v-middle {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 15px;
  line-height: .7;
}

.owl-theme .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 0 7px;
  border-radius: 50%;
  background: #ddd;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #f71818;
}

.cd-headline {
  font-size: 3rem;
  line-height: 1.2;
}

@media only screen and (min-width: 768px) {
  .cd-headline {
    font-size: 4.4rem;
    font-weight: 300;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-headline {
    font-size: 6rem;
  }
}
.cd-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left;
}

.cd-words-wrapper b {
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  left: 0;
  top: 0;
}

.cd-words-wrapper b.is-visible {
  position: relative;
}

.no-js .cd-words-wrapper b {
  opacity: 0;
}

.no-js .cd-words-wrapper b.is-visible {
  opacity: 1;
}

/* xclip */
.cd-headline.clip span {
  display: inline-block;
  padding: .2em 0;
}

.cd-headline.clip .cd-words-wrapper {
  overflow: hidden;
  vertical-align: top;
}

.cd-headline.clip .cd-words-wrapper::after {
  /* line */
  content: '';
  position: absolute;
  top: 10%;
  right: 0;
  width: 2px;
  height: 70%;
  background-color: #aebcb9;
}

.cd-headline.clip b {
  opacity: 0;
}

.cd-headline b.is-visible {
  opacity: 1;
  font-weight: 900;
}

/* ----------------------------------------------------------------
     [ End Basics ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 02 Start Buttons ]
-----------------------------------------------------------------*/
.butn {
  padding: 12px 35px;
  background: #fff;
  border-radius: 30px;
  border: 1px solid transparent;
  position: relative;
  z-index: 3;
  margin-left: 10px;
  margin-right: 10px;
  -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  -webkit-transition: all .4s;
  transition: all .4s;
  cursor: pointer;
  outline: none !important;
  overflow: hidden;
}
.butn span {
  position: relative;
  z-index: 2;
}
.butn:after {
  content: '';
  width: 0;
  height: 100%;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: width 0.4s;
  transition: width 0.4s;
  z-index: 1;
  opacity: 1;
}
.butn:hover:after {
  width: 100%;
}

.butn-bg {
  background: #ec3b13;
  border-color: #ec3b13;
  color: #fff;
}
.butn-bg:hover span {
  color: #1A237E;
}

.butn-light, .butn-bord {
  background: #fff;
}
.butn-light:after, .butn-bord:after {
  background: #1A237E;
}
.butn-light:hover span, .butn-bord:hover span {
  color: #fff !important;
}
.butn-light span, .butn-bord span {
  color: #1A237E;
}

.butn-bord {
  background: transparent !important;
  border-color: #1A237E;
}

/* ----------------------------------------------------------------
     [ End Buttons ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 03 Start Navbar ]
-----------------------------------------------------------------*/
.navbar {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  border: 0;
  background: transparent;
  z-index: 9;
  min-height: 70px;
}
.navbar .icon-bar {
  color: #000;
}
.navbar .navbar-nav .nav-link {
  font-size: 13px;
  font-weight: 500;
  color: #000;
  letter-spacing: .5px;
  margin: 15px 5px;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.navbar .navbar-nav .active {
  color: #ec3b13 !important;
}

.nav-scroll {
  background: #fff;
  -webkit-box-shadow: 0px 0px 13px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 0px 13px rgba(0, 0, 0, 0.5);
  padding: 0;
  position: fixed;
  top: -100px;
  left: 0;
  width: 100%;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}
.nav-scroll .icon-bar {
  color: #222;
}
.nav-scroll .navbar-nav .nav-link {
  color: #222;
}
.nav-scroll .navbar-nav .logo {
  padding: 15px 0;
  color: #111;
}

.logo {
  padding: 15px 0;
  width: 100px;
}

.ft-logo{
  width: 200px;
}



/* ----------------------------------------------------------------
     [ End Navbar ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 04 Start Header ]
-----------------------------------------------------------------*/
.header {
  position: relative;
}
.header.video {
  overflow: hidden;
}
.header .caption .o-hidden {
  display: inline-block;
}
.header .caption h4 {
  font-size: 50px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 4px;
  -webkit-animation-delay: .2s;
          animation-delay: .2s;
}
.header .caption h1 {
  margin: 10px 0;
  font-size: 65px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  word-spacing: 2px;
  -webkit-animation-delay: .6s;
          animation-delay: .6s;
}
.header .caption p {
  font-size: 16px;
  font-weight: 300;
  color: #eee;
  word-spacing: 2px;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.header .caption p span {
  letter-spacing: 5px;
  text-transform: uppercase;
  margin: 0 5px;
  padding-right: 14px;
  position: relative;
}
.header .caption p span:last-child {
  padding: 0;
}
.header .caption p span:last-child:after {
  display: none;
}
.header .caption p span:after {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1A237E;
  position: absolute;
  top: 10px;
  right: 0;
  opacity: .5;
}
.header .caption .butn {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.slider .owl-item, .slider-fade .owl-item {
  height: 100vh;
  position: relative;
}
.slider .item, .slider-fade .item {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
}
.slider .item .caption, .slider-fade .item .caption {
  z-index: 9;
}
.slider .owl-theme .owl-dots, .slider-fade .owl-theme .owl-dots {
  position: absolute;
  bottom:15px;
  width: 100%;
}

.wave {
  min-height: 105vh;
}
.wave:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -5%;
  width: 110%;
  height: 100px;
  background-image: url(../img/wave.svg);
  background-size: cover;
  z-index: 7;
}

.bg-vid {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
}

/*#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
*/

/*#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #FFF;
  background-image: url("");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  opacity: 0.3;
}*/

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
}


    .swiper-container {
      width: 100%;
    }

    .swiper-slide {
      font-size: 18px;
      background: transparent;

      /* Center slide text vertically */
      /*display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;*/
    }




/* ----------------------------------------------------------------
     [ End Header ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 05 Start Hero ]
-----------------------------------------------------------------*/
.game-img .graphic-img img {
    width: 80%;
}

.web-devlopment img {
    width: 80%;
}

h2.service-heading {
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 34px;
    margin-bottom: 10px;
    font-weight: 500;
}

.s-img-outer {
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
}

.width-80 {
  width: 80%;
}

.slider-box {
    width: 100%;
    display: flex;
}

.slider-ct {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.slider-ct h2 {
    font-size: 82px;
    color: rgb(236,63,19);
    font-weight: bold;
}

.slider-ct h3 {
    color: #000;
    font-size: 32px;
    text-align: left;
    width: 100%;
    margin-top: 20px;
}
.slider-ct p {
    color: #000;
    font-size: 22px;
    margin-top: 20px;
}


.web-devlopment {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.web-devlopment h2 {
    color: #151320;
    font-size: 72px;
    margin: 10px 0 10px 0;
    font-weight: bold;
}

.owl-carousel .owl-item .web-devlopment img {
    width: 70%;
}

.web-devlopment h2 span{
  color: #e42626;
}

.web-devlopment h3{
    font-size: 25px;
    color: #151320;
}
.web-devlopment p{
    font-size: 22px;
    color: #151320;
    margin-top: 20px;
}


.graphic-img {
    width: 100%;
    position: absolute;
    top: 0;
    right: 20px;
    height: 100%;
}

.graphic-img .row {
    height: 100%;
    align-items: center;
}

.graphic-ct {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.graphic-ct h2 {
    color: #ec3f13;
    font-size: 72px;
    margin-bottom: 10px;
    width: 100%;
    font-weight: bold;
}

.graphic-ct h3 {
    font-size: 25px;
    color: #263238;
    width: 100%;
    margin-bottom: 20px;
}

.graphic-ct p {
    color: #263238;
    width: 100%;
    font-size: 22px;
}

.landing-slider {
    padding-top: 126px;
    height: 100vh;
}

.landing-outer {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

/*[data-overlay-dark]:before{
  display: none;
}*/

.landing-outer .graphic-img {
    top: 0;
}


.owl-carousel .owl-item .game-img .graphic-img img {
  width: 80%;
}

.game-img .graphic-img{
  top: 0;
}


.sinle-card {
    width: 100%;
}

.sinle-card:hover .card-head .card-ct {
  opacity: 1;
  transition: all 0.5s;
}

.sinle-card:hover .card-head{
  transform: translateY(0);
  background: #f23c3c;
  transition: all 0.5s;
}

.card-head {
    width: 360px;
    height: 280px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transform: translateY(100px);
    position: relative;
    z-index: 1;
    background: #333;
  transition: all 0.5s;
}

.card-ct p {
    color: #fff;
}

.card-head .card-ct{
  opacity: 0.5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}

section.cards-s{
  width: 100%;
  position: relative;
  background: #333;
}

.card-head img{
  width: 130px;
  margin-bottom: 30px;
  transition: all 0.7s;
}


.card-head h2{
  font-size: 24px;
  color: #fff;
  text-align: center;
}

.fs-22{
  font-size: 22px !important;
}

.s-card-body {
    width: 360px;
    height: 222px;  
    text-align: center;
    padding: 30px 30px 30px 30px;
    background: #fff;
    color: #000;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    transform: translateY(-122px);
    transition: all 0.5s;

/*    box-shadow: 0px 8px 18px 0px rgba(0, 0, 0, 0.45);*/
}

 .sinle-card:hover .s-card-body{
  transform: translateY(0);
  transition: all 0.5s;
 }

 .curve, .curve.curve-top, .curve.curve-bottom{
  display: none;
 }

.step-card {
    width: 260px;
    height: 360px;
    background: rgb(255, 255, 255);
    border-radius: 95px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    transition: 0.3s;
    z-index: 2;
    border:3px solid transparent;
}

img.light-img {
    position: absolute;
    top: 40px;
    opacity: 0;
    transition: 0.2s;
}

.step-card:hover img.light-img{
  opacity: 1;
  transition: 0.3s;
}


.step-card-ct {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.step-card-ct p{
    color: #000;
    padding: 0 35px;
    margin-top: 20px;
    transition: 0.3s;
    font-size: 14px;
}

.step-card:hover p{
  color: #fff;
  transition: 0.3s;
}

.step-card-ct p:hover{
  color: #fff;
  transition: 0.3s;
}

.step-card-ct img {
    width: 60px;
    margin-bottom: 10px;
    transition: 0.3s;
}

.step-card-ct h2 {
    color: #f23c3c;
    font-size: 25px;
    font-weight: normal;
    transition: 0.3s;
}

img.arrow {
    position: absolute;
    bottom: 5px;
    left: 25px;
}


img.arrow-last{
  bottom: 1px;
  left: 25px;
  position: absolute;
}

.step-card h1 {
    color: #f23c3c;
    position: absolute;
    left: -40px;
    font-size: 138px;
    bottom: -10px;
    opacity: 0.8;
    transition: 0.2s;
}

.step-card:hover .step-card-ct h2{
  color: #fff;
  font-weight: bold;
  transition: 0.3s;
}

.step-card:hover{
  background: #f23c3c;
  transition: 0.3s;
  border-color: #fff;
}



.step-card:hover h1 {
  /*filter: drop-shadow(0px 0px 3px black) invert(0);*/
  transition: 0.3s;
  opacity: 1;
  color: #fff;
  -webkit-text-stroke: 2px;
  -webkit-text-stroke-color: #f23c3c;

}

.welcome {
    width: 100%;
    background: #f34343;
    padding: 50px 0;
}

.welcome-ct {
    text-align: center;
    position: relative;
    padding: 50px 100px 50px 100px;
    background: #a04646;
}

.welcome h2 {
    text-align: center;
    font-size: 46px;
}

.welcome-ct p {
    color: #fff;
    font-size: 18px;
}

.hiring-img {
    width: 100%;
    position: relative;
}

.hiring-img img{
  width: 100%;
}

.hiring {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.hiring h3 {
    color: #000;
    font-weight: normal;
    font-size: 34px;
    margin-bottom: 20px;
}

.hiring h3 span{
  font-weight: 500;
  color: #ec3f13;
}

.hiring p {
    color: #000;
    font-size: 22px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.hiring p span{
  position: absolute;
  left: 0;
}

.hiring p:last-child{
  margin-bottom: 0;
}

.hiring-outer {
    width: 100%;
    position: relative;
    padding: 50px 0;
}


.right-q{
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  opacity: 0.5;
}

img.left-q {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    opacity: 0.5;
}

.owl-carousel .owl-item .team-img img {
    padding: 20px;
    width: 100%;
}

.team .item .social iw

/*.welcome h2 span{
  color: #fff;
}*/


.process{
  background: url(../img/w-map.png);
  background-attachment: fixed;
  background-position: center;
}

section.hero-ct {
    width: 100%;
    position: relative;
    padding-top: 50px;
}

.hero-ct .extra-title {
    margin-bottom: 30px;
    text-align: center;
}
.hero-ct .extra-title span {
  color: #ec3b13;
}
.hero .feat-item {
  padding: 0;
}
.hero .feat-item .text-center {
  padding: 50px 30px;
  background-color: #fff;
  -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.04);
          box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.04);
}
.hero .feat-item.active .text-center {
  margin-top: -25px;
  padding-top: 75px;
  -webkit-box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 3;
}
.hero .feat-item:hover .icon {
  color: #fff;
}
.hero .feat-item:hover .icon:after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.hero .feat-item .icon {
  width: 90px;
  height: 90px;
  line-height: 105px;
  color: #ef5f3f;
  font-size: 60px;
  border-radius: 50%;
  margin-bottom: 15px;
  position: relative;
  z-index: 3;
}
.hero .feat-item .icon:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #1A237E;
  background: -webkit-gradient(linear, left top, right bottom, from(#2576FD), to(#1A237E));
  background: linear-gradient(to bottom right, #2576FD, #1A237E);
  border-radius: 50%;
  z-index: -1;
  -webkit-transform: scale(0, 0);
          transform: scale(0, 0);
  -webkit-transition: all .4s;
  transition: all .4s;
}
.hero .feat-item h5 {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 10px;
}
.hero .feat-item h6 {
  color: #ee512d;
  font-size: 12px;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 20px;
}

.tabs-section .nav-pills {
  padding: 0;
}
.tabs-section .nav-pills .nav-link {
  background-color: #f2f2f2;
  padding: 12px 40px;
  border-right: 1px solid #eee;
  border-top: 2px solid transparent;
  border-radius: 0;
  position: relative;
  z-index: 5;
}
.tabs-section .nav-pills .nav-link.active {
  border-top-color: #1A237E;
  background-color: #fff;
  color: #1A237E;
}
.tabs-section .tab-content .left {
  padding: 0;
  position: relative;
  z-index: 3;
}
.tabs-section .tab-content .left .box-white {
  padding: 50px 30px;
  background-color: #fff;
  -webkit-box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.1);
  border-radius: 0px 5px 5px 5px;
}
.tabs-section .tab-content .left .title {
  margin-bottom: 5px;
  font-weight: bold;
}
.tabs-section .tab-content .left .sub-title {
  color: #777;
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 20px;
}
.tabs-section .tab-content .left .feat li {
  margin: 0;
  text-align: center;
  padding: 30px 5px;
  background-color: #f7f7f7;
}
.tabs-section .tab-content .left .feat li:nth-child(odd) {
  background-color: #f3f3f3;
}
.tabs-section .tab-content .left .feat li:hover {
  color: #fff;
  background-color: #1A237E;
}
.tabs-section .tab-content .left .feat li:hover .icon {
  color: #eee;
}
.tabs-section .tab-content .left .feat .icon {
  font-size: 30px;
  color: #1A237E;
  margin-bottom: 15px;
}
.tabs-section .tab-content .left .feat h6 {
  font-size: 14px;
  font-weight: 400;
}
.tabs-section .tab-content .image {
  padding: 0;
  position: relative;
  margin-left: -50px;
  margin-top: -40px;
  max-width: calc(50% + 50px);
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
.tabs-section .tab-content .image .img {
  position: relative;
}
.tabs-section .tab-content .image .img .vid {
  position: absolute;
  top: calc(50% - 50px);
  left: calc(50% - 50px);
  width: 100px;
  height: 100px;
  text-align: center;
  line-height: 1.5;
  font-size: 70px;
  color: #1A237E;
  z-index: 3;
}
.tabs-section .tab-content .image .img .vid:hover:after {
  -webkit-transform: scale(2, 2);
          transform: scale(2, 2);
  opacity: 0;
}
.tabs-section .tab-content .image .img .vid:after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: .7;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.tabs-section .tab-content .image .img img {
  -webkit-box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}
.tabs-section .tab-content .image .owl-dots {
  margin-top: -30px;
  position: relative;
  z-index: 7;
}

.skills h6 {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 10px;
}
.skills .skill-progress {
  height: 8px;
  width: 100%;
  background-color: #f7f7f7;
  border-radius: 20px;
  position: relative;
}
.skills .skill-progress .progres {
  width: 10%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 20px;
  background-color: #1A237E;
  background: -webkit-gradient(linear, left top, right bottom, from(#2576FD), to(#1A237E));
  background: linear-gradient(to bottom right, #2576FD, #1A237E);
  -webkit-transition: all 1.5s;
  transition: all 1.5s;
}
.skills .skill-progress .progres:after {
  content: attr(data-value);
  position: absolute;
  top: -15px;
  right: 0;
  font-size: 10px;
}

/* ----------------------------------------------------------------
     [ End Hero ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 06 Process ]
-----------------------------------------------------------------*/
.process .item {
  position: relative;
  z-index: 4;
}
.process .item img {
  position: absolute;
  width: 70%;
  right: -40%;
  top: 15px;
  opacity: .5;
}
.process .item img.tobotm {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}
.process .item.odd {
  margin-top: 50px;
}
.process .item .cont {
  padding: 50px 30px;
  background-color: #fff;
  -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  position: relative;
  z-index: 3;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.process .item .cont:hover {
  background-color: #ec3b13;
}
.process .item .cont:hover h6 {
  color: #fff;
}
.process .item .cont:hover p {
  color: #eee;
}
.process .item .icon {
  color: #ec3b13;
  font-size: 30px;
  width: 80px;
  height: 80px;
  line-height: 85px;
  border-radius: 50%;
  border: 1px dashed #eee;
  margin-bottom: 30px;
}
.process .item h3 {
  position: absolute;
  top: 25px;
  left: 0;
  width: 100%;
  color: #777;
  font-size: 50px;
  font-weight: bold;
  opacity: .1;
  z-index: -1;
}
.process .item h6 {
  color: #222;
  font-size: 16px;
  margin-bottom: 15px;
}
.process .item p {
  font-size: 14px;
  color: #999;
}

/* ----------------------------------------------------------------
     [ End Process ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 07 Start Works ]
-----------------------------------------------------------------*/
.works .filtering .filter {
  display: inline-block;
  padding: 4px 10px;
  -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
}
.works .filtering span {
  margin: 0 5px;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 30px;
  cursor: pointer;
}
.works .filtering .active {
  background: #1A237E;
  background: -webkit-gradient(linear, left top, right top, from(#1A237E), to(#2576FD));
  background: linear-gradient(to right, #ea451f, #de9382);
  -webkit-box-shadow: 0px 8px 30px -5px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 8px 30px -5px rgba(0, 0, 0, 0.2);
  color: #fff;
}
.works .item-img {
  position: relative;
  margin-top: 30px;
}
.works .item-img:hover .item-img-overlay {
  visibility: visible;
  opacity: 1;
}
.works .item-img-overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.95);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.works .item-img-overlay .icon {
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  border: 1px solid #1A237E;
  text-align: center;
  font-size: 20px;
  color: #1A237E;
}
.works .item-img-overlay p {
  color: #1A237E;
  font-weight: 400;
  font-size: 13px;
}
.works .item-img-overlay h6 {
  font-weight: 400;
  font-size: 16px;
  margin-top: 5px;
}

/* ----------------------------------------------------------------
     [ End Works ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 08 Start why-us ]
-----------------------------------------------------------------*/
.why-us .img {
  border-radius: 5px;
  -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.why-us .item .icon {
  width: 85px;
  height: 85px;
  text-align: center;
  line-height: 95px;
  font-size: 35px;
  border-radius: 50%;
  border: 1px solid #eee;
  color: #2576FD;
  float: left;
  position: relative;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.why-us .item .icon:hover {
  color: #fff;
  -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
}
.why-us .item .icon:hover:after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.why-us .item .icon:after {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #1A237E;
  background: -webkit-gradient(linear, left top, right top, from(#1A237E), to(#2576FD));
  background: linear-gradient(to right, #1A237E, #2576FD);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  -webkit-transform: scale(0, 0);
          transform: scale(0, 0);
  -webkit-transition: all .3s;
  transition: all .3s;
}
.why-us .item .icon:before {
  position: relative;
  z-index: 3;
}
.why-us .item .cont {
  margin-left: 100px;
}
.why-us .item .cont h5 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}
.why-us .item .cont p {
  font-size: 14px;
}

/* ----------------------------------------------------------------
     [ End why-us ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 09 Start Team ]
-----------------------------------------------------------------*/
.team .item:hover .team-img:after {
  opacity: .8;
}
.team .item:hover .social {
  bottom: 30%;
}
.team .item .team-img {
  position: relative;
  overflow: hidden;
}
.team .item .team-img:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #2576FD;
  background: -webkit-gradient(linear, left top, left bottom, from(#1A237E), to(#2576FD));
  background: linear-gradient(to bottom, #1A237E, #2576FD);
  opacity: 0;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.team .item .social {
  position: absolute;
  bottom: -30%;
  left: 0;
  width: 100%;
  padding: 30px 15px;
  text-align: center;
  -webkit-transition: all .5s;
  transition: all .5s;
  z-index: 3;
}
.team .item .social a {
  color: #fff;
  margin: 0 15px;
}
.team .item .info {
  text-align: center;
  margin-top: 20px;
}
.team .item .info h6 {
  font-size: 16px;
  margin-bottom: 5px;
}
.team .item .info span {
  color: #777;
  font-size: 13px;
  font-weight: 400;
}

/* ----------------------------------------------------------------
     [ End Team ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 10 Start Testimonials ]
-----------------------------------------------------------------*/
.testimonials{
  display: none;
}

.testimonials .item-box {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.testimonials .item-box .quote {
  width: 60px;
  margin: 0 auto 30px;
  opacity: .3;
}
.testimonials .item-box p {
  font-size: 14px;
  color: #999;
  font-weight: 300;
  word-spacing: 2px;
}
.testimonials .item-box .info {
  text-align: left;
  margin: 30px 0 15px;
}
.testimonials .item-box .info .author-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  float: left;
  overflow: hidden;
}
.testimonials .item-box .info .cont {
  margin-left: 60px;
}
.testimonials .item-box .info h6 {
  color: #222;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 3px;
}
.testimonials .item-box .info span {
  font-size: 12px;
  font-weight: 400;
  color: #777;
}

/* ----------------------------------------------------------------
     [ End Testimonials ]
-----------------------------------------------------------------*/



/* ----------------------------------------------------------------
     [ start Testimonials slider]
-----------------------------------------------------------------*/


.testim {
    width: 100%;
    position: relative;
    background: #1E1E1E;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testim .wrap {
    position: relative;
    width: 100%;
    max-width: 1020px;
    padding: 40px 20px;
    margin: auto;
}

.testim .arrow {
    display: block;
    position: absolute;
    color: #eee;
    cursor: pointer;
    font-size: 2em;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .3s ease-in-out;    
    -ms-transition: all .3s ease-in-out;    
    -moz-transition: all .3s ease-in-out;    
    -o-transition: all .3s ease-in-out;    
    transition: all .3s ease-in-out;
    padding: 5px;
    z-index: 1;
}

.testim .arrow:before {
    cursor: pointer;
}

.testim .arrow:hover {
    color: #ea830e;
}
    

.testim .arrow.left {
    left: 10px;
}

.testim .arrow.right {
    right: 10px;
}

.testim .dots {
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 30px;
    left: 0;
    display: block;
    z-index: 3;
    height: 12px;
}

.testim .dots .dot {
    list-style-type: none;
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #eee;
    margin: 0 10px;
    cursor: pointer;
    -webkit-transition: all .5s ease-in-out;    
    -ms-transition: all .5s ease-in-out;    
    -moz-transition: all .5s ease-in-out;    
    -o-transition: all .5s ease-in-out;    
    transition: all .5s ease-in-out;
    position: relative;
}

.testim .dots .dot.active,
.testim .dots .dot:hover {
    background: #ea830e;
    border-color: #ea830e;
}

.testim .dots .dot.active {
    -webkit-animation: testim-scale .5s ease-in-out forwards;   
    -moz-animation: testim-scale .5s ease-in-out forwards;   
    -ms-animation: testim-scale .5s ease-in-out forwards;   
    -o-animation: testim-scale .5s ease-in-out forwards;   
    animation: testim-scale .5s ease-in-out forwards;   
}
    
.testim .cont {
    position: relative;
    overflow: hidden;
}

.testim .cont > div {
    text-align: center;
    position: absolute;
    top: 0;
    left: 50%;
    padding: 0 0 70px 0;
    opacity: 0;
    transform: translate(-50%,0);
    height: 210px;
}

.testim .cont > div.inactive {
    opacity: 1;
}
    

.testim .cont > div.active {
    position: relative;
    opacity: 1;
}
    

.testim .cont div .img img {
    display: block;
    width: 100px;
    height: 100px;
    margin: auto;
    border-radius: 50%;
}

.testim .cont div h2 {
    color: #ea830e;
    font-size: 24px;
    margin: 15px 0 40px;
}

.testim .cont div p {
    font-size: 1.15em;
    color: #eee;
    width: 80%;
    margin: auto;
}

.testim .cont div.active .img img {
    -webkit-animation: testim-show .5s ease-in-out forwards;            
    -moz-animation: testim-show .5s ease-in-out forwards;            
    -ms-animation: testim-show .5s ease-in-out forwards;            
    -o-animation: testim-show .5s ease-in-out forwards;            
    animation: testim-show .5s ease-in-out forwards;            
}

.testim .cont div.active h2 {
    -webkit-animation: testim-content-in .4s ease-in-out forwards;    
    -moz-animation: testim-content-in .4s ease-in-out forwards;    
    -ms-animation: testim-content-in .4s ease-in-out forwards;    
    -o-animation: testim-content-in .4s ease-in-out forwards;    
    animation: testim-content-in .4s ease-in-out forwards;    
}

.testim .cont div.active p {
    -webkit-animation: testim-content-in .5s ease-in-out forwards;    
    -moz-animation: testim-content-in .5s ease-in-out forwards;    
    -ms-animation: testim-content-in .5s ease-in-out forwards;    
    -o-animation: testim-content-in .5s ease-in-out forwards;    
    animation: testim-content-in .5s ease-in-out forwards;    
}

.testim .cont div.inactive .img img {
    -webkit-animation: testim-hide .5s ease-in-out forwards;            
    -moz-animation: testim-hide .5s ease-in-out forwards;            
    -ms-animation: testim-hide .5s ease-in-out forwards;            
    -o-animation: testim-hide .5s ease-in-out forwards;            
    animation: testim-hide .5s ease-in-out forwards;            
}

.testim .cont div.inactive h2 {
    -webkit-animation: testim-content-out .4s ease-in-out forwards;        
    -moz-animation: testim-content-out .4s ease-in-out forwards;        
    -ms-animation: testim-content-out .4s ease-in-out forwards;        
    -o-animation: testim-content-out .4s ease-in-out forwards;        
    animation: testim-content-out .4s ease-in-out forwards;        
}

.testim .cont div.inactive p {
    -webkit-animation: testim-content-out .5s ease-in-out forwards;    
    -moz-animation: testim-content-out .5s ease-in-out forwards;    
    -ms-animation: testim-content-out .5s ease-in-out forwards;    
    -o-animation: testim-content-out .5s ease-in-out forwards;    
    animation: testim-content-out .5s ease-in-out forwards;    
}

@-webkit-keyframes testim-scale {
    0% {
        -webkit-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -webkit-box-shadow: 0px 0px 10px 5px #eee;        
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        -webkit-box-shadow: 0px 0px 10px 5px #ea830e;        
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }

    100% {
        -webkit-box-shadow: 0px 0px 0px 0px #ea830e;        
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
}

@-moz-keyframes testim-scale {
    0% {
        -moz-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -moz-box-shadow: 0px 0px 10px 5px #eee;        
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        -moz-box-shadow: 0px 0px 10px 5px #ea830e;        
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }

    100% {
        -moz-box-shadow: 0px 0px 0px 0px #ea830e;        
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
}

@-ms-keyframes testim-scale {
    0% {
        -ms-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -ms-box-shadow: 0px 0px 10px 5px #eee;        
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        -ms-box-shadow: 0px 0px 10px 5px #ea830e;        
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }

    100% {
        -ms-box-shadow: 0px 0px 0px 0px #ea830e;        
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
}

@-o-keyframes testim-scale {
    0% {
        -o-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -o-box-shadow: 0px 0px 10px 5px #eee;        
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        -o-box-shadow: 0px 0px 10px 5px #ea830e;        
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }

    100% {
        -o-box-shadow: 0px 0px 0px 0px #ea830e;        
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
}

@keyframes testim-scale {
    0% {
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }

    100% {
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
}

@-webkit-keyframes testim-content-in {
    from {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        -webkit-transform: translateY(0);        
        transform: translateY(0);        
    }
}

@-moz-keyframes testim-content-in {
    from {
        opacity: 0;
        -moz-transform: translateY(100%);
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        -moz-transform: translateY(0);        
        transform: translateY(0);        
    }
}

@-ms-keyframes testim-content-in {
    from {
        opacity: 0;
        -ms-transform: translateY(100%);
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        -ms-transform: translateY(0);        
        transform: translateY(0);        
    }
}

@-o-keyframes testim-content-in {
    from {
        opacity: 0;
        -o-transform: translateY(100%);
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        -o-transform: translateY(0);        
        transform: translateY(0);        
    }
}

@keyframes testim-content-in {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        transform: translateY(0);        
    }
}

@-webkit-keyframes testim-content-out {
    from {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        -webkit-transform: translateY(-100%);        
        transform: translateY(-100%);        
    }
}

@-moz-keyframes testim-content-out {
    from {
        opacity: 1;
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        -moz-transform: translateY(-100%);        
        transform: translateY(-100%);        
    }
}

@-ms-keyframes testim-content-out {
    from {
        opacity: 1;
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        -ms-transform: translateY(-100%);        
        transform: translateY(-100%);        
    }
}

@-o-keyframes testim-content-out {
    from {
        opacity: 1;
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        transform: translateY(-100%);        
        transform: translateY(-100%);        
    }
}

@keyframes testim-content-out {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        transform: translateY(-100%);        
    }
}

@-webkit-keyframes testim-show {
    from {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -webkit-transform: scale(1);       
        transform: scale(1);       
    }
}

@-moz-keyframes testim-show {
    from {
        opacity: 0;
        -moz-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -moz-transform: scale(1);       
        transform: scale(1);       
    }
}

@-ms-keyframes testim-show {
    from {
        opacity: 0;
        -ms-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -ms-transform: scale(1);       
        transform: scale(1);       
    }
}

@-o-keyframes testim-show {
    from {
        opacity: 0;
        -o-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -o-transform: scale(1);       
        transform: scale(1);       
    }
}

@keyframes testim-show {
    from {
        opacity: 0;
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        transform: scale(1);       
    }
}

@-webkit-keyframes testim-hide {
    from {
        opacity: 1;
        -webkit-transform: scale(1);       
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
}

@-moz-keyframes testim-hide {
    from {
        opacity: 1;
        -moz-transform: scale(1);       
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        -moz-transform: scale(0);
        transform: scale(0);
    }
}

@-ms-keyframes testim-hide {
    from {
        opacity: 1;
        -ms-transform: scale(1);       
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        -ms-transform: scale(0);
        transform: scale(0);
    }
}

@-o-keyframes testim-hide {
    from {
        opacity: 1;
        -o-transform: scale(1);       
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        -o-transform: scale(0);
        transform: scale(0);
    }
}

@keyframes testim-hide {
    from {
        opacity: 1;
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        transform: scale(0);
    }
}

@media all and (max-width: 300px) {
  body {
    font-size: 14px;
  }
}

@media all and (max-width: 500px) {
  .testim .arrow {
    font-size: 1.5em;
  }
  
  .testim .cont div p {
    line-height: 25px;
  }

}








/* ----------------------------------------------------------------
     [ end Testimonials slider]
-----------------------------------------------------------------*/










/* ----------------------------------------------------------------
     [ 11 Start Price ]
-----------------------------------------------------------------*/
.price .item {
  padding: 50px 15px;
  background-color: #fff;
  -webkit-box-shadow: 0px 15px 40px -5px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 15px 40px -5px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}
.price .type h4 {
  font-size: 16px;
  margin-bottom: 15px;
}
.price .value {
  margin-bottom: 30px;
}
.price .value h3 {
  font-size: 50px;
  display: inline-block;
  position: relative;
}
.price .value h3 span {
  font-size: 12px;
  position: absolute;
  top: 0;
  left: -10px;
}
.price .features {
  margin-bottom: 30px;
}
.price .features li {
  font-size: 13px;
  color: #777;
  margin-bottom: 12px;
}
.price .features li:last-child {
  margin-bottom: 0;
}
.price .active {
  -webkit-box-shadow: 0px 20px 40px -10px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 20px 40px -10px rgba(0, 0, 0, 0.5);
  background-color: #1A237E;
  background: -webkit-gradient(linear, left top, left bottom, from(#1A237E), to(#2576FD));
  background: linear-gradient(to bottom, #1A237E, #2576FD);
  color: #fff;
}
.price .active .features li {
  color: #eee;
}
.price .active .butn span {
  color: #1A237E;
}
.price .butn {
  padding: 10px 30px;
}
.price .butn span {
  font-size: 12px;
}

/* ----------------------------------------------------------------
     [ End Price ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 12 Start Blog ]
-----------------------------------------------------------------*/
.blog .item {
  -webkit-box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.05);
  padding: 15px;
}
.blog .item .post-img {
  overflow: hidden;
}
.blog .item .post-img:hover .img {
  -webkit-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
}
.blog .item .post-img .img {
  -webkit-transition: all .4s;
  transition: all .4s;
}
.blog .item .cont {
  padding: 30px 0 15px;
}
.blog .item .cont h6 {
  font-size: 16px;
  margin-bottom: 10px;
}
.blog .item .info {
  font-size: 10px;
  color: #999;
  font-style: italic;
  margin-bottom: 10px;
}
.blog .item .info a {
  margin-right: 10px;
}
.blog .item .info a:last-child {
  margin-right: 0;
}
.blog .item .info .tag {
  padding: 4px;
  background-color: #1A237E;
  color: #fff;
  float: right;
  line-height: 1;
}
.blog .item .more {
  font-size: 13px;
  font-weight: 500;
  margin-top: 10px;
}
.blog .item .more:hover {
  color: #1A237E;
}
.blog .item .more:hover i {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.blog .item .more i {
  font-size: 10px;
  -webkit-transform: translateX(-15px);
          transform: translateX(-15px);
  opacity: 0;
  -webkit-transition: all .2s;
  transition: all .2s;
}

/* ----------------------------------------------------------------
     [ End Blog ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 13 Start Call-action ]
-----------------------------------------------------------------*/
.call-action {
  position: relative;
}
.call-action:after {
  content: '';
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
}
.call-action .text-center {
  padding: 0 20px;
}
.call-action h2 {
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 10px;
}
.call-action h5 {
  font-weight: 400;
  margin-bottom: 30px;
}

/* ----------------------------------------------------------------
     [ End Call-action ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 14 Start Contact ]
-----------------------------------------------------------------*/
.contact .contact-info h5 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}
.contact .contact-info .item {
  margin-top: 30px;
}
.contact .contact-info .item .icon {
  float: left;
  font-size: 25px;
  color: #ec3b13;
}
.contact .contact-info .item .cont {
  margin-left: 50px;
}
.contact .contact-info .item .cont h6 {
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.contact .contact-info .item .cont p {
  font-size: 13px;
}
.contact .form input, .contact .form textarea {
  width: 100%;
  padding: 10px;
  border: 0;
  background-color: #f9f9f9;
}
.contact .form textarea {
  height: 160px;
  max-height: 160px;
  max-width: 100%;
}

/* ----------------------------------------------------------------
     [ End Contact ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 15 Start Footer ]
-----------------------------------------------------------------*/
footer {
  padding: 20px 0;
  background-color: #111;
}
footer .social a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: #151515;
  color: #999;
  font-size: 16px;
  margin: 15px 5px;
}
footer .social a:hover {
  background-color: #1A237E;
  color: #fff;
}
footer p {
  color: #999;
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ----------------------------------------------------------------
     [ End Footer ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
 	 [ 16 Responsive ]
-----------------------------------------------------------------*/
@media screen and (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation:landscape){

  .slider-ct h2 , .graphic-ct h2 , .web-devlopment h2 , .graphic-ct h2  {
    font-size: 56px;
  }

  .hiring p{
    font-size: 18px;
  }

  .logo{
    margin-left: -20px;
  }
  
  .slider-box {
    height: auto;
  }

  .width-80 {
    width: 100%;
  }

  .owl-carousel .owl-item .game-img .graphic-img img {
    width: 100%;
    padding: 0 20px;
  }

  .s-card-body{
    width: 300px;
    height: 242px;
    transform: translateY(-142px);
  }

  .card-head {
    width: 300px;
    height: 280px;
    }

    .step-card {
    width: 215px;
    height: 300px;
  }

  .step-card h1{
    left:-30px;
    font-size: 108px;
  }

  .step-card-ct p{
    font-size: 12px;
  }
}
@media screen and (max-width: 991px) {

  .landing-outer {
    flex-direction: column;
  }

  .landing-slider {
    height: auto;
  }

  .slider-box {
    height: auto;
  }

  .width-80 {
    width: 100%;
  }

  .s-img-outer {
    position: static;
  }

  .slider-ct {
    text-align: left;
  }

  .slider-ct h2 , .graphic-ct h2 , .web-devlopment h2 , .graphic-ct h2  {
    font-size: 56px;
  }

  .slider-ct h3{
    font-size: 24px;
  }

  .slider-ct p{
    font-size: 20px;
  }

  .web-devlopment p {
    text-align: center;
  }

  

  .graphic-img {
    position: static;
    padding: 20px;
  }

  .owl-carousel .owl-item .game-img .graphic-img img {
    width: 100%;
    padding: 20px;
  } 


  .sinle-card {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .step-card{
    margin: 0 auto;
  }

  .m-t {
    margin-top: 70px;
  }

  .testim .dots{
    bottom: 30px;
  }


  .mb-md50 {
    margin-bottom: 50px;
  }

  .mb-md30 {
    margin-bottom: 30px;
  }

  .mb-md0 {
    margin-bottom: 0;
  }

  .bgimg-height {
    height: 400px;
  }

  .bg-fixed {
    background-attachment: scroll !important;
  }

 /* .navbar {
    padding-left: 15px;
  }*/
  .navbar .navbar-collapse {
    max-height: 340px;
    overflow: auto;
    background: #fff;
    text-align: center;
    padding: 10px 0;
    box-shadow: 0 5px 10px rgba(0,0,0,0.5)
  }
  .navbar .nav-link {
    margin: 10px auto !important;
  }

  .nav-scroll .navbar-toggler {
    margin-right: 15px;
  }
  .nav-scroll .navbar-collapse .nav-link {
    color: #000 !important;
  }
  .nav-scroll .navbar-collapse .active {
    color: #ec3b13 !important;
  }

  .header {
    background-attachment: scroll !important;
    background-position: 50% 0% !important;
  }
  .header .caption h4 {
    font-size: 30px;
  }
  .header .caption h1 {
    font-size: 45px;
    line-height: 1.4;
  }

  .hero .feat-item.active .text-center {
    padding-top: 50px;
    margin-top: 0;
  }

  .tabs-section .tab-content .image {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    max-width: 100%;
    margin: 50px 0 0;
  }

  .process .item img {
    display: none;
  }

  .process .item.odd {
    margin-top: 0;
  }
}

@media screen and (max-width: 1366px){



  .web-devlopment img {
    width: 65%;
  }


}



@media screen and (max-width: 767px) {

  .hiring-img {
    margin-top: 20px;
}

.hiring p {
    font-size: 18px;
}

  .hero-ct .extra-title{
    font-size: 30px;
  }

  .welcome-ct{
    padding: 20px 10px;
  }

  section.hero-ct{
    padding-top: 30px;
  }

  .slider-ct h3{
    margin-top: 10px;
  }

  .slider-ct p{
    margin-top: 10px;
  }

  .welcome-ct p{
    font-size: 14px;
  }

  .slider-box{
    height: auto;
  }

  .slider-ct h2{
    font-size: 32px;
    float: left;
    width: 100%;
  }

  .slider-ct h3{
    font-size: 24px;
  }

  .slider-ct p{
    font-size: 18px;
  }

  .s-img-outer{
    position: static;
  }

  .slider-img {
    width: 100%;
    margin-top: 10px;
  }

  .web-devlopment {
    margin-top: 30px;
}

  .web-devlopment h2{
    font-size: 32px;
  }
  .web-devlopment h3{
    font-size: 24px;
  }

  .web-devlopment p{
    font-size: 18px;
    text-align: center;
  }

  /*.slider .owl-item, .slider-fade .owl-item{
    height: 620px;
  }*/

  .graphic-ct h2{
    font-size: 32px;
  }

  .graphic-ct h3{
    font-size: 22px;
  }

  .graphic-ct p{
    font-size: 18px;
  }

  .graphic-img{
    position: static;
    padding: 20px;
  }

  .owl-carousel .owl-item .game-img .graphic-img img {
    width: 100%;
  }

  .game-img .graphic-img{
    margin-top: 20px;
  }

  .sinle-card{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .step-card{
    margin: 0 auto 40px auto;
  }

  .card-head{
    width: 340px;
  }

  .s-card-body{
    width: 338px;
    height: 221px;
  }

  .owl-carousel .owl-item .team-img img{
    width: 100%;
  }

  .section-head {
    margin-bottom: 30px;
  }

  .testim .cont > div{
    height: 220px;
  }

  .testim .dots{
    bottom: 10px;
  }

  .navbar .icon-bar {
    color: #000;
  }

  .mb-sm50 {
    margin-bottom: 50px;
  }

  .mb-sm30 {
    margin-bottom: 30px;
  }

  .hero .extra-title {
    font-size: 22px;
  }

  .tabs-section .nav-pills .nav-link {
    padding: 12px 0;
  }

  .tabs-section .nav-pills .nav-item {
    width: 33.33333%;
    text-align: center;
  }

  .works .filtering .filter {
    padding: 0;
  }

  .works .filtering span {
    margin: 0;
  }

  .call-action h2 {
    font-size: 25px;
    font-weight: 500;
  }

  .call-action h5 {
    font-size: 20px;
    font-weight: 300;
  }


  .navbar{
    padding: 0;
  }

  .navbar-expand-lg>.container, .navbar-expand-lg>.container-fluid{
    padding: 0 15px;
  }
}
@media screen and (max-width: 480px) {
  .header .caption h4 {
    font-size: 14px;
  }
  .header .caption h1 {
    font-size: 25px;
    line-height: 1.4;
  }

  .works .filtering span {
    padding: 5px 15px;
  }
}

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