@import url("https://fonts.googleapis.com/css?family=Lora:400,700|Montserrat:400,700,900|Raleway:400,700|Zilla Slab:700");
.emoji {
  display: inline-block;
  vertical-align: text-top;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 30px;
  height: 30px; }

.wave-hand {
  background-image: url(../img/wavey.png);
  margin-left: 10px;
  cursor: pointer; }

.wave-hand.animato {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.wave-hand.wave {
  -webkit-animation-name: wave;
  animation-name: wave; }

@-webkit-keyframes wave {
  from {
    -webkit-transform: none;
    transform: none; }
  15% {
    -webkit-transform: translate3d(-20%, 0, 0) rotate3d(0, 0, 1, -10deg);
    transform: translate3d(-20%, 0, 0) rotate3d(0, 0, 1, -10deg); }
  30% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 7deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 7deg); }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -10deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -10deg); }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 5deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 5deg); }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -2deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -2deg); }
  to {
    -webkit-transform: none;
    transform: none; } }
@keyframes wave {
  from {
    -webkit-transform: none;
    transform: none; }
  15% {
    -webkit-transform: translate3d(-20%, 0, 0) rotate3d(0, 0, 1, -10deg);
    transform: translate3d(-20%, 0, 0) rotate3d(0, 0, 1, -10deg); }
  30% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 7deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 7deg); }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -10deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -10deg); }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 5deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 5deg); }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -2deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -2deg); }
  to {
    -webkit-transform: none;
    transform: none; } }
/* ====================
	Main Styles
=======================*/
html, body {
  height: 100%;
  font-family: "Raleway", sans-serif; }

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  padding: 0;
  margin: 0;
  color: #c00; }

h1 {
  font-size: 65px; }

h2 {
  font-size: 30px; }

h3 {
  font-size: 30px; }

h4 {
  font-size: 14px; }

h5 {
  font-size: 12px; }

p {
  font-size: 18px;
  color: #777777;
  line-height: 30px;
  font-family: "Lora", sans-serif; }

img {
  max-width: 100%; }

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

li, ul {
  margin: 0;
  padding: 0; }

.article-title {
  margin-bottom: 30px;
  font-size: 40px; }

.spad {
  padding-top: 80px;
  padding-bottom: 80px; }

.spad-top {
  padding-top: 40px;
  padding-bottom: 20px; }

.stitle {
  text-align: center;
  margin-bottom: 50px; }
  .stitle h2 {
    font-size: 40px;
    font-family: "Raleway", sans-serif; }

/*------------------
	Other typographic styles
--------------------*/
xins:before {
  height: 5px;
  position: absolute;
  background: #ffdc00;
  content: "";
  width: 100%;
  bottom: -2px;
  z-index: -1;
  transition: transform 0.1s ease 0s;
  transform: skew(-20deg) rotate(var(--rotate)) scaleX(var(--scaleX)); }
xins:selection {
  background: #ffdc00; }

/*------------------
	Preloader
--------------------*/
#preloder {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999999;
  background: #fff; }

.loader {
  width: 50px;
  height: 50px;
  border: 12px solid #333;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -25px;
  margin-left: -25px;
  border-radius: 60px;
  animation: loader 1s linear infinite;
  -webkit-animation: loader 1s linear infinite; }
  .loader:after {
    position: absolute;
    content: "";
    width: 12px;
    height: 50px;
    background: #fff;
    left: 10px;
    top: 15px; }

@keyframes loader {
  0% {
    transform: rotate(0deg); }
  50% {
    transform: rotate(180deg); }
  100% {
    transform: rotate(360deg); } }
@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0deg); }
  50% {
    -webkit-transform: rotate(180deg); }
  100% {
    -webkit-transform: rotate(360deg); } }
/* ====================
	Navigation
=======================*/
.nav-switch {
  position: fixed;
  width: 70px;
  height: 50px;
  right: 0;
  top: 50px;
  background: #fff;
  z-index: 998;
  cursor: pointer;
  padding: 17px 17px 0px;
  border-radius: 30px 0px 0px 30px;
  box-shadow: -2px 4px 40px rgba(66, 66, 66, 0.23);
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s; }
  .nav-switch span {
    display: block;
    height: 2px;
    background: #333;
    margin-bottom: 5px;
    position: relative;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    transform-origin: left;
    -webkit-transform-origin: left; }
  .nav-switch .bar-one {
    width: 26px;
    margin-left: 5px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  .nav-switch .bar-two {
    width: 36px; }
  .nav-switch .bar-three {
    width: 26px;
    margin-left: 5px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  .nav-switch.active {
    width: 215px; }
    .nav-switch.active .bar-one {
      -webkit-transform: rotate(48deg);
      transform: rotate(48deg);
      top: -3px;
      -webkit-transition: all 0.5s ease 0s;
      transition: all 0.5s ease 0s; }
    .nav-switch.active .bar-two {
      opacity: 0; }
    .nav-switch.active .bar-three {
      -webkit-transform: rotate(-48deg);
      transform: rotate(-48deg);
      top: 3px;
      -webkit-transition: all 0.5s ease 0s;
      transition: all 0.5s ease 0s; }

.mainmenu {
  position: fixed;
  right: 0;
  top: 50px;
  z-index: 999;
  right: -170px;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s; }
  .mainmenu .menu-list {
    list-style: none;
    background: #fff;
    padding: 10px;
    box-shadow: -5px 5px 40px rgba(10, 10, 10, 0.15);
    width: 150px;
    position: relative; }
    .mainmenu .menu-list li {
      text-align: center; }
      .mainmenu .menu-list li a {
        display: block;
        color: #333;
        padding: 7px 0px;
        position: relative; }
        .mainmenu .menu-list li a:after {
          position: absolute;
          content: "";
          width: 0px;
          height: 2px;
          bottom: 6px;
          left: 50%;
          margin-left: 0px;
          background: #333;
          -webkit-transition: all 0.3s ease 0s;
          transition: all 0.3s ease 0s; }
    .mainmenu .menu-list .current a:after {
      width: 10px;
      margin-left: -5px; }
  .mainmenu.active {
    right: 0; }

.responsive {
  display: none; }

.header-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -999;
  background: rgba(255, 255, 255, 0.09);
  padding: 15px 30px;
  visibility: hidden;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s; }
  .header-section .logo {
    display: inline-block;
    float: left;
    z-index: 44;
    position: absolute; }
    .header-section .logo img {
      height: 45px;
      width: auto;
      -webkit-transition: all 0.3s ease 0s;
      transition: all 0.3s ease 0s; }
  .header-section .menu-list {
    list-style: none;
    float: right;
    margin-top: 15px; }
    .header-section .menu-list li {
      display: inline; }
      .header-section .menu-list li a {
        display: inline-block;
        padding: 10px;
        color: #fff;
        position: relative; }
        .header-section .menu-list li a:after {
          position: absolute;
          content: "";
          width: 0px;
          height: 2px;
          bottom: 6px;
          left: 50%;
          margin-left: 0px;
          background: #fff;
          -webkit-transition: all 0.3s ease 0s;
          transition: all 0.3s ease 0s; }
        .header-section .menu-list li a:hover:after {
          width: 10px;
          margin-left: -5px; }
    .header-section .menu-list .current a:after {
      width: 10px;
      margin-left: -5px; }
  .header-section.sticky {
    z-index: 999;
    visibility: visible;
    position: fixed;
    background: #fff;
    box-shadow: 0px 9px 50px rgba(58, 58, 58, 0.1);
    padding: 10px 30px; }
    .header-section.sticky .logo img {
      height: 95px; }
    .header-section.sticky .menu-list {
      margin-top: 8px; }
      .header-section.sticky .menu-list li {
        display: inline; }
        .header-section.sticky .menu-list li a {
          color: #333; }
          .header-section.sticky .menu-list li a:after {
            background: #333; }

/* ====================
	Intro Section 
=======================*/
.intro-section {
  height: 100%;
  position: relative;
  overflow: hidden; }
  .intro-section:after {
    position: absolute;
    content: "";
    width: 105%;
    height: 200px;
    left: 0;
    bottom: -150px;
    background: #fff;
    -webkit-transform: rotate(4deg);
    transform: rotate(4deg);
    margin-left: -2%;
    z-index: 8; }
  .intro-section:before {
    position: absolute;
    content: "";
    width: 105%;
    height: 200px;
    right: -40%;
    bottom: -150px;
    background: #fff;
    -webkit-transform: rotate(-13deg);
    transform: rotate(-13deg);
    z-index: 9; }

.intro-bg {
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: url(../img/bg4.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed; }
  .intro-bg:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000;
    opacity: 0.1; }

#particles {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute; }

.intro-content-folio {
  position: absolute;
  max-width: 50%;
  top: 130px;
  transform-origin: left center;
  z-index: 11;
  left: 0px; }
  .intro-content-folio .btn-back {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    color: #ffcc66;
    background-color: #444452;
    border: none; }
    .intro-content-folio .btn-back::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 10px;
      transform: translateY(-50%) rotate(90deg);
      border-left: 4px solid transparent;
      border-right: 4px solid transparent;
      border-top: 8px solid #ffffff; }
    .intro-content-folio .btn-back:hover {
      text-decoration: underline; }
  .intro-content-folio p {
    font-family: "Raleway", sans-serif;
    font-weight: 900;
    font-size: 70px;
    line-height: 70px;
    color: #ffffff;
    padding: 10px 10px 10px 60px;
    background-color: #36363c; }

.intro-content {
  position: absolute;
  max-width: 50%;
  top: 130px;
  transform-origin: left center;
  z-index: 11;
  left: 30px;
  -webkit-transform: rotate(4deg);
  transform: rotate(4deg);
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s; }
  .intro-content .humble-intro {
    margin: 0px 0px 0px 4px;
    color: #ffcc66;
    font-family: "Raleway", sans-serif;
    font-size: 30px;
    font-weight: 400; }
  .intro-content h1 {
    font-family: "Raleway", sans-serif;
    font-weight: 900;
    font-size: 90px;
    color: #ffffff; }
  .intro-content h2 {
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    font-size: 50px;
    margin-top: -10px;
    color: #e7e7e7; }
  .intro-content.hideup {
    bottom: 250px;
    opacity: 0; }

/* ====================
	CaseStudy Section 
=======================*/
.case-content {
  margin-top: 40px;
  text-align: left; }
  .case-content p {
    font-size: 20px;
    line-height: 40px;
    color: #36363c;
    margin-bottom: 40px; }
    .case-content p ins {
      color: #333; }

/* ====================
	About Section 
=======================*/
.about-content {
  text-align: center; }
  .about-content p {
    font-size: 22px;
    line-height: 40px; }
    .about-content p ins {
      color: #333; }

.social {
  margin-top: 30px; }
  .social a {
    font-size: 20px;
    margin: 10px;
    color: #333; }

/* ====================
	Services Section 
=======================*/
.services-section {
  background: #0058BA; }

.service-item {
  text-align: center; }
  .service-item i {
    font-size: 40px;
    margin-bottom: 20px; }
  .service-item h2 {
    font-size: 25px;
    margin-bottom: 15px;
    color: #ffcc66; }
  .service-item p {
    color: #DBEDF3; }

/* ====================
	Uses Section 
=======================*/
.uses-content {
  text-align: center; }
  .uses-content p {
    font-size: 22px;
    line-height: 40px; }
    .uses-content p ins {
      color: #333; }
  .uses-content ul {
    text-align: left;
    --icon-space: 1.3em;
    list-style: none;
    padding: 0; }
    .uses-content ul li {
      margin-bottom: 20px; }
      .uses-content ul li:before {
        content: "\f00c";
        /* FontAwesome Unicode */
        font-family: FontAwesome;
        display: inline-block;
        margin-left: calc( var(--icon-space) * -1 );
        width: var(--icon-space); }

/* ====================
	Specs Section 
=======================*/
.specs-section .specs-talk ins {
  color: #333; }
.specs-section .spec-blip {
  height: 5px;
  background-color: #e5e5e5;
  max-width: 70px;
  margin-top: 12px; }
.specs-section ul {
  text-align: left;
  --icon-space: 1.3em;
  list-style: none;
  padding-left: 18px;
  font-family: "Lora", sans-serif;
  font-size: 18px;
  color: #777777; }
  .specs-section ul li {
    padding-bottom: 12px;
    position: relative; }
    .specs-section ul li:before {
      content: "\f00c";
      /* FontAwesome Unicode */
      font-family: FontAwesome;
      color: #598b4b;
      display: inline-block;
      margin-left: calc( var(--icon-space) * -1 );
      width: var(--icon-space); }

/* ====================
	Portfolio Section 
=======================*/
.portfolio-filter {
  text-align: center;
  list-style: none;
  margin-bottom: 30px; }
  .portfolio-filter li {
    display: inline-block;
    margin: 0 6px;
    font-family: "Lora", sans-serif;
    cursor: pointer;
    font-size: 22px; }
    .portfolio-filter li.active {
      text-decoration: line-through; }

.isotope_items {
  margin-bottom: -30px; }

.itemborder {
  border: 1px solid #afafbf;
  padding: 20px;
  margin-bottom: 20px; }
  .itemborder:hover {
    border: 1px solid #777777;
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s; }

.card-bottom {
  position: relative;
  display: block;
  margin-bottom: 10px; }
  .card-bottom h2 {
    color: #171c28;
    font-size: 30px;
    margin-bottom: 6px; }
  .card-bottom span {
    color: #777777;
    font-style: italic;
    font-size: 22px; }
  .card-bottom .card-desc {
    color: #777777; }
  .card-bottom .card-tech {
    margin-top: 10px; }
  .card-bottom .card-tech li {
    color: #777777;
    font-family: monospace;
    font-size: 11px;
    padding: 4px 6px;
    margin-right: 6px;
    display: inline-block;
    border: 1px solid #cecece;
    border-radius: 30px; }

.work-section {
  background-image: url(../img/promo-2-bg.jpgx);
  background-repeat: repeat-x;
  background-position: top center; }

.work-item {
  position: relative;
  display: block;
  margin-bottom: 10px; }
  .work-item .work-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 1;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s; }
    .work-item .work-inner .work-info {
      position: relative;
      text-align: center;
      top: 50%;
      margin-top: -28px; }
      .work-item .work-inner .work-info h2 {
        color: #fff;
        font-size: 20px;
        margin-bottom: 9px;
        opacity: 0;
        position: relative;
        top: -40px;
        -webkit-transition: all 0.2s ease 0s;
        transition: all 0.2s ease 0s; }
      .work-item .work-inner .work-info h3 {
        color: #333;
        font-size: 12px;
        font-family: "Lora", sans-serif;
        display: inline-block;
        background: #fff;
        padding: 6px 20px;
        border-radius: 20px;
        opacity: 0;
        position: relative;
        top: 40px;
        -webkit-transition: all 0.2s ease 0s;
        transition: all 0.2s ease 0s; }
  .work-item:hover .work-inner {
    background: rgba(0, 0, 0, 0.8); }
    .work-item:hover .work-inner .work-info h2, .work-item:hover .work-inner .work-info h3 {
      opacity: 1;
      top: 0;
      -webkit-transition: all 0.4s ease 0s;
      transition: all 0.4s ease 0s; }

/* ====================
	Review Section 
=======================*/
.review-section {
  background: #f4f4f4; }

.review-carousel .owl-dots {
  text-align: center;
  margin-top: 10px; }
  .review-carousel .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    background: #333;
    display: inline-block;
    margin: 5px;
    border-radius: 50%;
    position: relative; }
    .review-carousel .owl-dots .owl-dot:after {
      position: absolute;
      content: "";
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      background: #333;
      border-radius: 50%;
      opacity: 0.5;
      -webkit-transform: scale(0);
      transform: scale(0);
      -webkit-transition: all 0.4s ease 0s;
      transition: all 0.4s ease 0s; }
  .review-carousel .owl-dots .owl-dot.active:after {
    -webkit-transform: scale(1.5);
    transform: scale(1.5); }

.single-review {
  text-align: center; }
  .single-review h2 {
    font-size: 25px;
    margin-bottom: 5px; }
  .single-review h3 {
    font-size: 14px;
    font-family: "Raleway", sans-serif;
    margin-bottom: 10px; }
  .single-review .revew-stars {
    margin-bottom: 10px; }

/* ====================
	Promotion Section 
=======================*/
.promotion-section {
  position: relative;
  overflow: hidden; }
  .promotion-section:after {
    position: absolute;
    content: "";
    width: 105%;
    height: 200px;
    left: 0;
    top: -150px;
    background: #f4f4f4;
    -webkit-transform: rotate(-4deg);
    transform: rotate(-4deg);
    margin-left: -2%;
    z-index: 8; }
  .promotion-section:before {
    position: absolute;
    content: "";
    width: 105%;
    height: 200px;
    right: -40%;
    top: -150px;
    background: #f4f4f4;
    -webkit-transform: rotate(13deg);
    transform: rotate(13deg);
    z-index: 9; }

.promotion-bg {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-image: url(../img/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed; }
  .promotion-bg:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000;
    opacity: 0.5; }

.spacial-circle {
  position: relative;
  width: 250px;
  height: 250px;
  z-index: 1;
  margin: 140px auto 100px;
  background: rgba(5, 98, 175, 0.9);
  border-radius: 50%;
  display: table;
  text-align: center;
  padding: 20px; }
  .spacial-circle:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 50%;
    background: rgba(5, 98, 175, 0.6);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    z-index: -1; }
  .spacial-circle .circle-content {
    display: table-cell;
    vertical-align: middle; }
    .spacial-circle .circle-content h2 {
      color: #fff; }

/* ====================
	Contact Section 
=======================*/
.contact-info {
  list-style: none; }
  .contact-info li {
    margin-bottom: 25px;
    background-color: #e7e7e7;
    display: block;
    padding: 15px;
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative; }
    .contact-info li h4 {
      font-size: 18px;
      margin-bottom: 10px; }
    .contact-info li p {
      margin-bottom: 0; }
    .contact-info li i {
      position: absolute;
      font-size: 150px;
      right: 30px;
      bottom: -23px;
      opacity: 0.06; }
      .contact-info li i.fa-paper-plane-o {
        font-size: 120px; }

.contact-form input {
  display: block;
  width: 100%;
  height: 60px;
  padding: 10px;
  margin-bottom: 28px;
  border: 1px solid #ddd;
  border-radius: 2px;
  background: #f9f9f9;
  outline: none; }
.contact-form textarea {
  display: block;
  min-width: 100%;
  min-height: 150px;
  padding: 10px;
  margin-bottom: 28px;
  border: 1px solid #ddd;
  border-radius: 2px;
  background: #f9f9f9;
  outline: none; }

.contact-btn {
  width: 100%;
  display: block;
  background: #333;
  color: #fff;
  border: none;
  padding: 17px 30px;
  border-radius: 70px;
  box-shadow: 0px 11px 30px rgba(0, 0, 0, 0);
  outline: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s; }
  .contact-btn:hover {
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.5); }

#map {
  height: 450px; }

/* ====================
	Footer Section 
=======================*/
.footer-section {
  background: #000;
  padding: 80px 0; }

.copyright {
  text-align: center; }
  .copyright p {
    color: #fff;
    margin-bottom: 0; }

/* ====================
	Responsive Section
=======================*/
/* Tablet desktop :768px. */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .profile-pic {
    margin-bottom: 20px; }

  .container {
    width: 710px; } }
/* Large Mobile :480px. */
@media only screen and (max-width: 767px) {
  .cont-info {
    margin-bottom: 30px; }
    .cont-info:last-child {
      margin-bottom: 0; }

  .spad {
    padding-top: 10px; }

  .intro-section {
    height: 50vh; }

  .intro-bg {
    background-position: 73% -225px; }

  .intro-content {
    max-width: 100%;
    width: 100%;
    transform: rotate(0);
    display: flex;
    justify-content: center;
    align-items: center;
    top: auto;
    left: auto;
    /* Vertical centering */
    height: 50vh; }
    .intro-content h2 {
      font-size: 23px;
      line-height: 1.24;
      text-align: center;
      font-weight: 600;
      margin-top: 10px;
      font-family: "lora"; }
    .intro-content h1 {
      font-size: 45px;
      line-height: 1;
      text-align: center; }
    .intro-content .humble-intro {
      font-size: 23px;
      line-height: 1;
      text-align: center;
      margin-bottom: 8px; }

  .responsive {
    display: block;
    float: right;
    font-size: 22px;
    position: relative;
    top: 17px; }

  .header-section .menu-list {
    clear: both;
    display: block;
    width: 100%;
    -webkit-transform: rotateX(90deg);
    transform: rotateX(90deg);
    transform-origin: top center;
    -webkit-transform-origin: top center;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s; }
    .header-section .menu-list.nav-show {
      -webkit-transform: rotateX(0deg);
      transform: rotateX(0deg); }
      .header-section .menu-list.nav-show li {
        height: 55px;
        opacity: 1; }
    .header-section .menu-list li {
      display: block !important;
      text-align: center;
      border-top: 1px solid #f7f7f7;
      height: 0;
      opacity: 1;
      -webkit-transition: all 0.5s ease 0s;
      transition: all 0.5s ease 0s; }
      .header-section .menu-list li a {
        padding: 14px; }

  .service-item {
    margin-bottom: 25px; }
    .service-item:last-child {
      margin-bottom: 0; } }
/* small mobile :320px. */
@media only screen and (max-width: 479px) {
  .nav-switch {
    top: 20px; }

  .mainmenu {
    top: 20px; } }

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